/* ============================================
   TECHNOTEC PUBLIC WEBSITE - Full CSS
   Extracted from index.html
   ============================================ */

/* ============================================
           CSS VARIABLES & RESET
           ============================================ */
        :root {
            --primary-green: #1b5e20;
            --primary-green-dark: #0d3810;
            --secondary-green: #2e7d32;
            --light-green: #66bb6a;
            --accent-yellow: #fbc02d;
            --bright-yellow: #fdd835;
            --soft-yellow: #fff9c4;

            --text-dark: #1a1a1a;
            --text-body: #4a5568;
            --text-muted: #718096;
            --bg-white: #ffffff;
            --bg-light: #f7f9f7;
            --bg-soft: #fafcfa;
            --border: #e5e7eb;

            --box-1: #0891b2;  /* Teal/Cyan */
            --box-2: #ea580c;  /* Orange */
            --box-3: #7c3aed;  /* Purple */
            --box-4: #dc2626;  /* Red */

            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
            --shadow-green: 0 8px 24px rgba(27, 94, 32, 0.2);

            --font-body: 'Plus Jakarta Sans', sans-serif;
            --font-display: 'Bricolage Grotesque', sans-serif;

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 180px;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background: var(--bg-white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================
           ROW 1 - TOP HEADER BAR
           ============================================ */
        .top-bar {
            background: linear-gradient(90deg, var(--primary-green-dark) 0%, var(--primary-green) 50%, var(--secondary-green) 100%);
            color: #fff;
            padding: 10px 0;
            font-size: 13.5px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0;
            width: 40%;
            background: linear-gradient(90deg, transparent, var(--accent-yellow));
            opacity: 0.08;
            pointer-events: none;
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .top-bar-left {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .top-bar-left span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-left i {
            color: var(--accent-yellow);
            font-size: 14px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .top-bar-right .social-icons {
            display: flex;
            gap: 10px;
        }

        .top-bar-right .social-icons a {
            width: 28px;
            height: 28px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .top-bar-right .social-icons a:hover {
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            transform: translateY(-2px);
        }

        .top-bar-right .portal-btn {
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 12.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .top-bar-right .portal-btn:hover {
            background: #fff;
            transform: translateY(-1px);
        }

        /* ============================================
           ROW 2 - LOGO HEADER
           ============================================ */
        .logo-header {
            background: #fff;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
        }

        .logo-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .logo-area img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .logo-text h1 {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
            letter-spacing: -0.5px;
            margin-bottom: 3px;
            text-transform: uppercase;
        }

        .logo-text h1 .brand-main {
            color: var(--primary-green);
        }

        .logo-text h1 .brand-accent {
            color: var(--accent-yellow);
            -webkit-text-stroke: 0.8px var(--primary-green-dark);
            font-weight: 800;
        }

        .logo-text p {
            font-size: 19px;
            color: var(--primary-green-dark);
            font-weight: 800;
            letter-spacing: 1px;
            font-family: var(--font-display);
            line-height: 1;
            margin-bottom: 6px;
        }

        .logo-tagline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11.5px;
            color: #fff;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .logo-tagline i {
            color: var(--accent-yellow);
            font-size: 10px;
        }

        .quick-contact {
            display: flex;
            gap: 22px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--accent-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: var(--shadow-green);
        }

        .contact-text .label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .contact-text .value {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 700;
        }

        .apply-btn {
            background: linear-gradient(135deg, var(--accent-yellow), var(--bright-yellow));
            color: var(--primary-green-dark);
            padding: 13px 26px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 20px rgba(251, 192, 45, 0.35);
            border: 2px solid transparent;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(251, 192, 45, 0.5);
            border-color: var(--primary-green);
        }

        /* ============================================
           ROW 3 - MAIN NAVIGATION
           ============================================ */
        .main-nav {
            background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }

        .main-nav::after {
            content: '';
            position: absolute;
            left: 0; right: 0; bottom: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-yellow), var(--bright-yellow), var(--accent-yellow));
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-list {
            display: flex;
            align-items: center;
        }

        .menu-list > li {
            position: relative;
        }

        .menu-list > li > a {
            color: #fff;
            padding: 18px 22px;
            display: block;
            font-weight: 600;
            font-size: 14.5px;
            letter-spacing: 0.3px;
            position: relative;
        }

        .menu-list > li > a::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 8px;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .menu-list > li > a:hover::before,
        .menu-list > li.active > a::before {
            width: 60%;
        }

        .menu-list > li > a:hover,
        .menu-list > li.active > a {
            color: var(--accent-yellow);
        }

        .has-dropdown > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 6px;
            font-size: 11px;
            opacity: 0.8;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: #fff;
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--accent-yellow);
            border-radius: 0 0 12px 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .has-dropdown:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            padding: 12px 18px;
            color: var(--text-dark);
            display: block;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid var(--bg-light);
            position: relative;
            padding-left: 26px;
        }

        .dropdown li a::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--light-green);
            transition: all 0.3s ease;
        }

        .dropdown li:last-child a {
            border-bottom: none;
        }

        .dropdown li a:hover {
            background: var(--bg-light);
            color: var(--primary-green);
            padding-left: 32px;
        }

        .dropdown li a:hover::before {
            background: var(--accent-yellow);
            width: 8px;
            height: 8px;
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 22px;
            padding: 16px 20px;
            cursor: pointer;
        }

        /* ============================================
           ROW 4 - BANNER SLIDER
           ============================================ */
        .banner-slider {
            position: relative;
            overflow: hidden;
            background: var(--primary-green-dark);
        }

        .slider-track {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: clamp(380px, 52vw, 560px);
        }

        @media (max-width: 880px) {
            .slider-track {
                height: clamp(240px, 54vw, 440px);
            }
        }

        @media (max-width: 600px) {
            .slider-track {
                height: clamp(200px, 52vw, 280px);
            }
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                rgba(13, 56, 16, 0.92) 0%,
                rgba(27, 94, 32, 0.75) 50%,
                rgba(27, 94, 32, 0.3) 100%);
        }

        .slide-1 { background-image: url('https://images.unsplash.com/photo-1565374795280-00c8c1fbd6cd?w=1600&q=80'), linear-gradient(135deg, #1b5e20, #2e7d32); }
        .slide-2 { background-image: url('https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=1600&q=80'), linear-gradient(135deg, #1b5e20, #2e7d32); }
        .slide-3 { background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80'), linear-gradient(135deg, #1b5e20, #2e7d32); }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: 0 30px;
            color: #fff;
        }

        .slide-badge {
            display: inline-block;
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
        }

        .slide.active .slide-badge {
            animation: slideInUp 0.6s 0.2s ease forwards;
        }

        .slide-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 5vw, 62px);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 20px;
            letter-spacing: -1px;
            max-width: 720px;
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-title {
            animation: slideInUp 0.7s 0.4s ease forwards;
        }

        .slide-title span {
            color: var(--accent-yellow);
            display: inline-block;
        }

        .slide-desc {
            font-size: clamp(15px, 1.8vw, 18px);
            max-width: 580px;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.9);
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-desc {
            animation: slideInUp 0.7s 0.6s ease forwards;
        }

        .slide-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-actions {
            animation: slideInUp 0.7s 0.8s ease forwards;
        }

        .btn-primary, .btn-outline {
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
        }

        .btn-primary:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255,255,255,0.5);
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--primary-green);
            border-color: #fff;
        }

        @keyframes slideInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: #fff;
            border: 2px solid rgba(255,255,255,0.3);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .slider-nav:hover {
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            border-color: var(--accent-yellow);
        }

        .slider-prev { left: 20px; }
        .slider-next { right: 20px; }

        .slider-dots {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--accent-yellow);
            width: 32px;
            border-radius: 10px;
        }

        /* ============================================
           ROW 5 - QUICK ACTION BOXES
           ============================================ */
        .quick-boxes {
            padding: 0;
            position: relative;
            z-index: 10;
            margin-top: -50px;
        }

        .boxes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .quick-box {
            padding: 28px 22px;
            border-radius: var(--radius-md);
            color: #fff;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .quick-box::before {
            content: '';
            position: absolute;
            top: -30px; right: -30px;
            width: 120px; height: 120px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.4s ease;
        }

        .quick-box::after {
            content: '';
            position: absolute;
            bottom: -50px; left: -50px;
            width: 140px; height: 140px;
            border-radius: 50%;
            background: rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .quick-box:hover {
            transform: translateY(-6px);
        }

        .quick-box:hover::before {
            transform: scale(1.5);
        }

        .quick-box-icon {
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .quick-box-text {
            position: relative;
            z-index: 2;
        }

        .quick-box h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .quick-box p {
            font-size: 13px;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .box-teal { background: linear-gradient(135deg, #0891b2, #06b6d4); }
        .box-orange { background: linear-gradient(135deg, #ea580c, #f97316); }
        .box-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
        .box-red { background: linear-gradient(135deg, #dc2626, #ef4444); }

        /* ============================================
           ROW 6 - WELCOME SECTION
           ============================================ */
        .welcome-section {
            padding: 90px 0 70px;
            background: var(--bg-white);
            position: relative;
            overflow: hidden;
        }

        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0; left: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(251, 192, 45, 0.08), transparent 70%);
            pointer-events: none;
        }

        .welcome-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        .welcome-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(2, 180px);
            gap: 16px;
            position: relative;
        }

        .welcome-images::before {
            content: '';
            position: absolute;
            top: -25px; left: -25px;
            width: 70px; height: 70px;
            border-top: 4px solid var(--accent-yellow);
            border-left: 4px solid var(--accent-yellow);
            border-radius: 10px 0 0 0;
            z-index: 1;
        }

        .welcome-images::after {
            content: '';
            position: absolute;
            bottom: -25px; right: -25px;
            width: 70px; height: 70px;
            border-bottom: 4px solid var(--primary-green);
            border-right: 4px solid var(--primary-green);
            border-radius: 0 0 10px 0;
            z-index: 1;
        }

        .welcome-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .welcome-images img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .welcome-images img:first-child {
            grid-row: 1 / span 2;
            height: 100%;
        }

        .welcome-badge-float {
            position: absolute;
            bottom: 20px;
            left: -20px;
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            padding: 18px 22px;
            border-radius: var(--radius-md);
            font-family: var(--font-display);
            box-shadow: var(--shadow-lg);
            z-index: 3;
        }

        .welcome-badge-float .num {
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
        }

        .welcome-badge-float .label {
            font-size: 12px;
            font-weight: 600;
            margin-top: 2px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--soft-yellow);
            color: var(--primary-green-dark);
            padding: 7px 16px;
            border-radius: 50px;
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .section-tag i {
            color: var(--accent-yellow);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -0.8px;
        }

        .section-title span {
            color: var(--primary-green);
            position: relative;
            display: inline-block;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            left: 0; bottom: 2px;
            width: 100%;
            height: 10px;
            background: var(--accent-yellow);
            z-index: -1;
            opacity: 0.5;
        }

        .welcome-text p {
            font-size: 15.5px;
            color: var(--text-body);
            margin-bottom: 15px;
            line-height: 1.75;
        }

        .welcome-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 24px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .feature-item i {
            width: 32px; height: 32px;
            background: var(--soft-yellow);
            color: var(--primary-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        .welcome-cta {
            margin-top: 28px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-green);
            color: #fff;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14.5px;
            box-shadow: var(--shadow-green);
        }

        .welcome-cta:hover {
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            transform: translateY(-2px);
        }

        /* ============================================
           ROW 7 - OUR COURSES
           ============================================ */
        .courses-section {
            padding: 90px 0;
            background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
            position: relative;
            overflow: hidden;
        }

        .courses-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 300px;
            background:
                radial-gradient(circle at 10% 0%, rgba(27, 94, 32, 0.05), transparent 50%),
                radial-gradient(circle at 90% 0%, rgba(251, 192, 45, 0.08), transparent 50%);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 50px;
            position: relative;
        }

        .section-header p {
            color: var(--text-body);
            font-size: 16px;
            margin-top: 14px;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            position: relative;
        }

        .course-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid var(--border);
            position: relative;
            cursor: pointer;
        }

        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-yellow);
        }

        .course-icon-wrap {
            height: 160px;
            background-color: var(--primary-green);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .course-icon-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 56, 16, 0.78) 0%, rgba(27, 94, 32, 0.62) 100%);
            transition: all 0.4s ease;
            z-index: 1;
        }

        .course-card:hover .course-icon-wrap::after {
            background: linear-gradient(135deg, rgba(13, 56, 16, 0.55) 0%, rgba(27, 94, 32, 0.35) 100%);
        }

        .course-icon-wrap::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 150px; height: 150px;
            background: radial-gradient(circle, rgba(251, 192, 45, 0.35), transparent 70%);
            border-radius: 50%;
            transition: all 0.5s ease;
            z-index: 2;
        }

        .course-card:hover .course-icon-wrap::before {
            transform: scale(1.4);
        }

        .course-icon-wrap i {
            font-size: 54px;
            color: var(--accent-yellow);
            position: relative;
            z-index: 3;
            transition: transform 0.4s ease;
            text-shadow: 0 4px 16px rgba(0,0,0,0.5);
        }

        .course-card:hover .course-icon-wrap i {
            transform: scale(1.1) rotate(-5deg);
        }

        .course-duration {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 4;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .course-body {
            padding: 22px 20px;
        }

        .course-body h3 {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .course-body p {
            font-size: 13.5px;
            color: var(--text-muted);
            margin-bottom: 16px;
            line-height: 1.55;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 14px;
            border-top: 1px dashed var(--border);
        }

        .course-meta .seats {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .course-meta .seats i {
            color: var(--primary-green);
        }

        .course-link {
            color: var(--primary-green);
            font-size: 13px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .course-link:hover {
            gap: 10px;
            color: var(--accent-yellow);
        }

        .courses-cta {
            text-align: center;
            margin-top: 44px;
        }

        .courses-cta a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary-green);
            padding: 13px 30px;
            border-radius: 50px;
            font-weight: 700;
            border: 2px solid var(--primary-green);
        }

        .courses-cta a:hover {
            background: var(--primary-green);
            color: #fff;
        }

        /* ============================================
           ROW 8 - NEWS / DOWNLOADS / DIRECTOR
           ============================================ */
        .info-section {
            padding: 80px 0;
            background: #fff;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 28px;
        }

        .info-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .info-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .info-card-header {
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
            color: #fff;
            padding: 16px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .info-card-header::before {
            content: '';
            position: absolute;
            right: -30px;
            top: -30px;
            width: 100px; height: 100px;
            background: rgba(251, 192, 45, 0.15);
            border-radius: 50%;
        }

        .info-card-header h3 {
            font-family: var(--font-display);
            font-size: 19px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .info-card-header h3 i {
            width: 38px; height: 38px;
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .info-card-header .view-all {
            font-size: 12px;
            color: var(--accent-yellow);
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .info-card-body {
            padding: 0;
            flex-grow: 1;
        }

        /* News Scroll */
        .news-scroll {
            height: 320px;
            overflow: hidden;
            position: relative;
            padding: 18px 20px;
        }

        .news-scroll::before,
        .news-scroll::after {
            content: '';
            position: absolute;
            left: 0; right: 0;
            height: 30px;
            z-index: 3;
            pointer-events: none;
        }

        .news-scroll::before {
            top: 0;
            background: linear-gradient(180deg, #fff, transparent);
        }

        .news-scroll::after {
            bottom: 0;
            background: linear-gradient(0deg, #fff, transparent);
        }

        .news-track {
            animation: scrollNews 25s linear infinite;
        }

        .news-scroll:hover .news-track {
            animation-play-state: paused;
        }

        @keyframes scrollNews {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .news-item {
            padding: 12px 0;
            border-bottom: 1px dashed var(--border);
            display: flex;
            gap: 14px;
        }

        .news-date {
            flex-shrink: 0;
            width: 52px;
            text-align: center;
            background: var(--soft-yellow);
            color: var(--primary-green);
            border-radius: 8px;
            padding: 6px 0;
        }

        .news-date .day {
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            font-family: var(--font-display);
        }

        .news-date .month {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .news-text h4 {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 3px;
            line-height: 1.3;
        }

        .news-text p {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.45;
        }

        /* Downloads */
        .downloads-list {
            padding: 10px 20px;
        }

        .download-item {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .download-item:last-child {
            border-bottom: none;
        }

        .download-item:hover {
            padding-left: 8px;
        }

        .download-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, #fef3c7, #fbbf24);
            color: var(--primary-green-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .download-item:hover .download-icon {
            background: linear-gradient(135deg, var(--accent-yellow), var(--bright-yellow));
        }

        .download-text {
            flex-grow: 1;
        }

        .download-text h4 {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 2px;
        }

        .download-text p {
            font-size: 12px;
            color: var(--text-muted);
        }

        .download-arrow {
            color: var(--primary-green);
            font-size: 14px;
        }

        /* Director Card */
        .director-body {
            padding: 24px 22px;
            text-align: center;
        }

        .director-photo {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 16px;
            border: 4px solid var(--accent-yellow);
            box-shadow: 0 0 0 4px var(--soft-yellow);
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .director-photo i {
            font-size: 60px;
            color: var(--accent-yellow);
        }

        .director-body h4 {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--text-dark);
            font-weight: 700;
        }

        .director-position {
            color: var(--primary-green);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .director-message {
            font-size: 13.5px;
            color: var(--text-body);
            font-style: italic;
            line-height: 1.65;
            margin-bottom: 16px;
            position: relative;
            padding: 0 8px;
        }

        .director-message::before,
        .director-message::after {
            color: var(--accent-yellow);
            font-size: 22px;
            font-family: Georgia, serif;
            font-weight: 700;
        }

        .director-message::before { content: '“'; margin-right: 3px; }
        .director-message::after { content: '”'; margin-left: 3px; }

        .director-signature {
            font-family: var(--font-display);
            color: var(--primary-green);
            font-size: 18px;
            font-weight: 600;
            font-style: italic;
        }

        /* ============================================
           ROW 9 - TESTIMONIALS
           ============================================ */
        .testimonials-section {
            padding: 90px 0;
            background:
                linear-gradient(135deg, rgba(27, 94, 32, 0.97), rgba(27, 94, 32, 0.92)),
                url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            position: relative;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 200px; height: 200px;
            background: radial-gradient(circle, rgba(251, 192, 45, 0.2), transparent 70%);
        }

        .testimonials-section .section-header {
            color: #fff;
        }

        .testimonials-section .section-title {
            color: #fff;
        }

        .testimonials-section .section-title span {
            color: var(--accent-yellow);
        }

        .testimonials-section .section-title span::after {
            opacity: 0.3;
        }

        .testimonials-section .section-header p {
            color: rgba(255,255,255,0.85);
        }

        .testimonials-section .section-tag {
            background: rgba(251, 192, 45, 0.2);
            color: var(--accent-yellow);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-md);
            padding: 32px 26px;
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-6px);
            border-color: var(--accent-yellow);
        }

        .testimonial-quote {
            position: absolute;
            top: -20px;
            left: 26px;
            width: 48px;
            height: 48px;
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            font-family: Georgia, serif;
        }

        .testimonial-stars {
            color: var(--accent-yellow);
            margin-bottom: 14px;
            margin-top: 8px;
            font-size: 14px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 18px;
            border-top: 1px solid rgba(255,255,255,0.12);
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-yellow), var(--bright-yellow));
            color: var(--primary-green-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            font-family: var(--font-display);
        }

        .testimonial-author h5 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: #fff;
        }

        .testimonial-author p {
            font-size: 12.5px;
            color: var(--accent-yellow);
            font-weight: 600;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #0a1f0c;
            color: #d1d5db;
            padding: 70px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-yellow), var(--primary-green), var(--accent-yellow));
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: -200px; right: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(251, 192, 45, 0.05), transparent 70%);
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
            gap: 40px;
            padding-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 17px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0; bottom: 0;
            width: 36px;
            height: 3px;
            background: var(--accent-yellow);
            border-radius: 10px;
        }

        .footer-about .footer-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .footer-about .footer-logo img {
            height: 54px;
            width: auto;
            background: #fff;
            padding: 6px;
            border-radius: 10px;
        }

        .footer-about .footer-logo h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        .footer-about .footer-logo h3 span {
            color: var(--accent-yellow);
        }

        .footer-logo-sub {
            font-family: var(--font-display);
            font-size: 12px;
            color: var(--accent-yellow);
            font-weight: 600;
            margin-top: 3px;
            letter-spacing: 0.3px;
        }

        .footer-about p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 18px;
            color: #9ca3af;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
        }

        .footer-social a:hover {
            background: var(--accent-yellow);
            color: var(--primary-green-dark);
            border-color: var(--accent-yellow);
            transform: translateY(-3px);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: #9ca3af;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-yellow);
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-yellow);
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
        }

        .footer-contact-item .ico {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(251, 192, 45, 0.12);
            color: var(--accent-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .footer-contact-item .txt {
            font-size: 13.5px;
            line-height: 1.55;
            color: #d1d5db;
        }

        .footer-contact-item .txt strong {
            display: block;
            color: #fff;
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13.5px;
            color: #9ca3af;
            position: relative;
            z-index: 2;
        }

        .footer-bottom a {
            color: var(--accent-yellow);
            font-weight: 600;
        }

        /* ============================================
           FLOATING WHATSAPP
           ============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 999;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.15); }
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1100px) {
            .boxes-grid,
            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 34px;
            }

            .welcome-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .quick-contact .contact-item:nth-child(2) {
                display: none;
            }
        }

        @media (max-width: 880px) {
            .main-nav .menu-list {
                position: fixed;
                top: 0; right: -320px;
                width: 300px;
                height: 100vh;
                background: var(--primary-green-dark);
                flex-direction: column;
                align-items: flex-start;
                padding: 70px 0 20px;
                overflow-y: auto;
                transition: right 0.4s ease;
                box-shadow: -10px 0 30px rgba(0,0,0,0.3);
            }

            .main-nav .menu-list.active {
                right: 0;
            }

            .menu-list > li {
                width: 100%;
            }

            .menu-list > li > a {
                padding: 14px 24px;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }

            .mobile-toggle {
                display: block;
                position: relative;
                z-index: 1002;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                background: rgba(0,0,0,0.2);
                max-height: 0;
                transition: max-height 0.3s ease;
                display: none;
            }

            .dropdown.show {
                display: block;
                max-height: 500px;
            }

            .dropdown li a {
                color: rgba(255,255,255,0.85);
                background: transparent;
                border-color: rgba(255,255,255,0.08);
                padding-left: 40px;
            }

            .dropdown li a:hover {
                background: rgba(251, 192, 45, 0.1);
                color: var(--accent-yellow);
            }

            .dropdown li a::before {
                background: var(--accent-yellow);
            }

            .menu-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.5);
                z-index: 999;
            }

            .menu-overlay.active {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                font-size: 12px;
            }

            .top-bar-left {
                gap: 16px;
                width: 100%;
                justify-content: center;
            }

            .top-bar-right {
                width: 100%;
                justify-content: center;
            }

            .logo-area img {
                height: 56px;
            }

            .logo-text h1 {
                font-size: 18px;
                letter-spacing: -0.3px;
            }

            .logo-text p {
                font-size: 13.5px;
                letter-spacing: 0.6px;
            }

            .logo-tagline {
                font-size: 10px;
                padding: 2px 8px;
            }

            .quick-contact {
                display: none;
            }

            .logo-header-inner {
                justify-content: flex-start;
            }

            .apply-btn {
                padding: 10px 18px;
                font-size: 12.5px;
            }

            .slide-title {
                max-width: 100%;
            }

            .slide-title {
                font-size: clamp(18px, 4.5vw, 26px) !important;
                margin-bottom: 8px !important;
                line-height: 1.15 !important;
            }

            .slide-desc {
                font-size: clamp(12px, 2.2vw, 14px) !important;
                margin-bottom: 12px !important;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .slide-badge {
                margin-bottom: 10px !important;
                padding: 4px 11px !important;
                font-size: 10px !important;
                letter-spacing: 0.5px !important;
            }

            .slide-content {
                padding: 0 20px !important;
            }

            .slider-nav {
                width: 38px; height: 38px;
            }

            .slider-prev { left: 10px; }
            .slider-next { right: 10px; }

            .boxes-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .quick-boxes {
                margin-top: -30px;
                padding: 0 14px;
            }

            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .welcome-section,
            .courses-section,
            .info-section,
            .testimonials-section {
                padding: 60px 0;
            }

            .welcome-images {
                grid-template-rows: repeat(2, 140px);
            }

            .welcome-features {
                grid-template-columns: 1fr;
            }

            .welcome-badge-float {
                left: auto;
                right: 10px;
                padding: 12px 16px;
            }

            .welcome-badge-float .num {
                font-size: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .logo-area img {
                height: 48px;
            }

            .logo-text h1 {
                font-size: 15px;
            }

            .logo-text p {
                font-size: 11.5px;
            }

            .logo-tagline {
                font-size: 9.5px;
                padding: 2px 7px;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }

            .slide-content {
                padding: 0 20px;
            }

            .slide-actions {
                flex-direction: row !important;
                width: auto !important;
                gap: 8px !important;
            }

            .slide-actions .btn-primary,
            .slide-actions .btn-outline {
                padding: 8px 14px !important;
                font-size: 11.5px !important;
                gap: 6px !important;
                width: auto !important;
                justify-content: center;
            }

            .slide-actions .btn-primary i,
            .slide-actions .btn-outline i {
                font-size: 10px;
            }

            .course-icon-wrap {
                height: 120px;
            }

            .course-icon-wrap i {
                font-size: 44px;
            }
        }


/* ============================================
   INNER PAGES - COMMON STYLES
   ============================================ */

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, rgba(13, 56, 16, 0.92), rgba(27, 94, 32, 0.78)),
                url('https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.page-banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.page-banner h1 span {
    color: var(--accent-yellow);
}

.page-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 13.5px;
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb .separator {
    color: var(--accent-yellow);
    font-size: 10px;
}

.breadcrumb .current {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* --- Section Helpers --- */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light { background: var(--bg-light); }

/* --- About Content Layout --- */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 15px;
}

.about-content p strong {
    color: var(--primary-green);
    font-weight: 700;
}

.about-image-stack {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-image-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.about-image-small {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    z-index: 3;
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--bright-yellow));
    color: var(--primary-green-dark);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    text-align: center;
}

.about-experience-badge .num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-experience-badge .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* --- Stats Counter --- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green) 50%, var(--secondary-green));
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.12), transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(251, 192, 45, 0.15);
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num::after {
    content: '+';
    font-size: 32px;
    margin-left: 2px;
}

.stat-label {
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}

/* --- Mission Vision Values --- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mvv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-yellow);
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--accent-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-green);
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    transform: rotate(-10deg) scale(1.05);
}

.mvv-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.why-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
    background: var(--bg-soft);
}

.why-card .why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--soft-yellow);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-card:hover .why-icon {
    background: var(--accent-yellow);
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Director Section --- */
.director-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.director-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.director-image-wrap {
    position: relative;
    padding: 20px;
}

.director-image-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), transparent);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.director-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-image i {
    font-size: 180px;
    color: rgba(251, 192, 45, 0.4);
}

