    * {margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

    /* HEADER */
    .sec-head{
          text-align: center;
    color: #40a9d6;
    }
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 43px 99px; /* smaller padding so it doesn’t jump */
  z-index: 9999; /* keep always on top */
  transition: background 0.3s ease, color 0.3s ease;
  background: transparent; /* ensure it starts clear */
}

header .logo,
header nav a,
header .hamburger {
  color: #fff;
  transition: color 0.3s ease;
}

/* On scroll */
/*header.sticky {*/
      /*padding: 16px;*/
/*}*/

/*header.sticky .logo,*/
/*header.sticky .hamburger {*/
/*  color: #000000;*/
/*}*/
/*header.sticky nav ul li a {*/
/*    color: #333;*/
/*}*/


html {
    scroll-behavior: smooth;
}

/* 2. Button Design */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #020256;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    padding-top: 18px;
    font-size: 85px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: background-color 0.3s ease, transform 0.3s ease;
        font-family: system-ui;

}

/* 3. Hover Effect */
.back-to-top:hover {
    background-color: #007bff; /* Lighter blue on hover */
    transform: translateY(-5px); /* Slight lift effect */
}

.hero.hero-blog {
    height: 59vh;
}
/* =================================== */
/* ==== RESPONSIVE BANNER IMAGES ==== */
/* =================================== */

/* --- Default Desktop Images --- */
.slide-bg-1 {
    background-image: url('../images/cloudtalk.webp');
}
.slide-bg-2 {
    background-image: url('../images/it.webp');
}
.slide-bg-3 {
    background-image: url('../images/telecommu.webp');
}


/* --- Mobile Images (for screens 768px or smaller) --- */
@media (max-width: 768px) {

    .slide-bg-2 {
        /* Replace with your mobile image path */
        background-image: url('../images/mobile-it.png');
    }
 
}
/* =================================== */
/* ======== DROPDOWN MENU STYLES ======== */
/* =================================== */

/* Add position relative to the parent list item */
nav ul li.dropdown {
  position: relative;
}

/* Style for the dropdown arrow */
.arrow {
  font-size: 0.7em;
  margin-left: 4px;
}

/* The dropdown menu, hidden by default */
.dropdown-menu {
  display: none; /* Hide by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(10, 10, 35, 0.9); /* Dark background for transparent header */
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* Show the dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
  display: block; /* Show on hover */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Styling for the links inside the dropdown */
.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #fff; /* White text for dark background */
  white-space: nowrap; /* Prevent links from wrapping */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
}


    nav ul {display:flex;list-style:none;gap:25px;}
    nav a {color:#fff;text-decoration:none;font-weight:600;}
    .hamburger {display:none;cursor:pointer;font-size:26px;color:#fff;}

    .close-btn {
  display: none; /* Hidden by default */
  position: absolute;
  top: 20px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 1;
}

/* Show the close button only when the nav is active (open) */
nav.active .close-btn {
  display: block;
}
@media(max-width:900px){
      /* Mobile Nav */
      nav ul {display:none;}
      .hamburger{display:block;}
      nav.active ul {
        display:flex;flex-direction:column;position:fixed;top:0;right:0;height:100%;
        width:250px;background:#002162;padding:60px 20px;gap:20px;
      }

      /* Responsive Padding Fixes */
      header, header.sticky {
        padding: 20px;
      }
      .chooseus-section {
        padding: 60px 20px;
        flex-direction: column-reverse;
      }
      .chooseus-content, .chooseus-image {
        max-width: 100%;
      }
      .solutions-section {
        padding: 60px 20px;
      }
      .hero h1 {
        font-size: 42px;
      }
    }
    section::before,
.services::before,
.about-section::before,
.chooseus-section::before {
  z-index: 0;
}
.logo img{
      width: 290px;
}

    
    .hero {
      position:relative;height:100vh;overflow:hidden;
    }
 .slide {
  position:absolute;top:0;left:0;width:100%;height:100%;
  background-size:cover;background-position:center;
  opacity:0;transition:opacity 1s ease, transform 4s ease;
  display:flex;align-items:center;justify-content:center;padding:0 20px;
}
    /* ---- slide background layer for parallax ---- */
.slide { /* keep original .slide rules, but ensure overflow visible so bg can move */
  overflow: visible;
}


/* Defines a more noticeable zoom-in animation */
@keyframes zoomInEffect {
  from {
    transform: scale(1);
  }
  to {
    /* Increased the scale from 1.05 to 1.15 for a bigger zoom */
    transform: scale(1.15);
  }
}

/* Applies the animation to the active slide's background */
.slide.active .slide-bg {
  /* Shortened the duration from 20s to 10s to make it faster */
  animation: zoomInEffect 10s ease-out forwards;
}
/* separate background layer (positioned behind content) */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
      background-attachment: fixed;
  transform: translateY(0px);
  transition: transform 0.03s linear;
  will-change: transform;
  z-index: 0; /* behind hero-content */
}

/* make sure hero-content stays above the bg layer */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
}

/* small safety: keep active slide content visible as before */
.slide.active { opacity: 1; transform: scale(1); }

    .slide.active {opacity:1;transform:scale(1);}
    .hero-content {text-align:center;max-width:1000px;}
    .hero h1 {font-size:62px;font-weight:700;margin-bottom:20px;}
    .hero p {font-size:18px;line-height:28px;margin-bottom:25px;}
    .btn {
    display: inline-flex; 
    align-items: center; /* Vertically centers the icon and text */
    justify-content: center; 
    background: linear-gradient(90deg, #007bff, #00d4ff);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 37px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    }
    .btn img {
    width: 20px; /* Adjust icon size as needed */
    height: auto;
    margin-right: 8px; /* Creates the small space between icon and text */
}

    /* Full black overlay with carved SMARTLINK */
.smartlink-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: black;
  -webkit-text-stroke: 2px transparent;
  background-clip: text;
  -webkit-background-clip: text;
  mix-blend-mode: screen; /* creates cutout effect */
  z-index: 999;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  pointer-events: none;
}
.smartlink-overlay.active {
  opacity: 1;
  transform: scale(1);
}

    
    /* SERVICES */
    .services {position:relative;padding:80px 20px;background:url('https://source.unsplash.com/1600x900/?technology,abstract') center/cover no-repeat;}
    .services::before {content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-image: url(../images/section.png);}
    .services .container {position:relative;z-index:2;max-width:1200px;margin:auto;}
    .services h2 {font-size:47px;font-weight:700;text-align:center;margin-bottom:50px;     color: #020256;}
    .cards {display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;}
    .card {
      background:#fff;color:#000;border-radius:0;border-top-left-radius:40px;border-bottom-right-radius:40px;
      overflow:hidden;box-shadow:0 6px 15px rgba(0,0,0,0.2);transition:transform .3s;
    }
    .card img {width:100%;object-fit:cover;}
    .card-content {padding:37px;}
    .card h3 {margin-bottom:12px;font-weight:700;font-size:20px;}
    .card p {font-size:15px;line-height:24px;margin-bottom:15px;}
    .read-more {display:inline-flex;align-items:center;gap:8px;color:#007bff;font-weight:600;text-decoration:none;transition:transform .3s;}
    .read-more:hover {transform:translateY(-4px);}
    .services {
  position: relative; /* make parent relative */
}
.corner-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  animation: floatJump 2.5s ease-in-out infinite;
  z-index: 1; /* stays above background, below content */
}

.corner-icon img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

/* hanging jump effect */
@keyframes floatJump {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* overlay service icon */
.service-icon {
  position: absolute;
margin-top: -47px;
    margin-left: 4px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
  z-index: 3;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

/* rotate on hover */
.card:hover .service-icon {
  transform: rotate(360deg);
}


/* ABOUT SECTION */
.about-section {
  padding: 100px 20px;
  background-image: url(../images/section.png);
  color: #111;
}
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
}
.about-content {
  text-align: left;
}
.about-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}
.about-description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 25px;
  color: #333;
}
.about-points {
  list-style: none;
  margin-bottom: 30px;
}
.about-points li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #222;
}
.about-points li::before {
  content: "✔";
  color: #ffffff;
  font-weight: 700;
  margin-right: 10px;
      background: #020256;
    border-radius: 50%;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 4px;
    padding-bottom: 1px;
}
.about-btn {
    background: #020256;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
@media(max-width:900px){
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content {text-align:center;}
}

/* Why Choose Us Section */
.chooseus-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(../images/section-blue.png);
  padding: 100px 100px;
  color: #ffffff;
  position: relative;
}

