﻿/* Home Page Styles */
/* ===== HOME V2 - SPLIT SCREEN ===== */
        .hero-split {
            display: flex;
            min-height: 100vh;
        }
        
        .split-left {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            padding: 100px 5% 100px 10%;
        }
        
        .split-right {
            flex: 1;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 10% 100px 5%;
        }
        
        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
        }
        
        .highlight-text {
            color: #ffd700;
        }
        
        .btn-action-primary {
            background: white;
            color: #667eea;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-action-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: #667eea;
        }
        
        .btn-action-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-action-outline:hover {
            background: white;
            color: #667eea;
        }
        
        .trust-badges {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
        }
        
        .trust-item i {
            color: #ffd700;
        }
        
        .split-image-container {
            position: relative;
        }
        
        .split-main-img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .floating-stat {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .stat-1 {
            top: 20px;
            right: -20px;
        }
        
        .stat-2 {
            bottom: 40px;
            left: -20px;
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .service-card-v2 {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card-v2:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon-v2 {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .service-icon-v2.icon-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
        .service-icon-v2.icon-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
        .service-icon-v2.icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
        
        .service-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: #764ba2;
        }
        
        .section-label {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .timeline-simple {
            border-left: 3px solid #667eea;
            padding-left: 2rem;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 0.5rem;
            width: 15px;
            height: 15px;
            background: #667eea;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #667eea;
        }
        
        .timeline-year {
            font-weight: 700;
            color: #667eea;
            font-size: 1.2rem;
        }
        
        .about-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .img-grid-item.item-1 {
            grid-column: 1 / 3;
        }
        
        .stat-card-modern {
            position: relative;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .stat-icon-bg {
            position: absolute;
            bottom: -20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #667eea;
        }
        
        .news-card-v2 {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .news-card-v2:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .news-image-v2 {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .news-date-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .date-day {
            font-size: 1.5rem;
            font-weight: 700;
            color: #667eea;
            line-height: 1;
        }
        
        .date-month {
            font-size: 0.8rem;
            color: #6b7280;
        }
        
        .news-body-v2 {
            padding: 1.5rem;
        }
        
        .news-category-badge {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .read-more-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more-link:hover {
            color: #764ba2;
        }
        
        .cta-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 3rem;
            border-radius: 20px;
            color: white;
        }
        
        .btn-light-custom {
            background: white;
            color: #667eea;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .btn-outline-light-custom {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        
        /* ===== HOME V3 - VIDEO STYLE ===== */
        .hero-video-style {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
        }
        
        .hero-badge-pill {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .btn-hero-primary {
            background: white;
            color: #667eea;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: #667eea;
        }
        
        .btn-hero-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .scroll-indicator {
            margin-top: 3rem;
        }
        
        .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
        }
        
        .mouse::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: white;
            border-radius: 2px;
            animation: scroll 2s infinite;
        }
        
        @keyframes scroll {
            0% { opacity: 1; top: 10px; }
            100% { opacity: 0; top: 30px; }
        }
        
        .features-boxes {
            margin-top: -80px;
        }
        
        .feature-box-horizontal {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .feature-box-horizontal:hover {
            transform: translateY(-5px);
        }
        
        .fb-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .modern-image-stack {
            position: relative;
        }
        
        .img-stack-2 {
            position: absolute;
            bottom: -30px;
            right: -30px;
            z-index: 2;
        }
        
        .experience-badge {
            position: absolute;
            top: -20px;
            left: -20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 2rem;
            border-radius: 50%;
            width: 150px;
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 3;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }
        
        .exp-number {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .label-tag {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .af-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .af-check {
            width: 30px;
            height: 30px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            flex-shrink: 0;
        }
        
        .program-showcase-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .program-showcase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .testimonial-card-v2 {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
        }
        
        .tc-quote-icon {
            font-size: 3rem;
            color: rgba(102, 126, 234, 0.1);
            margin-bottom: 1rem;
        }
        
        .tc-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .tc-rating {
            margin-top: 1rem;
        }
        
        /* ===== HOME V4 - DIAGONAL CREATIVE ===== */
        .hero-diagonal {
            position: relative;
            min-height: 75vh;
            overflow: hidden;
        }
        
        /* Layer 3: Content Layer */
        .hero-content-layer {
            position: relative;
            z-index: 5;
            padding-top: 150px;
        }
        
        /* Ensure images in hero section are not cropped */
        .hero-diagonal img {
            max-width: 100%;
            height: auto;
        }
        
        /* Layer 1: Slider Background */
        .hero-slider-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .slider-item.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            background-color: #ffffff;
        }
        
        /* Diagonal overlays removed - single purple background */
        .diagonal-bg-left {
            display: none;
        }
        
        .diagonal-bg {
            display: none;
        }
        
        .creative-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
        }
        
        .pulse-dot {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-animation 2s infinite;
        }
        
        @keyframes pulse-animation {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        @keyframes star-twinkle {
            0%, 100% { 
                opacity: 0.3; 
                transform: scale(1) rotate(0deg); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.3) rotate(180deg); 
            }
        }
        
        .text-accent {
            color: #fbbf24;
        }
        
        .btn-accent {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border: none;
            color: #0f172a;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
            color: #0f172a;
        }
        
        .btn-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .avatar-group {
            display: flex;
        }
        
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: -10px;
            border: 2px solid white;
        }
        
        .avatar-more {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fbbf24;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.8rem;
            margin-left: 10px;
            border: 2px solid white;
        }
        
        .diagonal-content {
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        #heroSection:hover .diagonal-content {
            opacity: 0;
            transform: translateX(-100px);
        }
        
        .diagonal-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .diagonal-image-wrapper {
            position: relative;
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        #heroSection:hover .diagonal-image-wrapper {
            opacity: 0;
            transform: translateX(100px);
        }
        
        /* New Content After Translate */
        .hero-after-translate-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 4;
        }
        
        .hero-left-text,
        .hero-right-text {
            position: absolute;
            top: 70%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.8s ease 0.3s;
        }
        
        .hero-left-text {
            left: 3%;
        }
        
        .hero-right-text {
            right: 3%;
        }
        
        /* Star decoration effects */
        .hero-left-text::before,
        .hero-left-text::after,
        .hero-right-text::before,
        .hero-right-text::after {
            content: '✦';
            position: absolute;
            font-size: 1.2rem;
            color: #FBBF24;
            opacity: 0;
            animation: star-twinkle 2s ease-in-out infinite;
        }
        
        .hero-left-text::before {
            top: -30px;
            left: 20px;
            animation-delay: 0s;
        }
        
        .hero-left-text::after {
            bottom: -25px;
            right: 15px;
            animation-delay: 1s;
        }
        
        .hero-right-text::before {
            top: -30px;
            right: 20px;
            animation-delay: 0.5s;
        }
        
        .hero-right-text::after {
            bottom: -25px;
            left: 15px;
            animation-delay: 1.5s;
        }
        
        #heroSection:hover .hero-left-text::before,
        #heroSection:hover .hero-left-text::after,
        #heroSection:hover .hero-right-text::before,
        #heroSection:hover .hero-right-text::after {
            opacity: 0.7;
        }
        
        /* Vertical Column Layout */
        .hero-text-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            padding: 20px 0;
        }
        
        /* Decorative diamond icons */
        .hero-text-column::before,
        .hero-text-column::after {
            content: '◆';
            position: absolute;
            font-size: 0.8rem;
            color: #FBBF24;
            opacity: 0;
            transition: opacity 0.8s ease 0.5s;
        }
        
        .hero-text-column::before {
            top: 5px;
        }
        
        .hero-text-column::after {
            bottom: 5px;
        }
        
        #heroSection:hover .hero-text-column::before,
        #heroSection:hover .hero-text-column::after {
            opacity: 0.8;
        }
        
        .hero-text-line {
            font-size: 3rem;
            font-weight: 700;
            color: #FBBF24;
            line-height: 1.3;
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(251, 191, 36, 0.5),
                0 0 25px rgba(251, 191, 36, 0.3);
            letter-spacing: 0.08em;
        }
        
        #heroSection:hover .hero-left-text,
        #heroSection:hover .hero-right-text {
            opacity: 1;
        }
        
        .diagonal-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }
        
        .diagonal-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            width: auto;
            height: auto;
        }
        
        .school-logo-card {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .school-logo-img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            flex-shrink: 0;
        }
        
        .school-name {
            flex: 1;
        }
        
        .school-name-chinese {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .school-name-english {
            font-size: 1.1rem;
            font-weight: 600;
            color: #64748b;
            margin: 0;
            letter-spacing: 1px;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .float-el {
            position: absolute;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fbbf24;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .el-1 { top: 10%; left: -10%; animation: float 3s ease-in-out infinite; }
        .el-2 { bottom: 20%; right: -10%; animation: float 3s ease-in-out infinite 1s; }
        .el-3 { top: 50%; right: -15%; animation: float 3s ease-in-out infinite 2s; }
        
        .modern-tag {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .bento-item {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .bento-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .bento-large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .bento-wide {
            grid-column: span 2;
        }
        
        .bento-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #667eea;
        }
        
        .mini-stat {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .stats-cards-vertical {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .stat-v-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .stat-v-card:hover {
            transform: translateX(10px);
        }
        
        .svc-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .program-h-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .program-h-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .phc-number {
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 6rem;
            font-weight: 700;
            color: rgba(102, 126, 234, 0.05);
        }
        
        .phc-features li {
            margin-bottom: 0.5rem;
        }
        
        .phc-features i {
            margin-right: 0.5rem;
        }
        
        .news-masonry-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .news-masonry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .nmc-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .nmc-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(102, 126, 234, 0.9);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .nmc-body {
            padding: 1.5rem;
        }
        
        .nmc-meta {
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .nmc-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .nmc-link:hover {
            color: #764ba2;
        }
        
        .btn-outline-accent {
            border: 2px solid #667eea;
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-accent:hover {
            background: #667eea;
            color: white;
        }
        
        /* ===== MODERN HERO SECTION ===== */
        .modern-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
            padding: 120px 0 100px;
        }
        
        /* Hero Section Fullscreen */
        .hero-section-fullscreen {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        /* Step 1: Slider Background */
        .hero-slider-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .slider-item.active {
            opacity: 1;
            z-index: 2;
        }
        
        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
            padding: 12px 20px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }
        
        .slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 2px solid #667eea;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0;
        }
        
        .slider-dots .dot:hover {
            transform: scale(1.15);
            box-shadow: 0 0 12px rgba(102, 126, 234, 0.4);
        }
        
        .slider-dots .dot.active {
            width: 36px;
            border-radius: 20px;
            transform: scale(1);
            background: #667eea;
            border-color: #667eea;
            box-shadow: 0 0 16px rgba(102, 126, 234, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* Step 2: Purple Transparent Overlay (Split Left & Right) */
        .hero-purple-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
        }
        
        .hero-purple-overlay .overlay-left {
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(173, 216, 230, 0.5) 100%);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hero-purple-overlay .overlay-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(173, 216, 230, 0.5) 100%);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* When hover - slide out left and right */
        #heroSection:hover .hero-purple-overlay .overlay-left {
            transform: translateX(-80%);
        }
        
        #heroSection:hover .hero-purple-overlay .overlay-right {
            transform: translateX(80%);
        }
        
        /* Particles */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 3;
        }
        
        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }
        
        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 2s; }
        .particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; }
        .particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 4s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Step 3 & 4: Auto Doors */
        .hero-auto-doors {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 4;
            display: flex;
        }
        
        .door {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 4rem;
            color: white;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .door-left {
            transform: translateX(0);
        }
        
        .door-right {
            transform: translateX(0);
        }
        
        /* Hover - Auto Door Opens */
        #heroSection:hover .door-left {
            transform: translateX(-50%);
        }
        
        #heroSection:hover .door-right {
            transform: translateX(50%);
        }
        
        .door-left {
            transform: translateX(0);
        }
        
        .door-right {
            transform: translateX(0);
        }
        
        /* Hover - Auto Door Opens */
        #heroSection:hover .door-left {
            transform: translateX(-50%);
        }
        
        #heroSection:hover .door-right {
            transform: translateX(50%);
        }
        
        .door-content {
            max-width: 600px;
        }
        
        .door-content.text-end {
            text-align: right;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .text-gradient-yellow {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .btn-custom-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
            color: white;
        }
        
        .btn-custom-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-custom-outline:hover {
            background: white;
            color: #667eea;
            transform: translateY(-2px);
        }
        
        .hero-buttons .btn {
            margin: 0.5rem 0;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
            color: white;
        }
        
        .hero-stats {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .stat-divider {
            width: 2px;
            height: 50px;
            background: rgba(255, 255, 255, 0.3);
        }
        
        .hero-image-wrapper {
            position: relative;
        }
        
        .hero-image-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .hero-image-card img {
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }
        
        /* Custom Hero Slider */
        .hero-slider-custom {
            position: relative;
            height: 400px;
        }
        
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            pointer-events: none;
        }
        
        .slider-slide.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        .hero-slide-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 18px;
        }
        
        .slider-dots {
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }
        
        .slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #667eea;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dots .dot:hover {
            background: transparent;
            box-shadow: 0 0 12px rgba(102, 126, 234, 0.4);
        }
        
        .slider-dots .dot.active {
            background: #667eea;
            border-color: #667eea;
            transform: scale(1.2);
        }
        
        .hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1;
        }
        
        /* Animations */
        .animate-fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        
        .animate-slide-up {
            animation: slideUp 0.8s ease-out;
        }
        
        .animate-slide-up-delay {
            animation: slideUp 0.8s ease-out 0.2s both;
        }
        
        .animate-fade-in-delay {
            animation: fadeIn 0.8s ease-out 0.4s both;
        }
        
        .animate-fade-in-delay-2 {
            animation: fadeIn 0.8s ease-out 0.6s both;
        }
        
        .animate-float {
            animation: floatAnimation 3s ease-in-out infinite;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* ===== FEATURES SECTION ===== */
        .features-section {
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* New Feature Card Styles */
        .feature-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .feature-card .feature-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(1);
            z-index: 0;
            border-radius: 15px;
        }
        
        .feature-card:hover .feature-image {
            opacity: 1;
            transform: scale(1.08);
        }
        
        .feature-card .feature-icon {
            position: relative;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .feature-card:hover .feature-icon {
            opacity: 0;
            transform: scale(0.8);
        }
        
        .feature-card .feature-content {
            position: relative;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .feature-card:hover .feature-content {
            opacity: 0;
            transform: translateY(20px);
        }
        
        /* Hover Effects for Feature Cards */
        .features-section .row {
            transition: all 0.3s ease;
        }
        
        .features-section .row.g-4 {
            display: flex;
            flex-wrap: wrap;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }
        
        .feature-icon.icon-culture {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }
        
        .feature-icon.icon-global {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }
        
        .feature-icon.icon-innovation {
            background: linear-gradient(135deg, #43e97b, #38f9d7);
        }
        
        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 100px 0;
        }
        
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-floating-card {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .floating-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .highlight-item {
            padding: 0.5rem;
            font-size: 0.95rem;
        }
        
        /* ===== PROGRAMS SECTION ===== */
        .programs-section {
            padding: 100px 0;
        }
        
        .section-header {
            margin-bottom: 3rem;
        }
        
        .program-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .program-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .program-card:hover .program-image img {
            transform: scale(1.1);
        }
        
        .program-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(102, 126, 234, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .program-card:hover .program-overlay {
            opacity: 1;
        }
        
        .program-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        .program-content {
            padding: 1.5rem;
        }
        
        .program-features li {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* ===== STATS SECTION ===== */
        .stats-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
        }
        
        .bg-primary-custom {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        }
        
        .stat-counter {
            padding: 2rem;
        }
        
        /* ===== NEWS & EVENTS SECTION ===== */
        .news-events-section {
            padding: 100px 0;
        }
        
        .news-card-modern {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .news-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .news-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card-modern:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
        }
        
        .news-content {
            padding: 1.5rem;
        }
        
        .news-title {
            font-weight: 600;
            line-height: 1.4;
        }
        
        .news-excerpt {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .read-more {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: #764ba2;
        }
        
        .read-more i {
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        .event-card-modern {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            gap: 1rem;
            height: 100%;
        }
        
        .event-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .event-date-badge {
            background: #ffffff;
            border: 2px solid #667eea;
            color: #333;
            padding: 1rem 0.8rem;
            border-radius: 16px;
            text-align: center;
            min-width: 90px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
            position: relative;
        }
        
        .date-day {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
            color: #667eea;
            margin-bottom: 0.2rem;
        }
        
        .date-month {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #764ba2;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
        }
        
        .event-content {
            flex: 1;
        }
        
        .event-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .event-description {
            font-size: 0.9rem;
        }
        
        .event-location {
            font-size: 0.85rem;
        }
        
        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-section {
            padding: 100px 0;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .testimonial-rating i {
            margin-right: 0.2rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-info h6 {
            margin-bottom: 0.2rem;
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
        }
        
        .bg-gradient-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .news-card, .event-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .news-card:hover, .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        /* Standard Footer */
        .footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 60px 0 30px;
            margin-top: 0;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 8px;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .footer .social-links a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .footer hr {
            border-color: rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        
        .footer .contact-info p {
            margin-bottom: 10px;
            color: #cbd5e1;
        }
        
        .footer .contact-info i {
            color: var(--secondary-color);
            width: 20px;
            margin-right: 8px;
        }
        
        /* Responsive styles for hero section images */
        @media (max-width: 768px) {
            .hero-diagonal {
                min-height: 60vh;
            }
            
            /* Hide after-translate content on mobile */
            .hero-after-translate-content {
                display: none;
            }
            
            .diagonal-card {
                padding: 1.5rem;
                min-height: 300px;
            }
            
            .slider-item img {
                object-position: center;
            }
        }
        
        /* Tablet adjustments */
        @media (max-width: 991px) and (min-width: 769px) {
            .hero-text-line {
                font-size: 3rem;
            }
            
            .hero-left-text {
                left: 5%;
            }
            
            .hero-right-text {
                right: 5%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-diagonal {
                min-height: 50vh;
            }
            
            .diagonal-card {
                padding: 1rem;
                min-height: 250px;
            }
        }
        
        @media (max-width: 991px) {
            .navbar-floating {
                width: 100%;
                padding: 0.5rem 1rem;
            }
            
            .modern-hero {
                padding: 100px 0 80px;
                min-height: auto;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .stat-divider {
                display: none;
            }
            
            .about-floating-card {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 1rem;
            }
        }
        
        /* ===== HOME V5 - MINIMALIST DESIGN ===== */
        .minimalist-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        
        .minimal-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .minimal-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        .hero-visual-minimal {
            position: relative;
            height: 500px;
        }
        
        .minimal-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        }
        
        .minimal-circle.large {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .minimal-circle.medium {
            width: 200px;
            height: 200px;
            top: 20%;
            right: 10%;
        }
        
        .minimal-circle.small {
            width: 100px;
            height: 100px;
            bottom: 10%;
            left: 20%;
        }
        
        .minimal-logo-card {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            z-index: 2;
        }
        
        .btn-minimal-primary {
            background: white;
            color: #667eea;
            border: 1px solid #e2e8f0;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .btn-minimal-primary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .btn-minimal-outline {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-minimal-outline:hover {
            background: #667eea;
            color: white;
        }
        
        .value-card-minimal {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .value-card-minimal:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon-minimal {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        
        .section-label-minimal {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .feature-minimal-item {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .program-card-minimal {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .program-card-minimal:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .program-number-minimal {
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 6rem;
            font-weight: 700;
            color: rgba(102, 126, 234, 0.05);
        }
        
        .program-list-minimal {
            list-style: none;
            padding: 0;
        }
        
        .program-list-minimal li {
            padding: 0.5rem 0;
            color: #6b7280;
        }
        
        .stat-minimal {
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .news-card-minimal {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .news-card-minimal:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .news-date-minimal {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: #f8fafc;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        
        .news-date-minimal .day {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
            line-height: 1;
        }
        
        .news-date-minimal .month {
            font-size: 0.9rem;
            color: #6b7280;
            text-transform: uppercase;
        }
        
        .news-link-minimal {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .news-link-minimal:hover {
            color: #764ba2;
        }
        
        /* ===== HOME V6 - INTERACTIVE DESIGN ===== */
        .interactive-hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .floating-card {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            animation: floatCard 6s infinite ease-in-out;
        }
        
        .card-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .card-2 { top: 60%; left: 80%; animation-delay: 1.5s; }
        .card-3 { top: 40%; left: 70%; animation-delay: 3s; }
        .card-4 { top: 80%; left: 20%; animation-delay: 4.5s; }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }
        
        .hero-badge-interactive {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .badge-pulse {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .text-gradient-interactive {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-title-interactive {
            font-weight: 800;
            line-height: 1.2;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes titleGlow {
            from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
            to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
        }
        
        .btn-interactive-primary {
            background: white;
            color: #667eea;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-interactive-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .btn-interactive-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-interactive-outline:hover {
            background: white;
            color: #667eea;
        }
        
        .scroll-indicator-interactive {
            margin-top: 3rem;
        }
        
        .scroll-mouse {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
        }
        
        .scroll-mouse::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: white;
            border-radius: 2px;
            animation: scroll 2s infinite;
        }
        
        .section-label-interactive {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .feature-card-interactive {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            cursor: pointer;
        }
        
        .feature-card-interactive:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon-interactive {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .feature-hover-content {
            margin-top: 1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card-interactive:hover .feature-hover-content {
            opacity: 1;
        }
        
        .interactive-stats {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .stat-item-interactive {
            text-align: center;
        }
        
        .stat-number-interactive {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            display: block;
        }
        
        .stat-label-interactive {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .about-visual-interactive {
            position: relative;
        }
        
        .image-card-interactive {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .image-card-interactive.main {
            margin-bottom: 2rem;
        }
        
        .image-card-interactive.floating {
            position: absolute;
            bottom: -30px;
            right: -30px;
            z-index: 2;
        }
        
        .achievement-badge-interactive {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .program-card-interactive {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .program-card-interactive:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .program-header-interactive {
            padding: 2rem;
            text-align: center;
        }
        
        .program-body-interactive {
            padding: 2rem;
        }
        
        .program-features-interactive {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .feature-item-interactive {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        .program-action-interactive {
            text-align: center;
        }
        
        .news-card-interactive {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .news-card-interactive:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .news-image-interactive {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .news-category-interactive {
            position: absolute;
            top: 1rem;
            left: 1rem;
        }
        
        .news-content-interactive {
            padding: 1.5rem;
        }
        
        .news-link-interactive {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .news-link-interactive:hover {
            color: #764ba2;
        }
        
        .cta-box-interactive {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 3rem;
            border-radius: 20px;
            color: white;
        }
        
        /* ===== HOME V7 - BOLD TYPOGRAPHY ===== */
        .bold-hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
        }
        
        .typographic-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        
        .hero-badge-bold {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .badge-glow {
            width: 12px;
            height: 12px;
            background: #10b981;
            border-radius: 50%;
            animation: glow 2s infinite;
        }
        
        @keyframes glow {
            0%, 100% { box-shadow: 0 0 10px #10b981; }
            50% { box-shadow: 0 0 20px #10b981, 0 0 30px #10b981; }
        }
        
        .hero-title-bold {
            font-weight: 900;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -2px;
        }
        
        .title-line {
            display: block;
            margin-bottom: 0.2rem;
        }
        
        .hero-subtitle-bold {
            font-size: 1.2rem;
            letter-spacing: 3px;
            opacity: 0.8;
            text-transform: uppercase;
        }
        
        .btn-bold-primary {
            background: white;
            color: #1e293b;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-bold-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .btn-bold-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-bold-outline:hover {
            background: white;
            color: #1e293b;
        }
        
        .typographic-stats {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .stat-bold {
            text-align: center;
        }
        
        .stat-bold .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
        }
        
        .stat-bold .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .title-bold {
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        
        .subtitle-bold {
            font-size: 1.1rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .values-grid-bold {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .value-item-bold {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .value-item-bold:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .value-number-bold {
            font-size: 3rem;
            font-weight: 900;
            color: #667eea;
            line-height: 1;
        }
        
        .value-title-bold {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .value-desc-bold {
            color: #6b7280;
            line-height: 1.6;
        }
        
        .section-label-bold {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .highlight-bold-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .typographic-image-main {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .typographic-quote {
            background: rgba(102, 126, 234, 0.1);
            padding: 2rem;
            border-radius: 15px;
            position: relative;
        }
        
        .quote-icon {
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 3rem;
            color: #667eea;
            opacity: 0.3;
        }
        
        .quote-text {
            font-style: italic;
            font-weight: 500;
            text-align: center;
            color: #1e293b;
        }
        
        .programs-timeline-bold {
            position: relative;
            padding-left: 3rem;
        }
        
        .programs-timeline-bold::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #667eea;
        }
        
        .program-timeline-item {
            position: relative;
            margin-bottom: 3rem;
        }
        
        .timeline-marker {
            position: absolute;
            left: -2.4rem;
            top: 0;
            width: 20px;
            height: 20px;
            background: #667eea;
            border: 4px solid white;
            border-radius: 50%;
            box-shadow: 0 0 0 4px #667eea;
        }
        
        .program-card-bold {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .program-card-bold:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .program-header-bold {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .program-title-bold {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .program-years-bold {
            background: #667eea;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .program-features-bold {
            list-style: none;
            padding: 0;
        }
        
        .program-features-bold li {
            padding: 0.5rem 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .stats-grid-bold {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .stat-item-bold-large {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .stat-item-bold-large:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .stat-icon-bold {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }
        
        .stat-number-bold {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .stat-label-bold {
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .news-grid-bold {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .news-card-bold {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .news-card-bold:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .news-date-bold {
            position: absolute;
            top: -20px;
            right: 20px;
            background: #667eea;
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            min-width: 60px;
        }
        
        .date-bold-day {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .date-bold-month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .news-category-bold {
            display: inline-block;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .news-title-bold {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.3;
        }
        
        .news-link-bold {
            color: #667eea;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .news-link-bold:hover {
            color: #764ba2;
        }
        
        /* ===== HOME V8 - GLASSMORPHISM ===== */
        .glass-hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .glass-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .glass-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
        }
        
        .glass-particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
        
        .glass-particle {
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            animation: floatGlass 8s infinite ease-in-out;
        }
        
        .glass-particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .glass-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
        .glass-particle:nth-child(3) { top: 30%; left: 60%; animation-delay: 4s; }
        .glass-particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 6s; }
        .glass-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 1s; }
        
        @keyframes floatGlass {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }
        
        .glass-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .glass-pulse {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .glass-title {
            font-weight: 800;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -2px;
        }
        
        .glass-title .highlight {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .glass-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .btn-glass-primary {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-glass-primary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .btn-glass-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-glass-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }
        
        .glass-stats {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .glass-stat {
            text-align: center;
        }
        
        .glass-stat .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
        }
        
        .glass-stat .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .glass-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .glass-section-title {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        
        .glass-subtitle-secondary {
            font-size: 1.1rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .features-glass-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .glass-feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .glass-feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .glass-icon-wrapper {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .glass-feature-title {
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .glass-feature-desc {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .glass-hover-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .glass-feature-card:hover .glass-hover-effect {
            left: 100%;
        }
        
        .glass-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            pointer-events: none;
        }
        
        .glass-achievements {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .glass-achievement-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .glass-achievement-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .achievement-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .achievement-content h5 {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .achievement-content p {
            opacity: 0.8;
            margin: 0;
        }
        
        .about-glass-visual {
            position: relative;
        }
        
        .glass-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        
        .glass-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
        }
        
        .floating-glass-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            min-width: 150px;
        }
        
        .glass-card-content i {
            color: #667eea;
            margin-bottom: 0.5rem;
        }
        
        .glass-card-content h5 {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e293b;
        }
        
        .glass-card-content p {
            color: #6b7280;
            margin: 0;
            font-size: 0.9rem;
        }
        
        .programs-glass-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .glass-program-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .glass-program-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .program-glass-header {
            padding: 2rem;
            text-align: center;
        }
        
        .program-glass-body {
            padding: 2rem;
        }
        
        .program-glass-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .glass-feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        
        .stats-glass-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .glass-stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .glass-stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .glass-stat-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1rem;
        }
        
        .glass-stat-number {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .glass-stat-label {
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .news-glass-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .glass-news-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .glass-news-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .glass-news-date {
            position: absolute;
            top: -20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 1rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            min-width: 60px;
            color: #1e293b;
        }
        
        .date-day {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .date-month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .news-category-glass {
            display: inline-block;
            background: rgba(102, 126, 234, 0.2);
            color: #667eea;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .glass-news-title {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        .glass-news-excerpt {
            opacity: 0.8;
            margin-bottom: 1rem;
        }
        
        .glass-news-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .glass-news-link:hover {
            color: #764ba2;
        }
        
        .glass-cta-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .glass-cta-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
        }
        
        .cta-glass {
            position: relative;
            overflow: hidden;
        }
        
        .cta-glass .container {
            position: relative;
            z-index: 2;
        }

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   Mobile & Tablet Optimizations
   ======================================== */

/* Notification Sidebar - Tablet */
@media (max-width: 991px) {
    .notification-sidebar {
        width: 320px;
    }
    
    .notification-sidebar.collapsed {
        transform: translateY(-50%) translateX(-260px);
    }
}

/* Notification Sidebar - Mobile */
@media (max-width: 767px) {
    .notification-sidebar {
        width: 280px;
        max-height: 60vh;
    }
    
    .notification-sidebar.collapsed {
        transform: translateY(-50%) translateX(-220px);
    }
    
    .notification-sidebar-header {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .notification-sidebar-item {
        padding: 0.8rem;
    }
    
    .collapsed-tab-text span {
        font-size: 0.7rem;
    }
}

/* Hero Section - All Mobile Sizes */
@media (max-width: 991px) {
    .hero-diagonal {
        min-height: 65vh;
    }
    
    .diagonal-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .display-2 {
        font-size: 2.5rem !important;
    }
    
    .creative-badge {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .hero-diagonal {
        min-height: 60vh;
        padding: 1.5rem 0;
    }
    
    .diagonal-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .display-2 {
        font-size: 2rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .hero-diagonal {
        min-height: 55vh;
    }
    
    .diagonal-card {
        padding: 1.2rem;
        min-height: 250px;
    }
    
    .display-2 {
        font-size: 1.7rem !important;
    }
    
    .creative-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Seven Habits / Features Section */
@media (max-width: 991px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: 2rem 0 !important;
        margin: 2rem 0 !important;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}

/* About Section */
@media (max-width: 991px) {
    .about-floating-card {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .about-content {
        text-align: center;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
}

/* Testimonials Section */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* CTA Section */
@media (max-width: 767px) {
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem !important;
    }
    
    .display-6 {
        font-size: 1.5rem !important;
    }
}

/* Video Sections */
@media (max-width: 991px) {
    .video-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .school-song-section {
        padding: 2rem 0;
    }
}

/* Statistics Section */
@media (max-width: 991px) {
    .stat-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* News Section */
@media (max-width: 991px) {
    .glass-news-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 2rem 0;
    }
    
    .glass-news-card {
        padding: 1.5rem;
    }
    
    .glass-news-title {
        font-size: 1.1rem;
    }
}

/* Announcement Popup - Mobile */
@media (max-width: 767px) {
    .announcement-popup-container {
        width: 90%;
        max-width: 400px;
    }
    
    .popup-media-container {
        max-height: 200px;
    }
}

@media (max-width: 575px) {
    .announcement-popup-container {
        width: 95%;
    }
}

/* General Spacing Adjustments for Mobile */
@media (max-width: 767px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
}

/* Images - Ensure Responsiveness */
@media (max-width: 767px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .img-fluid {
        max-width: 100%;
    }
}

/* Icons - Scale down on mobile */
@media (max-width: 767px) {
    .fa-3x {
        font-size: 2rem !important;
    }
    
    .fa-2x {
        font-size: 1.5rem !important;
    }
}

/* Footer - Already has some responsive, enhance it */
@media (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .footer .social-links a {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
}
