html, body {
      max-width: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    section {
      padding: 100px 0;
    }

    /* Navbar */
    .navbar {
      background: #fff;
    }
    .navbar .nav-link {
      color: #333 !important;
      font-weight: 500;
      margin-right: 15px;
      position: relative;
      transition: color 0.3s;
    }
    .navbar .nav-link.active {
      color: #0d6efd !important;
      font-weight: 600;
    }
    .navbar .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 100%;
      height: 2px;
      background-color: #0d6efd;
      border-radius: 2px;
    }
    .btn-get-started {
      background: #0d6efd;
      color: #fff;
      border-radius: 6px;
      padding: 8px 20px;
      transition: 0.3s;
    }
    .btn-get-started:hover {
      background: #0b5ed7;
      color: #fff;
    }

    /* Hero */
    #home {
      padding: 120px 0;
      background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    }
    #home h1 {
      font-weight: 700;
    }
    #home p {
      font-size: 1.1rem;
      color: #555;
    }
    .hero-btn {
      padding: 10px 20px;
      font-weight: 500;
    }
    .hero-img {
      border-radius: 12px;
    }

    /* Section titles */
    h2.section-title {
      font-weight: 700;
      margin-bottom: 40px;
      color: #0d6efd;
    }

    /* Cards */
    .card {
      border: none;
      border-radius: 12px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
    }

    /* Sponsors */
      .logos-images {
        flex-wrap: wrap;
        gap: 20px !important;
        justify-content: center;
      }

      /* Partners auto-scroll slider */
.partners-slider {
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  padding: 20px 0;
}

.slide-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 30s linear infinite;
}

.partner-logo {
  height: 80px;
  width: auto;
  margin: 0 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter var(--logo-transition, 0.3s) ease, transform var(--logo-transition, 0.3s) ease;
  will-change: transform, filter;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 6)); }
}

    /* Contact form */
    #contact form {
      max-width: 600px;
      margin: auto;
    }

    /* Footer */
    footer a {
      color: #fff;
      text-decoration: none;
    }
    .social-icons a {
      font-size: 1.3rem;
      margin: 0 8px;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #0d6efd;
      color: #fff !important;
      transition: 0.3s;
    }
    .social-icons a:hover {
      background: #0b5ed7;
      transform: scale(1.1);
    }

    

      /* Meet team css designs */
      .team-img-wrapper {
        position: relative;
        display: inline-block;
      }
      .team-img {
        width: 150px;
        height: 150px;
        transition: transform 0.3s ease;
        object-fit: cover;
      }
      .team-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(13, 110, 253, 0.75);
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      .team-card:hover .team-img {
        transform: scale(1.1);
      }
      .team-card:hover .team-overlay {
        opacity: 1;
      }
      .team-overlay a {
        font-size: 1.2rem;
      }

      /* Testimonials */
      .testimonial-card {
        border-radius: 12px;
        background: #fff;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
        padding: 20px;
      }
      .testimonial-card img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
      }

      /* Glowing Button Effect */
      .glow-btn {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
      }

      .glow-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(
          120deg,
          rgba(255, 255, 255, 0.3) 0%,
          rgba(255, 255, 255, 0.6) 50%,
          rgba(255, 255, 255, 0.3) 100%
        );
        transform: skewX(-20deg);
        transition: left 0.6s ease;
      }

      .glow-btn:hover::after {
        left: 100%;
      }

      .glow-btn:hover {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        transform: scale(1.05);
      }

     .hero-btn1 {
      padding: 10px 20px;
      font-weight: 500;
      border: 2px solid #0d6efd;
      animation: pulseGlow 2s infinite ease-in-out;
}

.gallery-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(13,110,253,0.5); }
  50% { box-shadow: 0 0 25px rgba(13,110,253,0.9); }
  100% { box-shadow: 0 0 10px rgba(13,110,253,0.5); }
}





    