.director-info h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.director-info .director-role {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    display: inline-block;
    padding: 6px 16px;
    background: var(--soft-yellow);
    border-radius: 50px;
}

.director-quote {
    position: relative;
    padding: 24px 28px;
    background: #fff;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-yellow);
    margin: 22px 0;
    box-shadow: var(--shadow-sm);
}

.director-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--accent-yellow);
    color: var(--primary-green-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.director-quote p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    font-style: italic;
    margin: 0;
}

.director-info > p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 14px;
}

.director-sign {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-top: 12px;
}

/* --- Team Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-yellow);
}

.team-photo {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 100px;
    color: rgba(251, 192, 45, 0.35);
    transition: all 0.4s ease;
}

.team-card:hover .team-photo i {
    transform: scale(1.1);
    color: rgba(251, 192, 45, 0.6);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(27, 94, 32, 0.9);
    backdrop-filter: blur(6px);
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--accent-yellow);
    color: var(--primary-green-dark);
    transform: scale(1.1);
}

.team-info {
    padding: 22px 16px;
    border-top: 3px solid var(--accent-yellow);
}

.team-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-info p {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(13,56,16,0.94), rgba(27,94,32,0.88)),
                url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(251, 192, 45, 0.15), transparent 70%);
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.cta-banner h2 span {
    color: var(--accent-yellow);
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.65;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive Inner Pages --- */
@media (max-width: 1100px) {
    .stats-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .mvv-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-layout,
    .director-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-main img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0 80px;
    }

    .section-padding { padding: 60px 0; }
    .section-padding-sm { padding: 40px 0; }

    .mvv-grid,
    .why-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 14px 8px;
        border-right: none;
    }

    .stat-num {
        font-size: 34px;
    }

    .stat-num::after { font-size: 24px; }

    .mvv-card,
    .why-card {
        padding: 24px 20px;
    }

    .about-image-small {
        display: none;
    }

    .about-image-main img {
        height: 320px;
    }

    .about-experience-badge {
        top: -15px;
        right: 15px;
        padding: 14px 18px;
    }

    .about-experience-badge .num { font-size: 26px; }
}

