﻿/*:root {
    --primary-blue: #0a3d62;
    --secondary-blue: #3c6382;
    --accent-gold: #c59d5f;
    --light-gray-bg: #f8f9fa;
    --dark-text: #343a40;
    --light-text: #6c757d;
    --white-color: #ffffff;
    --border-color: #dee2e6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark-text);
    background: var(--white-color);
    line-height: 1.7;
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--accent-gold);
        margin: 15px auto 0;
        border-radius: 2px;
    }*/

/* ── HEADER ───────────────────────────── */
/*.header {
    background-color: var(--white-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark-text);
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-blue);
        }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
}

    .hamburger span {
        display: block;
        height: 4px;
        background: var(--primary-blue);
        border-radius: 2px;
        transition: 0.3s;
    }*/

/* ── HERO ─────────────────────────────── */
/*.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 32px auto;
    opacity: 0.92;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

    .cta-button:hover {
        background-color: #ad874d;
    }

    .cta-button.secondary {
        background-color: transparent;
        border: 2px solid var(--accent-gold);
        color: var(--accent-gold);
    }

        .cta-button.secondary:hover {
            background-color: var(--accent-gold);
            color: var(--white-color);
        }*/

/* ── ABOUT ────────────────────────────── */
/*#about {
    background: var(--light-gray-bg);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: var(--light-text);
}

.team-2-special {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.team-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.team-member {
    background: var(--white-color);
    text-align: center;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10,61,98,0.08);
    transition: box-shadow 0.3s cubic-bezier(0.4,2,0.3,1), transform 0.35s cubic-bezier(0.3,1.5,0.4,1.05), background 0.25s;
    cursor: pointer;
    opacity: 0.95;
}

.special-member {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(90deg, #fff6e0 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(197,157,95,0.1), 0 1px 7px rgba(0,0,0,0.07);
    position: relative;
}

    .special-member::after {
        content: "Key Profile";
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 0.92rem;
        background: var(--accent-gold);
        color: var(--white-color);
        padding: 4px 13px;
        border-radius: 99px;
        font-weight: 700;
        opacity: 0.7;
        letter-spacing: 0.8px;
    }

    .special-member h3 {
        color: var(--accent-gold);
        font-size: 1.22rem;
        font-weight: 700;
    }

    .special-member .title, .special-member .experience {
        color: var(--secondary-blue);
    }

    .special-member .experience {
        font-weight: 600;
    }

.profile-details {
    margin: 15px 0 0 0;
    padding-left: 18px;
    text-align: left;
    font-size: 0.96rem;
    color: var(--dark-text);
}

    .profile-details li {
        margin-bottom: 7px;
        line-height: 1.5;
        list-style: disc inside;
    }

.team-member:hover, .team-member:focus {
    background: var(--accent-gold);
    color: var(--white-color);
    box-shadow: 0 12px 32px rgba(10,61,98,0.18);
    transform: translateY(-10px) scale(1.03) rotate(-2deg);
    opacity: 1;
}

.team-member h3, .team-member .title, .team-member .experience, .team-member .profile-details {
    transition: color 0.3s;
}

.team-member:hover h3, .team-member:hover .title, .team-member:hover .experience,
.team-member:hover .profile-details, .team-member:hover .profile-details li {
    color: var(--white-color);
}*/

/* ── SERVICES ─────────────────────────── */
/*.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white-color);
    padding: 28px 22px;
    border-radius: 11px;
    box-shadow: 0 2px 7px rgba(10,61,98,0.07);
    text-align: center;
    transition: box-shadow 0.24s, background 0.3s, transform 0.22s;
    position: relative;
    overflow: hidden;
}

.service-icon {
    margin: 0 auto 14px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.service-item:hover {
    background: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(10,61,98,0.17);
    transform: translateY(-3px) scale(1.04);
}

    .service-item:hover .service-icon {
        transform: scale(1.12);
    }

.service-item h3, .service-item p {
    transition: color 0.22s;
}

.service-item:hover h3, .service-item:hover p {
    color: var(--accent-gold);
}

.service-category-title {
    text-align: center;
    font-size: 1.72rem;
    color: var(--secondary-blue);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-category {
    margin-bottom: 50px;
}*/

/* ── CLIENTS ──────────────────────────── */
/*#clients {
    background: var(--light-gray-bg);
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 34px;
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: scroll-marquee 45s linear infinite;
}

.logo-marquee img {
    height: 80px;
    min-width: 160px;
    width: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    padding: 16px 28px;
    box-shadow: 0 2px 12px rgba(52,58,64,0.13);
    transition: box-shadow 0.3s;
}

    .logo-marquee img:hover {
        box-shadow: 0 8px 32px rgba(10,61,98,0.16);
    }

@keyframes scroll-marquee {
    100% {
        transform: translateX(-50%);
    }
}*/

/* ── CONTACT ──────────────────────────── */
/*.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background: #f9fafd;
}

    .contact-form-panel input:focus,
    .contact-form-panel textarea:focus {
        outline: none;
        border-color: #c59d5f;
    }

.contact-form-panel textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-map-panel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,61,98,0.1);
    min-height: 420px;
}

    .contact-map-panel iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
        display: block;
        border-radius: 12px;
    }*/

/* ── TESTIMONIALS ─────────────────────── */
/*.testimonials-section {
    background: var(--light-gray-bg);
    padding: 72px 0 60px;
    overflow: hidden;
}

.testi-header {
    text-align: center;
    margin-bottom: 48px;
}

.testi-eyebrow {
    display: inline-block;
    background: rgba(197,157,95,0.12);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 99px;
    margin-bottom: 14px;
    border: 1px solid rgba(197,157,95,0.3);
}

.testi-subtitle {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-top: 8px;
}

.testi-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-viewport {
    flex: 1;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(.77,0,.18,1);
}*/

/* ── CARD ── */
/*.testi-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    background: #a8d5c2;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
    /* ✅ needed for tooltip positioning */
    /*overflow: visible;
}

    .testi-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    }

    .testi-card:nth-child(3n+1) {
        background: #a8d5c2;
    }

    .testi-card:nth-child(3n+2) {
        background: #b8d4f0;
    }

    .testi-card:nth-child(3n+3) {
        background: #f0d4b8;
    }

.testi-big-quote {
    font-size: 4.5rem;
    line-height: 0.6;
    color: rgba(0,0,0,0.15);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 900;
    margin-bottom: 14px;
    display: block;
    flex-shrink: 0;
}*/

/* ── TEXT: clamp to 4 lines + tooltip on hover ── */
/*.testi-text {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 20px;
    flex-shrink: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: calc(1.7em * 4);
    position: relative;
    cursor: default;
}*/

/* Tooltip box — shows full message on card hover */
/*.testi-card:hover .testi-text::after {
    content: attr(data-full);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e2a38;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.65;
    padding: 14px 18px;
    border-radius: 12px;
    width: 300px;
    max-width: 90vw;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    white-space: normal;
    display: block;
    pointer-events: none;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    font-style: italic;
}*/

/* Tooltip arrow */
/*.testi-card:hover .testi-text::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e2a38;
    z-index: 1000;
    pointer-events: none;
    display: block;
}

.testi-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    flex-shrink: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.7);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testi-avatar-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.7);
}

.testi-author-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
}

.testi-author-info span {
    color: rgba(0,0,0,0.55);
    font-size: 0.85rem;
}

.testi-stars {
    color: #e8a020;
    font-size: 1.15rem;
    letter-spacing: 3px;
}

    .testi-stars .empty-star {
        color: rgba(0,0,0,0.15);
    }

.testi-arrow {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(10,61,98,0.2);
}

    .testi-arrow:hover {
        background: var(--accent-gold);
        transform: scale(1.08);
    }

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8d8ea;
    cursor: pointer;
    border: none;
    transition: background 0.25s, transform 0.25s;
}

    .testi-dot.active {
        background: var(--primary-blue);
        transform: scale(1.35);
    }*/

