.hero-section {
      background: url('../images/c.jpg') no-repeat center center/cover;
      color: white;
      padding: 100px 20px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero-section p {
      font-size: 1.25rem;
      margin-bottom: 40px;
    }

    .hero-stats .stat {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .hero-stats small {
      font-size: 0.9rem;
      display: block;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2rem;
      }

      .hero-stats .stat {
        font-size: 2rem;
      }
    }

    .hero-section2 {
      background: url('../images/a.jpg') no-repeat center center/cover;
      color: white;
      padding: 100px 20px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }

    .hero-section3 {
      background: url('../images/b.jpg') no-repeat center center/cover;
      color: white;
      padding: 100px 20px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }



    .footer {
    background: white;
    color: black;
    padding: 40px 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
      }

      .footer a {
        color: black;
        text-decoration: none;
      }

      .footer a:hover {
        color: #3c3795;
        transition: color 0.3s ease;
      }

      .footer .social-icons a {
        margin-right: 15px;
        font-size: 20px;
      }

      .footer-bottom {
        padding-top: 20px;
        border-top: 1px solid #3c3795;
        font-size: 14px;
      }

      .header-transparent {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .header-scrolled {
      background: rgba(0, 0, 0, 0.3) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
    }

    /* Black nav links at top */
    .header-transparent .nav-link,
    .header-transparent .navbar-brand {
      color: #000 !important;
    }

    /* White nav links after scroll */
    .header-scrolled .nav-link,
    .header-scrolled .navbar-brand {
      color: #fff !important;
    }

    .carousel-item1 {
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    .carousel-item1 img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border: 2px solid #a53594;
      border-radius: 10px;
    }


     * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
    }

    .slider-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #da2128;
    }

    .image-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .image-track img {
      width: 300px;
      height: 300px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(60, 55, 149, 0.8);
      color: white;
      border: none;
      font-size: 24px;
      padding: 10px;
      cursor: pointer;
      z-index: 2;
    }

    .slider-btn.left {
      left: 10px;
    }

    .slider-btn.right {
      right: 10px;
    }

    /* Custom button styles */
    .btn-primary {
    background: linear-gradient(45deg, #3c3795 0%, #a53594 50%, #da2128 100%);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
    background: linear-gradient(45deg, #da2128 0%, #a53594 50%, #3c3795 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60, 55, 149, 0.3);
}

    .btn-primary:active {
      transform: translateY(0);
    }

    /* Equal height and width cards */
    .equal-cards {
      display: flex;
      align-items: stretch;
    }

    .equal-cards .card {
      width: 100% !important;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .equal-cards .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .equal-cards .card-text {
      flex: 1;
    }