    #index1{
      z-index: 20000;
    }
    /* Custom dropdown arrow */
    .dropdown > button::after {
      content: "▼";
      font-size: 0.5rem;
      margin-left: 0.25rem;
      vertical-align: middle;
    }
    /* Dropdown panel */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #1e40af; /* Tailwind blue-900 */
      min-width: 10rem;
      z-index: 10;
      border-radius: 0.375rem; /* rounded-md */
      box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    }
    .dropdown-content a {
      display: block;
      padding: 0.5rem 1rem;
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.875rem;
    }
    .dropdown-content a:hover, .dropdown-content a:focus {
      background-color: #8bb65a; /* Tailwind blue-500 */
      outline: none;
    }
    /* Show dropdown on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* <!-- section C Start  -->

    /* Custom styles for circular text bubble */
    .circle-text {
      width: 140px;
      height: 140px;
      line-height: 1.3;
      padding: 20px;
      border-radius: 50%;
      background-color: #5b9bd5; /* blue circle */
      color: white;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: absolute;
      top: -30px;
      right: -30px;
      box-shadow: 0 6px 15px rgba(91, 155, 213, 0.3);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    /* Large solar panel front drop shadow */
    .floating-panel {
      box-shadow:
        0 25px 40px rgba(0,0,0,0.15);
      border-radius: 10px;
    }
    /* Floating solar panel in front styles */
    .front-panel {
      position: absolute;
      bottom: -40px;
      left: -60px;
      width: 130px;
      max-width: 130px;
      box-shadow: 0 18px 35px rgba(0,0,0,0.25);
      border-radius: 8px;
      transform: rotate(-10deg);
      background: white;
      z-index: 10;
    }
    /* Partner With Us vertical pill style */
    .vertical-pill {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      background-color: #9dc17b;
      color: #fff;
      font-weight: 600;
      position: fixed;
      right: 0;
      top: 40vh;
      padding: 12px 14px;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      z-index: 50;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    .vertical-pill:hover {
      background-color: #78a045;
    }
      /* section C end */


/*       
<!-- section D end  -->

  /* Custom scroll zoom on image hover */
  .card-image {
    overflow: hidden;
    border-top-left-radius: 0.75rem; /* rounded-tl-lg */
    border-top-right-radius: 0.75rem; /* rounded-tr-lg */
  }
  .card-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .card-image:hover img {
    transform: scale(1.1);
  }
  /* Chevron arrow in circle button */

  /* Bottom right icon styling */
  .bottom-icon {
    width: 54px;
    height: 54px;
    opacity: 1;
  }
  /* For small screen card height consistency */
  @media (min-width: 768px) {
    .card {
      min-height: 440px;
    }
  }
  #sectionD{
    background-color: #8bb65a;
  }
  #number1 , #number2 {
    color: #8bb65a;
  }

  #mobile-menu{
    background-color: #476ff0;
  }

  /* Section E Start  */
      /* Gradient overlay on hero image */
    .hero-overlay {
      background: rgba(10, 10, 9, 0.7); /* Tailwind slate-900 with 65% opacity */
      position: absolute;
      inset: 0;
      z-index: 10;
    }
  /* Section F Start  */
      /* Custom shapes and style overrides */
    .rounded-top-right-lg {
      border-top-right-radius: 3rem;
    }
    .rounded-bottom-left-lg {
      border-bottom-left-radius: 3rem;
    }
    /* Icon stroke and fill adjustments for consistent style */
    .icon-stroke-green {
      stroke: #4ade80; /* Tailwind green-400 */
      fill: #4ade80;
      stroke-width: 2;
    }
    .icon-stroke-green-light {
      stroke: #a7f3d0; /* Tailwind green-200 */
      fill: none;
      stroke-width: 2;
    }
    
    /* Section G Start  */
        .cards1 {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  border-radius: 15px; /* assuming your cards have this radius */
  background-color: white;
  cursor: pointer;
}