@media (max-width: 480px) {
    .team-grid,
    .mvv-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-actions {
        flex-direction: column;
    }

    .cta-banner-actions .btn-primary,
    .cta-banner-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   EXTRA STYLES for secondary pages
   ============================================ */

/* Page banner (used on all inner pages) */
.page-banner {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green) 60%, var(--secondary-green));
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="white" opacity="0.2"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}
.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.8px;
    position: relative;
}
.page-banner h1 span { color: var(--accent-yellow); }
.breadcrumb-p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    position: relative;
}
.breadcrumb-p a { color: var(--accent-yellow); text-decoration: none; }
.breadcrumb-p a:hover { color: #fff; }

.content-section { padding: 70px 0; background: #fff; }
.content-section.bg-light { background: var(--bg-light); }

/* Verify forms */
.verify-section { padding: 60px 0; background: var(--bg-light); }
.verify-header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.verify-header p { color: var(--text-muted); margin-top: 12px; }
.verify-form-wrap { max-width: 780px; margin: 0 auto; background: #fff; padding: 32px; border-radius: 14px; box-shadow: var(--shadow-md); }
.verify-form { margin-bottom: 20px; }
.verify-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}
.verify-form .form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; display: block; }
.verify-form .form-group .req { color: #dc2626; }
.verify-form input, .verify-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.2s;
}
.verify-form input:focus, .verify-form select:focus {
    border-color: var(--primary-green);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.08);
}
.verify-form button {
    background: var(--primary-green);
    color: #fff;
    border: 0;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.verify-form button:hover { background: var(--primary-green-dark); transform: translateY(-2px); }

.verify-note {
    display: flex;
    gap: 14px;
    background: var(--soft-yellow);
    padding: 14px 18px;
    border-radius: 10px;
    align-items: center;
}
.verify-note i { color: var(--primary-green); font-size: 22px; }
.verify-note p { margin: 0; font-size: 13.5px; color: var(--text-dark); }

/* Verify result card */
.verify-card, .result-card {
    max-width: 820px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.result-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #fff;
    padding: 22px 26px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.result-header i { font-size: 36px; color: var(--accent-yellow); }
.result-header.fail { background: linear-gradient(135deg, #dc2626, #ef4444); }
.result-header h3 { margin: 0; font-family: var(--font-display); font-size: 20px; }
.result-body { padding: 22px 26px; }
.result-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14.5px;
}
.result-row:last-child { border-bottom: 0; }
.result-row .label { color: var(--text-muted); font-weight: 600; }
.result-row .val { font-weight: 600; color: var(--text-dark); }
.text-uppercase { text-transform: uppercase; }
.text-success { color: #15803d; }
.text-danger { color: #dc2626; }

/* Marks table on result */
.marks-result-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 14px;
}
.marks-result-table th, .marks-result-table td {
    border: 1px solid var(--border);
    padding: 9px 10px;
    text-align: center;
}
.marks-result-table th { background: var(--primary-green); color: #fff; }
.marks-result-table .subject-col { text-align: left; }

.alert-info-box {
    background: #dbeafe;
    color: #1e40af;
    padding: 14px 18px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 820px;
    font-size: 14px;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}
.contact-block {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border);
}
.contact-block:last-child { border-bottom: 0; }
.contact-block .ico {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-block h4 { font-family: var(--font-display); font-size: 16px; margin: 0 0 3px; color: var(--text-dark); }
.contact-block p { margin: 0; font-size: 14px; color: var(--text-body); }
.contact-block a { color: var(--primary-green); text-decoration: none; }

.contact-form-wrap {
    background: #fff;
    padding: 34px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    color: var(--primary-green-dark);
    font-size: 24px;
    margin: 0 0 22px;
}
.enquiry-form .form-group { margin-bottom: 16px; }
.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.enquiry-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.enquiry-form .req { color: #dc2626; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
    border-color: var(--primary-green);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.08);
}
.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: #fff;
    border: 0;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-submit:hover { background: var(--primary-green-dark); transform: translateY(-2px); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Alert (flash) */
.alert-success {
    background: #d1fae5;
    color: #065f46;
    padding: 14px 20px;
    margin: 0;
    text-align: center;
    font-weight: 600;
}
.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px 20px;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .verify-form .form-row { grid-template-columns: 1fr; gap: 10px; }
    .enquiry-form .form-row { grid-template-columns: 1fr; }
    .result-row { grid-template-columns: 1fr; gap: 4px; }
    .result-row .label { font-size: 12.5px; }
}

.text-center { text-align: center; }
.mt-3 { margin-top: 18px; }
.mt-4 { margin-top: 24px; }
