   /* -------------------- RESET & VARIABLES -------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #b64b2a;
            --primary-light: #e67e4a;
            --primary-dark: #923b20;
            --secondary: #e7b020;
            --accent: #3a7657;
            --neutral-50: #fdfaf7;
            --neutral-100: #f9f3ed;
            --neutral-200: #efe3d9;
            --neutral-300: #dfcec0;
            --neutral-700: #6b5b4e;
            --neutral-800: #4a3f37;
            --neutral-900: #2f2822;
            --shadow-soft: 0 10px 25px -12px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 30px -12px rgba(180, 75, 42, 0.2);
            --border-radius-card: 1.8rem;
            --transition: all 0.25s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--neutral-800);
            line-height: 1.5;
            background-color: var(--neutral-50);
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            letter-spacing: -0.01em;
            line-height: 1.2;
            color: var(--neutral-900);
        }

        h1 { font-weight: 600; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        section {
            padding: 5rem 0;
        }

        .section-title {
            font-weight: 500;
            font-size: clamp(2rem, 5vw, 2.6rem);
            position: relative;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            margin-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-sub {
            text-align: center;
            font-size: 1.2rem;
            color: var(--neutral-700);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 350;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            font-weight: 500;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 6px 18px -6px rgba(180, 75, 42, 0.3);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px -10px rgba(180, 75, 42, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.8);
            color: white;
            box-shadow: none;
        }
        .btn-outline:hover {
            background: white;
            color: var(--primary);
            border-color: white;
        }

        /* -------------------- NAVBAR -------------------- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            position: sticky;
            top: 0;
            z-index: 100;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(255,255,255,0.8);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: var(--primary);
        }
        .logo-img {
            height: 48px;           /* adjust based on your logo */
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            font-weight: 450;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--neutral-800);
            transition: color 0.2s;
            font-size: 1rem;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--primary);
            transition: width 0.25s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .login-btn {
            background: none;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            padding: 0.5rem 1.8rem;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .login-btn:hover {
            background: var(--primary);
            color: white;
        }

        @media (max-width: 800px) {
            .navbar {
                flex-direction: column;
                gap: 0.8rem;
                padding: 1rem;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.2rem 2rem;
            }
        }

        /* -------------------- HERO -------------------- */
        .hero {
            background: linear-gradient(105deg, rgba(30, 20, 15, 0.75) 0%, rgba(60, 40, 30, 0.55) 100%),
                        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: white;
        }
        .hero-content {
            max-width: 750px;
            padding: 3rem 2rem;
        }
        .hero-content h1 {
            font-size: clamp(2.8rem, 9vw, 4.8rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
            color: white;
            font-weight: 600;
        }
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            font-weight: 350;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* -------------------- SERVICES -------------------- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .service-card {
            background: white;
            padding: 2.2rem 1.5rem;
            border-radius: 2rem;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border: 1px solid var(--neutral-200);
            text-align: center;
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .service-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .service-card h4 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }
        .service-card p {
            color: var(--neutral-700);
            font-size: 0.95rem;
        }

        /* -------------------- REDESIGNED "AT A GLANCE" -------------------- */
        .glance-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0 3rem;
        }
        .stat-card {
            background: white;
            padding: 1.8rem 1rem;
            border-radius: 2rem;
            text-align: center;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--neutral-200);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: scale(1.02);
            border-color: var(--primary-light);
        }
        .stat-icon {
            font-size: 2.2rem;
            color: var(--primary);
            background: var(--neutral-100);
            width: 4rem;
            height: 4rem;
            line-height: 4rem !important;
            border-radius: 50%;
            margin: 0 auto 1rem;
            box-shadow: inset 0 -2px 5px rgba(0,0,0,0.02);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 500;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--neutral-700);
            letter-spacing: 0.3px;
        }

        .department-title {
            font-size: 1.8rem;
            font-weight: 450;
            text-align: center;
            margin: 2.5rem 0 1.5rem;
            color: var(--neutral-800);
        }
        .dept-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
            justify-content: center;
            margin-bottom: 2.5rem;
        }
        .chip {
            background: white;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 450;
            color: var(--neutral-800);
            border: 1px solid var(--neutral-300);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .chip i {
            color: var(--primary);
            font-size: 1rem;
        }
        .chip:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .chip:hover i {
            color: white;
        }

        .company-description {
            background: linear-gradient(135deg, #fff9f4, #fff);
            padding: 2.2rem 2.5rem;
            border-radius: 2.5rem;
            box-shadow: var(--shadow-soft);
            border-left: 6px solid var(--secondary);
            font-size: 1.15rem;
            line-height: 1.6;
            color: var(--neutral-800);
            margin-top: 1.5rem;
        }
        .company-description strong {
            color: var(--primary-dark);
            font-weight: 500;
        }

        /* -------------------- CONTACT -------------------- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            background: var(--neutral-100);
            border-radius: 3rem;
            padding: 3rem;
            margin-top: 2rem;
        }
        .contact-info p {
            margin: 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            color: var(--neutral-800);
        }
        .contact-info i {
            width: 2rem;
            color: var(--primary);
            font-size: 1.4rem;
            text-align: center;
        }
        .contact-info a {
            color: var(--neutral-800);
            text-decoration: none;
            transition: color 0.2s;
        }
        .contact-info a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid var(--neutral-300);
            border-radius: 50px;
            margin-bottom: 1.2rem;
            font-family: inherit;
            background: white;
            font-size: 1rem;
        }
        .contact-form textarea {
            border-radius: 1.5rem;
            resize: vertical;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(180, 75, 42, 0.15);
        }

        @media (max-width: 700px) {
            .contact-grid {
                grid-template-columns: 1fr;
                padding: 2rem;
            }
        }

        /* -------------------- FOOTER -------------------- */
        footer {
            background: var(--neutral-900);
            color: #cab8a8;
            padding: 1.4rem 1.5rem 1.5rem;
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        footer .logo {
            justify-content: center;
            color: white;
            margin-bottom: 0.4rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.6rem;
            flex-wrap: wrap;
            margin: 0.4rem 0 0.4rem;
        }
        .footer-links a {
            color: #dac9bb;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: white;
        }

        /* -------------------- LOGIN MODAL -------------------- */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            z-index: 200;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: white;
            padding: 2.5rem;
            border-radius: 2.5rem;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 30px 50px rgba(0,0,0,0.3);
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .close-modal {
            position: absolute;
            top: 1.2rem; right: 1.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--neutral-700);
            transition: color 0.2s;
        }
        .close-modal:hover {
            color: var(--primary);
        }
        .modal-logo {
            text-align: center;
            margin-bottom: 1rem;
        }
        .modal-logo .logo-img {
            height: 70px;           /* bigger for modal */
            margin: 0 auto 1rem;
        }
        .modal-logo h2 {
            font-size: 1.8rem;
            margin-top: 0.2rem;
            color: var(--neutral-900);
            font-weight: 500;
        }
        .login-tabs {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0 2rem;
            border-bottom: 2px solid var(--neutral-200);
            padding-bottom: 0.5rem;
        }
        .tab-btn {
            flex: 1;
            background: none;
            border: none;
            padding: 0.8rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--neutral-700);
            cursor: pointer;
            border-radius: 40px;
            transition: all 0.2s;
        }
        .tab-btn.active {
            background: var(--primary);
            color: white;
        }
        .modal-content input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid var(--neutral-300);
            border-radius: 60px;
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }
        .modal-content input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(180, 75, 42, 0.15);
        }
        .checkbox-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.8rem 0 1.5rem;
        }
        .checkbox-row input[type="checkbox"] {
            width: auto;
            margin: 0;
        }
        .error-msg {
            color: #c0392b;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.9rem;
        }

        /* responsive */
        @media (max-width: 600px) {
            .container { padding: 0 1.2rem; }
            section { padding: 4rem 0; }
            .hero-content h1 { font-size: 2.5rem; }
            .btn { padding: 0.7rem 1.8rem; }
        }
        section:not(.hero) {
            animation: fadeIn 0.6s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }