    .lead strong {
  font-weight: 700 !important;
}

    /* Fix hero text going under navbar */
.hero-section {
  padding-top: 120px; /* adjust depending on navbar height */
}

 /* Remove focus outline and blue border */
.nav-link:focus,
.dropdown-toggle:focus,
.dropdown-item:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Dropdown menu styling */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 6px 0;
  margin-top: 10px;
  background-color: #ffffff;   /* clean white background */
  box-shadow: 0 6px 18px rgba(0,0,0,0.1); /* subtle shadow */
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

/* Show dropdown */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown items */
.dropdown-item {
  font-size: 0.95rem;
  padding: 10px 20px;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

/* Hover effect */
.dropdown-item:hover {
  background-color: #f1f5ff; /* subtle light blue on hover */
  color: #0d6efd;
}

/* Optional: smooth rounded corners for first and last items */
.dropdown-menu .dropdown-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.dropdown-menu .dropdown-item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}



/* GYAANi Logo Autonomous */

  /* --- Drop animation for GYAANi mascot --- */
@keyframes dropIn {
  0% { transform: translateY(-100px); opacity: 0; }
  60% { transform: translateY(15px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.drop-in {
  opacity: 0;
  animation: dropIn 1.2s ease-out forwards;
  animation-delay: 1.5s;
}

/* --- Automation visual process --- */
.automation-process {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  min-height: 50px;
}

/* Manual task boxes */
.task {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-40px);
}

.manual {
  background-color: #ccc;
  animation: moveToGyaani 3s ease-in-out infinite;
}

.manual.delay-1 { animation-delay: 0.6s; }
.manual.delay-2 { animation-delay: 1.2s; }

/* Arrow effect */
.arrow {
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #ccc, #007bff);
  border-radius: 2px;
  opacity: 0.8;
}

/* Automated output box */
.automated {
  width: 35px;
  height: 35px;
  background-color: #007bff;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.7);
  animation: pulse 2s ease-in-out infinite alternate;
}

/* --- Animations --- */
@keyframes moveToGyaani {
  0% {
    opacity: 0;
    transform: translateX(-40px) scale(0.9);
  }
  30% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  60% {
    opacity: 1;
    background-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.7);
  }
  100% {
    opacity: 0;
    transform: translateX(40px) scale(0.8);
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(0,123,255,0.5); }
  100% { transform: scale(1.1); box-shadow: 0 0 20px rgba(0,123,255,0.8); }
}


  /* Image drop-in animation */
@keyframes dropIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(15px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.drop-in {
  opacity: 0;
  animation: dropIn 1.2s ease-out forwards;
  animation-delay: 1.5s; /* delay before drop starts */
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  position: relative;
  overflow: hidden;
}

.hero-img {
  max-width: 75%;
  transition: transform 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #007bff22, transparent 70%);
  z-index: 0;
}

.hero-section h1, .hero-section p, .hero-section .btn {
  position: relative;
  z-index: 1;
}


/* End Of GYAANi Logo Automation */


/* Model Content */

.modal-content {
  border-radius: 1.5rem;
  border: none;
  background: #fff;
}

.modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
  font-size: 1.25rem;
}

.modern-input,
.modern-textarea {
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.modern-input:focus,
.modern-textarea:focus {
  background-color: #fff;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
  outline: none;
}

.modern-textarea {
  border-radius: 20px;
  resize: none;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056d2;
}

/* End Of Model Content */



 section {
    background-color: #fff;
  }

  ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }

  @media (max-width: 991.98px) {
    .col-lg-6 img {
      margin-bottom: 2rem;
    }
  }



  /* Client Logo Section*/

   /* Increase logo size */
  .client-logos img {
    max-height: 100px;  /* increased from 60px */
    opacity: 1;         /* full color visibility */
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
    filter: none;       /* show color by default */
  }

  /* Hover effect (turn grayscale) */
  .client-logos img:hover {
    opacity: 0.9;
    transform: scale(1.05);
    filter: grayscale(100%); /* turn black & white on hover */
  }

  /* Space out slides nicely */
  .client-logos .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
  }
/* End Of client Logo Section */


  /* Our Happy Customer Section */


.carousel-indicators [data-bs-target] {
  background-color: #bbb;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #607d7c;
}

.carousel-indicators button:hover {
  background-color: #444;
  transform: scale(1.1);
  transition: 0.2s ease;
}

.card {
  border-radius: 16px;
  background: #fff;
}


  .btn-circle-play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #1e69ff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: none;
    box-shadow: 0 14px 30px rgba(30,105,255,0.18);
    transition: transform .15s ease, box-shadow .15s ease;
    z-index: 5;
  }
  .btn-circle-play:hover{ transform: translate(-50%, -50%) scale(1.03); box-shadow: 0 20px 40px rgba(30,105,255,0.22); }
  .btn-circle-play:focus { outline: none; box-shadow: 0 0 0 0.25rem rgba(30,105,255,0.25); }

  /* smaller screens: reduce size */
  @media (max-width: 576px){
    .btn-circle-play{ width: 88px; height: 88px; font-size: 34px; }
  }

  /* End Of Our Happy Customer Section */







/* FAQ - Section (Question & Answer ) Section */


