     .final-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #adc8cd, #f1f1f1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transform: translateY(0);
            animation: final-slideUp 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 2.5s forwards;
        }

        .final-overlay-content {
            text-align: center;
            max-width: 800px;
            padding: 0 2rem;
        }

        .final-overlay h1 {
            font-size: 5.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2a727d, #183039, #57b4c2);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0;
            opacity: 1;
            transform: translateY(0);
            animation: 
                final-textSlideUp 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s forwards;
            position: relative;
            letter-spacing: 3px;
            text-shadow: 0 10px 30px rgba(42, 114, 125, 0.3);
            white-space: nowrap; /* Prevent text wrapping */
            overflow: hidden; /* Hide overflow */
        }

        .final-overlay h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 200px;
            height: 4px;
            background: linear-gradient(90deg, #2a727d, #57b4c2, #2a727d);
            border-radius: 2px;
            animation: final-expandLine 1s ease 1.5s forwards, final-pulseLine 2s ease-in-out infinite 2.5s;
        }

        @keyframes final-slideUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-100%);
            }
        }

        @keyframes final-textSlideUp {
            0% {
                opacity: 1;
                transform: translateY(0);
            }
            70% {
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes final-expandLine {
            0% {
                transform: translateX(-50%) scaleX(0);
            }
            100% {
                transform: translateX(-50%) scaleX(1);
            }
        }

        @keyframes final-pulseLine {
            0%, 100% {
                opacity: 1;
                transform: translateX(-50%) scaleX(1);
            }
            50% {
                opacity: 0.7;
                transform: translateX(-50%) scaleX(1.1);
            }
        }

        /* Hero section styles */
        .final-hero-section {
            width: 100%;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #183039, #2a727d);
            transition: all 1s ease;
            padding-top: 60px;
        }
.final-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f1f1, #f1f1f1) !important;
    clip-path: circle(0% at 100% 100%);
    transition: all 3s ease-in-out;
    z-index: 0;
}


        .final-hero-section.final-white-bg::before {
            clip-path: circle(150% at 100% 100%);
        }

        .final-hero-content {
            flex: 1;
            max-width: 50%;
            padding: 0 5vw;
            z-index: 10;
        }

        .final-hero-short-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 1s ease 0.5s;
            opacity: 0;
            transform: translateX(-30px);
            animation: final-slideInLeft 1s ease 3.8s forwards, final-textGlowSmall 3s ease-in-out infinite 4.5s;
        }

        .final-white-bg .final-hero-short-text {
            color: #333;
        }

        .final-hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem); 
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            color: white;
            transition: color 1s ease 0.5s;
            opacity: 0;
            transform: translateY(30px);
            animation: final-fadeInUp 1s ease 4s forwards, final-textPulse 4s ease-in-out infinite 4.5s;
        }

        .final-white-bg .final-hero-title {
            color: #333;
        }

        .final-hero-title .final-gradient-text {
            white-space: nowrap; 
            display: inline-block;
            text-align: center;
        }

        .final-lottie-animation,
        .final-globe-container,
        .final-grid-background,
        .final-abstract-shapes {
            z-index: 1; 
            position: relative;
        }

        .final-gradient-text {
            background: linear-gradient(135deg, #ffffff, #e6e6e6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .final-white-bg .final-gradient-text {
            background: linear-gradient(135deg, #2a727d, #57b4c2);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .final-typewriter-container {
            height: 70px;
            margin-bottom: 2rem;
            position: relative;
            opacity: 0;
            animation: final-fadeIn 1s ease 4.2s forwards;
        }

        .final-typewriter-text {
            font-size: clamp(1.6rem, 4vw, 2.6rem);
            font-weight: 700;
            color: white;
            transition: color 1s ease 0.5s;
            animation: final-textGlowSmall 3s ease-in-out infinite 4.5s;
        }

        .final-white-bg .final-typewriter-text {
            color: #333;
        }

        .final-cursor {
            display: inline-block;
            width: 4px;
            background-color: #ff6b6b;
            margin-left: 5px;
            animation: final-blink 1s infinite;
        }

        @keyframes final-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        @keyframes final-textGlowSmall {
            0%, 100% {
                text-shadow: 0 5px 15px rgba(42, 114, 125, 0.3);
            }
            50% {
                text-shadow: 0 8px 20px rgba(42, 114, 125, 0.5);
            }
        }

        @keyframes final-slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes final-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes final-fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes final-textPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.03);
            }
        }

        .final-hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            opacity: 0.8;
            max-width: 90%;
            transition: color 1s ease 0.5s;
            opacity: 0;
            transform: translateY(20px);
            animation: final-fadeInUp 1s ease 4.4s forwards, final-textPulseSmall 4s ease-in-out infinite 4.8s;
        }

        .final-white-bg .final-hero-description {
            color: #333;
        }

        @keyframes final-textPulseSmall {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-2px) scale(1.01);
            }
        }

        .final-button-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: final-fadeIn 1s ease 4.6s forwards;
        }

        .final-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 14px 36px;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            z-index: 2;
            text-decoration: none;
            animation: final-buttonPulse 3s ease-in-out infinite 5s;
        }

        @keyframes final-buttonPulse {
            0%, 100% {
                transform: translateY(0);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            50% {
                transform: translateY(-3px);
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            }
        }

        .final-white-bg .final-cta-button {
            background: linear-gradient(135deg, #2a727d, #57b4c2);
            color: white;
            border: none;
            box-shadow: 0 10px 20px rgba(42, 114, 125, 0.2);
        }

        .final-cta-button.final-secondary {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .final-white-bg .final-cta-button.final-secondary {
            background: transparent;
            border: 1px solid #2a727d;
            color: #2a727d;
        }

        .final-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .final-cta-button:hover::before {
            left: 100%;
        }

        .final-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, rgba(241, 241, 241, 0.3), rgba(230, 230, 230, 0.2));
            animation: none;
        }

        .final-white-bg .final-cta-button:hover {
            box-shadow: 0 15px 30px rgba(42, 114, 125, 0.3);
            background: linear-gradient(135deg, #1d5a65, #4695a0);
        }

        .final-white-bg .final-cta-button.final-secondary:hover {
            background: #2a727d;
            color: white;
            box-shadow: 0 15px 30px rgba(42, 114, 125, 0.3);
        }

   
        .final-globe-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 80vh;
            max-width: 50%;
            z-index: 1;
            overflow: hidden;
        }

        .final-lottie-animation {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: final-fadeIn 1.5s ease 4s forwards, final-floatAnimation 6s ease-in-out infinite 4.5s;
        }

        @keyframes final-floatAnimation {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .final-lottie-animation dotlottie-wc {
            width: 550px;
            height: 550px;
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
        }

        .final-grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            z-index: -1;
        }

        .final-white-bg .final-grid-background {
            background-image: 
                linear-gradient(rgba(42, 114, 125, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(42, 114, 125, 0.03) 1px, transparent 1px);
        }

        /* Mouse Effect */
        .final-mouse-effect {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .final-color-overlay {
            position: absolute;
            width: 0;
            height: 0;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.8s ease, height 0.8s ease;
        }

        .final-color-overlay.final-blue {
            background: radial-gradient(circle, rgba(42, 114, 125, 0.1) 0%, rgba(42, 114, 125, 0) 70%);
        }

        .final-color-overlay.final-white {
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        }

        .final-abstract-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            transition: opacity 2s ease;
        }

        .final-white-bg .final-abstract-shapes {
            opacity: 0.4;
        }

        .final-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a727d, #57b4c2);
            opacity: 0.1;
            animation: final-float 8s ease-in-out infinite;
        }

        .final-shape-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .final-shape-2 {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 80%;
            animation-delay: 2s;
        }

        .final-shape-3 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 85%;
            animation-delay: 4s;
        }

        .final-shape-4 {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 15%;
            animation-delay: 1s;
        }

        .final-shape-5 {
            width: 90px;
            height: 90px;
            top: 60%;
            left: 5%;
            animation-delay: 3s;
        }

        @keyframes final-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */

        @media (max-width: 1200px) {
            .final-hero-section {
                min-height: 75vh;
            }
            
            .final-globe-container {
                height: 75vh;
            }
            
            .final-hero-title {
                font-size: 2.5rem;
            }
            
            .final-typewriter-text {
                font-size: 2.2rem;
            }
            
            .final-lottie-animation dotlottie-wc {
                width: 480px;
                height: 480px;
            }

            .final-overlay h1 {
                font-size: 4.5rem;
            }
        }

        @media (max-width: 992px) {
            .final-hero-section {
                flex-direction: column;
                text-align: center;
                height: auto;
                min-height: auto;
                padding-top: 80px;
                padding-bottom: 40px;
            }
            
            .final-hero-content {
                max-width: 100%;
                padding: 0 2rem;
                margin-bottom: 30px;
            }
            
            .final-globe-container {
                max-width: 100%;
                height: 45vh;
                min-height: 350px;
                margin-top: 0;
                padding: 0 30px;
                width: 100%;
            }
            
            .final-hero-description {
                max-width: 100%;
            }
            
            .final-button-group {
                justify-content: center;
            }
            
            .final-lottie-animation dotlottie-wc {
                width: 380px;
                height: 380px;
            }

            .final-overlay h1 {
                font-size: 3.8rem;
            }
        }

        @media (max-width: 768px) {
            .final-hero-section {
                padding-top: 70px;
                padding-bottom: 30px;
            }
            
            .final-hero-title {
                font-size: 2rem;
            }
            
            .final-typewriter-text {
                font-size: 1.6rem;
            }
            
            .final-globe-container {
                padding: 0 25px;
                height: 35vh;
                min-height: 280px;
            }
            
            .final-lottie-animation dotlottie-wc {
                width: 320px;
                height: 320px;
            }
            
            .final-hero-content {
                padding: 0 1.5rem;
            }

            .final-overlay h1 {
                font-size: 3rem;
                white-space: normal; /* Allow wrapping on smaller screens */
            }
        }

        @media (max-width: 576px) {
            .final-hero-section {
                padding-top: 60px;
                padding-bottom: 20px;
                min-height: auto;
            }
            
            .final-hero-content {
                padding: 0 1rem;
            }
            
            .final-hero-title {
                font-size: 1.8rem;
            }
            
            .final-typewriter-text {
                font-size: 1.4rem;
            }
            
            .final-typewriter-container {
                height: 50px;
            }
            
            .final-globe-container {
                padding: 0 20px;
                height: 30vh;
                min-height: 220px;
            }
            
            .final-lottie-animation dotlottie-wc {
                width: 280px;
                height: 280px;
            }
            
            .final-cta-button {
                padding: 12px 28px;
                font-size: 0.9rem;
            }
            
            .final-button-group {
                flex-direction: column;
                align-items: center;
            }
            
            .final-hero-description {
                font-size: 1rem;
            }

            .final-overlay h1 {
                font-size: 2.2rem;
                white-space: normal; /* Allow wrapping on smaller screens */
            }
        }

        @media (max-width: 400px) {
            .final-hero-section {
                padding-top: 50px;
                padding-bottom: 20px;
            }
            
            .final-hero-title {
                font-size: 1.6rem;
            }
            
            .final-typewriter-text {
                font-size: 1.2rem;
            }
            
            .final-typewriter-container {
                height: 40px;
            }
            
            .final-globe-container {
                padding: 0 15px;
                height: 25vh;
                min-height: 180px;
            }
            
            .final-lottie-animation dotlottie-wc {
                width: 220px;
                height: 220px;
            }
            
            .final-cta-button {
                padding: 10px 24px;
                font-size: 0.85rem;
            }
            
            .final-hero-short-text {
                font-size: 0.9rem;
            }

            .final-overlay h1 {
                font-size: 1.8rem;
                white-space: normal; /* Allow wrapping on smaller screens */
            }
        }
        
        /*css of hero section */


   .my-keyword-section {
      width: 100%;
      overflow: hidden;
      background: linear-gradient(90deg, #183039, #2a727d);
      padding: 15px 0;
      position: relative;
      margin-top: 20px;
    }

    .my-keyword-scroll-container {
      display: flex;
      width: max-content;
      animation: my-scrollRightToLeft 40s linear infinite;
      align-items: center;
      flex-wrap: nowrap;
    }

    .my-keyword-item {
      font-family: "Inter", sans-serif;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.06em;
      padding: 0 20px;
      opacity: 0.85;
      white-space: nowrap;
    }

    .my-keyword-item.my-uppercase {
      text-transform: uppercase;
      color: #e6e6e6;
      font-weight: bold;
    }

    .my-keyword-item.my-separator {
      color: #e6e6e6;
      opacity: 0.5;
    }

    .my-keyword-item.my-word {
      color: #8b9ca0;
      text-transform: capitalize;
    }

    .my-keyword-item.my-word .my-initial {
      color: #ffffff;
      font-weight: bold;
    }

    .my-keyword-item::after {
      content: "•";
      margin-left: 20px;
      opacity: 0.4;
      color: #e6e6e6;
    }

    @keyframes my-scrollRightToLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .my-keyword-scroll-container:hover {
      animation-play-state: paused;
    }

    @media (max-width: 1024px) {
      .my-keyword-item {
        font-size: 14px;
        padding: 0 15px;
      }
    }

    @media (max-width: 768px) {
      .my-keyword-item {
        font-size: 13px;
        padding: 0 12px;
      }
    }

    @media (max-width: 480px) {
      .my-keyword-item {
        font-size: 12px;
        padding: 0 10px;
      }
    }

    /* Partners Section */
    .my-partners-section-scroll {
      max-width: 2000px;
      width: 100%;
      padding: 60px 20px;
      overflow: hidden;
      position: relative;
    }

    .my-section-header-scroll {
      display: flex;
      align-items: center;
      margin-bottom: 50px;
    }

    .my-section-title-scroll {
      font-weight: 600;
      font-size: 2rem;
      color: #183039;
      letter-spacing: -0.5px;
      white-space: nowrap;
      margin-right: 60px;
      font-family: 'Poppins', sans-serif;
    }

    .my-partners-container-scroll {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .my-partners-track-scroll {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 60px;
      animation: my-scrollLeftToRight 30s linear infinite;
      width: max-content;
    }

    .my-partner-item-scroll {
      display: flex;
      align-items: center;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .my-partner-logo-scroll {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      overflow: hidden;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .my-partner-logo-scroll img {
      width: 60%;
      height: 60%;
      object-fit: contain;
    }

    .my-partner-name-scroll {
      margin-left: 20px;
      font-weight: 500;
      font-size: 1.1rem;
      color: #8b9ca0;
      transition: color 0.3s ease;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
    }

    .my-partner-item-scroll:hover .my-partner-logo-scroll {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    .my-partner-item-scroll:hover .my-partner-name-scroll {
      color: #183039;
    }

    .my-partner-logo-scroll:hover, .my-partner-name-scroll:hover {
      cursor: pointer;
    }

    @keyframes my-scrollLeftToRight {
      0% {
        transform: translateX(calc(-100% / 2));
      }
      100% {
        transform: translateX(0);
      }
    }

    .my-partners-track-scroll:hover {
      animation-play-state: paused;
    }

    @media (max-width: 768px) {
      .my-section-header-scroll {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
      }

      .my-section-title-scroll {
        margin-right: 0;
        margin-bottom: 20px;
      }

      .my-partners-track-scroll {
        gap: 40px;
      }

      .my-partner-item-scroll {
        flex-direction: column;
        text-align: center;
      }

      .my-partner-name-scroll {
        margin-left: 0;
        margin-top: 15px;
      }
    }



.section-heading-main {
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  z-index: 20;
}

.section-heading-main::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2a727d, #183039);
  border-radius: 2px;
}

.section-heading-main .first-word {
  color: #2a727d;
}

.section-heading-main .second-word {
  color: #183039;
}

.section-description {
  color: #8b9ca0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ===========================
   AS SERVICES SECTION
   =========================== */

.as-services-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 45px;
  padding: 40px 20px;
  justify-content: center;
  justify-items: center;
}

/* ✅ center the last row if only 2 cards */
.as-service-card:nth-last-child(2):first-child,
.as-service-card:nth-last-child(2):nth-child(7),
.as-service-card:nth-last-child(1):nth-child(8) {
  grid-column: span 1;
}
.as-service-card:nth-child(7),
.as-service-card:nth-child(8) {
  justify-self: center;
}

.as-service-card {
  background: #e6e6e6;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  color: #2a727d;
  height: 380px;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: visible;
}

.as-service-card:hover {
  transform: translateY(-5px);
}

.as-service-card.as-highlight {
  background: #2a727d;
  color: white;
}

/* ---- ICON ---- */
.as-service-card i.as-main-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #2a727d;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.as-service-card.as-highlight i.as-main-icon {
  color: white;
}

.as-service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.as-service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a727d;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease 0.1s;
  margin: 0;
  position: relative;
  z-index: 2;
}

.as-service-card.as-highlight p {
  color: #e0e0e0;
}

.as-read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #2a727d;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease 0.2s;
  position: relative;
  z-index: 2;
}

.as-service-card.as-highlight .as-read-more {
  color: white;
}

.as-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #2a727d;
  clip-path: circle(0% at 100% 100%);
  transition: all 0.6s ease;
  z-index: 1;
  border-radius: 10px;
}

