
        

        /* .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        } */

        .section-header {
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2C3E50;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .dropdown-container {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    max-width: 300px;
}

.ekam-dropdown {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: #fff; /* ✅ default selected text white */
    padding: 12px 50px 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 400;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    appearance: none;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.ekam-dropdown:hover,
.ekam-dropdown:focus {
    color: #fff; /* keep white on hover/focus */
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Dropdown arrow */
.dropdown-container::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; /* ✅ default white arrow */
    pointer-events: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

/* Options text color inside list */
.ekam-dropdown option {
    color: #000; /* black for list items */
}


        .section-description {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .slider-container {
            perspective: 2000px;
            perspective-origin: center center;
            width: 100%;
            padding: 30px 0;
        }

        .campus-swiper {
            width: 100%;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(8deg) rotateY(0deg);
        }

        .swiper-wrapper {
            transform-style: preserve-3d;
        }

        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 280px;
            height: 380px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            position: relative;
            transform-style: preserve-3d;
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 3D curved effect - slides on left side come forward */
        .swiper-slide:not(.swiper-slide-active) {
            transform: translateZ(50px) scale(1.1);
        }

        .swiper-slide-prev,
        .swiper-slide-prev ~ .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) {
            transform: translateZ(100px) translateY(-15px) scale(1.15);
        }

        /* Center active slide - pushed back and smaller */
        .swiper-slide-active {
            transform: translateZ(-150px) scale(0.85);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 5;
        }

        /* Slides on right side come forward */
        .swiper-slide-next {
            transform: translateZ(50px) scale(1.1);
        }

        .swiper-slide-next ~ .swiper-slide {
            transform: translateZ(100px) translateY(-15px) scale(1.15);
        }

        .video-slide {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .play-ic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 53, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .play-ic:hover {
            background: rgba(255, 107, 53, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-ic::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid white;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #FF6B35;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            z-index: 20;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: 900;
        }

        .swiper-pagination {
            z-index: 20;
        }

        .swiper-pagination-bullet {
            background: #FF6B35;
            opacity: 0.4;
            width: 12px;
            height: 12px;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #FF6B35;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .section-description {
                font-size: 16px;
            }

            .swiper-slide {
                width: 220px;
                height: 300px;
            }

            .slider-container {
                padding: 50px 0;
            }

            .campus-swiper {
                transform: rotateX(6deg) rotateY(0deg);
            }

            .ekam-dropdown {
                font-size: 16px;
                padding: 10px 40px 10px 30px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 26px;
            }

            .swiper-slide {
                width: 180px;
                height: 260px;
            }

            .campus-swiper {
                transform: rotateX(5deg) rotateY(0deg);
            }

            .play-ic {
                width: 60px;
                height: 60px;
            }

            .play-ic::after {
                border-left: 18px solid white;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
            }
        }