.chooseus-content {
  flex: 1;
  max-width: 50%;
}

.chooseus-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.chooseus-desc {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.chooseus-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.chooseus-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

.chooseus-btn {
  display: inline-block;
  padding: 12px 24px;
    background: #020256;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.chooseus-btn:hover {
  background: #f0f0f0;
}

.chooseus-image {
  flex: 1;
  max-width: 45%;
  position: relative;
}

.chooseus-image img {
  max-width: 100%;
  border-radius: 12px;
}

.chooseus-lines {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.5) 2px,
    transparent 2px,
    transparent 6px
  );
  animation: moveLines 3s linear infinite;
}

@keyframes moveLines {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Solutions Section */

.solutions-card {
  min-width: 280px;
  width: 380px;
  flex: 0 0 auto;
  background: #fff;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding: 0;
  position: relative;
}

/* Card Image */
.solutions-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 40px;
}

/* Icon in middle */
.solution-icon {
  width: 70px;
  position: relative;
  z-index: 1;
  height: 70px;
  margin: -35px auto 15px;
  background: #0073e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.solution-icon img {
  width: 35px;
  height: 35px;
}
.solution-btn{
    margin-top: 60px;
    display: flex
;
    align-content: center;
    justify-content: center;
}
.solutions-card:hover .solution-icon {
  transform: rotate(360deg);
}

/* Content below icon */
.solution-content {
  padding: 20px;
}

.solution-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.solution-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.solutions-section {
  padding: 100px 60px;
      background: #ecedef;
  position: relative;
  overflow-x: hidden; /* Add this line to fix the scroll issue */
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 65px;
}

.solutions-heading {
  font-size: 35px;
  font-weight: 700;
  color: #18005c;
  text-align: center;
}

.solutions-arrows {
  display: flex;
  gap: 10px;
}

.solutions-arrows button {
      background: #18005c;
  color: #fff;
  border: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.solutions-arrows button:hover {
  background: #005bb5;
}

.solutions-carousel {
  overflow: hidden;
  position: relative;
}

.solutions-track {
  display: flex;
  gap: 20px;
  animation: scrollCarousel 20s linear infinite;
}

/* .solutions-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s;
} */

.solutions-card:hover {
  transform: translateY(-8px);
}

/* Continuous Auto Scroll */
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 600px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Left side with image + overlay */
.contact-left {
  flex: 1;
  background: url('your-image.jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
}

.contact-left .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
background-image: url(../images/why-work.webp);
    background-size: cover;
background-repeat: no-repeat;
  z-index: 1;
}

.contact-left .contact-points {
  position: relative;
  z-index: 2;
}

.contact-left ul {
  list-style: none;
  padding: 0;
}

.contact-left li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Right side form */
.contact-right {
  flex: 1;
  background: #fff;
  padding: 40px;
}

.contact-right h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px 15px;
     border: 1px solid #ecedef;
    height: 50px;
  border-radius: 6px;
  font-size: 15px;
}

.contact-right button {
  background: #020256;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-right button:hover {
  background: #003f7a;
}

/* READY TO GET STARTED SECTION */
.ready-started {
      background: #ecedef;
     padding: 28px 20px 131px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ready-bg {
  background: url('../images/get-ready-bg.png') center/cover no-repeat;
  border-radius: 20px;
  text-align: center;
  padding: 100px 40px;
  max-width: 1300px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ready-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for text clarity */
  z-index: 1;
}

.ready-bg h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.cta-btn {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    height: auto;
  }
  .contact-left, .contact-right {
    flex: 1 1 100%;
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 20px;
  text-align: center;
      position: relative;
    z-index: 1;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 25px;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.faq-icon {
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 25px 25px;
}

.faq-answer p {
  font-size: 15px;
  color: #444;
  line-height: 26px;
}

    
/* ====== Footer Section ====== */
.footer-section {
  background: #0a0a23;
  color: #fff;
  padding: 60px 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
    width: 257px;
    margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00aaff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00aaff;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00aaff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}


/* =================================== */
/* ==== CERTIFICATION SECTION ==== */
/* =================================== */

.certification-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Or #f8f9fa for a light grey background */
}

.certification-header {
    text-align: center;
    margin-bottom: 50px;
}

.certification-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2c4e;
    margin-bottom: 15px;
}