.as-service-card.as-highlight::before {
  background: #e6e6e6;
}

.as-service-card:hover::before {
  clip-path: circle(150% at 100% 100%);
}

.as-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.as-service-card:hover p {
  opacity: 1;
  max-height: 80px;
}

.as-service-card:hover .as-read-more {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.as-service-card:hover i.as-main-icon {
  transform: scale(1.1) rotate(10deg);
}

.as-service-card:hover h3 {
  transform: translateY(-5px);
}

/* ---- COLOR LOGIC ---- */
.as-service-card:not(.as-highlight):hover,
.as-service-card:not(.as-highlight):hover i.as-main-icon,
.as-service-card:not(.as-highlight):hover p {
  color: white;
}

.as-service-card.as-highlight:hover,
.as-service-card.as-highlight:hover i.as-main-icon,
.as-service-card.as-highlight:hover p,
.as-service-card.as-highlight:hover .as-read-more {
  color: #2a727d;
}

/* ---- ARROW BADGE ---- */
.as-arrow-badge {
  width: 75px;
  height: 75px;
  background: #e6e6e6;
  border-radius: 50%;
  position: absolute;
  bottom: -15px;
  right: -15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 12px solid #ffffff;
  z-index: 4;
  transition: all 0.4s ease;
}

.as-service-card:hover .as-arrow-badge {
  background: #2a727d;
}

.as-service-card.as-highlight:hover .as-arrow-badge {
  background: #e6e6e6;
}

.as-arrow-badge i {
  color: #2a727d;
  font-size: 14px;
  transition: all 0.4s ease;
}

.as-service-card:hover .as-arrow-badge i {
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.as-service-card.as-highlight:hover .as-arrow-badge i {
  color: #2a727d;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1200px) {
  .as-services-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .as-services-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
  }
  .as-service-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .as-services-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }

  .as-service-card {
    width: 90%;
    height: 300px; /* reduced height */
    padding: 25px;
    margin: 0 auto;
  }

  .as-service-card p,
  .as-read-more {
    opacity: 1;
    max-height: 120px;
    transform: none;
  }
}

