        :root {
            --primary: #1a365d;
            --secondary: #d4af37;
            --light: #f8f9fa;
            --dark: #343a40;
            --accent: #2c5282;
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --gold-color: #FFD700;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* About Page Specific Styles */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)), url('../img/kid4.jpg');
            color: white;
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/kid4.jpg') no-repeat center center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 4rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Section Titles (Luxury Style) */
        .section-title {
            position: relative;
            margin-bottom: 60px;
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 2.5rem;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gold-color);
            border-radius: 2px;
        }
        
        /* Feature Cards (3D Hover Effect) */
        .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            background: white;
            position: relative;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .feature-card:hover::before {
            opacity: 0.05;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotate(15deg) scale(1.2);
        }
        
        /* Leadership Team (CEO-Level Design) */
        .leader-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            position: relative;
            z-index: 1;
            margin-bottom: 40px;
        }
        
        .leader-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .leader-card:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: 0 40px 80px rgba(0,0,0,0.25);
        }
        
        .leader-card:hover::before {
            opacity: 0.1;
        }
        
        .leader-img {
            height: 350px;
            object-fit: cover;
            object-position: top;
            transition: all 0.6s ease;
            filter: grayscale(30%);
        }
        
        .leader-card:hover .leader-img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }
        
        .leader-social {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .leader-card:hover .leader-social {
            opacity: 1;
            transform: translateY(0);
        }
        
        .leader-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .leader-social a:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }
        
        .leader-info {
            padding: 30px;
            text-align: center;
        }
        
        .leader-name {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .leader-position {
            color: var(--gold-color);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }
        
        .leader-bio {
            font-size: 1rem;
            color: #666;
        }
        
        /* Stats Section (Animated Counters) */
        .stats-item {
            padding: 40px;
            text-align: center;
            border-radius: 15px;
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .stats-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-color);
        }
        
        .stats-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .stats-number {
            font-size: 4rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Testimonials (Carousel Style) */
        .testimonial-carousel {
            padding: 50px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 40px;
            margin: 20px;
            transition: all 0.5s ease;
            border-left: 5px solid var(--gold-color);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .testimonial-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .testimonial-role {
            color: var(--secondary-color);
            font-weight: 500;
        }
        
        /* Gallery (Lightbox Effect) */
        .gallery-item {
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            margin-bottom: 30px;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .gallery-img {
            height: 250px;
            object-fit: cover;
            transition: all 0.8s ease;
            cursor: pointer;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        /* Timeline (Interactive) */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 0;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: var(--gold-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-content {
            padding: 30px;
            background: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            right: -15px;
            background: white;
            border: 5px solid var(--gold-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .right::after {
            left: -15px;
        }

        /* achievement section */
        /* Achievement Badges Section */
.achievement-badge {
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
}

.achievement-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.achievement-badge i {
    margin-bottom: 1.5rem;
    display: block;
}

.achievement-badge h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.achievement-badge p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Video Introduction Section */
.video-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.video-overlay {
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.play-btn {
    width: 80px;
    height: 80px;
    border: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.play-btn:hover {
    transform: scale(1.1);
    background: #0056b3 !important;
}

.video-badge .badge {
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Pulse animation for play button */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.video-thumbnail:hover .play-btn {
    animation: pulse 2s infinite;
}

/* Modal styling */
#videoModal .modal-content {
    background: transparent;
}

#videoModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#videoModal .btn-close:hover {
    opacity: 1;
}

        
        /* CTA Section (Conversion Optimized) */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/kid4.jpg') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-button {
            font-size: 1.2rem;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.5s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        /* Contact Info */
        .contact-info-item {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            height: 100%;
        }
        
        .contact-info-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
        }

                /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: white;
            transform: translateY(-5px);
        }
        
          /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            font-size: 28px;
        }

        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            color: white;
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .leader-img {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 100px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .leader-img {
                height: 250px;
            }
            
            .stats-number {
                font-size: 3rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 18px;
            }
            
            .left::after, .right::after {
                left: 18px;
            }
            
            .right {
                left: 0%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
        }
