* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    color: #333;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h1,
  h2,
  h3 {
    margin-bottom: 20px;
  }

  a {
    text-decoration: none;
    color: inherit;
  }


nav {
    background-color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

.containerl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4CAF50;
}

nav ul li a.btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

nav ul li a.btn:hover {
    background-color: #45a049;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-icon {
    display: inline-block;
    font-size: 0.5rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}


@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        background-color: white;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 0.3s;
        padding-top: 20px;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 20px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown-toggle {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        color: #666;
    }
    .dropdown-icon {
        transition: transform 0.3s;
    }
    .dropdown:hover .dropdown-content {
        display: none; 
    }



    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding: 10px 0;
        background-color: #f9f9f9; 
        border-radius: 25px;
    }

    .dropdown-content.active {
        display: block !important; /* Use !important to override any other display rules */
    }
    
    .dropdown:hover .dropdown-content {
        display: none; /* Disable hover behavior on mobile */
    }
}
 






.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    /* Removed border - will use only the circle stroke */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(104, 104, 248, 0.25);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg.arrow {
    width: 20px;
    height: 20px;
    fill: #6868f8;
    transform: translateY(2px);
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke: #6868f8;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.2s ease;
}

@media (max-width: 767px) {
    .scroll-to-top {
        display: none;
    }
}




.hero {
    background-color: #0a1929;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    margin: 0px 24px 25px 24px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    padding: 20px 0;
}

.slide.active {
    display: block;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
    order: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 450px;

}

/* .slide:nth-child(2) .hero-img {
    max-width: 440px; 
} */

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-dot.active {
    background-color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #0A1628;
    border: none;
}

.btn-primary:hover {
    /* background: rgba(255, 255, 255, 0.9); */
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-0.25rem);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.25rem);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
}



/* Responsive Styles */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content h2 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.875rem;
    }
    .btn {
        font-size: 0.875rem;
        padding: 8px 16px;
      }
      .slide:nth-child(2) .hero-img {
        max-width: 250px; 
    }

}


@media (max-width: 768px) {
    .hero{
        border-radius: 0px;
        margin: 0px;
    }
    .hero-content h1 {
        font-size: 2rem;
        
    }
    .hero-content h2 {
        font-size: 2rem;
        
    }
    .hero p{
        font-size: 1rem;

    }
    .cta-buttons {
        justify-content: center;
        position: relative;
        margin-bottom: 50px;
        gap: 12px;

        /* newly added */
        flex-direction: column;
        align-items: center; /* center them nicely */
        gap: 15px; /* adjust gap between the two buttons */
    }

    .cta-buttons .btn {
        width: 100%; /* optional: make each button full-width on mobile */
        max-width: 300px; /* optional: limit max width */
    }
    
    .btn {
        width: auto; 

        padding: 1.5vh 1.8vh;
        font-size: 14px;
    }
}


@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 42px;
    }
    

}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #0a1929;
        padding: 20px;
        z-index: 100;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-img {
        max-width: 300px;
    }
}







  .trusted-section {
    padding-top: 30px;
    background-color: #ffffff;
    overflow: hidden;
    max-width: 1600px;
    margin: 0px auto;
  }
  
  .trusted-title {
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    /* font size */
    font-size: 48px;
    font-weight: 600;
    color: #2E2E38;
    margin-bottom: 60px;
  }
  
  .logo-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .logo-track {
    display: flex;
    width: fit-content;
    animation: slideLeft 15s linear infinite alternate;
  }
  
  .logo-track:hover {
    animation-play-state: paused;
  }
  
  .logo-slide {
    flex: 0 0 auto;
    min-width: 160px;
    height: 100px;
    margin: 0 23px;
    background: #ffffff;
    border-radius: 8px;
    border:1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
  }
  
  #trustalk {
    max-width: 50%;
    max-height: 60%;
    object-fit: contain;
  }
  
  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-40% + 40px));
    }
  }
  
  /* Tablet Styles */
  @media (max-width: 1024px) {
    .logo-slide {
      min-width: 180px;
      margin: 0 25px;
    }
    .logo-track {
        display: flex;
        width: fit-content;
        animation: tabletleft 15s linear infinite alternate;
      }
  
    @keyframes tabletleft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-60% + 45px));
      }
    }
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .trusted-section {
      padding: 40px 0;
    }
    
    .trusted-title {
      font-size: 22px;
      margin-bottom: 40px;
      padding: 0 20px;
    }
    
    .logo-slide {
      min-width: 150px;
      height: 80px;
      margin: 0 15px;
      padding: 15px;
    }

    .logo-slide img {
        max-width: 155%;
        max-height: 155%;
        object-fit: fill;
      }

    .logo-track {
        display: flex;
        width: fit-content;
        animation: mobileleft 15s linear infinite alternate;
      }
  
    @keyframes mobileleft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-70% + 25px));
      }
    }
  }








.about-section {
    padding: 80px 0px;
    /* padding: 80px 120px; */
    background-color: #ffffff;
    font-family: 'Urbanist', sans-serif;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 0px 40px;
}

.about-content {
    flex: 1;
    max-width: 650px;
    padding-top: 0px;
}

.about-title {
    font-size: 48px;
    font-weight: 600;
    color: #2E2E38;
    line-height: 1.2;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #6B6B7A;
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.map-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
        padding-top: 0px;
    }

    .about-title {
        font-size: 22px;
    }

    .mobile-break {
        display: block;
    }

    .map-wrapper {
        width: 100%;
        margin-top: 20px;
    }

    .map-image {
        max-width: 100%;
    }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .about-section {
        padding: 0px 40px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }
}




.specialization-section {
    padding: 60px 0px;
    margin: 0px;
    font-family: 'Urbanist';
    overflow: hidden;
    position: relative; /* Added to establish stacking context */
    padding-bottom: 0px;

}

.specialization-title {
    line-height: 46.8px;
    color: #343F52;
    font-weight: 600;
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
}

.slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-container {
    overflow: hidden;
    padding: 0 10px;
    position: relative; /* Added for proper stacking */
    z-index: 1; /* Lower than buttons */
}

.card-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-right: 30px; /* Extra padding to ensure last card is visible */
    touch-action: pan-x; /* Improved touch handling */
}

.card {
    flex: 0 0 320px;
    border-radius: 12px;
    padding: 20px;
    min-height: 360px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0rem 0rem 1.25rem rgba(30, 34, 40, 0.04);
    border: 0;
}


.card-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    object-position: center; 
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 22.4px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 18.2px;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(225, 245, 234, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 24px;
    z-index: 100; /* Increased z-index */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Better touch handling */
    user-select: none; /* Prevent text selection */
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 40px; /* Reduced padding for mobile */
    }
    
    .slider-button {
        width: 36px;
        height: 36px;
        font-size: 20px;
        background: rgba(225, 245, 234, 0.95); /* Increased opacity for better visibility */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Added shadow for better visibility */
    }

    /* Increase touch target size */
    .slider-button::before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
    }

    .card {
        flex: 0 0 260px;
        min-height: 340px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        padding: 0 35px; /* Further reduced padding for smaller screens */
    }

    .slider-button {
        /* position: fixed;  */
    }

    .prev-button {
        left: 5px;
    }

    .next-button {
        right: 5px;
    }
}

/* Services */
.services {
    /* padding: 100px 0px;
    background-color: #ffffff; */
    padding: 0px;
    /* margin: 0px 0px; */
    margin-top: 30px;
    margin-bottom: 80px;
     display: flex;
    /* padding: 60px 10%; */
    font-family: 'Urbanist';
    /* background-color: #2FB344; */
  }
  
  .services-container {
    /* max-width: 90%; */
    /* margin: 0 auto; */
    margin-top: 40px;
    /* padding: 0 40px; */
  }
  
  .section-title {
    font-size: 48px;
    line-height: 46.8px;
    color: #343F52;
    margin-bottom: 80px;
    font-weight: 600;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    /* gap: 0px; */
    margin-left: 100px;
  }
  
  .service-item {
    position: relative;
    /* padding: 0; */
    cursor: pointer;
    border-bottom: 1px solid #23C187;
    margin-top: 20px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    /* background-color: #16a085; */
    height: fit-content;
    justify-content: space-between;
    /* align-items: flex-start; */
  }
  
  .service-item:last-child {
    border-bottom: none;
  }
  
  .service-left {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 45%;
  }
  
  .service-item h3 {
    font-size: 28px;
    line-height: 32px;
    color: #2d3748;
    margin: 0;
    font-weight: 700;
  }
  
  .service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #4fd1c5;
    border-radius: 50%;
    color: #4fd1c5;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .service-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .service-description {
    width: 35%;
    height: fit-content;
    font-size: 18px;
    line-height: 22px;
    color: #4a5568;
    font-weight: 400;
    align-content: center;
    /* background-color: #16a085; */
  }
  
  .service-image {
    width: 150px;
    height: 150px;
    opacity: 0;
    align-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease;
  }
  
  .service-image img {
    width: 180%;
    height: 180%;
    object-fit: contain;
     margin-top: -70px;
    /* margin-left: 300pxx;  */
  }
  
  /* Hover Effects */
  .service-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(10px);
  }
  .service-item:hover h3{
    color: #23C187;
  }
  .service-item:hover .service-image {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Responsive Design */
  @media (max-width: 968px) {
    .services {
        /* padding: 100px 0px;
        background-color: #ffffff; */
         /* display: flex; */
        /* padding: 60px 10%; */
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0px;
        padding-bottom: 30px;
        font-family: 'Urbanist';
    }
    .services-container {
        max-width: 100%;
        /* margin: 0 auto; */
        padding-bottom: 0px !important;
        padding-top: 0px !important;
        /* padding: 0 40px; */
        background-color: #fff;
    }

    .section-title {
        margin-bottom: 0px;
    }
      
    .service-item {
      flex-direction: column;
      gap: 30px;

    }
    .service-item .service-arrow{
        opacity: 1;
        transform: scale(1);
    }
    .service-item .service-image {
        opacity: 1;
        transform: scale(1);
    }
    .services-list {
        display: flex;
        flex-direction: column;
        margin-top: 0px;

        margin-left: 20px;
    }
      
  
    .service-left {
      width: 100%;
    }
  
    .service-description {
      width: 80%;
    }
  
    .service-image {
      width: 250px;
      height: 250px;
    }
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        margin: auto;
      }
  }
  
  @media (max-width: 768px) {
    .services {
        /* padding changed to 0 */
      padding: 0px 0;
      padding-bottom: 0px !important;
    }
  
    .services-container {
      padding: 0 20px;
    }
  
    .section-title {
      font-size: 2.2rem;
      margin-bottom: 40px;
    }
  
    .services-list {
      gap: 40px;
    }
  
    .service-item {
      padding-bottom: 40px;
    }
  
    .service-left {
      flex-wrap: wrap;
    }
  }
  
  /* Services */




/* Products */
.products-section {
    display: flex;
    /* padding: 60px 10%; */
    font-family: 'Urbanist';
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 0px;
}


.products-header {
    /* max-width: 350px; */
    /* flex: 1; */
    margin-right: 100px;
    /* background-color: #4fd1c5; */
}

.products-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #222; /* Black */
}

.products-header p {
    font-size: 20px !important;
    color: #555; /* Grey */
}

/* Right section: Product container */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; 
    margin-left: 50px;
}

/* Product card */
.product-item {
    flex: 1;
    width: 80%;
    gap: 0px;
    padding: 25px;
    border-radius: 16px;
    background: #f4f4f4;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.product-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #222; /* Black */
    transition: color 0.3s;
}
.product-image {
    text-align: center;
    margin-top: auto;
}

.product-item p {
    font-size: 17px !important;
    color: #444; /* Grey */
    transition: color 0.3s;
}

.product-item img {
    width: 80%;
    max-width: 300px; /* Ensures it doesn’t get too large */
    border-radius: 12px;
}

/* Hover effect */
.product-item:hover {
    background: #151824; /* Black */
    color: white;
}

.product-item:hover h3,
.product-item:hover p {
    color: white;
}

