body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        .hero-pattern {
            background-color: #1e40af;
            background-image: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        }
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .program-card {
            transition: all 0.3s ease;
        }
        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .achievement-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .achievement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .gallery-item {
            overflow: hidden;
            position: relative;
        }
        .gallery-item img {
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            color: white;
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        .dropdown-content {
        display: none;
        position: absolute;
        min-width: 220px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 50;
        border-radius: 0.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
        transform-origin: top center;
        transform: translateY(10px);
        opacity: 0;
        
        }
        .dropdown:hover .dropdown-content {
        display: block;
        transform: translateY(0);
        opacity: 1;
        }
        .dropdown-item {
        transition: all 0.2s ease;
        }
        .dropdown-item:hover {
        background-color: rgba(37, 99, 235, 0.1);
        }
        @media (max-width: 768px) {
        .mobile-menu {
        display: none;
        }
        .mobile-menu.active {
        display: flex;
        }
        .dropdown-content {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        margin-left: 0;
        left: 0;
        width: 100%;
        }

        .slides-wrapper {
        display: flex;
        transition: transform 0.8s ease;
        width: 100%;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        }

        }
        .slide {
        display: none;
        width: 100%;
        transition: opacity 0.8s ease;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        }
    
        .slide.active {
        display: block;
        opacity: 1;
        position: relative;
        }
    
        .slide-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        }
    
        .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.3s ease;
        border-radius: 50%;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.3);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        }
    
        .prev {
        left: 20px;
        }
    
        .next {
        right: 20px;
        }
    
        .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.6);
        }
    
        .dots-container {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        }
    
        .dot {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        }
    
        .dot.active {
        background-color: white;
        }
    
        @media (max-width: 768px) {
        .slide-image {
            height: 300px;
        }
        
        .prev, .next {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
        @keyframes slide-in-left {
            0% {
            opacity: 0;
            transform: translateX(-50px);
            }
            100% {
            opacity: 1;
            transform: translateX(0);
            }
        }

        .slide-in-left {
            animation: slide-in-left 0.6s ease-out forwards;
        }

        .invisible-before {
            opacity: 0;
            transform: translateX(-50px);
        } 

        .footer {
        background-color: #1a1a1a;
        color: #f1f1f1;
        padding: 40px 20px;
        }

        .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
        }

        .footer-section {
        flex: 1 1 250px;
        margin: 20px 10px;
        }

        .footer h3 {
        border-bottom: 2px solid #f39c12;
        padding-bottom: 10px;
        margin-bottom: 20px;
        }

        .footer a {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin: 8px 0;
        transition: 0.3s;
        }

        .footer a:hover {
        color: #f39c12;
        }

        .social-icons a {
        display: inline-block;
        margin-right: 12px;
        font-size: 20px;
        color: #ccc;
        transition: 0.3s;
        }

        .social-icons a:hover {
        color: #f39c12;
        }

        .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #444;
        margin-top: 20px;
        font-size: 14px;
        }

        @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
        }

        .footer-section {
            margin: 20px 0;
        }
        }

            header img {
      height: 80px;
      margin-bottom: 10px;
    }

    header h1 {
      margin: 10px 0 5px;
      font-size: 2.5rem;
    }

    header p {
      font-size: 1.2rem;
    }

    .swiper {
      width: 100%;
      padding: 40px 0;
    }

    .swiper-slide {
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      width: 250px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }

    .swiper-slide img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .swiper-slide img {
        width: 80%;
      }

      header h1 {
        font-size: 2rem;
      }

      header img {
        height: 60px;
      }
    }
}