/* ── FOOTER ───────────────────────────── */
/*.footer {
    background: #07294d;
}

.footer-top {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

        .footer-social a:hover {
            background: #c59d5f;
            border-color: #c59d5f;
            color: #fff;
        }

.footer-heading {
    color: #c59d5f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

    .footer-links a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        font-size: 0.92rem;
        transition: color 0.2s, padding-left 0.2s;
        display: inline-block;
    }

        .footer-links a:hover {
            color: #c59d5f;
            padding-left: 4px;
        }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-contact-list svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-contact-list span,
    .footer-contact-list a {
        color: rgba(255,255,255,0.65);
        font-size: 0.88rem;
        text-decoration: none;
        line-height: 1.5;
    }

        .footer-contact-list a:hover {
            color: #c59d5f;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255,255,255,0.4);
        font-size: 0.83rem;
        margin: 0;
    }*/

/* ── CAREERS ──────────────────────────── */
/*.careers-hero {
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

    .careers-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

.job-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(10,61,98,0.07);
    margin-bottom: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .job-card:hover {
        box-shadow: 0 8px 24px rgba(10,61,98,0.13);
        transform: translateY(-2px);
    }

    .job-card h3 {
        color: #0a3d62;
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .job-card .meta {
        color: #6c757d;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .job-card p {
        color: #343a40;
        margin-bottom: 18px;
    }

.job-detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 10px rgba(10,61,98,0.07);
    margin-bottom: 32px;
}

    .job-detail-box h3 {
        color: #0a3d62;
        margin-bottom: 14px;
    }

    .job-detail-box p {
        white-space: pre-line;
        color: #343a40;
    }

.apply-form {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 10px rgba(10,61,98,0.07);
}

    .apply-form h3 {
        color: #0a3d62;
        margin-bottom: 24px;
    }

    .apply-form input, .apply-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        font-size: 0.95rem;
        margin-bottom: 14px;
        font-family: "Poppins", sans-serif;
    }

    .apply-form textarea {
        min-height: 100px;
        resize: vertical;
    }

    .apply-form label {
        display: block;
        font-weight: 600;
        color: #0a3d62;
        margin-bottom: 6px;
    }*/

/* ── ALERTS ───────────────────────────── */
/*.alert-success-page {
    background: #d4edda;
    color: #155724;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-error-page {
    background: #f8d7da;
    color: #721c24;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}*/

/* ── RESPONSIVE ───────────────────────── */
/*@media (max-width: 900px) {
    .team-2-special, .team-3-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        gap: 0;
        min-width: 170px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 12px rgba(0,0,0,0.1);
        overflow: hidden;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            border-bottom: 1px solid var(--border-color);
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 17px 20px;
        }

    .hamburger {
        display: flex;
    }

    .testi-card {
        flex: 0 0 calc(50% - 20px);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-content h1, .section-title {
        font-size: 2rem;
    }

    section {
        padding: 44px 0;
    }

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

    .contact-flex {
        grid-template-columns: 1fr;
    }

    .contact-map-panel {
        min-height: 300px;
    }

        .contact-map-panel iframe {
            min-height: 300px;
        }
}

@media (max-width: 620px) {
    .hero-content h1, .section-title {
        font-size: 1.5rem;
    }

    section {
        padding: 24px 0;
    }

    .testi-card {
        flex: 0 0 calc(88% - 20px);
        margin: 0 6%;
    }

    .testi-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}*/


/* ═══════════════════════════════════════
   LKA WEBSITE — site.css
   ═══════════════════════════════════════ */

/* ── VARIABLES & RESET ────────────────── */
:root {
    --primary-blue: #0a3d62;
    --secondary-blue: #3c6382;
    --accent-gold: #c59d5f;
    --light-gray-bg: #f8f9fa;
    --dark-text: #343a40;
    --light-text: #6c757d;
    --white-color: #ffffff;
    --border-color: #dee2e6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark-text);
    background: var(--white-color);
    line-height: 1.7;
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--accent-gold);
        margin: 15px auto 0;
        border-radius: 2px;
    }