@media (max-width: 768px) {
    .products-section {
        /* padding: 60px 10%; */
        display: grid;
        margin-top: 60px;
    }
    
    .products-header {
        flex: 0 0 30%;
        margin-right: 40px;
    }
    
    .products-container {
        display: grid;
        margin-left: 0;
        gap: 40px;
    }
    
    .product-item {
        flex-direction: row;
        padding: 30px;
        gap: 40px;
    }
    
    .product-image {
        order: initial;
        flex: 1;
    }
    
    .product-content {
        flex: 1;
    }
    
    .product-image img {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .products-section {
        /* padding: 60px 10%; */

        margin-top: 100px;
    }
}


@media (min-width: 1024px) {
    .products-section {
        /* padding: 60px 10%; */
        display: flex;
    }

    .product-item {
        flex-direction: column-reverse;
        padding: 30px;
        gap: 40px;
    }
    
    .products-header h2 {
        font-size: 40px;
    }
    
    .products-header p {
        font-size: 18px;
    }
    
    .product-content h3 {
        font-size: 24px;
    }
    
    .product-content p {
        font-size: 16px;
    }
}



/* what makes us different */




.difference-section {
    font-family: 'Urbanist';
    display: flex;
    align-items: flex-start;
    margin-top: 100px;
    /* justify-content: space-between; */
    padding: 40px 100px;
    background: white;
    gap: 10%;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 100px;
}

/* Left Content */
.difference-content {
    max-width: 20%;
}

.difference-content h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.difference-content p {
    font-size: 20px;
    color: #6c757d;
}

/* Cards Container */
.difference-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 32px;
    width: 80%; /* Slightly reduced width */
}

/* Individual Card */
.difference-card {
    background: #eef4f8;

    padding-left: 24px;
    padding-right: 10px;
    padding-top: 25px;
    padding-bottom: 20px;
    border-radius: 10px;
    max-width: 450px;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease-in-out;
}



/* Heading with Icon */
.difference-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;  /* Space between heading and paragraph */
}

.difference-heading h3 {
    font-size: 25px;  /* Reduced font size */
    margin: 0;  /* Remove default margins */
    color: #16a085;
}

/* Icons */
.icon {
    font-size: 20px;   /* Slightly smaller icons */
    display: flex;
    align-items: center;
}

.icon img {
    width: 25px; /* Adjust icon size as needed */
    height: auto;
    display: block;
}

/* Card paragraph */
.difference-card p {
    font-size: 18px;  /* Smaller text */
    line-height: 24px;
    padding-top: 10px;
    font-weight: 500;
    margin: 0;
    color: #2d3748;
}

/* Highlighted Card */
.highlight {
    background: #23C187;
    color: white;
    transform: rotate(-3deg); /* Adjust the angle as needed */
    display: inline-block;
}

.highlight h3, 
.highlight p {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .difference-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .difference-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .difference-cards-container {
        width: 100%;
        column-gap: 50px;
       
    }
}

@media (max-width: 768px) {
    .difference-cards-container {
        grid-template-columns: 1fr;
        column-gap: 20px;
        width: 100%;
    }
    .difference-card{
        max-width: 100%;
        min-width: 200px;
    }
}







.faq-section {
    font-family: 'Urbanist', sans-serif;
    display: flex;
    align-items: flex-start;

    padding: 60px 100px;
    background: white;
    max-width: 1600px;
    margin: 0px auto;
}

.faq-container {
    margin: auto;
    display: flex;  
    width: 100%;
    gap: 100px;
}

.faq-header h2 {
    font-size: 39px;
    color: #2e2e38;
}

.faq-header p {
    font-size: 22px;
    line-height: 34px;
    color: #6b6b7a;
    margin-bottom: 20px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #FBFCFF;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #2e2e38;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #2e2e38;
    border-bottom: 2px solid #2e2e38;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -5px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    background: #FBFCFF;
    color: #4a4a57;
}

.faq-item.active .faq-question {
    color: #23C187; 
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 15px 20px;
}


.faq-item.active .faq-icon::after {
    transform: rotate(-135deg);
    margin-top: 5px;
}



@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-header {
        position: static;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-header h2 {
        font-size: 32px;
    }
    
    .faq-header p {
        font-size: 18px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
        flex-direction: column;
        /* display: inline; */
    }
    
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 28px;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
        flex-direction: column;
        /* display: inline; */
    }
    
    .faq-header p {
        font-size: 16px;
    }
}









.testimonial-section {
    padding: 0px 100px;
    padding-top: 80px;
    font-family: 'Urbanist';
    max-width: 1600px;
    margin: 0 auto;
}

.testimonial-header {
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 48px;
    color: #2E2E38;
    font-weight: 600;
    line-height: 1.2;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    align-content: center;
    /* background-color: #16a085; */
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-out;
    user-select: none;
    touch-action: pan-y pinch-zoom;
}

