        :root {
            --primary: #1a365d;
            --secondary: #d4af37;
            --light: #f8f9fa;
            --dark: #343a40;
            --accent: #2c5282;
            --boys-color: #1a365d;
            --girls-color: #a53a6d;
            --success: #10b981;
            --danger: #ef4444;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        
:root {
    --primary: #1a365d;
    --secondary: #d4af37;
    --light: #f8f9fa;
    --dark: #343a40;
    --accent: #2c5282;
    --boys-color: #1a365d;
    --girls-color: #a53a6d;
    --success: #10b981;
    --danger: #ef4444;
}

/* Premium Campus Hero */
.premium-campus-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80') center/cover;
    opacity: 0.15;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.shape-3 {
    top: 50%;
    right: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.campus-badge-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.campus-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.campus-badge.primary {
    background: var(--secondary);
    color: var(--primary);
}

.campus-badge.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--secondary) 0%, #f0c869 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-tour-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-tour-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-tour-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-tour-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.campus-highlights {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
}

.highlight-item i {
    color: var(--secondary);
}

.campus-visual {
    position: relative;
    height: 400px;
}

.campus-card {
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.campus-card.active {
    opacity: 1;
    transform: translateY(0);
}

.boys-campus {
    top: 10%;
    left: 10%;
    border-left: 4px solid var(--boys-color);
}

.girls-campus {
    bottom: 10%;
    right: 10%;
    border-left: 4px solid var(--girls-color);
}

.campus-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.card-image {
    height: 160px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campus-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    color: white;
}

.card-content h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.card-content p {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.campus-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
}

.campus-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 10px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Campus Selection */
.campus-selection {
    padding: 100px 0;
    background: white;
}

.selection-header {
    text-align: center;
    margin-bottom: 50px;
}

.selection-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.selection-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.campus-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}

.toggle-btn:hover:not(.active) {
    background: rgba(26, 54, 93, 0.1);
}

.campus-content {
    position: relative;
}

.campus-info {
    display: none;
    animation: fadeIn 0.5s ease;
}

.campus-info.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.campus-details h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.campus-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 30px;
}

.campus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.feature:hover i {
    color: white;
}

.btn-explore {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
}

.btn-explore:hover {
    background: var(--accent);
    transform: translateX(5px);
}

.campus-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.campus-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campus-image:hover img {
    transform: scale(1.05);
}

/* Interactive Facilities */
.interactive-facilities {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(26, 54, 93, 0.2);
}

.section-header-premium h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header-premium p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.facility-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.facility-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.facility-card.appear {
    opacity: 1;
    transform: translateY(0);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.campus-badge.boys {
    background: var(--boys-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.campus-badge.girls {
    background: var(--girls-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.facility-content {
    padding: 25px;
}

.facility-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.facility-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.facility-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.facility-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 0.9rem;
}

.facility-features i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.facility-details-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.facility-details-btn:hover {
    background: var(--accent);
    transform: translateX(5px);
}

/* Video Tour Section */
.video-tour-section {
    padding: 100px 0;
    background: white;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.video-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

#campusVideo {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: #f0c869;
}

.video-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-overlay p {
    color: #e2e8f0;
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.control-btn.active {
    background: var(--secondary);
    color: var(--primary);
}

/* Campus Location */
.campus-location {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-content {
    margin-top: 50px;
}

.location-info {
    height: 100%;
    display: flex;
    align-items: center;
}

.address-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.address-card h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.address-card h4 i {
    color: var(--secondary);
    margin-right: 10px;
}

.address-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #495057;
}

.contact-item i {
    color: var(--secondary);
    width: 20px;
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-direction {
    background: var(--primary);
    color: white;
}

.btn-direction:hover {
    background: var(--accent);
}

.btn-call {
    background: var(--success);
    color: white;
}

.btn-call:hover {
    background: #0da271;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Campus Stats */
.campus-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--secondary);
}

#modalVideo {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .campus-visual {
        height: 300px;
        margin-top: 40px;
    }
    
    .campus-card {
        width: 220px;
    }
    
    .campus-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .campus-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-controls {
        flex-direction: column;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    #campusVideo,
    #modalVideo {
        height: 300px;
    }
}