@media (max-width: 576px) {
  .as-services-container {
    gap: 25px;
  }

  .as-service-card {
    padding: 20px;
    width: 95%;
    height: 280px; /* smaller height */
  }

  .as-service-card h3 {
    font-size: 18px;
  }

  .as-service-card p {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .as-service-card {
    padding: 18px;
    width: 100%;
    height: 260px; /* smallest height */
  }

  .as-service-card h3 {
    font-size: 17px;
  }

  .as-service-card p {
    font-size: 12.5px;
  }

  .as-arrow-badge {
    width: 65px;
    height: 65px;
    border: 10px solid #fff;
  }
}


.why-choose-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 90px;
}

.banners-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  gap: 30px;
}

/* Base Banner Styling */
.banner {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  cursor: pointer;
}

.banner-left,
.banner-right {
  min-height: 360px;
  margin-top: 50px;
}

.banner-center {
  min-height: 480px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: background 0.4s ease;
}

.banner:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

.banner-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.banner-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: #2a727d;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.banner-center .banner-icon {
  color: #fff !important;
}

.banner:hover .banner-icon {
  transform: scale(1.1) rotate(5deg);
  color: #ffff;
  text-shadow: 0 0 15px rgba(42, 114, 125, 0.5);
}

.banner-center:hover .banner-icon {
  color: #fff !important;
  text-shadow: none !important;
}

