  /* --- VARIABLES & RESET --- */
        :root {
            --primary: #4A6B35; /* Olive Green */
            --primary-light: #6b9c4b;
            --dark-bg: #121212;
            --card-bg: #1e1e1e;
            --text-white: #ffffff;
            --text-grey: #b3b3b3;
            --gradient: linear-gradient(135deg, var(--primary), #2a401a);
            --shadow: 0 10px 30px rgba(0,0,0,0.5);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { width: 100%; height: 100%; display: block; object-fit: cover; }

        /* --- UTILITIES --- */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--text-white);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: var(--primary); }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-grey);
            position: relative;
        }

        .nav-links a:hover { color: var(--primary); }

        /* School Login Button */
        .btn-login {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary) !important;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-login:hover {
            background-color: var(--primary);
            color: white !important;
        }

        .menu-toggle { display: none; font-size: 1.5rem; color: white; cursor: pointer; }

        /* --- HERO SECTION --- */
        #home {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-attachment: fixed;
        }

        .hero-content { max-width: 800px; padding: 20px; }
        
        .hero-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(2, 3, 2, 0.459);
            border: 1px solid var(--primary);
            color: white;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .hero-content h1 span { color: var(--primary); }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-grey);
            margin-bottom: 40px;
        }

        .btn-cta {
            padding: 12px 30px;
            background: var(--gradient);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(74, 107, 53, 0.4);
        }
        .btn-cta:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(74, 107, 53, 0.6); }

        /* --- ABOUT SECTION --- */
        #about {
            background-color: #161616;
            padding: 100px 5%;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-grey);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .stat-item h3 { font-size: 2rem; color: var(--primary); margin-bottom: 5px; }
        .stat-item span { font-size: 0.9rem; color: var(--text-grey); }

        /* --- PRODUCTS SECTION --- */
        section { padding: 100px 5%; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
        .divider { width: 80px; height: 4px; background: var(--primary); margin: 0 auto; border-radius: 2px; }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }
        .product-card:hover { transform: translateY(-10px); border-color: var(--primary); }

        .p-img-box {
            height: 250px; /* Increased height for images */
            background: #2a2a2a;
            overflow: hidden;
        }

        .p-img-box img {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .product-card:hover .p-img-box img { transform: scale(1.1); }

        .p-content { padding: 25px; }
        .p-tag { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; display: block; margin-bottom: 5px; }
        .p-content h3 { font-size: 1.2rem; margin-bottom: 10px; }

        /* --- WHATSAPP FIXED BUTTON --- */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            z-index: 2000;
            transition: 0.3s;
            text-decoration: none;
        }
        .whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.6); }

        /* --- NEWS & CONTACT (Keep existing styles) --- */
        #news { background: #181818; }
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .news-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; }
        .news-date { padding: 5px 15px; background: var(--primary); color: white; font-size: 0.8rem; display: inline-block; }
        .news-content { padding: 20px; }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
        }
        .contact-info { background: var(--gradient); padding: 50px; }
        .contact-info h3 { color: white; margin-bottom: 20px; }
        .info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: white; }
        .contact-form { padding: 50px; }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 15px; background: #2a2a2a; border: 1px solid #333; color: white; border-radius: 5px;
        }
        
        footer { background: #0a0a0a; padding: 50px 5% 20px; border-top: 1px solid #222; text-align: center; }
        .footer-logo span { color: var(--primary); }

        /* --- MOBILE --- */
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-links {
                position: fixed;
                top: 0; right: -100%; width: 80%; height: 100vh;
                background: #121212; flex-direction: column; justify-content: center;
                transition: 0.4s;
            }
            .nav-links.active { right: 0; }
            .hero-content h1 { font-size: 2.5rem; }
            .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; }
        }