/* ── HEADER ───────────────────────────── */
.header {
    background-color: var(--white-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; /* FIX: anchors mobile nav dropdown */
    }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark-text);
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-blue);
        }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 22px;
    justify-content: space-between;
}

    .hamburger span {
        display: block;
        height: 4px;
        background: var(--primary-blue);
        border-radius: 2px;
        transition: 0.3s;
    }

/* ── HERO ─────────────────────────────── */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 32px;
    opacity: 0.92;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

    .cta-button:hover {
        background-color: #ad874d;
    }

    .cta-button.secondary {
        background-color: transparent;
        border: 2px solid var(--accent-gold);
        color: var(--accent-gold);
    }

        .cta-button.secondary:hover {
            background-color: var(--accent-gold);
            color: var(--white-color);
        }

/* ── ABOUT ────────────────────────────── */
#about {
    background: var(--light-gray-bg);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--light-text);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 52px;
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Founder Card */
.founder-card {
    display: flex;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,61,98,0.12);
    margin-bottom: 56px;
    background: #fff;
}

.founder-photo {
    flex: 0 0 280px;
    min-height: 360px;
    background: #d4e4f0;
    position: relative;
    overflow: hidden;
}

    .founder-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
    }

.founder-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a3d62, #3c6382);
}

.founder-photo-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c59d5f, #e8c97e);
}

.founder-details {
    flex: 1;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-badge {
    display: inline-block;
    background: #f0f7ff;
    color: #0a3d62;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.founder-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0a3d62;
    margin: 0 0 6px;
}

.founder-title {
    color: #c59d5f;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 4px;
}

.founder-exp {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.founder-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c59d5f, #e8c97e);
    border-radius: 2px;
    margin-bottom: 20px;
}

.founder-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .founder-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #343a40;
        font-size: 0.95rem;
    }

.bullet-icon {
    color: #c59d5f;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Team Stats */
.team-stats-section {
    margin-top: 8px;
}

.team-stats-title {
    text-align: center;
    color: #0a3d62;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10,61,98,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(10,61,98,0.14);
    }

.stat-blue {
    border-top: 4px solid #0a3d62;
}

.stat-gold {
    border-top: 4px solid #c59d5f;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.stat-blue .stat-number {
    color: #0a3d62;
}

.stat-gold .stat-number {
    color: #c59d5f;
}

.stat-label {
    color: #6c757d;
    font-size: 0.88rem;
    margin-top: 10px;
    line-height: 1.5;
}

/* Legacy team grid classes kept for compatibility */
.team-2-special {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.team-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.team-member {
    background: var(--white-color);
    text-align: center;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10,61,98,0.08);
    transition: box-shadow 0.3s, transform 0.35s, background 0.25s;
    cursor: pointer;
    opacity: 0.95;
}

.special-member {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(90deg, #fff6e0 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(197,157,95,0.1), 0 1px 7px rgba(0,0,0,0.07);
    position: relative;
}

    .special-member::after {
        content: "Key Profile";
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 0.92rem;
        background: var(--accent-gold);
        color: var(--white-color);
        padding: 4px 13px;
        border-radius: 99px;
        font-weight: 700;
        opacity: 0.7;
        letter-spacing: 0.8px;
    }

    .special-member h3 {
        color: var(--accent-gold);
        font-size: 1.22rem;
        font-weight: 700;
    }

    .special-member .title,
    .special-member .experience {
        color: var(--secondary-blue);
    }

    .special-member .experience {
        font-weight: 600;
    }

.profile-details {
    margin: 15px 0 0;
    padding-left: 18px;
    text-align: left;
    font-size: 0.96rem;
    color: var(--dark-text);
}

    .profile-details li {
        margin-bottom: 7px;
        line-height: 1.5;
        list-style: disc inside;
    }

.team-member:hover,
.team-member:focus {
    background: var(--accent-gold);
    color: var(--white-color);
    box-shadow: 0 12px 32px rgba(10,61,98,0.18);
    transform: translateY(-10px) scale(1.03) rotate(-2deg);
    opacity: 1;
}

.team-member h3,
.team-member .title,
.team-member .experience,
.team-member .profile-details {
    transition: color 0.3s;
}

.team-member:hover h3,
.team-member:hover .title,
.team-member:hover .experience,
.team-member:hover .profile-details,
.team-member:hover .profile-details li {
    color: var(--white-color);
}

/* ── SERVICES ─────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white-color);
    padding: 28px 22px;
    border-radius: 11px;
    box-shadow: 0 2px 7px rgba(10,61,98,0.07);
    text-align: center;
    transition: box-shadow 0.24s, background 0.3s, transform 0.22s;
    position: relative;
    overflow: hidden;
}

.service-icon {
    margin: 0 auto 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.service-item:hover {
    background: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(10,61,98,0.17);
    transform: translateY(-3px) scale(1.04);
}

    .service-item:hover .service-icon {
        transform: scale(1.12);
    }

.service-item h3,
.service-item p {
    transition: color 0.22s;
}

.service-item:hover h3,
.service-item:hover p {
    color: var(--accent-gold);
}

.service-category-title {
    text-align: center;
    font-size: 1.72rem;
    color: var(--secondary-blue);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-category {
    margin-bottom: 50px;
}

/* ── CLIENTS ──────────────────────────── */
#clients {
    background: var(--light-gray-bg);
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 34px;
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: scroll-marquee 45s linear infinite;
}

.logo-marquee img {
    height: 80px;
    min-width: 160px;
    width: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    padding: 16px 28px;
    box-shadow: 0 2px 12px rgba(52,58,64,0.13);
    transition: box-shadow 0.3s;
}

    .logo-marquee img:hover {
        box-shadow: 0 8px 32px rgba(10,61,98,0.16);
    }

@keyframes scroll-marquee {
    100% {
        transform: translateX(-50%);
    }
}

/* ── CONTACT ──────────────────────────── */
.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background: #f9fafd;
}

    .contact-form-panel input:focus,
    .contact-form-panel textarea:focus {
        outline: none;
        border-color: #c59d5f;
    }

