/* Global Reset and General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}



body {
     background-image: linear-gradient(90deg,#66faf0,black);
    /* background-color: gray !important; */
    color: #000000 !important;
    line-height: 1.6;
    overflow-x: hidden !important;

}
/* clock */

.clock-container {
    margin-bottom: 20px;
    margin-top: 30px;
    width: 230px;
    height: 100px;
    border-radius: 10px;
    padding: 0;
    margin-top: 0%;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 300;
    background-color: #000000be;
}

/* 1. Gradient Color Animation */
@keyframes clock {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  #clock {
    font-size: 1.5em;
    font-weight: bold;
    background: linear-gradient(90deg, black,  #66faf0, #fff);
    background-size: 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: clock 1.11s infinite;
  }


#date {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #ffcc00;
    /* text-shadow: 0 0 10px #66faf0, 0 0 20px #66faf0, 0 0 30px #66faf0; */
    padding: 0%;
    margin: 0%
}

#country-select {
    margin-top: 8px;
    font-size: 14px;
    padding: 2px 0px;
    background:transparent;
    color: rgb(0, 0, 0);
    border: white 2px solid;
    color:#ffffff;
    cursor: pointer;
    border-radius: 5px;
    padding: 0%;

}
 
option{
    font-size: 14px;
    background-color: black;
    color: white;
}


#country-select::-webkit-scrollbar {
width: 3px;
}

#country-select::-webkit-scrollbar-thumb {
background: #66faf0;
border-radius: 10px;
}



/* Apply scrollbar styling to the main container or the entire page */
body::-webkit-scrollbar {
    width: 5px;
    background-color: #111212 ;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #66faf0;
    border-radius: 10px;
}
/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    color: #fff;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 222;
    background-color: transparent;
    padding: 1px 25px;

    /* position: relative; */
}

.hamburger-menu {
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 444 !important;
    

}

.logo{
    background: rgba( 0, 0, 0, 0.25 );
/* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
/* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
margin-top: 10px;
margin-left: 17px !important;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;

}

.account-icon,
.dark-mode-toggle {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Nav Menu Styles */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 60%;
    transition: left 0.5s ease, background-color 0.5s ease;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 500;
    overflow: hidden;
    background-color: #000000; /* Gray-blue background */
    color: #ffffff;
}

.nav-menu ul {
    list-style-type: none;
    width: 100%;
    padding: 0;
    text-align: center;
}

.nav-menu li {
    margin: 20px 0;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(0.2s * var(--i)); /* Delay each item */
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    color: #66faf0; /* Pinkish color on hover */
    transform: scale(1.1); /* Slight scale effect on hover */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #66faf0; /* Pinkish underline */
    transition: width 0.8s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    color: #66faf0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg); /* Rotation effect on hover */
}

/* Overlay for menu */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Keyframes for the menu items fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Opening and closing the nav menu */
.nav-menu.open {
    left: 0; /* Move the menu into view */
}

.overlay.active {
    display: block;
}
/* Dark Mode */
.dark-mode {
    background-image: none !important;
    /* background-color: gray !important; */
    background-color: #0b0c10 !important;
    color: #fff !important;
}

.dark-mode-toggle{
    background: transparent;
   color: white;
   font-weight: bold;
}

.dark-mode-toggle:hover{
background: rgba( 102, 250, 240, 0.25 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
/* border: 1px solid rgba(255, 255, 255, 0.411); */
}
/* Responsive Menu Width */
@media (max-width: 768px) {
    .nav-menu {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 70%;
    }
}

@media (max-width: 320px) {
    .nav-menu {
        width: 65%;
    }
    body{
        overflow-x: hidden;
    }
}



/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    

}

/* 2. Typing Text Animation */
 @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  .typing-text {
    font-size: 2em;
    font-weight: bold;
    font-family: 'Segoe UI' ;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid rgba(54, 221, 221, 0.329);
    width: 0;
    animation: typing 2s steps(30, end) 4s forwards;

  }