.banner-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.banner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.banner:hover .banner-description {
  opacity: 1;
  transform: translateY(0);
  height: auto;
}

.banner:hover .banner-title,
.banner:hover .banner-icon {
  transform: translateY(-15px);
}

.progress-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  position: relative;
}

.progress-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.progress-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.progress-fill {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #2a727d;
  clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0);
  transform: rotate(0deg);
  transform-origin: center;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(0 0 8px rgba(42, 114, 125, 0.7));
  transition: transform 1.8s cubic-bezier(0.85, 0, 0.35, 1);
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.banner:hover .progress-text {
  color: #ffff;
  text-shadow: 0 0 10px rgba(42, 114, 125, 0.5);
}

/* Background Images */
.banner-left {
  background-image: url("/assets/images/choose2.jpg");
}

.banner-center {
  background-image: url("/assets/images/choose1.jpg");
}

.banner-right {
  background-image: url("/assets/images/choose2.jpg");
}

/* Mobile Responsive Fixes */
@media (max-width: 992px) {
  .banners-container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .banner-left,
  .banner-center,
  .banner-right {
    min-height: 350px;
  }

  /* Show description by default on mobile */
  .banner-description {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 15px;
  }

  /* Adjust spacing for mobile */
  .banner-title {
    margin-bottom: 15px;
  }

  .banner-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .section-title h1 {
    font-size: 2rem;
  }

  .banner-title {
    font-size: 1.6rem;
  }

  .banner-icon {
    font-size: 3rem;
  }

  .progress-container {
    width: 120px;
    height: 120px;
  }

  .banner {
    padding: 30px 20px;
  }

  .banner-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


@media (hover: none) {
  
  .banner:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .banner:hover::before {
    background: rgba(0, 0, 0, 0.2);
  }

  .banner:hover .banner-title,
  .banner:hover .banner-icon {
    transform: translateY(0);
  }

  .banner:hover .banner-icon {
    transform: none;
    color: #2a727d;
    text-shadow: none;
  }

  .banner-center:hover .banner-icon {
    color: #fff !important;
  }

  .banner:hover .progress-text {
    color: #fff;
    text-shadow: none;
  }

 
  .banner.active {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .banner.active::before {
    background: rgba(0, 0, 0, 0.5);
  }

  .banner.active .banner-title,
  .banner.active .banner-icon {
    transform: translateY(-15px);
  }

  .banner.active .banner-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ffff;
    text-shadow: 0 0 15px rgba(42, 114, 125, 0.5);
  }

  .banner-center.active .banner-icon {
    color: #fff !important;
    text-shadow: none !important;
  }

  .banner.active .progress-text {
    color: #ffff;
    text-shadow: 0 0 10px rgba(42, 114, 125, 0.5);
  }
}

/* Why choose us section css ends here */

   .about-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        min-height: 100vh;
        margin-top: -40px;
    }

    .about-container {
        display: flex;
        max-width: 1200px;
        width: 100%;
        gap: 4rem;
        align-items: center;
        justify-content: center;
    }

    .text-card {
        flex: 1;
        background: #f1f1f1;
        border-radius: 24px;
        padding: 3.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 2;
    }

    .text-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .text-card h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #2a727d, #183039);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .text-card p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #4a5568;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }

    .learn-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 2rem;
        background: linear-gradient(135deg, #2a727d, #183039);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(42, 114, 125, 0.2);
        margin-top: 0.5rem;
        text-decoration: none;
    }

    .learn-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(42, 114, 125, 0.3);
    }

    .learn-more-btn:active {
        transform: translateY(0);
    }

    .learn-more-btn i {
        transition: transform 0.3s ease;
    }

    .learn-more-btn:hover i {
        transform: translateX(4px);
    }

    .image-section {
        flex: 1;
        position: relative;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .abstract-shape {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        background: linear-gradient(135deg, #2a727d, #183039);
        opacity: 0.1;
        z-index: 1;
        animation: morph 20s ease-in-out infinite;
    }

    .image-container {
        position: relative;
        width: 80%;
        height: 80%;
        border-radius: 90px 0 90px 0;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .image-container:hover img {
        transform: scale(1.03);
    }

    .glow {
        position: absolute;
        width: 120%;
        height: 120%;
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        background: linear-gradient(135deg, rgba(42, 114, 125, 0.15), rgba(24, 48, 57, 0.1));
        filter: blur(30px);
        z-index: 0;
        animation: morph 20s ease-in-out infinite reverse;
    }

    @keyframes morph {
        0% {
            border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        }
        25% {
            border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        }
        50% {
            border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        }
        75% {
            border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        }
        100% {
            border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        }
    }

    /* Responsive design for tablets */
    @media (max-width: 1024px) {
        .about-container {
            gap: 3rem;
        }
        
        .text-card {
            padding: 2.5rem;
        }
        
        .text-card h2 {
            font-size: 2.2rem;
        }
        
        .image-section {
            height: 450px;
        }
    }

    @media (max-width: 900px) {
        .about-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .text-card, .image-section {
            width: 100%;
        }
        
        .image-section {
            height: 400px;
        }
        
        .text-card h2 {
            font-size: 2rem;
        }
    }

    /* Responsive design for mobile devices */
    @media (max-width: 768px) {
        .about-section {
            padding: 1.5rem;
        }
        
        .text-card {
            padding: 2rem;
            border-radius: 20px;
        }
        
        .text-card h2 {
            font-size: 1.8rem;
        }
        
        .text-card p {
            font-size: 1rem;
        }
        
        .image-section {
            height: 350px;
        }
        
        .image-container {
            width: 90%;
            height: 90%;
            border-radius: 70px 0 70px 0;
        }
    }

    /* Responsive design for small mobile devices */
    @media (max-width: 480px) {
        .about-section {
            padding: 1rem;
        }
        
        .text-card {
            padding: 1.5rem;
            border-radius: 16px;
        }
        
        .text-card h2 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }
        
        .text-card p {
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .learn-more-btn {
            padding: 0.8rem 1.5rem;
            font-size: 0.95rem;
        }
        
        .image-section {
            height: 300px;
        }
        
        .image-container {
            width: 95%;
            height: 95%;
            border-radius: 50px 0 50px 0;
        }
    }

    @media (max-width: 360px) {
        .text-card {
            padding: 1.25rem;
        }
        
        .text-card h2 {
            font-size: 1.4rem;
        }
        
        .text-card p {
            font-size: 0.9rem;
        }
        
        .image-section {
            height: 250px;
        }
    }

    /* About Section css ends here */

    
        .recent-projects {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #183039;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Categories Gallery */
        .categories-container {
            position: relative;
            margin-bottom: 40px;
            width: 100%;
        }

        .categories-scroll {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            padding: 20px 0;
            gap: 20px;
            scrollbar-width: none; /* Firefox */
            width: 100%;
        }

        .categories-scroll::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Edge */
        }

        .category-card {
            flex: 0 0 auto;
            width: 280px;
            scroll-snap-align: start;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-image {
            width: 100%;
            height: 180px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-image {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 15px rgba(42, 114, 125, 0.3);
            border-color: #2a727d;
        }

        .category-title {
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            color: #183039;
            font-size: 1.1rem;
        }

        /* Navigation Arrows */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }

        .scroll-btn:hover {
            background: #f5f5f5;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .scroll-btn.show {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-btn.prev {
            left: -25px;
        }

        .scroll-btn.next {
            right: -25px;
        }

        .scroll-btn svg {
            width: 24px;
            height: 24px;
            fill: #183039;
        }

        /* Custom heading styles */
        .section-heading-main {
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: -100px;
        }

        .first-word {
            color: #183039;
        }

        .second-word {
            color: #2a727d;
        }

        .section-description {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .scroll-btn {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .section-title {
                font-size: 2rem;
            }
            
            .category-card {
                width: 220px;
            }

            .section-heading-main {
                font-size: 2rem;
            }
        }

/* the recent section css ends here */


.ayrasol {
    display: block;
    margin: 0 auto;        
    width: 100%;
    max-width: 1200px;
    min-height: 360px; 
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

/* Background styling */
.ayrasol-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/promotion-banner.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 0.4s ease;
}

.ayrasol-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Optional overlay for better text visibility */
    /* background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1)); */
    z-index: 2;
}

/* Content layout */
.ayrasol-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    padding: 60px;
    text-align: right;
}

/* Heading styles */
.ayrasol-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 550px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation-delay: 0.2s;
}

/* Highlight effect */
.highlight {
    color: #e6e6e6;
    display: inline-block;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2a727d, transparent);
    border-radius: 2px;
}

/* Button styles */
.ayrasol-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2a727d;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 114, 125, 0.3);
    animation-delay: 0.6s;
}