.contact-form-panel textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-map-panel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,61,98,0.1);
    min-height: 420px;
}

    .contact-map-panel iframe {
        width: 100%;
        height: 100%;
        min-height: 420px;
        border: 0;
        display: block;
        border-radius: 12px;
    }

/* ── TESTIMONIALS ─────────────────────── */
.testimonials-section {
    background: var(--light-gray-bg);
    padding: 72px 0 60px;
    overflow: hidden;
}

.testi-header {
    text-align: center;
    margin-bottom: 48px;
}

.testi-eyebrow {
    display: inline-block;
    background: rgba(197,157,95,0.12);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 99px;
    margin-bottom: 14px;
    border: 1px solid rgba(197,157,95,0.3);
}

.testi-subtitle {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-top: 8px;
}

.testi-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-viewport {
    flex: 1;
    overflow: hidden; /* clips cards cleanly */
    min-width: 0; /* FIX: prevents flex blowout */
}

.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(.77,0,.18,1);
}

/* ── TESTIMONIAL CARD ── */
.testi-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: visible;
}

    .testi-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    }

    .testi-card:nth-child(3n+1) {
        background: #a8d5c2;
    }

    .testi-card:nth-child(3n+2) {
        background: #b8d4f0;
    }

    .testi-card:nth-child(3n+3) {
        background: #f0d4b8;
    }

.testi-big-quote {
    font-size: 4.5rem;
    line-height: 0.6;
    color: rgba(0,0,0,0.15);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 900;
    margin-bottom: 14px;
    display: block;
    flex-shrink: 0;
}

/* Text: clamp to 4 lines + tooltip on hover */
.testi-text {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 20px;
    flex-shrink: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: calc(1.7em * 4);
    position: relative;
    cursor: default;
}

.testi-card:hover .testi-text::after {
    content: attr(data-full);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e2a38;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.65;
    padding: 14px 18px;
    border-radius: 12px;
    width: 300px;
    max-width: 90vw;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    white-space: normal;
    display: block;
    pointer-events: none;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    font-style: italic;
}

.testi-card:hover .testi-text::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e2a38;
    z-index: 1000;
    pointer-events: none;
    display: block;
}

.testi-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    flex-shrink: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.7);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testi-avatar-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.7);
}

.testi-author-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
}

.testi-author-info span {
    color: rgba(0,0,0,0.55);
    font-size: 0.85rem;
}

.testi-stars {
    color: #e8a020;
    font-size: 1.15rem;
    letter-spacing: 3px;
}

    .testi-stars .empty-star {
        color: rgba(0,0,0,0.15);
    }

.testi-arrow {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(10,61,98,0.2);
}

    .testi-arrow:hover {
        background: var(--accent-gold);
        transform: scale(1.08);
    }

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8d8ea;
    cursor: pointer;
    border: none;
    transition: background 0.25s, transform 0.25s;
}

    .testi-dot.active {
        background: var(--primary-blue);
        transform: scale(1.35);
    }

/* ── BLOG SLIDER CARDS (homepage section) ── */
.blog-slide-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,61,98,0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .blog-slide-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(10,61,98,0.15);
    }

.blog-slide-img {
    height: 180px;
    overflow: hidden;
    background: #e8f0f7;
}

    .blog-slide-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.blog-slide-card:hover .blog-slide-img img {
    transform: scale(1.05);
}

.blog-slide-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0f7, #f8f9fa);
}

.blog-slide-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-slide-cat {
    display: inline-block;
    background: rgba(197,157,95,0.12);
    color: #c59d5f;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.blog-slide-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a3d62;
    margin: 0 0 8px;
    line-height: 1.4;
}

.blog-slide-body p {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-slide-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #adb5bd;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

/* ── BLOG LIST PAGE (grid layout) ─────── */
.blog-hero {
    background: linear-gradient(135deg, #0a3d62, #3c6382);
    color: #fff;
    padding: 90px 20px 70px;
    text-align: center;
}

    .blog-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .blog-hero p {
        font-size: 1.05rem;
        opacity: 0.8;
        max-width: 600px;
        margin: 0 auto;
    }

.blog-list-section {
    padding: 72px 0;
}

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

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,61,98,0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(10,61,98,0.15);
    }

.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: #e8f0f7;
}

    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0f7, #f8f9fa);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: rgba(197,157,95,0.12);
    color: #c59d5f;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a3d62;
    margin: 0 0 10px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.65;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #adb5bd;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

/* ── BLOG SINGLE POST ─────────────────── */
.blog-post-hero {
    padding: 90px 20px 70px;
    color: #fff;
    text-align: center;
    background: #0a3d62;
}

    .blog-post-hero h1 {
        font-size: 2.4rem;
        font-weight: 700;
        max-width: 800px;
        margin: 16px auto 0;
        line-height: 1.3;
    }

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    opacity: 0.75;
    font-size: 0.9rem;
}

.blog-post-body {
    padding: 64px 0;
}

.blog-post-content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #343a40;
}

    .blog-post-content h2 {
        color: #0a3d62;
        margin: 36px 0 14px;
        font-size: 1.5rem;
    }

    .blog-post-content h3 {
        color: #0a3d62;
        margin: 28px 0 10px;
    }

    .blog-post-content p {
        margin-bottom: 18px;
    }

    .blog-post-content ul,
    .blog-post-content ol {
        padding-left: 22px;
        margin-bottom: 18px;
    }

    .blog-post-content li {
        margin-bottom: 8px;
    }

    .blog-post-content img {
        max-width: 100%;
        border-radius: 8px;
        margin: 12px 0;
        display: block;
    }

    .blog-post-content blockquote {
        border-left: 4px solid #c59d5f;
        padding: 12px 20px;
        margin: 24px 0;
        background: #fff9f0;
        color: #555;
        border-radius: 0 8px 8px 0;
    }

    .blog-post-content table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .blog-post-content th {
        background: #0a3d62;
        color: #fff;
        padding: 10px 14px;
        text-align: left;
    }

    .blog-post-content td {
        padding: 10px 14px;
        border-bottom: 1px solid #dee2e6;
    }

    .blog-post-content a {
        color: #c59d5f;
        text-decoration: underline;
    }