.testimonial-card {
    min-width: calc(23% - 16px);
    max-width: 350px; 
    background: #F8F9FF;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.6;
    color: #6B6B7A;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 48px;
    height: 48px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2E2E38;
    margin: 0 0 4px 0;
}

.author-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2E2E38;
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 14px;
    color: #6B6B7A;
    margin: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2FB344;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 20px;
    }
    
    .testimonial-header h2 {
        font-size: 36px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
}








/* .contact-section {
    padding: 80px 100px;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    margin: 0px;
    align-items: normal;
    gap: 10%;
}

.contact-content {
    max-width: 30%;
    align-content: center;
    align-self: center;
    margin-left: 7%;
}

.contact-title {
    font-size: 48px;
    line-height: 1.2;
    color: #2E2E38;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-description {
    font-size: 20px;
    line-height: 1.5;
    color: #6B6B7A;
}

.contact-form {
    width: 100%;
    max-width: 520px;
    margin-left: 7%;
}

.form-header {
    font-size: 32px;
    font-weight: 600;
    color: #2E2E38;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
    width: 90%;
}

.form-label {
    display: block;
    font-size: 16px;
    color: #2E2E38;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background: #F3F3F3;
    color: #2E2E38;
}

.form-control::placeholder {
    color: #6B6B7A;
}

.form-control:focus {
    outline: none;
    background: #EAEAEA;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.submit-button {
    width: 90%;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
 
    color: white;
    background: #4353FF;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #4353FF;
}

.error-message {
    color: red;
    font-size: 14px;
    display: none;
    margin-top: 5px;
  }

@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        padding: 60px 40px;
    }

    .contact-content,
    .contact-form {
        max-width: 100%;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .contact-form{
        margin-left: 0px;
    }
    .contact-content{
        margin-left: 0px;
    }
    .contact-section {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        font-size: 18px;
    }

    .form-header {
        font-size: 28px;
    }
} */



.contact-section {
    padding: 80px 100px;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    margin: 0px auto;
    align-items: normal;
    gap: 10%;
    max-width: 1600px;
}

.contact-content {
    max-width: 30%;
    align-content: center;
    align-self: center;
    margin-left: 7%;
}

.contact-title {
    font-size: 48px;
    line-height: 1.2;
    color: #2E2E38;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-description {
    font-size: 20px;
    line-height: 1.5;
    color: #6B6B7A;
}

.contact-form {
    width: 100%;
    max-width: 520px;
    margin-left: 7%;
}

.form-header {
    font-size: 32px;
    font-weight: 600;
    color: #2E2E38;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
    width: 90%;
}

.form-error-container {
    margin-bottom: 20px;
    width: 90%;
}

.form-label {
    display: block;
    font-size: 16px;
    color: #2E2E38;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background: #F3F3F3;
    color: #2E2E38;
}

.form-control::placeholder {
    color: #6B6B7A;
}

.form-control:focus {
    outline: none;
    background: #EAEAEA;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.submit-button {
    width: 90%;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    background: #4353FF;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #4353FF;
}

.submit-button:disabled {
    background: #aab0ff;
    cursor: not-allowed;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    display: none;
    margin-top: 5px;
}

#formError {
    color: #ff4444;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 68, 68, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid #ff4444;
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        padding: 60px 40px;
    }
    
    .contact-content,
    .contact-form {
        max-width: 100%;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        margin-left: 0px;
    }
    .contact-content {
        margin-left: 0px;
    }
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 18px;
    }
    
    .form-header {
        font-size: 28px;
    }
}





 /* Case Studies Section */
 .case-studies-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 18px;
    color: #5a6a7a;
    margin-bottom: 40px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.case-study-card:hover .case-study-title{
    color: #4CAF50;
}

.case-study-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.case-study-title {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #2c3e50;
}

.case-study-description {
    font-size: 16px;
    color: #5a6a7a;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 30px;
    }
}
















footer {
    background: #1e2837;
    color: #fff;
    padding: 50px 0;
    font-size: 16px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 26px;
  }
  .footer-content .footer-links a{
    text-decoration: none;
  }
  
  .footer-links ul{
    padding-left: 0px;
  }
  
  .footer-links h3 {
    margin-bottom: 20px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
  }