/* Full-Width Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlayy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity for darker/lighter overlay */
    z-index: 0;
}


/* Laptop Container */
.laptop-container {
    position: relative;
    width: 500px;
    max-width: 100%;
    margin: 50px auto;
    margin-top: 60px !important;
    display: inline-block;
  }
  
  /* Laptop Image */
  .laptop-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Tooltip styles */
  .tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 10px; /* Positioned at the bottom of the laptop */
    left: 50%;
    transform: translateX(-50%);
    background-color:#ffffff;
    color: #000000;
    /* font-weight: bold !important; */
    padding: 5px !important;
    border-radius: 4px;
    font-size: 12px !important;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    white-space: nowrap;
  }
  
  /* Show the tooltip when hovering over the laptop container */
  .laptop-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
  }
/* Laptop Image */
.laptop-img {
    width: 100%;
    height: 100%;
}

/* Laptop Container */
.laptop-container {
    position: relative;
    width: 500px;
    max-width: 100%;
    margin: 0 auto; /* Centering the laptop */
}

/* Laptop Image */
.laptop-img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Screen Container */
.screen {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%; /* Adjusted for better fit */
    height: 84%; /* Adjusted for better fit */
    overflow: hidden;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 0; /* Ensure no additional space is added */
}

/* Link Styling */
.screen a {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeInOut 30s infinite; /* Total cycle time: 30 seconds */
    display: block; /* Ensures the anchor tag occupies the area correctly */
    pointer-events: none; /* Disables click events initially */
}

/* Screen Images */
.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits properly without distortion */
}

/* Keyframes for fade in and out animation */
@keyframes fadeInOut {
    0%, 10% {
        opacity: 1; /* Fully visible for the first 10% of the cycle */
        pointer-events: auto; /* Enable click during this phase */
    }
    10.01%, 100% {
        opacity: 0; /* Fades out and stays hidden for the rest of the cycle */
        pointer-events: none; /* Disable click when not visible */
    }
}

/* Individual Links with delay for animation */
.screen a:nth-child(1) { animation-delay: 0s; }
.screen a:nth-child(2) { animation-delay: 3s; }
.screen a:nth-child(3) { animation-delay: 6s; }
.screen a:nth-child(4) { animation-delay: 9s; }
.screen a:nth-child(5) { animation-delay: 12s; }
.screen a:nth-child(6) { animation-delay: 15s; }
.screen a:nth-child(7) { animation-delay: 18s; }
.screen a:nth-child(8) { animation-delay: 21s; }
.screen a:nth-child(9) { animation-delay: 24s; }
.screen a:nth-child(10) { animation-delay: 27s; }



/* Responsive adjustments */
@media (max-width: 768px) {
    .laptop-container {
        width: 90%;
    }

    .screen {
        top: 5%;
        left: 10%;
        width: 80%;
        height: 84%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}



       /* Social Media Icons Container */
       .social-icons {
        position: absolute;
        bottom: 20px;
        left: -60px; /* Start off the screen to the left */
        display: flex;
        flex-direction: column;
        z-index: 400;   
        gap: 15px;
        animation: slideInFromLeft 1s forwards ease-in-out 3.5s; /* Animation for slide-in */
      }
  
          /* Individual icon styling */
      .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #66faf062;
        color: #fff;
        font-size: 20px;
        text-decoration: none; /* Remove text decoration */
        transition: transform 0.3s, background-color 0.3s;
      }
  
      .social-icons a:hover {
        transform: scale(1.1);
        color: #66faf0 ;
        background-color: #ffffff; /* Change to any color you prefer */
      }
      /* Slide-in animation */
      @keyframes slideInFromLeft {
        0% {
          left: -60px; /* Start off-screen */
          opacity: 0;
        }
        100% {
          left: 20px; /* Final position */
          opacity: 1;
        }
      }
  
      /* Responsive design */
      @media (max-width: 768px) {
      .social-icons {
          bottom: 10px;
          left: -50px;
          gap: 10px;
          display: flex !important;
            flex-direction: column !important;
        }
        .whatsapp-logo{
          bottom: 1px !important;
        } 
  
        .social-icons a {
          width: 35px;
          height: 35px;
          font-size: 16px;
        }
      }
  
      @media (max-width: 480px) {
        .social-icons a {
          width: 30px;
          height: 30px;
          font-size: 14px;
            
        }
      }

@media (max-width: 330px) {
        .social-icons {
          left: 5px !important;
        }
        .whatsapp-logo{
          bottom: 1px !important;
        } 
      }


 /* Hero Section whatsapp logo*/
  
  
      .whatsapp-logo {
        position: absolute;
        display: flex;
        flex-direction: row;
        gap: 2px;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: fit-content;
        height: 45px;
        bottom: 40px;
        right: 10px;
       
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateX(100%);
        animation: showWhatsApp 2s ease-in-out forwards 3.5s;
      }
  
      .whatsapp-logo i {
        color: white;
        font-size: 30px;
        border-radius: 50%;
        padding: 10px;
        background-color: #66faf062;
        font-size: 20px;
        text-decoration: none; /* Remove text decoration */
        transition: transform 0.3s, background-color 0.3s;
      }

      .whatsapp-logo i:hover {
        transform: scale(1.1);
        color: #66faf0 ;
        background-color: #ffffff; /* Change to any color you prefer */
      }
  
  
      /* Animation to make the logo slide in */
      @keyframes showWhatsApp {
        0% {
          opacity: 0;
          transform: translateX(100%);
        }
        100% {
          opacity: 1;
          transform: translateX(0);
        }
      }

/* Sections Styling */
.about-section,
.services-section,
.clients-section,
.testimonials-section,
.contact-section {
    padding: 60px 0;
    text-align: center;
}
 

/* About Section */

.containerr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  /* Section Title */
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 20px;

    font-weight: bold;
  }

  .about-section {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(50px);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Intro */
  .intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
  }

  /* Mission, Vision, and Values */
  .values-mission-vision {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
  }

  .value {
    flex: 1 1 calc(33.333% - 20px); /* Three cards per row with space in between */
    padding: 20px;
    background-color: #111212;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 250px;
    

  }

  .value h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .value p {
    color: #ffffff;
    font-size: 1rem;
  }

  /* Team Section */
  .team-section {
    text-align: center;
    margin-top: 40px;
  }

  .team-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .team-card {
    background-color: #111212;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    text-align: center;
  }

  .team-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: 0.1 ease-in;

  }

  .team-card h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
  }

  .team-card p {
    font-size: 1rem;
    color: #555;
  }

/* Fade-in Animation */
.about-section {
  animation: fadeInUp 1s ease-out forwards;
}

/* Keyframes for Fade-in Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effect for Value Cards */
.value:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Team Cards */
.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Darker Text Color on Hover for Team Card Titles */
.team-card h4:hover {
  color: #ffffff;
}

/* Subtle Hover Effects for Images */
.team-card img:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

/* Unique Fade-In with Bounce for About Section */
.about-section {
    animation: bounceInUp 1s ease-out forwards 4s;
        box-shadow: none !important;

  }
  
  @keyframes bounceInUp {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    60% {
      opacity: 1;
      transform: translateY(-10px);
    }
    80% {
      transform: translateY(5px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  /* Value Card Hover with Rotation and Shadow Pulse */
  .value {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  .value:hover:nth-child(1) {
    transform: scale(1.07) rotate(-3deg);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
    background-color: #222324;
  }
  .value:hover:nth-child(2) {
    transform: scale(1.07);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
    background-color: #222324;
  }
  .value:hover:nth-child(3) {
    transform: scale(1.07) rotate(3deg);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
    background-color: #222324;
  }
  /* Team Card Hover with Color Shift and Border Glow */
  .team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
  }
  .team-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
  }
  
  /* Team Card Title Color Glow on Hover */
  .team-card h4 {
    color: #333;
    transition: color 0.3s ease;
  }
  .team-card:hover h4 {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  }
  
  /* Profile Image Hover Effect with Spin and Zoom */
  .team-card img {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
  }
  .team-card img:hover {
    transform: scale(1.3) ;
/*     transform: scale(1.15) rotate(15deg); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Fade and Slide-in for Values Section */
  .values-mission-vision {
    opacity: 0;
    animation: fadeInSlide 1.5s ease-out forwards;
  }
  
  @keyframes fadeInSlide {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Subtle Glow on Value Cards */
  .value:hover h3 {
    color: #e3e3e3;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .values-mission-vision {
      flex-direction: column;
    }
  }

  



/* Services Section */
.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 10px; /* Space between cards */
    padding: 20px;
    max-width: 1300px; /* Center alignment and proper width */
    margin: 0 auto; /* Centering the grid on the page */
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.service-card {
    position: relative;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.card-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-container {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    }
}

@media (max-width: 768px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }
}

@media (max-width: 480px) {
    .service-container {
        grid-template-columns: 1fr; /* 1 card per row */
    }
}
.card-front-side,
.card-back-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
}

.card-front-side {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    overflow: hidden;
    
}

.card-front-side img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.8s ease-in-out;
    background-size: cover;
    /* background-color: #000; */

}

.card-back-side {
    background-image: radial-gradient(ellipse at center, 
    rgba(0, 56, 68, 0.8) 0%, 
    #66faf0 0%, 
    rgba(73, 73, 73, 0) 100%);   

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 16px;
    border-radius: 50px;
    border-top-right-radius: 0%;
    border-bottom-left-radius: 0%;
    border: 4px solid white;

}


/* Flip Effect */
.service-card:hover .card-wrapper {
    transform: rotateY(180deg);
}

.service-card:hover .card-front-side img {
    transform: scale(1.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .service-card {
        height: 250px;
    }
}


.services-section,
.clients-section {
    /* background-color: #000000; */
    opacity: 0;
    transform: translateY(50px);
}

.testimonials-section {
    /* background-color: #000000; */
    color: white;
    opacity: 0;
    transform: translateY(50px);
}
.counter-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 50px 10%;
    padding-bottom: 0% !important;
    text-align: center;
    justify-items: center;
}

.counter {
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
    /* Dark counter background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-right: 5px solid #66faf0 !important;
    transition: transform 0.2s ease;
}



.counter:hover {

    transform: scale(1.05);
}

.counter:hover {
    color: #FFD700 !important;
    transform: skewY(-7deg) !important;
}


.counter-value {
    font-size: 2rem;
    margin-top: 5px;
    font-weight: bold;
    color: #66faf0;
    /* Counter text color */
}

.label {
    font-size: 1.1rem;
    color: #ffffff;
    /* Label text color */
    margin-top: 10px;
}

.counter i {
    font-size: 2rem;
    color: #ffffff;
    /* Icon color */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .counter-section {
        grid-template-columns: repeat(3, 1fr);
        padding: 50px 5%;
    }
}

@media (max-width: 768px) {
    .counter-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 5%;
    }

    .counter {
        width: 100%;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .counter-section {
        grid-template-columns: repeat(1, 1fr);
        padding: 0% !important;
    }

    .counter-value {
        font-size: 1.5rem;
        /* Smaller font size for smaller screens */
    }

    .counter i {
        font-size: 2rem;
        /* Smaller icons for mobile */
    }
}


.carousel-containerr {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Centers items vertically */
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    cursor: grab;
    margin: auto; /* Centers the container itself horizontally */
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-item p{
    background-color: #111212;
    color: white;
    margin-left: 30%;
    width: 550px;
    height: 350px;
    display: flex;
    flex-direction: column;
    padding:10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 770px) {

    .carousel-item p{
     
        margin-left: 9.5%;
        width: 300px;
    }

    .carousel-control-next,.carousel-control-prev {
        top: 25% !important;
        height: fit-content;
        padding: 5px;
    }
      

}
@media (max-width: 350px) {

    .carousel-item p{
     
        margin-left: 2%;
        width: 300px;
    }

    

}

/* pricing section */
.pricing-sectionn {
    padding: 45px 0;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    text-align: center;
}

.filterbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-bottom: 20px;
    margin-top: 0px;

}