.cards1:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 128, 0, 0.2); /* greenish shadow */
  border-color: #4caf50; /* green border */
}

            #test-body{
            background-color: #e2e8f0;
            color: #1e293b;
            padding: 2rem 1rem;
        }

        .testimonial-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background-color: #4338ca;
            bottom: -10px;
            left: 20%;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #1e293b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            padding: 1rem 0;
            transition: transform 0.5s ease;
            will-change: transform;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-350px * 6));
            }
        }

        .testimonial-card {
            min-width: 350px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border-bottom: 3px solid #4338ca;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 5rem;
            color: #4338ca;
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            flex-grow: 1;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #1e293b;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid #4338ca;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            font-size: 1.1rem;
            color: #1e3a8a;
            margin-bottom: 0.25rem;
        }

        .client-details p {
            font-size: 0.9rem;
            color: #64748b;
        }

        .rating {
            margin-top: 0.5rem;
            display: flex;
        }

        .star {
            color: #fbbf24;
            font-size: 1rem;
            margin-right: 0.2rem;
        }

        .navigation {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }

        .nav-btn {
            background-color: #4338ca;
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background-color: #1e3a8a;
            transform: scale(1.1);
        }

        /* Pause animation on hover */
        .testimonial-container:hover .testimonial-track {
            animation-play-state: paused;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .testimonial-card {
                min-width: 300px;
                padding: 1.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .client-image {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                min-width: 280px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }
        }


/* Styles section start  */

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --dark: #08025fd0;
    --light: #F7FFF7;
    --accent: #FFD166;
}
  #horizon-scroll{
    overflow-x: hidden;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden; /* Disable horizontal scrollbar */
    font-family: 'Playfair Display', serif;
}
#mobile-menu a{
  z-index: 1000;
}

/* Custom scrollbar for slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.75rem;
}
.slider-dot {
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background-color: white;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.slider-dot.active {
  width: 18px;
  background-color: #2563eb; /* Tailwind blue-600 */
  opacity: 1;
}
/* Navbar dropdown arrow rotation */
[data-dropdown-toggle][aria-expanded="true"] > svg {
  transform: rotate(180deg);
}

    /* Services Section */
    .services {
        padding: 5rem 2rem;
        background-color: var(--light);
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 3.5rem;
        font-weight: 200px;
        color: var(--dark);
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .service-img {
        height: 200px;
        overflow: hidden;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover .service-img img {
        transform: scale(1.1);
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    .service-content p {
        color: black;
        margin-bottom: 0.5rem;
    }

    /* CTA Section */
    .cta {
        padding: 5rem 2rem;
        background-color: rgb(43, 41, 41);
        color: white;
        text-align: center;
    }

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta p {
        max-width: 800px;
        margin: 0 auto 2rem;
    }


    .btn {
        display: inline-block;
        background-color: var(--primary);
        color: var(--light);
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid var(--primary);
    }

    .btn:hover {
        background-color: transparent;
        color: var(--primary);
    }

    .btn-secondary {
        background-color: transparent;
        border-color: var(--light);
        color: var(--light);
        margin-left: 15px;
    }

    .btn-secondary:hover {
        background-color: var(--light);
        color: var(--dark);
    }

    @media (max-width: 768px) {
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .btn-secondary {
            margin-left: 0;
        }
    }

/* About Page */

.heading-about{
    display: flex;
    color: #b10909;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 200px;
    color: var(--dark);
    padding-top: 40px;
    /* position: relative;
    display: inline-block; */

}

.containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.center-area {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  margin-right: 200px;
  
}

.orbit-border {
  width: 100%;
  height: 100%;
  border: 3px inset #716f6f;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.orbit {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 20s linear infinite;
  -webkit-animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.circle {
  position: absolute;
  width: 20%;
  height: 20%;
  background: #1e90ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1vw;
  min-width: 70px;
  min-height: 70px;
  max-width: 120px;
  max-height: 120px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.circle-content {
  transform: rotate(0deg);
  animation: counterRotate 20s linear infinite;
  padding: 0 5px;
}

@keyframes counterRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.circle:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.circle:nth-child(2) { top: 50%; right: 0; transform: translate(50%, -50%); }
.circle:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.circle:nth-child(4) { top: 50%; left: 0; transform: translate(-50%, -50%); }

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2vw;
  font-weight: bold;
  color: #1d943b;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  background-color: white;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  min-width: 100px;
}

.right-section {
  max-width: 600px;
  flex: 1;
  padding: 0 10px;
}

.right-section h2 {
  font-size: 2.2rem;
  color: #000;
  margin-top: 0;
  text-decoration: underline rgb(187, 109, 7) 3px;
}

.right-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 28px;
  background: #3dbb3d;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .containers {
    flex-direction: column;
    padding: 20px 10px;
  }

  .right-section {
    text-align: center;
  }

  .logo-center {
    font-size: 20px;
    padding: 8px 16px;
  }

  .circle {
    font-size: 12px;
  }

  .right-section h2 {
    font-size: 1.6rem;
  }
  .center-area{
    margin-right: 0px;
  }
}

#about-pages{
    background-color: whitesmoke;
}

#team{
  background-color: #ccc;
}
#company-profiles{
  background-color: #122adc38;
}

/* Project Section */
/* h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
} */

#ongoing-proj{
  background-color: #5b7fce5e; /* dark background */
  color: #e5e7eb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;

}