.certification-header .underline {
    width: 80px;
    height: 4px;
    background-color: #020256;
    margin: 0 auto;
    border-radius: 2px;
}

.certificate-display {
    display: flex;
    justify-content: center; /* Horizontally centers the image */
    align-items: center; /* Vertically centers the image in the container */
}

.certificate-display img {
    max-width: 100%; /* Ensures the image is responsive */
    height: auto;
    width: 800px; /* Adjust this value to control the max size of your certificate */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}



/* =================================== */
/* ==== TESTIMONIALS & CLIENTS SECTION ==== */
/* =================================== */

.testimonial-section-wrapper {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonial-container, .testimonial-clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Part 1: Testimonials --- */
.testimonial-block {
    margin-bottom: 80px;
}

.testimonial-main-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #020256; /* Blue Color */
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 20px;
}

.testimonial-text-content {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-details {
    text-align: left;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2c4e;
    margin: 0;
}

.testimonial-star-rating {
    color: #ffc107;
    font-size: 1rem;
}

/* --- Part 2: Client Logos --- */
.testimonial-clients-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2c4e;
    text-align: center;
    margin-bottom: 50px;
}

/* --- Client Logo Scroller --- */
.testimonial-logo-scroller {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-logo-track {
    display: flex;
    gap: 60px;
    /* The animation is now controlled by JavaScript */
}

.testimonial-logo-track img {
    height: 200px;
    width: auto;
    flex-shrink: 0;
}

.testimonial-logo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: #020256;
}


/* =================================== */
/* ==== FLOATING CTA SECTION ==== */
/* =================================== */

.floating-cta {
    position: fixed; /* Keeps it on screen during scroll */
        bottom: 100px;
    right: 30px;
    z-index: 1000; /* Ensures it's on top of other content */
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background-color: #020256; /* Your brand's blue color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-icon:hover {
    transform: scale(1.1);
}

.cta-icon img {
    width: 32px;
    height: auto;
}

.cta-text-box {
    background-color: #ffffff;
    color: #333;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-right: 3px;
    font-weight: 600;
    white-space: nowrap;
    /* The styles for hiding and transition have been removed */
}


/* =================================== */
/* ==== AUTO-POPUP WHATSAPP WIDGET ==== */
/* =================================== */

.whatsapp-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 320px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transform: translateX(-120%);
    visibility: hidden;
    transition: transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.whatsapp-popup.is-visible {
    transform: translateX(0);
    visibility: visible;
}
.whatsapp-header {
    background-color: #075E54;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatsapp-header h4 { margin: 0; font-weight: 600; }
.whatsapp-close-btn { background: none; border: none; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; opacity: 0.8; }
.whatsapp-close-btn:hover { opacity: 1; }
.whatsapp-body { background-color: #fff; padding: 20px; }
.whatsapp-body p { color: #333; font-size: 0.9rem; margin: 0 0 15px 0; }
.whatsapp-form textarea { width: 100%; height: 80px; padding: 10px; border: 1px solid #ddd; border-radius: 5px; resize: none; font-family: 'Inter', sans-serif; margin-bottom: 10px; }
.whatsapp-form button { width: 100%; padding: 12px; background-color: #25D366; color: #fff; border: none; border-radius: 5px; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background-color 0.3s ease; }
.whatsapp-form button:hover { background-color: #128C7E; }
.whatsapp-form button img { width: 20px; height: 20px; }

.g-recaptcha {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    margin: 20px auto; /* Adds space and centers the box */
}



/* =================================== */
/* ==== FLOATING WHATSAPP (LEFT) ==== */
/* =================================== */

.whatsapp-float-left {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 25px; /* Positions it on the left side */
    background-color: #25d366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 10000; /* Ensures it stays on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float-left:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.whatsapp-float-left img {
    width: 35px;
    height: 35px;
    vertical-align: middle;
}

/* Optional: Adjust for mobile if needed */
@media (max-width: 768px) {
    .whatsapp-float-left {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float-left img {
        width: 28px;
        height: 28px;
    }
}