/* ── FOOTER ───────────────────────────── */
.footer {
    background: #07294d;
}

.footer-top {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

        .footer-social a:hover {
            background: #c59d5f;
            border-color: #c59d5f;
            color: #fff;
        }

.footer-heading {
    color: #c59d5f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

    .footer-links a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        font-size: 0.92rem;
        transition: color 0.2s, padding-left 0.2s;
        display: inline-block;
    }

        .footer-links a:hover {
            color: #c59d5f;
            padding-left: 4px;
        }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-contact-list svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-contact-list span,
    .footer-contact-list a {
        color: rgba(255,255,255,0.65);
        font-size: 0.88rem;
        text-decoration: none;
        line-height: 1.5;
    }

        .footer-contact-list a:hover {
            color: #c59d5f;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
}

    .footer-bottom p {
        color: rgba(255,255,255,0.4);
        font-size: 0.83rem;
        margin: 0;
    }

/* ── CAREERS ──────────────────────────── */
.careers-hero {
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

    .careers-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

.job-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(10,61,98,0.07);
    margin-bottom: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .job-card:hover {
        box-shadow: 0 8px 24px rgba(10,61,98,0.13);
        transform: translateY(-2px);
    }

    .job-card h3 {
        color: #0a3d62;
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .job-card .meta {
        color: #6c757d;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .job-card p {
        color: #343a40;
        margin-bottom: 18px;
    }

.job-detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 10px rgba(10,61,98,0.07);
    margin-bottom: 32px;
}

    .job-detail-box h3 {
        color: #0a3d62;
        margin-bottom: 14px;
    }

    .job-detail-box p {
        white-space: pre-line;
        color: #343a40;
    }

.apply-form {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 2px 10px rgba(10,61,98,0.07);
}

    .apply-form h3 {
        color: #0a3d62;
        margin-bottom: 24px;
    }

    .apply-form input,
    .apply-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        font-size: 0.95rem;
        margin-bottom: 14px;
        font-family: "Poppins", sans-serif;
    }

    .apply-form textarea {
        min-height: 100px;
        resize: vertical;
    }

    .apply-form label {
        display: block;
        font-weight: 600;
        color: #0a3d62;
        margin-bottom: 6px;
    }

/* ── ALERTS ───────────────────────────── */
.alert-success-page {
    background: #d4edda;
    color: #155724;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-error-page {
    background: #f8d7da;
    color: #721c24;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 900px) {
    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        gap: 0;
        min-width: 170px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 12px rgba(0,0,0,0.1);
        overflow: hidden;
        z-index: 999;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            border-bottom: 1px solid var(--border-color);
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 17px 20px;
        }

    .hamburger {
        display: flex;
    }

    /* Testimonials */
    .testi-card {
        flex: 0 0 calc(50% - 20px);
    }

    /* Blog slider */
    .blog-slide-card {
        flex: 0 0 calc(50% - 20px);
    }

    /* Blog grid page */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* About */
    .founder-card {
        flex-direction: column;
    }

    .founder-photo {
        flex: none;
        min-height: 260px;
    }

    .founder-details {
        padding: 32px 28px;
    }

    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Legacy team */
    .team-2-special,
    .team-3-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 44px 0;
    }

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

    .contact-flex {
        grid-template-columns: 1fr;
    }

    .contact-map-panel {
        min-height: 300px;
    }

        .contact-map-panel iframe {
            min-height: 300px;
        }
}

@media (max-width: 620px) {
    .hero-content h1,
    .section-title {
        font-size: 1.5rem;
    }

    section {
        padding: 24px 0;
    }

    /* Testimonials */
    .testi-card {
        flex: 0 0 calc(88% - 20px);
        margin: 0 6%;
    }

    .testi-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Blog slider */
    .blog-slide-card {
        flex: 0 0 calc(88% - 20px);
        margin: 0 6%;
    }

    /* Blog grid page */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-post-hero h1 {
        font-size: 1.7rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .founder-name {
        font-size: 1.5rem;
    }

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

/* ── Works Section ── */
.works-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.works-intro {
    text-align: center;
    color: #6c757d;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

.works-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