.filterbtn button {
    padding: 0.5em 1em;
    border: none;
    cursor: pointer;
    background-color: #111212;
    color: #fff;
    border-radius: 5px;
    transition: ease 0.3s;
}

.filterbtn button:hover{

background-color: #000;
color: white;
transform: translateY(1px);
box-shadow: 0 8px 16px #66faf03d;

}


.filterbtn .active {
    background-color: #66faf0 !important;
    color: #111 !important;
    border: none;
}

@media (max-width: 770px) {
    .filterbtn {
        flex-direction: column;
        gap: 0.5em;
    }
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    padding: 30px;
    margin: 15px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures elements are spaced evenly */
    align-items: center;
    height: 400px; /* Same height for all cards */
    overflow: hidden;
    user-select: none;
    color: #fff;
    text-align: center;
}

.pricing-card h3 {
    margin-top: 10px;
    border-bottom: 2px solid #66faf0; /* Added border bottom */
    padding-bottom: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.pricing-card .price {
    font-size: 2rem;
    color: #66faf0;
    font-weight: bold;
}

.pricing-card .description {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
}

.pricing-detail {
    padding: 5px;
}

.pricing-card .pricing-detail {
    list-style: none;
    font-size: 0.8rem;
    color: #fff;
    padding: 0;
    /* margin: 8px 0; */
    height: 100px; /* Fixed height for the list */
    overflow-y: auto; /* Allows scrolling when content overflows */
    flex-grow: 1; /* Ensures the list area takes up remaining space */
}

.pricing-card .pricing-detail li {
    margin-bottom: 8px;
}

.pricing-card .pricing-detail::-webkit-scrollbar {
    width: 3px;
}

.pricing-card .pricing-detail::-webkit-scrollbar-thumb {
    background: #66faf0;
    border-radius: 10px;
}

.pricing-card button {
    background-color: #66faf0;
    color: #111212;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 45px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    transition: ease-in-out 0.2s;
    margin-top: auto; /* Ensures button stays at the bottom */
}

.pricing-card button:hover{
    background: transparent;
    border: 2px solid white;
    color: #66faf0;

} 



.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px #66faf03d;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeIn 0.5s ease forwards;
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }

    .filterbtn button {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* end */


#contact {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 60vh;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 20px;
}

