* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1e3a5f;
            --secondary-color: #2c5282;
            --accent-color: #ee986c;
            --text-color: #333;
            --light-bg: #f7f7f7;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }

        /* Header & Navigation */
        header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            height: 70px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            right: 0;
            background: var(--accent-color);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--accent-color);
            color: var(--white) !important;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(238, 152, 108, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(238, 152, 108, 0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Navigation Styles */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 85px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 85px);
                background: var(--white);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links a {
                font-size: 1.2rem;
                padding: 1rem 0;
            }

            .cta-button {
                margin-top: 1rem;
            }
        }

        /* Hero Section */
        .hero {
            margin-top: 85px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 5rem 5%;
            min-height: calc(100vh - 85px);
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 900;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content .subtitle {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
            animation: fadeInUp 1s ease;
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s ease;
        }

        .badge {
            background: var(--white);
            color: var(--primary-color);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .badge i {
            color: var(--accent-color);
        }

        .hero-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 1.4s ease;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 1.6s ease;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(30, 58, 95, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.3;
            z-index: -1;
        }

        /* Stats Section */
        .stats {
            background: var(--primary-color);
            padding: 3rem 5%;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            color: var(--white);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-color);
            display: block;
        }

        .stat-text {
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        /* About Section */
        .about {
            padding: 5rem 5%;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 900;
            position: relative;
            display: inline-block;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
        }

        .qualifications-timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .qualifications-timeline::before {
            content: '';
            position: absolute;
            right: 50px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent-color);
        }

        .timeline-item {
            position: relative;
            padding: 2rem 3rem 2rem 0;
            margin-bottom: 2rem;
            background: var(--light-bg);
            border-radius: 10px;
            margin-right: 80px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .timeline-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            right: -83px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: var(--accent-color);
            border-radius: 50%;
            border: 3px solid var(--white);
            box-shadow: 0 0 0 3px var(--accent-color);
        }

        .timeline-year {
            position: absolute;
            right: -160px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .timeline-content h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.6;
        }

        .timeline-content .highlight {
            background: var(--accent-color);
            color: var(--white);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
            display: inline-block;
            margin-top: 0.5rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 5%;
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        .service-features {
            margin-top: 1.5rem;
            text-align: right;
        }

        .service-features li {
            list-style: none;
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-right: 25px;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Students Section */
        .students {
            padding: 5rem 5%;
            background: var(--white);
        }

        .students-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: var(--white);
            transition: all 0.3s;
        }

        .category-card:hover {
            transform: scale(1.05);
        }

        .category-card i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-item {
            margin-bottom: 2rem;
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            width: 30px;
        }

        .contact-item h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .contact-item p {
            color: #666;
        }

        .map-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            min-height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border: none;
        }

        /* Social Links */
        .social-section {
            text-align: center;
            margin-top: 3rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            color: var(--primary-color);
            border-radius: 50%;
            font-size: 1.8rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .social-links a.facebook:hover {
            background: #1877f2;
            color: var(--white);
        }

        .social-links a.instagram:hover {
            background: linear-gradient(45deg, #833ab4, #fd1d1d);
            color: var(--white);
        }

        .social-links a.whatsapp:hover {
            background: #25d366;
            color: var(--white);
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            height: 80px;
            margin-bottom: 2rem;
        }

        .footer-text {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .hero {
                padding: 3rem 5%;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content .subtitle {
                font-size: 1.3rem;
            }

            /* Hero badges responsive layout */
            .hero-badges {
                justify-content: center;
                gap: 0.8rem;
            }

            .badge {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
                flex: 0 1 auto;
            }

            .section-title {
                font-size: 2rem;
            }

            .timeline-item {
                margin-right: 40px;
            }

            .timeline-item::before {
                right: -43px;
            }

            .qualifications-timeline::before {
                right: 20px;
            }

            .timeline-year {
                display: none;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .map-container {
                min-height: 350px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            /* Improved badges layout for very small screens */
            .hero-badges {
                justify-content: center;
                max-width: 100%;
            }

            .badge {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
                margin: 0.2rem;
                white-space: nowrap;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }