/* ============================================================
   MNT EXPORT – Global Trade Solutions | Stylesheet
   Colors: Navy #0f2744, Gold #c9a84c, White #ffffff
   ============================================================ */

:root {
    --navy: #0f2744;
    --navy-dark: #091a2e;
    --navy-mid: #1a3a5c;
    --gold: #c9a84c;
    --gold-light: #e0c070;
    --gold-dark: #a88830;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --text-muted: #7a8fa6;
    --light-navy: #f0f4f8;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Jost", sans-serif;
    color: var(--navy);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ── UTILITY ── */
.gold {
    color: var(--gold) !important;
}
.text-gold {
    color: var(--gold) !important;
}

/* ── NAVBAR ── */
#mainNav {
    background: rgba(9, 26, 46, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    padding: 1.2rem 0;
    border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
    background: rgba(9, 26, 46, 0.97) !important;
    backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ── MOBILE: dropdown always solid dark so it never blends into hero ── */
@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: var(--navy-dark);
        margin-top: 0.6rem;
        border-radius: 10px;
        padding: 0.8rem 1rem 1rem;
        border: 1px solid rgba(201, 168, 76, 0.18);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        margin-right: 10px;
    }
    #mainNav .navbar-collapse .nav-link {
        padding: 0.7rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 6px;
    }
    #mainNav .navbar-collapse .nav-link:last-of-type {
        border-bottom: none;
    }
    #mainNav .navbar-collapse .nav-link.active,
    #mainNav .navbar-collapse .nav-link:hover {
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold) !important;
        border-radius: 6px;
    }
    #mainNav .navbar-collapse .btn-gold {
        margin-top: 0.6rem;
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    /* Toggler icon always white */
    #mainNav .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 4px 8px;
        border-radius: 6px;
        margin-right: 10px;
        
    }
}
.brand-text {
    font-family: "Playfair Display", serif;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.82rem;
    position: relative;
    padding: 0.5rem 0.8rem !important;
    transition: color 0.3s;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
    left: 0.8rem;
    right: 0.8rem;
}

/* ── BUTTONS ── */
.btn-gold {
    background: var(--gold);
    color: var(--navy-dark) !important;
    font-weight: 600;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}
.btn-navy {
    background: var(--navy);
    color: white !important;
    font-weight: 600;
    border: 2px solid var(--navy);
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.btn-navy:hover {
    background: transparent;
    color: var(--navy) !important;
    transform: translateY(-2px);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy) !important;
    font-weight: 600;
    border: 2px solid var(--navy);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: white !important;
}
.btn-whatsapp {
    background: #25d366;
    color: white !important;
    font-weight: 700;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 0 0 16px 0 !important;
}
.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ── HERO ── */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy) 50%,
        var(--navy-mid) 100%
    );
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 150vh;
    background: radial-gradient(
        ellipse,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?w=1600&q=60")
        center/cover;
    opacity: 0.07;
}
.hero-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}
.gold-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    line-height: 1.15;
    font-weight: 900;
}
.hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 520px;
    font-weight: 300;
}
.hero-stats {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-scroll-hint {
    position: absolute;
    right: 40px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--gold);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
    padding: 0 2rem;
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS ── */
.section-pad {
    padding: 6rem 0;
}
.bg-light-navy {
    background: var(--light-navy);
}

.section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-label.light {
    color: var(--gold-light);
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ── ABOUT IMAGE ── */
.about-img-wrap {
    position: relative;
    padding: 20px 20px 0 0;
}
.about-img-bg {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--gold);
    opacity: 0.15;
    border-radius: 4px;
}
.about-img {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    z-index: 2;
    background: var(--navy);
    border: 2px solid var(--gold);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-badge small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ── FEATURE CARDS ── */
.feature-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 1.2rem;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-3px);
}
.feature-card h6 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.feature-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── CATEGORY CARDS ── */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}
.cat-card:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 39, 68, 0.2);
}
.cat-card:hover .cat-icon {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
}
.cat-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s;
}
.cat-card h6 {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ── PRODUCT CARDS ── */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 39, 68, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 39, 68, 0.15);
    border-color: rgba(201, 168, 76, 0.3);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 68, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.product-overlay-btn {
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transform: translateY(10px);
    transition: transform 0.3s;
    letter-spacing: 0.5px;
}
.product-card:hover .product-overlay-btn {
    transform: translateY(0);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-body {
    padding: 1.2rem 1.4rem;
}
.product-category {
    color: var(--gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.product-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin: 0.3rem 0 0.7rem;
    color: var(--navy);
    font-size: 1rem;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-material {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.product-enquire {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.product-enquire:hover {
    text-decoration: underline;
}

/* ── WHY SECTION ── */
.why-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60vw;
    height: 120%;
    background: radial-gradient(
        ellipse,
        rgba(201, 168, 76, 0.06),
        transparent 70%
    );
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 1.8rem;
    color: white;
    transition: all 0.3s;
}
.why-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
}
.why-num {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: "Jost", sans-serif;
}
.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ── GALLERY THUMBS ── */
.gallery-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.4s;
    display: block;
}
.gallery-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ── TESTIMONIALS ── */
.testi-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}
.testi-card:hover {
    transform: translateY(-5px);
}
.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.testi-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    font-size: 0.95rem;
}
.testi-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testi-author strong {
    color: var(--navy);
    font-weight: 700;
}
.testi-author small {
    color: var(--gold);
    font-size: 0.8rem;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 5rem 0;
}

/* ── FOOTER ── */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 0;
}
.footer-heading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: "Jost", sans-serif;
}
.footer-list {
    list-style: none;
    padding: 0;
}
.footer-list li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}
.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-list a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}
.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

/* ── PRODUCT POPUP MODAL ── */
.popup-card {
    border-radius: 16px !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.popup-close:hover {
    background: var(--navy);
    color: white;
}
.popup-img-wrap {
    position: relative;
    height: 100%;
    min-height: 350px;
}
.popup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.popup-badge-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}
.popup-body {
    padding: 2rem 2rem 1rem;
}
.popup-category {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.popup-title {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.popup-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem 0;
}
.popup-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.popup-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.popup-detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}
.popup-detail-value {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}
.popup-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9rem;
}
.popup-footer {
    padding: 0 2rem 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1583391733981-8498408ee4b6?w=1600&q=40")
        center/cover;
    opacity: 0.06;
}
.page-hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
}
.page-hero p {
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-item {
    color: rgba(255, 255, 255, 0.5) !important;
}
.breadcrumb-item.active {
    color: var(--gold) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ── CONTACT FORM ── */
.form-control,
.form-select {
    border: 1.5px solid rgba(15, 39, 68, 0.12);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-family: "Jost", sans-serif;
    transition: all 0.3s;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    outline: none;
}
.form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.88rem;
}

/* ── INFO CARDS ── */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--gold);
}

/* ── GALLERY GRID ── */
.gallery-grid-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}
.gallery-grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}
.gallery-grid-item:hover img {
    transform: scale(1.08);
}
.gallery-grid-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-grid-item:hover .overlay {
    opacity: 1;
}

/* ── FILTER TABS ── */
.filter-btn {
    background: none;
    border: 2px solid rgba(15, 39, 68, 0.15);
    color: var(--navy);
    padding: 0.5rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Jost", sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ── ABOUT TEAM ── */
.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: transform 0.3s;
    text-align: center;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.team-body {
    padding: 1.5rem;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
    padding-left: 50px;
    margin-bottom: 2.5rem;
    position: relative;
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.75rem;
}
.timeline-item h5 {
    color: var(--navy);
    font-weight: 700;
}
.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .section-pad {
        padding: 4rem 0;
    }
    .about-img {
        /* height: 300px; */
    }
    .popup-img-wrap {
        min-height: 250px;
    }
    .hero-scroll-hint {
        display: none;
    }
}