.image-container,
.form-container {
    width: 50%;
    padding: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input,
form textarea,
form button {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background: #66faf0;
    color: white;
    border: 1px solid black;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    /* width: fit-content; */
    justify-content: center;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 1rem;
    font-style: oblique;
    margin-bottom: 1em;
    margin-top: 5px;
    /* margin-left: 250px; */
}

form button:hover {
    background-color: #000000c0;
    color: white;
    border: 2px solid  #66faf0 ;
}

@media (max-width: 768px) {

    .image-container,
    .form-container {
        width: 100%;
        padding: 10px;
    }
}







/* Footer Styling */
.footer {
    background-color: black;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Section Title Styling */
.section-title {
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .services-section .row {
        flex-direction: column;
    }

    .services-section .card-flip {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .services-section .row {
        flex-direction: column;
        gap: 20px;
    }

    .services-section .card-flip {
        height: 220px;
    }

    .card-back h5 {
        font-size: 1.2rem;
    }

    .card-back p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-section .card-flip {
        height: 200px;
    }

    .card-back h5 {
        font-size: 1rem;
    }

    .card-back p {
        font-size: 0.8rem;
    }
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 20;
    margin-top: 50px;
}

.social-iconss i{
        
        color: #fff;
        
        font-size: 20px;
        text-decoration: none; /* Remove text decoration */
        transition: transform 0.3s, background-color 0.3s;

      }

footer p {
    font-size: 1rem;
}

/* Button Styling */
button {
    background-color: #0288d1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

/* testimonials-section-button */

button:hover {
    background-color: #41444600;
}

/* Scroll Button */
.scroll-btn {
    position: fixed;
    bottom: 20px;
    right: 25px;
    background-color: #000000;
    color:#66faf0;
    padding: 10px;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 50%; /* Circular button */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 50;
}

.scroll-btn:hover {
    background-color: #000000;
    /* transform: rotate(340deg); */
    animation:  rotate360 0.4s ease ; /* Animation: name duration timing-function repeat */

}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes moveUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-13px);
    }
}

.scroll-btn:hover i {

    animation: moveUp 1s ease-in-out  alternate; /* Name, duration, timing, repeat */
    z-index: 100;

}

/* Show button after hero section */
body.scrolled .scroll-btn {
    display: flex;
}

/* loader */


.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: black;
    position: fixed;
    top: 0%;
    z-index: 999;
  }
  
  .loader {
    width: 100px;
    height: 80px;
    display: flex;
    justify-content: space-between;
  }
  
  .box {
    width: 20px;
    height: 20px;
    background-color: #66faf0;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0%, 50%, 100% {
      opacity: 0.3;
    }
   25%, 75% {
        opacity: 1;
      }
    }
  
  
  /* mouse follower */

  /* Outer circle styling */

  html,body{
    height: 100%;
  }
 
  
 
  .outer-circle {
    width: 30px;
    height: 30px;
    background-color: #66faf063;
    /* background-image: linear-gradient(90deg,white,#66faf0,white); */
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, background-color 0.3s; /* Smooth transition */
    z-index: 999;
  }
  
  /* Inner dot styling */
  .inner-dot {
    width: 10px;
    height: 10px;
    background-color: #66faf0;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    z-index: 999;
  }
  
  .message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    color: #ffffff;
    text-shadow:
    1px 1px 0px rgba(0, 0, 0, 0.596),   /* Horizontal, vertical, and blur radius for stroke effect */
    -1px -1px 0px rgba(0, 0, 0, 0.616), 
    1px -1px 0px rgba(0, 0, 0, 0.623), 
    -1px 1px 0px rgba(0, 0, 0, 0.61);  /* Additional shadows for more pronounced stroke */
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  

  .visible {
    opacity: 1;
  }


  @media (max-width: 768px) 
  {

    .outer-circle {
      display: none;
      }
      
      /* Inner dot styling */
      .inner-dot {
        display: none !important;
      }
      
      .message {
        display: none;
      }


  }


  /* technologies section */

  .marquee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.308);
    margin: 70px 0px;
    
  }

  .marquee {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    will-change: transform;
    animation: scroll 30s linear infinite; /* Continuous scrolling */
    cursor: grab;
  }

  .marquee:hover {
    animation-play-state: paused;
  }

  @keyframes scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .icon-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .marquee-icons {
    font-size: 7rem;
    color: #fffefecc;
    user-select: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .marquee-icons:hover {
    transform: scale(1.2);
    color: #66faf0;
  }

  .lang-name {
    font-size: 1.2rem;
    color: #ffffffde;
    font-weight: 600;
    
  }

  @media screen and (max-width: 768px) {
    .marquee-icons {
      font-size: 2.5rem;
    }

    .lang-name {
      font-size: 1rem;
    }
    .marquee-icons:hover {
      transform: scale(1.2);
      color: #66faf0;
    }
  
  }

  @media screen and (max-width: 480px) {
    .marquee {
      gap: 30px;
    }

    .marquee-icons {
      font-size: 2rem;
    }

    .lang-name {
      font-size: 0.9rem;
    }
    .marquee-icons:hover {
      transform: scale(1.2);
      color: #66faf0;
    }
  
  }



/* youtubr video */
.image-container2{
  width: 100%;
  height: 30em;
  display: block;
  padding-bottom: 10px;
}