.ayrasol-button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.ayrasol-button:hover {
    background-color: #fff;
    color: #2a727d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 114, 125, 0.4);
}

.ayrasol-button:hover span {
    transform: translateX(4px);
}

/* Animation for content elements */
.ayrasol-content > * {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .ayrasol {
        min-height: 550px; 
    }

    .ayrasol-heading {
        font-size: 1.8rem;
    }

    .ayrasol-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .ayrasol {
        min-height: 600px; 
    }

    .ayrasol-background {
        background-image: url('/assets/images/mobile-promotion-banner.svg');
        background-position: center;
    }

    .ayrasol-content {
        align-items: center;
        text-align: center;
        justify-content: flex-end;
        padding-bottom: 80px;
    }

    .ayrasol-heading {
        font-size: 1.6rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .ayrasol {
        min-height: 650px; 
        border-radius: 12px;
    }

    .ayrasol-heading {
        font-size: 1.4rem;
    }

    .ayrasol-content {
        padding: 30px 20px 80px; 
    }

    .ayrasol-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* css of banner ends here */



.timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
          overflow: hidden;
          
        }
      

        .timeline-line {
            position: relative;
            height: 4px;
            background-color: #e0e0e0;
            margin: 60px 0 100px;
            border-radius: 2px;
        }

        .timeline-dots {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: -10px;
            left: 20px;
            right: 20px;
        }

        .timeline-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background-color: #fff;
            /* border: 4px solid #e0e0e0; */
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
            z-index: 2;
        }

        .timeline-dot.active {
            transform: scale(1.1);
        }

        .timeline-dot.orange {
  border-color: #e6e6e6;
  background-color: #2a727d;
}

.timeline-dot.blue {
  border-color: #e6e6e6;
  background-color: rgb(111, 150, 157);
}

.timeline-dot.yellow {
  border-color: #e6e6e6;
  background-color: #045e6c;
}

.timeline-dot.green {
  border-color: #e6e6e6;
  background-color: #0f8ea1;
}

.timeline-dot.purple {
  border-color: #8b9ca0;
  background-color: #09729f7c;
}

        .timeline-cards-container {
            position: relative;
            overflow: visible; 
            margin-bottom: 40px;
        }

        .timeline-cards {
            display: flex;
            transition: transform 0.5s ease;
        }

        .timeline-card {
            flex: 0 0 calc(33.333% - 20px);
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin: 0 10px;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .timeline-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .timeline-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }

        .timeline-card p {
            font-size: 15px;
            color: #666;
            margin-bottom: 25px;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #666;
        }

        .client-details h4 {
            font-size: 16px;
            margin-bottom: 5px;
            text-align: left;
        }

        .client-details p {
            font-size: 14px;
            color: #888;
            margin: 0;
            text-align: left;
        }

        .card-icon-bottom {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
          
        }

        .card-icon-bottom.orange { background-color: #2a727d; }
        .card-icon-bottom.blue { background-color: #183039; }
        .card-icon-bottom.yellow { background-color:#2a727d; }
        .card-icon-bottom.green { background-color: #8b9ca0; }
        .card-icon-bottom.purple { background-color: #082d3b; }

        .timeline-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-btn {
            background-color: #2a727d;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-btn:hover {
            background-color: #1f5a63;
        }

        .nav-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .timeline-card {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .timeline-card {
                flex: 0 0 calc(100% - 20px);
            }
            
            .timeline-dots {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            
            .timeline-line {
                margin-top: 100px;
            }
            
           
        }
/* Testimonials css ends here */


/* faq section css starts here */


.faq-section {
  max-width: 1200px;
  width: 100%;
  padding: 3rem 2rem;
  margin: 0 auto;
  text-align: center;
  overflow-x: hidden;
}


.faq-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center; 
  gap: 1.2rem; /* smaller gap between left, center & right */
}

.questions-left,
.questions-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.questions-left {
  align-items: flex-end; 
}

.questions-right {
  align-items: flex-start;
}

.central-image {
  flex: 0 0 250px; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}

.central-image svg {
  width: 400px;
  height: 400px;
  filter: drop-shadow(0 10px 25px rgba(42, 114, 125, 0.3));
  animation: float 4s ease-in-out infinite;
}

/* Float animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* ✅ FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 480px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(42, 114, 125, 0.1);
  color: #333333;
  position: relative;
  margin: 0 auto;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 18px;
  background: linear-gradient(45deg, #2a727d, #183039, #e6e6e6, #183039, #2a727d);
  background-size: 400% 400%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
  animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.question-header {
  display: flex;
  align-items: center;
}

.question-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a727d 0%, #183039 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(42, 114, 125, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(42, 114, 125, 0.5);
}

.faq-item:hover .question-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(42, 114, 125, 0.4);
}

.faq-item.active .question-number {
  background: linear-gradient(135deg, #2a727d 0%, #e6e6e6 50%, #183039 100%);
  color: #183039;
  font-weight: 800;
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.question-text {
  font-weight: 500;
  font-size: 1.1rem;
  color: #183039;
}

.faq-answer {
  color: #555555;
  font-size: 0.95rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 114, 125, 0.2);
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.faq-list {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */


@media (max-width: 1200px) {
  .faq-section {
    padding: 2.5rem 1.5rem;
  }
  .central-image svg {
    width: 350px;
    height: 350px;
  }
}


@media (max-width: 992px) {
  .faq-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .questions-left,
  .questions-right {
    width: 100%;
    align-items: center;
  }
  .central-image {
    order: -1;
    margin-bottom: 2rem;
    flex: 0 0 auto;
  }
  .central-image svg {
    width: 320px;
    height: 320px;
  }
}


@media (max-width: 768px) {
  .faq-layout {
    display: none;
  }
  .faq-list {
    display: flex;
  }
  .faq-section {
    padding: 2rem 1rem;
  }
  .central-image svg {
    width: 280px;
    height: 280px;
  }
  .faq-item {
    max-width: 100%;
  }
}


@media (max-width: 576px) {
  .central-image svg {
    width: 220px;
    height: 220px;
  }
  .question-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .faq-item {
    padding: 1.25rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .question-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .question-number {
    margin-right: 0;
  }
  .central-image svg {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 1400px) {
  .faq-item {
    max-width: 520px;
  }
  .faq-section {
    max-width: 1400px;
  }
}



/* faq section css ends here  */

        /* the below is the css of the newsletter */

         .newsletter-container {
            width: 100%;
            max-width: 1100px;
           background: linear-gradient(135deg, #2a727d, #183039);
            /* background: rgba(255, 255, 255, 0.1); */
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px;
            /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
              /* Center horizontally */
            margin:  auto;
         /* Optional spacing around */
          margin-top: 60px;
          margin-bottom: 80px;
        }

        .newsletter-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .text-section {
            width: 50%;
            padding-right: 40px;
        }

        .form-section {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .newsletter-heading {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .newsletter-subheading {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .form-header {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        .email-input {
            flex: 1;
            padding: 18px 24px;
            border-radius: 50px 0 0 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .email-input:focus {
            border-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.15);
        }

        .subscribe-btn {
            background-color: #2a727d;
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 18px 32px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .subscribe-btn:hover {
            background-color: #183039;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Animated Circles */
        .circle {
            position: absolute;
            border-radius: 50%;
            border: 20px solid #e6e6e6;
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 0;
        }

        .circle-1 {
            width: 120px;
            height: 120px;
            top: -60px;
            left: -60px;
            opacity: 0.7;
            z-index: -1;
        }

        .circle-2 {
            width: 80px;
            height: 80px;
            top: 30px;
            left: 30px;
            opacity: 0.5;
             z-index: -1;
        }

        /* .circle-3 {
            width: 60px;
            height: 60px;
            top: 80px;
            left: 80px;
            opacity: 0.3;
        } */

        .newsletter-container:hover .circle-1 {
            top: auto;
            left: auto;
            bottom: -60px;
            right: -60px;
            transform: scale(1.2);
        }

        .newsletter-container:hover .circle-2 {
            top: auto;
            left: auto;
            bottom: 30px;
            right: 30px;
            transform: scale(1.3);
        }

        /* .newsletter-container:hover .circle-3 {
            top: auto;
            left: auto;
            bottom: 80px;
            right: 80px;
            transform: scale(1.4);
        } */

        /* Decorative Elements
        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .element {
            position: absolute;
            transition: all 0.5s ease;
        }

        .triangle {
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 26px solid rgba(255, 255, 255, 0.2);
        }

        .circle-element {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }

        .square {
            width: 18px;
            height: 18px;
            background: rgba(255, 255, 255, 0.15);
            transform: rotate(45deg);
        } */

        /* Element positions */
        .element-1 {
            top: 15%;
            left: 5%;
        }

        .element-2 {
            top: 25%;
            right: 10%;
        }

        .element-3 {
            bottom: 20%;
            left: 8%;
        }

        .element-4 {
            bottom: 30%;
            right: 5%;
        }

        .element-5 {
            top: 40%;
            right: 15%;
        }

        .element-6 {
            top: 60%;
            left: 12%;
        }

        /* Hover effects for decorative elements */
        .newsletter-container:hover .element-1 {
            transform: translateY(-10px) rotate(15deg);
        }

        .newsletter-container:hover .element-2 {
            transform: translateX(10px) scale(1.2);
        }

        .newsletter-container:hover .element-3 {
            transform: translateY(10px) rotate(-15deg);
        }

        .newsletter-container:hover .element-4 {
            transform: translateX(-10px) scale(1.1);
        }

        .newsletter-container:hover .element-5 {
            transform: translateY(-5px) rotate(10deg);
        }

        .newsletter-container:hover .element-6 {
            transform: translateX(5px) scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .newsletter-content {
                flex-direction: column;
            }
            
            .text-section, .form-section {
                width: 100%;
                padding-right: 0;
            }
            
            .text-section {
                margin-bottom: 40px;
            }
            
            .newsletter-heading {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .newsletter-container {
                padding: 30px 20px;
            }
            
            .newsletter-heading {
                font-size: 1.8rem;
            }
            
            .subscribe-form {
                flex-direction: column;
            }
            
            .email-input, .subscribe-btn {
                width: 100%;
                border-radius: 50px;
            }
        }

        /* Newsletter css Ends Here */




/*Blogs section css starts here*/



  

        .blog-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #183039;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Category Filter */
        .category-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid #2a727d;
            color: #2a727d;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .filter-btn:hover {
            background-color: rgba(42, 114, 125, 0.1);
        }

        .filter-btn.active {
            background-color: #2a727d;
            color: white;
        }

        /* Blogs Grid */
        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .preview-container {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            background-color: #e6e6e6;
            cursor: pointer;
        }

        .preview-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .blog-card:hover .preview-container img {
            transform: scale(1.03);
        }

        .preview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(24, 48, 57, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .preview-container:hover .preview-overlay {
            opacity: 1;
        }

        .view-icon {
            color: #ffffff;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .preview-overlay:hover .view-icon {
            transform: scale(1.2);
        }

        .blog-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .category-badge {
            display: inline-block;
            background-color: rgba(42, 114, 125, 0.1);
            color: #2a727d;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            max-width: fit-content;
        }

        .blog-title {
            font-size: 1.3rem;
            color: #183039;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .blog-title:hover {
            color: #2a727d;
        }

        .blog-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .blog-date {
            color: #888;
            font-size: 0.9rem;
        }

        .blog-btn {
            display: inline-flex;
            align-items: center;
            background-color: #2a727d;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #2a727d;
            position: relative;
            overflow: hidden;
        }

        .blog-btn:hover {
            background-color: transparent;
            color: #2a727d;
            padding-right: 40px;
        }

        .blog-btn:hover .btn-arrow {
            opacity: 1;
            transform: translateX(5px);
        }

        .btn-arrow {
            position: absolute;
            right: 15px;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateX(-5px);
        }

        /* View All Button */
        .view-all-container {
            text-align: center;
            margin-top: 50px;
        }

        .view-all-btn {
            display: inline-block;
            background-color: #183039;
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #183039;
        }

        .view-all-btn:hover {
            background-color: transparent;
            color: #183039;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blogs-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .category-filter {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .blog-info {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .blog-section {
                padding: 60px 15px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .blog-title {
                font-size: 1.2rem;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }
        
        
        /*Blog section css ends here*/
        
        
        
        
         
        /* Popup overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Popup container */
        .popup-container {
            position: relative;
            width: 80%;
            max-width: 600px;
            background: white;
            /* border-radius: 15px; */
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: scale(0.9);
            transition: transform 0.4s ease;
        }
        
        .popup-overlay.active .popup-container {
            transform: scale(1);
        }
        
        .video-container {
            position: relative;
            width: 100%;
            padding-top: 100%; 
        }
        
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: #000;
            border: none;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .popup-overlay.active .video-container video {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Close button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: #2a727d;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background: #183039;
            transform: rotate(90deg);
        }
        
        #confetti-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 999;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        #confetti-canvas.active {
            opacity: 1;
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .popup-container {
                width: 85%;
            }
        }
        
        @media (max-width: 992px) {
            .popup-container {
                width: 90%;
            }
            
            .close-btn {
                top: 12px;
                right: 12px;
                width: 38px;
                height: 38px;
                font-size: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .popup-container {
                width: 95%;
            }
            
            .close-btn {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .popup-container {
                width: 98%;
                border-radius: 10px;
            }
            
            .close-btn {
                top: 8px;
                right: 8px;
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
           
        }
        
        @media (max-width: 400px) {
            .popup-container {
                width: 99%;
                border-radius: 8px;
            }
            
            .close-btn {
                top: 6px;
                right: 6px;
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
        }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
/*social icons css*/

section.side-social {
  position: relative;
  z-index: 9999;
}

.social-sidebar {
  position: fixed;
  top: 50%;
  left: 20px; 
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.social-sidebar a,
.social-sidebar button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease;
  position: relative;
}

.social-sidebar a:hover,
.social-sidebar button:hover {
  transform: scale(1.1);
}

/* Tooltip styles */
.social-sidebar button::after,
.open-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 55px; 
  background: #183039;
  color: #fff;
  font-size: 13px;
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  top: 50%;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.social-sidebar button:hover::after,
.open-btn:hover::after {
  opacity: 1;
  visibility: visible;
}

.linkedin { background: #2a727d; }
.facebook { background: #183039; }
.instagram { background: #2a727d; }
.whatsapp { background: #183039; }

.social-sidebar .close-btn1 {
  background: #e6e6e6;
  color: #183039 !important;
}

.open-btn {
  position: fixed;
  top: 50%;
  left: 20px; 
  transform: translateY(-50%);
  background: #e6e6e6;
  color: #183039;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.open-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1200px) {
  .social-sidebar a, .social-sidebar button, .open-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .social-sidebar {
    left: 15px; 
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .social-sidebar {
    left: 10px;
  }
  .social-sidebar a, .social-sidebar button, .open-btn {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
  .social-sidebar button::after,
  .open-btn::after {
    font-size: 12px;
    left: 50px; 
  }
}

@media (max-width: 576px) {
  .social-sidebar {
    left: 10px; 
  }
  .social-sidebar a, .social-sidebar button, .open-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .social-sidebar button::after,
  .open-btn::after {
    font-size: 11px;
    left: 48px; 
  }
}

@media (max-width: 400px) {
  .social-sidebar a, .social-sidebar button, .open-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .social-sidebar button::after,
  .open-btn::after {
    font-size: 10px;
    left: 46px; 
  }
}

    