body {
      font-family: "Inter", sans-serif;
      color: #212529;
    }

    .faq-section {
      padding: 80px 0;
    }

    .faq-section h2 {
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 10px;
    }

    .faq-section p.section-subtitle {
      text-align: center;
      color: #6c757d;
      font-size: 1.125rem;
      margin-bottom: 60px;
    }

    .faq-item h5 {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    .faq-item p {
      color: #6c757d;
      line-height: 1.7;
      font-size: 1.05rem;
    }

    @media (max-width: 767.98px) {
      .faq-section h2 {
        font-size: 2.2rem;
      }
    }

/* End Of FAQ - Section (Question & Answer ) Section */




  /* Banner Section - Start Your Journey */

.cta-section {
      background: linear-gradient(135deg, #5e35b1, #673ab7, #7b1fa2);
      border-radius: 20px;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      max-height: 550PX;
      margin: 80px auto;
      position: relative;
      overflow: hidden;
    }

    .cta-section h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .cta-section p.lead {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 40px;
    }

    .cta-section .btn-primary {
      background-color: #1976d2;
      border: none;
      font-weight: 600;
      padding: 14px 40px;
      font-size: 1.125rem;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .cta-section .btn-primary:hover {
      background-color: #0d47a1;
      transform: translateY(-2px);
    }

    .cta-section .small-text {
      color: rgba(255, 255, 255, 0.9);
      margin-top: 25px;
      font-size: 1rem;
    }

    @media (max-width: 767.98px) {
      .cta-section h2 {
        font-size: 2rem;
      }
      .cta-section {
        padding: 60px 20px;
      }
    }


  /*End Of Footer Banner Section - Start Your Journey */



  /* Feature Section */
.feature-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
  }

  .image-wrapper {
    position: relative;
    text-align: center;
  }

  .image-wrapper img.main-img {
    max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #f2e8ff 0%, #fff 70%);
  }

  /* Floating cards around the image */
  .floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 12px 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .floating-card.top-right {
    top: 15%;
    right: 15%;
  }

  .floating-card.bottom-left {
    bottom: 10%;
    left: 5%;
  }

  .floating-card i {
    font-size: 1.2rem;
    color: #6f42c1;
  }

  .feature-heading {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .feature-text {
    color: #6c757d;
    margin-bottom: 15px;
  }

  .feature-list li {
    margin-bottom: 10px;
  }

  @media (max-width: 992px) {
    .floating-card {
      display: none;
    }
    .feature-section {
      padding: 60px 0;
    }
  }

  /* End Of Feature Section */


  
  
  /*Feature Card Section */


   .feature-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: #fff;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .feature-icon {
    background-color: rgba(13,110,253,0.1);
    color: #0d6efd;
    font-size: 2.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .section-heading {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 10px;
  }

  .btn-custom {
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 500;
  }

/* End Of feature Card Section */






/*Our Happy Customer Section */


.testimonials-section {
  background: linear-gradient(135deg, #ffffff, #f5f6fa, #e9ecf1);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.highlight {
  color: #000;
  border-bottom: 3px solid #000;
  padding-bottom: 2px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  font-style: italic;
}

.author-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #000;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #000;
  opacity: 0.4;
  border-radius: 50%;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #000;
}


/*End Of Our Happy Customer Section */




/* Data Integration Section */

.data-integration-section {
    background: #fff;
  }

  .data-integration-section h2 {
    color: #1b1b1f;
  }

  .floating-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    min-width: 140px;
  }

  .card-one {
    top: 15%;
    left: 10%;
  }


  .product-features {
    background: #fafbff;
  }

  .product-features .card {
    border-radius: 16px;
    transition: all 0.3s ease;
  }

  .product-features .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .product-features img {
    object-fit: cover;
    height: 180px;
    border-radius: 12px;
  }

/* End Of Data Integration Section */



  /* Footer Section */

 .footer-link {
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #0d6efd;
  text-decoration: none;
}

.footer h6 {
  font-size: 1rem;
  color: #000;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-icons a:hover {
  color: #0d6efd;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


  /* End Of Footer Section */



  /* Other Section */
  /* Step Circles (Fixed Aspect) */
  .step-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background-color: #0d6efd;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
  }

  /* Image Wrapper — aligned perfectly without overflow */
  .dashboardimage-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
  }

  .dashboardimage-wrapper img {
    position: relative;
    right: -6%; /* moves image slightly out, no scroll */
    max-width: 110%;
    height: auto;
  }

  /* Responsive Fix */
  @media (max-width: 991.98px) {
    .dashboardimage-wrapper img {
      right: 0;
      max-width: 100%;
      margin-top: 2rem;
    }
  }

  /* End Of Other Section */



  /* Reveal Section */


  /* ===== Scroll Reveal Base Animation ===== */
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
  will-change: opacity, transform;
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Slight image zoom-in effect inside */
.reveal-section img {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease-out;
}

.reveal-section.active img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

  /* End Of Reveal Section */







  /*******************************************Four Sticky Button Right Side*************************************************/
/* Main container - stays fixed */
.sticky-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99999;
}

/* Button base style */
.btns {
  padding: 14px 22px;
  font-family: system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  width: 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px 0 0 40px;
  cursor: pointer;
  white-space: nowrap;
  
  /* Initial partially hidden position */
  transform: translateX(105px);
  transition: 0.35s ease;
  box-shadow: -10px 6px 20px rgba(0,0,0,0.18);
}

/* On hover --> The button slides out only itself */
.btns:hover {
  transform: translateX(0);
}

/* Icons */
.icons {
  width: 20px;
  height: 20px;
}

/* Button colors */
.whats { background: #25D366; }
.email { background: #2563eb; }
.expert { background: #16a34a; }
.demo {
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .sticky-buttons {
    bottom: 20px;
    top: auto;
    right: 0;
    transform: none;
  }
  
  .btns {
    transform: translateX(120px);
    width: 180px;
  }
}


/*******************************************End Of Four Sticky Button*****************************************************/