h1 .highlight {
  color: #3b82f6; /* blue-500 */
  font-size: 30px;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0.35rem;
  color: #3b82f6;
}

.divider .line {
  height: 2px;
  background-color: #3b82f6;
  width: 4.5rem;
  border-radius: 2px;
}

.divider .decor {
  width: 1rem;
  height: 4px;
  background-color: #3b82f6;
  clip-path: polygon(20% 0%, 50% 100%, 80% 0%);
  margin: 0 0.25rem;
}

/* .carousel-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow:
  5px 5px 15px rgba(237, 236, 236, 0.957),
  inset 0 50px 60px -50px rgba(0,0,0,0.7);
  background-color: #1e293b;
} */
/* 
.slide-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
  user-select: none;
  -webkit-border-radius:;
  -moz-border-radius:;
  -ms-border-radius:;
  -o-border-radius:;
}

.info-box {
  position: absolute;
  top: 20%;
  left: 8%;
  background-color: rgba(255, 255, 255, 0.85);
  border-left: 4px solid #3b82f6;
  border-radius: 0.25rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  max-width: 320px;
  color: #111827;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow:
    2px 1px 8px rgb(0 0 0 / 0.1);
}
.info-box h2 {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111827;
}
.info-box hr {
  width: 48px;
  border: 2.5px solid #3b82f6;
  margin: 6px 0 14px 0;
  border-radius: 99px;
  border-style: solid;
  border-color: #3b82f6 transparent transparent transparent;
  transform: rotate(20deg);
} */

/* Navigation arrows styling */

/* All Projects Section */
.all-projects-section {
  background-color: #1b1c1f;
  width: 100%;

  margin: 3rem auto 5rem;
  padding: 1rem 1rem 4rem;
  text-align: center;
  border-radius: 6px;
  box-shadow:  5px 5px 18px white;
}

.all-projects-title {
  font-weight: 600;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.1rem;
  margin-top: 1.1rem;
  letter-spacing: 0.1em;
}

.all-projects-title .highlight {
  color: #2E66D6;
}

.project-buttons {
  display: inline-flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.project-button {
  background-color: #37404d;
  border: none;
  color: white;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  user-select: none;
}

.project-button:hover,
.project-button:focus {
  background-color: #2E66D6;
  outline: none;
  color: white;
}

.project-button.active {
  background-color: #2E66D6;
  color: white;
}

.small-decorative-line {
  width: 80px;
  height: 9px;
  margin: 0.6rem auto 0;
  background:
    linear-gradient(to right, #2E66D6 40%, transparent 40%) 0 7px,
    linear-gradient(to right, transparent 40%, #2E66D6 40%, #2E66D6 60%, transparent 60%) center 7px,
    linear-gradient(to right, transparent 60%, #2E66D6 60%) 100% 7px;
  background-size: 25px 2.2px;
  background-repeat: repeat-x;
  position: relative;
}

/* #teams{
  display: flex;
  justify-content: center;
  text-align: center;
  height: 380px;
  width: 950px;
} */

/* ON GOING PROJECT START */

/* No 1 design start */


.number-large {
  font-family: 'Abril Fatface', cursive;
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw + 1rem, 2.25rem);
  line-height: 1.1;
  white-space: nowrap;
  padding: 9px;
}

.brand-subtext {
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.1em;
  white-space: nowrap;
}

.absolute-top-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111;
  user-select: none;
  white-space: nowrap;
  z-index: 20;
  font-family: 'Playfair Display', serif;
}

/* Overlay container for large #1 */
.number-overlay {
  font-size: clamp(15rem, 35vw, 40rem);
  color: white;
  position: absolute;
  bottom: 5%;
  left: 3%;
  user-select: none;
  text-shadow:
    -2px 0 6px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4),
    2px 0 6px rgba(0, 0, 0, 0.4),
    0 -2px 6px rgba(0, 0, 0, 0.4);
  z-index: 10;
  line-height: 1;
}

/* Container and image stylings */
.hero-section {
  position: relative;
  width: 100vw;
  height: 83vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e9dcd4 0%, #faf4f1 100%);
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-image-wrapper img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: left center;
  filter: brightness(0.95);
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: 10vw;
  z-index: 15;
  text-align: right;
  color: #111;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 70%;
    margin-right: 5vw;
  }

  .number-overlay {
    font-size: clamp(8rem, 20vw, 25rem);
    bottom: 10%;
    left: 5%;
  }
}

@media (max-width: 640px) {
  .hero-content {
    max-width: 90%;
    margin-right: 5vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: white;

  }

  .number-overlay {
    font-size: clamp(6rem, 35vw, 16rem);
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow:
      -1px 0 4px rgba(0, 0, 0, 0.4),
      0 1px 4px rgba(0, 0, 0, 0.4),
      1px 0 4px rgba(0, 0, 0, 0.4),
      0 -1px 4px rgba(0, 0, 0, 0.4);
  }
}

  /* Fixed Apply Online side tab */
.apply-online-tab {
  position: fixed;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  background-color: #11119e;
  color: #ffffff;
  padding: 14px 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  user-select: none;
  z-index: 900;
  transition: background-color 0.3s ease;
  width: 15px;
}
.apply-online-tab:hover,
.apply-online-tab:focus {
  background-color: #0b1295;
}
#material-icons {
  font-size: 18px;
  transform: rotate(180deg);
  width: 30px;
  background-color: #060d92;
  color: white;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .apply-online-tab {
  position: fixed;
  right: 50px;
  top: 60%;
  }

}

/* @media (max-width: 640px) {
  .apply-online-tab{
  position: fixed;
  right: 70px;
  top: 60%;

  }
} */

    /* Custom gradient circle for icons */
    .gradient-circle {
      background: linear-gradient(135deg, #f97316, #60a5fa);
    }
    /* Icon container */
    .icon-container {
      width: 80px;
      height: 80px;
      border-radius: 9999px; /* full rounded */
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 1rem;
    }
    /* Icon styles */
    .icon svg {
      width: 40px;
      height: 40px;
      stroke: white;
      stroke-width: 2;
      fill: none;
    }
    
        /* Custom gradient background */
    .gradient-bg {
      background: linear-gradient(90deg, #fcede4 0%, #d9e7fa 100%);
    }
    /* Ensure logos scale nicely */
    .bank-logo {
      max-width: 150px;
      height: auto;
      transition: transform 0.3s ease;
    }
    .bank-logo:hover,
    .bank-logo:focus {
      transform: scale(1.1);
      outline: none;
    }
    .card-shadow {
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
      box-shadow: 10px 10px 20px #717378,
      -10px -10px 20px #898383 ;
    }
    /* Image circle border */
    .image-border {
      border: 3px solid #2563eb; /* blue-600 from tailwind */
    }

            #test-body{
            background-color: #e2e8f0;
            color: #1e293b;
            padding: 2rem 1rem;
        }

        .testimonial-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background-color: #4338ca;
            bottom: -10px;
            left: 20%;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #1e293b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonial-container {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            padding: 1rem 0;
            transition: transform 0.5s ease;
            will-change: transform;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-350px * 6));
            }
        }

        .testimonial-card {
            min-width: 350px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border-bottom: 3px solid #4338ca;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 5rem;
            color: #4338ca;
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            flex-grow: 1;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #1e293b;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid #4338ca;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h4 {
            font-size: 1.1rem;
            color: #1e3a8a;
            margin-bottom: 0.25rem;
        }

        .client-details p {
            font-size: 0.9rem;
            color: #64748b;
        }

        .rating {
            margin-top: 0.5rem;
            display: flex;
        }

        .star {
            color: #fbbf24;
            font-size: 1rem;
            margin-right: 0.2rem;
        }

        .navigation {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }

        .nav-btn {
            background-color: #4338ca;
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background-color: #1e3a8a;
            transform: scale(1.1);
        }

        /* Pause animation on hover */
        .testimonial-container:hover .testimonial-track {
            animation-play-state: paused;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .testimonial-card {
                min-width: 300px;
                padding: 1.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .client-image {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                min-width: 280px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        /* moving card start */
    
      #moving-card {
    margin: 0;
    min-height: 60vh;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 4rem;
    margin-top: 50px;
    background-color: white;
    /* background-color: black; */
  }

  .carousel {
    perspective: 1500px;
    width: 400px;
    max-width: 90vw;
    height: 300px;
    position: relative;
    
  }

  .carousel__container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    
  }

  .carousel__container:active {
    cursor: grabbing;
  }

  .card {
    position: absolute;
    width: 380px;
    height: 450px;
    background: linear-gradient(145deg, #38383c, #292660);
    border-radius: 18px;
    box-shadow:
      0 10px 20px rgba(16, 16, 18, 0.5),
      inset 0 0 10px #3d378d,
      0 0 30px #4040c0;
    padding: 1.8rem 2rem;
    color: #c0c5ff;
    user-select: none;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    
  }

  .card h3 {
    color: #dfdefa;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 0 6px #0a0a0b;
  }




  .card img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 12px rgba(246, 243, 246, 0.7);
  }

  @media (max-width: 480px) {
    .carousel {
      height: 260px;
      width: 280px;
    }
    .card {
      width: 240px;
      height: 410px;
      padding: 1.4rem 1.6rem;
    }
    h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
  }


  