
        :root {
            --primary-color: #3b82f6;
            /* Blue from logo border/text */
            --secondary-color: #2563eb;
            /* Darker blue */
            --logo-blue: #1e3a8a;
            /* Deep blue from logo letters */
            --logo-green: #16a34a;
            /* Green from logo cross */
            --logo-red: #991b1b;
            /* Red from outer ring border */
            --accent-color: #fce72b;
            /* Golden Yellow from inner circle */
            --text-dark: #1e293b;
            --text-light: #f8fafc;
            --bg-light: #f1f5f9;
            --bg-white: #ffffff;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.2;
            color: var(--logo-blue);
        }

        h2.section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 800;
            position: relative;
        }

        h2.section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--logo-green);
            border-radius: 2px;
        }

        p {
            font-size: 1.1rem;
            color: #475569;
        }

        /* Glassmorphism Navbar */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-img {
            height: 70px;
            width: auto;
            border-radius: 50%;
            background: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .logo-img:hover {
            transform: rotate(10deg) scale(1.1);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--logo-blue);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .logo-subtitle {
            font-size: 0.85rem;
            color: var(--logo-green);
            font-weight: 600;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: var(--logo-blue);
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--logo-green);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        nav a:hover {
            color: var(--logo-green);
        }

        nav a:hover::before {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('https://images.unsplash.com/photo-1585435557343-3b092031a831?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(22, 163, 74, 0.75) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: var(--text-light);
            max-width: 900px;
            padding: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1.2s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--accent-color);
        }

        .hero p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            font-weight: 400;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: var(--logo-blue);
            box-shadow: 0 10px 20px rgba(252, 231, 43, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(252, 231, 43, 0.5);
            background-color: #fde047;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            margin-left: 15px;
        }

        .btn-outline:hover {
            background: white;
            color: var(--logo-blue);
            transform: translateY(-5px);
        }

        /* Container & Sections */
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .courses-bg {
            background-color: white;
            position: relative;
        }

        .facilities-wrap {
            background-color: var(--bg-light);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.08);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--accent-color);
            color: var(--logo-blue);
            padding: 30px;
            border-radius: 50%;
            font-weight: 800;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 5px solid white;
            animation: bounce 3s infinite ease-in-out;
            width: 130px;
            height: 130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .experience-badge span {
            display: block;
            font-size: 1.8rem;
            line-height: 1;
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: var(--logo-green);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 1.15rem;
        }

        .features-list {
            list-style: none;
            margin-top: 30px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--logo-blue);
        }

        .features-list li i {
            color: var(--logo-green);
            font-size: 1.3rem;
            background: rgba(22, 163, 74, 0.1);
            padding: 10px;
            border-radius: 50%;
        }

        /* Courses Section */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--logo-blue), var(--secondary-color));
            transition: all 0.4s ease;
            z-index: -1;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
        }

        .card:hover::before {
            height: 100%;
        }

        .card:hover h3,
        .card:hover p,
        .card:hover .icon,
        .card:hover .duration {
            color: white;
        }

        .card .icon {
            font-size: 3.5rem;
            color: var(--logo-green);
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            transition: all 0.4s ease;
            color: var(--logo-blue);
        }

        .card .duration {
            display: inline-block;
            background: var(--accent-color);
            color: var(--logo-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        /* Facilities Section */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .facility-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .facility-img {
            height: 200px;
            background-color: #e2e8f0;
            background-size: cover;
            background-position: center;
        }

        .facility-content {
            padding: 25px;
        }

        .facility-content h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--logo-green);
        }

        /* Contact Section */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            background: linear-gradient(135deg, var(--logo-blue), var(--secondary-color));
            color: white;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .contact-info h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 40px;
            font-weight: 800;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 35px;
        }

        .contact-item i {
            font-size: 1.8rem;
            color: var(--accent-color);
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 50%;
        }

        .contact-item h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: white;
        }

        .contact-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .contact-form {
            padding: 60px;
            background: white;
        }

        .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--logo-blue);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1.05rem;
            background: #f8fafc;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--logo-green);
            background: white;
            box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--logo-blue);
            color: white;
            padding: 60px 20px 30px;
            border-top: 5px solid var(--accent-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
        }

        .footer-col p {
            color: #cbd5e1;
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent-color);
            color: var(--logo-blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 3rem;
            }

            .about-grid,
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            nav ul {
                display: none;
            }

            .experience-badge {
                display: none;
            }

            .contact-info,
            .contact-form {
                padding: 40px;
            }
        }
    
