:root {
            --primary: #1e40af;
            --primary-light: #3b82f6;
            --primary-dark: #1e3a8a;
            --secondary: #fbbf24;
            --text-dark: #111827;
            --text-gray: #6b7280;
            --text-light: #9ca3af;
            --border-color: #e5e7eb;
            --bg-light: #f9fafb;
            --bg-blue-50: #eff6ff;
            --bg-blue-100: #dbeafe;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }
        @media (min-width: 768px) {
            .container {
                padding: 0 32px;
            }
        }

        .section {
            padding: 64px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Top Bar & Header & Nav styles */
        .top-utility { background: #111f2e; color: white; padding: 0; font-size: 12px; }
        .top-utility > div { max-width: 1280px; margin: 0 auto; padding: 12px 16px; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
        @media (min-width: 768px) {
            .top-utility > div { padding: 12px 32px; }
        }
        .top-utility a { color: white; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
        .top-utility a:hover { color: var(--secondary); }
        .top-utility svg { width: 16px; height: 16px; }

        header { background: white; border-bottom: 1px solid var(--border-color); padding: 0; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        .header-inner { max-width: 1280px; margin: 0 auto; padding: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        @media (min-width: 768px) {
            .header-inner { padding: 16px 32px; }
        }
        .logo { flex-shrink: 0; }
        .logo img { height: 40px; object-fit: contain; }
        @media (min-width: 768px) { .logo img { height: 48px; } }
        @media (min-width: 1024px) { .logo img { height: 56px; } }
        .header-actions { display: none; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
        @media (min-width: 1024px) { .header-actions { display: flex; } }
        .header-actions a { padding: 10px 16px; border-radius: 8px; border: none; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; white-space: nowrap; }
        .header-actions svg { width: 16px; height: 16px; }
        .btn-emergency { background: #dc2626; color: white; } .btn-emergency:hover { background: #b91c1c; }
        .btn-admission { background: var(--secondary); color: white; } .btn-admission:hover { background: #f59e0b; }
        .btn-appointment { background: var(--primary); color: white; } .btn-appointment:hover { background: var(--primary-dark); }
        .btn-results { background: #16a34a; color: white; } .btn-results:hover { background: #15803d; }

        nav { background: linear-gradient(to right, var(--primary), #1e40af, var(--primary)); color: white; }
        .nav-desktop { max-width: 1280px; margin: 0 auto; padding: 0 16px; display: none; align-items: center; height: 64px; }
        @media (min-width: 768px) {
            .nav-desktop { display: flex; padding: 0 32px; }
        }
        .nav-mobile-toggle { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 16px; }
        @media (min-width: 768px) {
            .nav-mobile-toggle { display: none; }
        }
        .nav-mobile-toggle button { background: none; border: none; color: white; font-size: 24px; cursor: pointer; padding: 8px; }
        .nav-mobile { display: flex; flex-direction: column; gap: 0; background: linear-gradient(to right, var(--primary), #1e40af, var(--primary)); max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
        .nav-mobile.active { max-height: 600px; }
        .mobile-dropdown-toggle { background: none; border: none; color: white; padding: 16px; font-size: 14px; font-weight: 500; width: 100%; cursor: pointer; transition: all 0.3s; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; }
        .mobile-dropdown-toggle:hover { background: rgba(255,255,255,0.1); }
        .mobile-dropdown { display: none; flex-direction: column; background: rgba(0,0,0,0.2); }
        .mobile-dropdown.active { display: flex; }
        .nav-menu { display: flex; list-style: none; gap: 0; width: 100%; margin: 0; flex-wrap: wrap; }
        .nav-item { position: relative; }
        .nav-link { color: white; text-decoration: none; padding: 16px; display: block; font-size: 14px; font-weight: 500; transition: all 0.3s; white-space: nowrap; }
        .nav-link:hover { background: var(--secondary); color: var(--primary); }
        .dropdown-menu { position: absolute; top: 100%; left: 0; background: white; color: var(--text-dark); min-width: 240px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-radius: 8px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s; z-index: 200; }
        .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-item { padding: 12px 16px; display: block; color: var(--text-dark); text-decoration: none; font-size: 13px; transition: all 0.3s; }
        .dropdown-item:hover { background: var(--bg-light); padding-left: 24px; }

        /* Chevron styling */
        .nav-link.has-submenu {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .chevron-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .nav-item:hover .chevron-icon {
            transform: rotate(180deg);
        }
        .mobile-dropdown-toggle .chevron-icon {
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-toggle.active .chevron-icon {
            transform: rotate(180deg);
        }

        /* Hero */
        .hero { position: relative; height: 500px; background: #000; overflow: hidden; display: flex; align-items: center; justify-content: center; }
        .hero-slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
        .hero-slide.active { opacity: 1; }
        .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
        .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; text-align: center; color: white; z-index: 10; }
        .hero-content { max-width: 700px; padding: 20px; }
        .hero-content h1 { font-size: 48px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
        .hero-content p { font-size: 20px; margin-bottom: 24px; opacity: 0.95; }
        .hero-btn { background: var(--secondary); color: var(--primary); padding: 12px 32px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 16px; text-decoration: none; display: inline-block; }
        .hero-btn:hover { background: #f59e0b; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3); }
        .hero-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 20; }
        .hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: 2px solid white; }
        .hero-dot.active { background: white; }
        .hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.3); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 24px; cursor: pointer; transition: all 0.3s; z-index: 20; display: flex; align-items: center; justify-content: center; }
        .hero-arrow:hover { background: rgba(255,255,255,0.5); }
        .hero-prev { left: 20px; } .hero-next { right: 20px; }

        /* Ticker */
        .ticker { background: var(--secondary); padding: 16px 0; overflow: hidden; }
        .ticker-content { display: flex; gap: 40px; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .ticker-item { white-space: nowrap; font-weight: 600; color: var(--primary); flex-shrink: 0; font-size: 15px; }

        /* Statistics */
        .stats-section { background: linear-gradient(to right, #1e40af, #1e40af, #1e40af); padding: 48px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
        .stat-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 8px; padding: 24px; text-align: center; border: 1px solid rgba(255,255,255,0.2); transition: box-shadow 0.3s; }
        .stat-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .stat-icon { width: 60px; height: 60px; background: rgba(252,211,77,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; color: #fcd34d; }
        .stat-number { font-size: 32px; font-weight: 700; color: #fcd34d; margin-bottom: 8px; }
        .stat-label { color: white; font-weight: 500; font-size: 15px; }

        /* Why SERIMS */
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 32px; }
        .benefit-item { display: flex; gap: 16px; align-items: flex-start; }
        .benefit-check { color: #16a34a; font-weight: 700; font-size: 20px; flex-shrink: 0; margin-top: 4px; }
        .benefit-text { color: var(--text-dark); font-weight: 500; font-size: 15px; }
        .highlight-box { background: linear-gradient(to right, var(--primary), #1e40af); color: white; border-radius: 8px; padding: 32px; text-align: center; }
        .highlight-box p { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.6; }
        .highlight-box p:last-child { font-size: 14px; opacity: 0.95; margin-top: 8px; }

        /* About */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        .about-text { color: var(--text-dark); }
        .about-label { color: var(--secondary); font-weight: 600; font-size: 13px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
        .about-text h2 { font-size: 36px; font-weight: 700; margin-bottom: 24px; }
        .about-text p { color: var(--text-gray); margin-bottom: 24px; line-height: 1.8; font-size: 15px; }
        .about-link { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(to right, var(--primary), #1e40af); color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s; }
        .about-link:hover { opacity: 0.9; transform: translateY(-2px); }
        .about-image { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
        .about-image img { width: 100%; height: 400px; object-fit: cover; display: block; }
        .counters { background: linear-gradient(to bottom right, var(--primary), #1e3a8a); color: white; border-radius: 8px; padding: 32px; margin-top: 24px; }
        .counters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
        .counter-item { border-right: 1px solid rgba(252,211,77,0.3); }
        .counter-item:last-child { border-right: none; }
        .counter-number { font-size: 40px; font-weight: 700; color: #fcd34d; margin-bottom: 8px; }
        .counter-label { font-size: 13px; color: rgba(252,211,77,0.9); font-weight: 500; }

        /* Departments */
        .departments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
        .dept-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border: 1px solid var(--border-color); transition: all 0.3s; }
        .dept-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.12); border-color: var(--secondary); }
        .dept-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #3b82f6); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fcd34d; margin-bottom: 16px; transition: transform 0.3s; font-weight: 600; }
        .dept-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
        .dept-card:hover .dept-icon { transform: scale(1.1); }
        .dept-name { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; transition: color 0.3s; }
        .dept-card:hover .dept-name { color: var(--primary); }
        .dept-desc { font-size: 14px; color: var(--text-gray); margin: 0; }

        /* Facilities */
        .facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .facility-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border-left: 4px solid var(--secondary); transition: all 0.3s; }
        .facility-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
        .facility-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #3b82f6); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fcd34d; margin-bottom: 16px; font-weight: 600; }
        .facility-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
        .facility-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
        .facility-desc { font-size: 14px; color: var(--text-gray); }

        /* Achievements */
        .achievements-section { padding: 64px 0; }
        .achievements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 24px; }
        .achievement-item { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border-left: 4px solid var(--secondary); text-align: center; transition: all 0.3s; }
        .achievement-item:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
        .achievement-icon { margin-bottom: 16px; color: var(--secondary); }
        .achievement-icon svg { width: 48px; height: 48px; stroke: currentColor; fill: none; }
        .achievement-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
        .achievement-desc { font-size: 14px; color: var(--text-gray); }
        .certifications-box { background: linear-gradient(to right, #eff6ff, #dbeafe); border-radius: 8px; padding: 48px 24px; margin-top: 40px; }
        .certifications-box h3 { font-size: 24px; font-weight: 700; color: var(--primary); text-align: center; margin-bottom: 32px; }
        .certifications-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        @media (max-width: 768px) { .certifications-grid { grid-template-columns: repeat(2, 1fr); } }
        .cert-item { text-align: center; }
        .cert-box { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 12px; height: 120px; display: flex; align-items: center; justify-content: center; color: var(--secondary); }
        .cert-box svg { width: 48px; height: 48px; stroke: currentColor; fill: none; }
        .cert-label { font-weight: 600; color: var(--text-dark); font-size: 13px; }

        /* Why Choose Us */
        .why-choose-section { background: linear-gradient(to bottom right, var(--primary), #1e3a8a); color: white; padding: 64px 0; }
        .why-choose-section .section-title { color: white; }
        .why-choose-section .section-title .highlight { color: #fcd34d; }
        .why-choose-section .section-subtitle { color: rgba(255,255,255,0.9); }
        .reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 32px; }
        .reason-card { background: white; border-radius: 8px; padding: 32px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: all 0.3s; }
        .reason-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
        .reason-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
        .reason-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #3b82f6); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fcd34d; flex-shrink: 0; font-weight: 600; }
        .reason-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
        .reason-title { font-size: 20px; font-weight: 600; color: var(--text-dark); }
        .reason-points { display: flex; flex-direction: column; gap: 12px; }
        .reason-point { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-dark); }
        .check-icon { color: var(--secondary); font-weight: 700; margin-top: 2px; flex-shrink: 0; display: flex; align-items: center; }
        .check-icon::before { content: "✓"; font-size: 18px; }
        .comparison-table { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .table-header { background: linear-gradient(to right, var(--primary), #1e3a8a); color: white; padding: 20px; }
        .table-header h3 { font-size: 20px; font-weight: 700; margin: 0; }
        .comparison-table table { width: 100%; border-collapse: collapse; }
        .comparison-table th { background: #f3f4f6; padding: 16px; text-align: left; font-weight: 600; color: var(--text-dark); border-bottom: 2px solid var(--border-color); }
        .comparison-table td { padding: 16px; border-bottom: 1px solid var(--border-color); }
        .comparison-table tr:nth-child(even) { background: #eff6ff; }
        .check-mark { color: #16a34a; font-size: 22px; font-weight: 700; }

        /* Faculty */
        .faculty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
        .faculty-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s; }
        .faculty-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
        .faculty-card:hover .faculty-image img { transform: scale(1.05); }
        .faculty-image { width: 100%; height: 256px; background: linear-gradient(135deg, var(--primary), #3b82f6); display: flex; align-items: center; justify-content: center; color: white; font-size: 48px; overflow: hidden; }
        .faculty-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .faculty-info { padding: 20px; }
        .faculty-name { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
        .faculty-dept { font-size: 13px; color: var(--text-gray); margin-bottom: 8px; }
        .faculty-qual { font-size: 12px; color: var(--primary); font-weight: 600; }

        /* Gallery */
        .gallery-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 32px; }
        .filter-btn { padding: 12px 24px; border-radius: 24px; border: 2px solid var(--border-color); font-weight: 600; cursor: pointer; transition: all 0.3s; background: white; color: var(--text-dark); }
        .filter-btn.active { background: linear-gradient(to right, var(--primary), #1e40af); color: white; border-color: var(--primary); }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
        .gallery-item { position: relative; height: 250px; border-radius: 8px; overflow: hidden; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s; }
        .gallery-item:hover { transform: scale(1.05); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
        .gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s; }
        .gallery-overlay svg { width: 32px; height: 32px; stroke: currentColor; }
        .gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.6); }

        /* News */
        .news-container { max-width: 700px; margin: 0 auto; }
        .news-list { display: flex; flex-direction: column; gap: 16px; max-height: 500px; overflow-y: auto; padding-right: 8px; }
        .news-item { display: flex; gap: 16px; padding: 16px; background: white; border: 1px solid var(--border-color); border-radius: 8px; transition: all 0.3s; }
        .news-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .news-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #3b82f6); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fcd34d; flex-shrink: 0; font-weight: 600; }
        .news-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
        .news-content { flex-grow: 1; }
        .news-date { font-size: 12px; color: var(--text-gray); margin-bottom: 4px; }
        .news-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; transition: color 0.3s; }
        .news-item:hover .news-title { color: var(--primary); }
        .news-badge { background: var(--secondary); color: var(--primary); padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; flex-shrink: 0; }

        /* Enquiry Form */
        .enquiry-section { background: linear-gradient(to bottom right, #eff6ff, #dbeafe); padding: 64px 0; }
        .enquiry-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
        .contact-boxes { display: flex; flex-direction: column; gap: 20px; }
        .contact-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); display: flex; gap: 16px; }
        .contact-icon-box { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #3b82f6); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fcd34d; flex-shrink: 0; font-weight: 600; }
        .contact-icon-box svg { width: 28px; height: 28px; stroke: currentColor; fill: none; }
        .contact-info h3 { font-weight: 600; color: var(--text-dark); margin-bottom: 8px; font-size: 15px; }
        .contact-info p { font-size: 13px; color: var(--text-gray); margin-bottom: 4px; }
        .office-hours { background: linear-gradient(to right, var(--primary), #1e40af); color: white; border-radius: 8px; padding: 24px; }
        .office-hours h3 { font-weight: 600; margin-bottom: 16px; }
        .office-hours p { font-size: 13px; margin-bottom: 8px; }
        .form-box { background: white; border-radius: 8px; padding: 32px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
        .form-group { margin-bottom: 20px; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .form-grid.full { grid-template-columns: 1fr; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-dark); font-size: 13px; }
        .form-input, .form-select, .form-textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; font-family: inherit; transition: all 0.3s; }
        .form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1); }
        .form-textarea { resize: vertical; min-height: 120px; }
        .form-submit { background: linear-gradient(to right, var(--primary), #1e40af); color: white; padding: 12px 32px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; width: 100%; transition: all 0.3s; font-size: 16px; }
        .form-submit:hover { opacity: 0.9; }
        .form-note { font-size: 12px; color: var(--text-gray); text-align: center; margin-top: 16px; }

        /* FAQ */
        .faq-section { background: #eff6ff; padding: 64px 0; }
        .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
        .faq-item { background: white; border-radius: 8px; border: 1px solid var(--border-color); border-left: 4px solid var(--secondary); margin-bottom: 16px; overflow: hidden; }
        .faq-question { padding: 20px; background: #f3f4f6; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; font-weight: 600; color: var(--text-dark); user-select: none; border: none; width: 100%; text-align: left; font-size: 14px; }
        .faq-question:hover { background: white; color: var(--primary); }
        .faq-toggle { font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
        .faq-item.active .faq-toggle { transform: rotate(180deg); }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--text-gray); font-size: 13px; line-height: 1.8; }
        .faq-item.active .faq-answer { padding: 20px; max-height: 300px; }

        /* Testimonials */
        .testimonials-container { max-width: 1200px; margin: 0 auto; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 32px; }
        .testimonial-card { background: white; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); border: 1px solid var(--border-color); transition: all 0.3s; }
        .testimonial-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
        .stars { color: var(--secondary); margin-bottom: 16px; font-size: 14px; letter-spacing: 2px; }
        .testimonial-text { color: var(--text-dark); margin-bottom: 16px; font-size: 15px; line-height: 1.7; font-style: italic; }
        .testimonial-author { font-weight: 600; color: var(--text-dark); font-size: 14px; }
        .testimonial-location { font-size: 12px; color: var(--text-light); }
        .testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 20px; }
        .nav-btn { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(to right, var(--primary), #1e40af); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; font-size: 18px; }
        .nav-btn:hover { transform: scale(1.1); }
        .nav-dots { display: flex; gap: 12px; }
        .nav-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-light); cursor: pointer; transition: all 0.3s; }
        .nav-dot.active { background: linear-gradient(to right, var(--primary), #1e40af); width: 24px; border-radius: 4px; }

        /* CTA Section */
        .cta-card { background: linear-gradient(to right, var(--primary), #1e40af); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
        .cta-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding: 48px; align-items: center; }
        .cta-text h2 { font-size: 40px; font-weight: 700; color: white; margin-bottom: 24px; line-height: 1.3; }
        .cta-text p { font-size: 16px; color: rgba(255,255,255,0.95); margin-bottom: 32px; line-height: 1.8; }
        .cta-checks { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
        .cta-check { display: flex; gap: 16px; align-items: flex-start; }
        .cta-check-icon { color: #fcd34d; margin-top: 2px; flex-shrink: 0; font-weight: 700; display: flex; align-items: center; justify-content: center; }
        .cta-check-icon svg { width: 24px; height: 24px; fill: currentColor; }
        .cta-check-text { color: white; }
        .cta-check-title { font-weight: 600; margin-bottom: 4px; }
        .cta-check-desc { font-size: 13px; color: rgba(255,255,255,0.9); }
        .cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .cta-btn-primary { background: #fcd34d; color: var(--primary); padding: 12px 32px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .cta-btn-primary:hover { opacity: 0.9; }
        .cta-btn-secondary { background: rgba(255,255,255,0.2); color: white; padding: 12px 32px; border: 2px solid white; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .cta-btn-secondary:hover { background: rgba(255,255,255,0.3); }
        .cta-boxes { display: flex; flex-direction: column; gap: 16px; }
        .cta-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 24px; text-align: center; color: white; }
        .cta-box-number { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
        .cta-box-label { font-size: 13px; opacity: 0.9; }

        /* Footer */
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
        .footer-section { }
        .footer-link { display: block; color: #d1d5db; text-decoration: none; font-size: 13px; transition: color 0.3s; }
        .footer-link:hover { color: var(--secondary); }

        /* Utilities */
        .highlight { color: var(--primary); }

        @media (max-width: 768px) {
            .section { padding: 48px 0; }
            .section-title { font-size: 28px; }
            .about-grid, .cta-grid, .enquiry-grid, .faq-grid { grid-template-columns: 1fr; }
            .counters-grid, .certifications-grid { grid-template-columns: 1fr; }
            .counter-item { border-right: none; border-bottom: 1px solid rgba(252,211,77,0.3); padding-bottom: 20px; }
            .counter-item:last-child { border-bottom: none; }
            .hero-content h1 { font-size: 32px; }
            .hero-content p { font-size: 16px; }
        }