﻿/* ============================================================
   The AR Technologies â€” Advisora-Style Stylesheet
   Professional Navy + Gold Theme  |  v3.0
   ============================================================ */

/* â”€â”€ CSS Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --navy:         #0c1c2e;
    --navy-mid:     #17293f;
    --navy-light:   #243b55;
    --gold:         #c9a14a;
    --gold-hover:   #e0bc69;
    --gold-dark:    #a07c28;
    --white:        #ffffff;
    --off-white:    #f5f7fa;
    --light-grey:   #eaecef;
    --text-dark:    #1a1a2e;
    --text-body:    #596878;
    --text-muted:   #9daab6;
    --border:       #dee2e8;
    --font-head:    'Space Grotesk', sans-serif;
    --font-body:    'Inter', sans-serif;
    --radius:       6px;
    --radius-md:    10px;
    --radius-lg:    14px;
    --transition:   all 0.3s ease;
    --shadow:       0 4px 24px rgba(12, 28, 46, 0.08);
    --shadow-lg:    0 12px 44px rgba(12, 28, 46, 0.14);

    /* legacy aliases â€” kept so sub-pages still compile */
    --bg-secondary:   var(--off-white);
    --bg-card:        var(--white);
    --bg-card-hover:  var(--off-white);
    --accent-cyan:    var(--gold);
    --accent-purple:  var(--gold-dark);
    --accent-green:   #059669;
    --accent-pink:    #db2777;
    --text-primary:   var(--text-dark);
    --text-secondary: var(--text-body);
    --font-heading:   var(--font-head);
    --gradient-main:  linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    --shadow-glow:    0 0 40px rgba(201,161,74,0.12);
    --shadow-card:    var(--shadow);
    --radius-xl:      var(--radius-lg);
}

/* â”€â”€ Base Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; height: auto; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* â”€â”€ Global Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-section    { padding: 100px 0; }
.tt-section-sm { padding: 70px 0; }
.bg-navy       { background: var(--navy); }
.bg-off-white  { background: var(--off-white); }
.bg-dark-alt   { background: var(--off-white); }

/* Section label (eyebrow text) */
.sec-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
}
.sec-label::before {
    content: ''; display: block;
    width: 32px; height: 2px; background: var(--gold); flex-shrink: 0;
}
/* legacy alias */
.section-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
    padding: 5px 0; font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 16px; }

.sec-title  { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
    letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 20px; color: var(--text-dark); }
.sec-title-white { color: var(--white); }
.sec-desc   { font-size: 1.05rem; color: var(--text-body); line-height: 1.85; margin-bottom: 36px; max-width: 600px; }
.sec-divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }

/* legacy aliases */
.section-title    { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-body); max-width: 580px; line-height: 1.85; }
.section-divider  { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }

.gradient-text { color: var(--gold); }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-gold {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--gold); color: var(--navy); font-family: var(--font-head);
    font-weight: 700; font-size: 14px; padding: 13px 30px; border-radius: 4px;
    border: none; cursor: pointer; transition: var(--transition);
    text-decoration: none !important; letter-spacing: 0.5px;
}
.btn-gold:hover { background: var(--gold-hover); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,161,74,0.38); }

.btn-outline-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: var(--white); font-family: var(--font-head);
    font-weight: 700; font-size: 14px; padding: 12px 30px; border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.40); cursor: pointer; transition: var(--transition);
    text-decoration: none !important;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.80); color: var(--white); transform: translateY(-2px); }

.btn-navy {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--navy); color: var(--white); font-family: var(--font-head);
    font-weight: 700; font-size: 14px; padding: 13px 32px; border-radius: 4px;
    border: none; cursor: pointer; transition: var(--transition); text-decoration: none !important;
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(12,28,46,0.28); }

/* legacy button aliases */
.btn-tt-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--navy);
    padding: 13px 30px; border-radius: 4px;
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    border: none; cursor: pointer; transition: var(--transition);
    text-decoration: none !important;
}
.btn-tt-primary:hover { color: var(--navy); background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,161,74,0.38); }

.btn-tt-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--text-dark);
    padding: 12px 30px; border-radius: 4px;
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    border: 2px solid var(--border); cursor: pointer; transition: var(--transition);
    text-decoration: none !important;
}
.btn-tt-outline:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,161,74,0.06); transform: translateY(-2px); }

/* â”€â”€ Top Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-topbar {
    background: var(--navy);
    padding: 9px 0;
    font-size: 13px; color: rgba(255,255,255,0.70);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tt-topbar a { color: rgba(255,255,255,0.70); }
.tt-topbar a:hover { color: var(--gold); }
.tt-topbar i { color: var(--gold); margin-right: 5px; font-size: 12px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-right { justify-content: flex-end; flex-wrap: nowrap; gap: 14px; }

/* ── Topbar Free Consultation button ─────────────────── */
.btn-topbar-consult {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold);
    color: var(--navy) !important;
    padding: 5px 14px;
    border-radius: 4px; border: none;
    font-family: var(--font-head); font-weight: 700; font-size: 12px;
    letter-spacing: 0.3px; text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.btn-topbar-consult i { color: var(--navy) !important; margin-right: 0; font-size: 11px; }
.btn-topbar-consult:hover {
    background: var(--gold-hover);
    color: var(--navy) !important;
}

/* ── Sticky Header Wrapper ────────────────────────────── */
.tt-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}
.tt-header.scrolled .tt-topbar {
    /* optionally hide topbar on scroll for more screen space */
}
.tt-header.scrolled .tt-navbar {
    box-shadow: 0 12px 60px rgba(0,0,0,0.42), 0 1px 0 rgba(201,161,74,0.12);
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR  —  Premium Dark Glassmorphism
   ══════════════════════════════════════════════════════════════ */
.tt-navbar {
    background: linear-gradient(135deg, rgba(8,15,28,0.97) 0%, rgba(14,24,42,0.97) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 0;
    border-top: 1px solid rgba(201,161,74,0.22);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 48px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.40s ease;
}
.tt-navbar.scrolled {
    background: linear-gradient(135deg, rgba(6,12,22,0.99) 0%, rgba(10,19,34,0.99) 100%);
    border-top-color: rgba(201,161,74,0.30);
    box-shadow: 0 12px 60px rgba(0,0,0,0.42), 0 1px 0 rgba(201,161,74,0.12);
}

/* ── Logo ─────────────────────────────────────────────── */
.tt-logo { display: flex; align-items: center; gap: 14px; text-decoration: none !important; padding: 14px 0; }
.logo-icon {
    width: 46px; height: 46px;
    background: rgba(201,161,74,0.10);
    border: 1px solid rgba(201,161,74,0.38);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gold); flex-shrink: 0;
    box-shadow: 0 0 22px rgba(201,161,74,0.14), inset 0 1px 0 rgba(201,161,74,0.18);
    transition: all 0.38s cubic-bezier(.34,1.56,.64,1);
}
.tt-logo:hover .logo-icon {
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-hover) 100%);
    border-color: var(--gold-hover);
    color: var(--navy);
    transform: rotate(-8deg) scale(1.10);
    box-shadow: 0 0 32px rgba(201,161,74,0.50), 0 6px 20px rgba(201,161,74,0.30);
}
.logo-text  { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: rgba(255,255,255,0.92); letter-spacing: -0.5px; line-height: 1; }
.logo-accent { color: var(--gold); }

/* ── Nav Links ────────────────────────────────────────── */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.68) !important;
    font-family: var(--font-head); font-weight: 500; font-size: 14px;
    padding: 10px 15px !important;
    border-radius: 0;
    position: relative; transition: color 0.25s ease;
    letter-spacing: 0.2px;
}
.navbar-nav .nav-link::after { display: none; }
/* Animated gold underline — plain links only */
.navbar-nav .nav-link:not(.nav-training-btn):not(.nav-download-btn)::before {
    content: '';
    position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-hover));
    border-radius: 2px; transition: width 0.32s cubic-bezier(.4,0,.2,1);
}
.navbar-nav .nav-link:not(.nav-training-btn):not(.nav-download-btn):hover::before,
.navbar-nav .nav-link:not(.nav-training-btn):not(.nav-download-btn).active::before {
    width: 58%;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: transparent;
}

/* ── Divider ──────────────────────────────────────────── */
.nav-divider {
    width: 1px; height: 28px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
    margin: 0 14px; flex-shrink: 0; align-self: center;
}

/* ── Nav Actions ──────────────────────────────────────── */
.nav-actions { display: flex; align-items: center; gap: 10px; }
@media (max-width: 991.98px) {
    .nav-actions { padding: 14px 0 10px; flex-wrap: wrap; gap: 10px; }
}

/* Free Consultation — gold gradient glow CTA */
.btn-nav-consult {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #ecca6a 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--navy) !important;
    padding: 9px 22px; border-radius: 4px; border: none;
    font-family: var(--font-head); font-weight: 700; font-size: 13px;
    letter-spacing: 0.4px; text-decoration: none !important;
    transition: background-position 0.45s ease, transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(201,161,74,0.38), inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-nav-consult:hover {
    background-position: right center;
    color: var(--navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(201,161,74,0.52), inset 0 1px 0 rgba(255,255,255,0.28);
}

/* Sign In — frosted white outline */
.btn-nav-signin {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82) !important;
    padding: 9px 18px; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.16);
    font-family: var(--font-head); font-weight: 600; font-size: 13px;
    letter-spacing: 0.3px; text-decoration: none !important;
    transition: var(--transition); white-space: nowrap;
}
.btn-nav-signin:hover {
    background: rgba(255,255,255,0.12); color: var(--white) !important;
    border-color: rgba(255,255,255,0.30); transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}

/* Sign Up — gold gradient */
.btn-nav-signup {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, var(--gold) 0%, #dbb95e 100%);
    color: var(--navy) !important;
    padding: 9px 18px; border-radius: 4px; border: none;
    font-family: var(--font-head); font-weight: 700; font-size: 13px;
    letter-spacing: 0.3px; text-decoration: none !important;
    transition: var(--transition); white-space: nowrap;
    box-shadow: 0 3px 14px rgba(201,161,74,0.30);
}
.btn-nav-signup:hover {
    background: linear-gradient(135deg, #e0c26a 0%, var(--gold) 100%);
    color: var(--navy) !important; transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(201,161,74,0.46);
}

/* Mobile Free Consultation button (inside collapsed nav) */
.btn-mobile-consult {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold);
    color: var(--navy) !important;
    padding: 9px 18px; border-radius: 4px; border: none;
    font-family: var(--font-head); font-weight: 700; font-size: 13px;
    text-decoration: none !important; white-space: nowrap;
    transition: background 0.2s ease;
}
.btn-mobile-consult:hover { background: var(--gold-hover); color: var(--navy) !important; }

/* User Operations Manager — gold solid */
.btn-nav-user-ops {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--gold);
    color: var(--navy) !important;
    padding: 9px 18px; border-radius: 4px; border: none;
    font-family: var(--font-head); font-weight: 700; font-size: 13px;
    letter-spacing: 0.3px; text-decoration: none !important;
    transition: background 0.2s ease; white-space: nowrap;
}
.btn-nav-user-ops:hover {
    background: var(--gold-hover);
    color: var(--navy) !important;
}

/* Mobile toggler — white icon on dark bg */
.navbar-toggler {
    border: 1.5px solid rgba(255,255,255,0.18);
    padding: 7px 11px; border-radius: 10px; background: rgba(255,255,255,0.05);
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.tt-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.82%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c%2fsvg%3e");
}

/* Mobile collapse panel */
@media (max-width: 991.98px) {
    .tt-navbar .navbar-collapse {
        background: rgba(6,12,22,0.98);
        margin: 0 -12px;
        padding: 10px 20px 20px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .navbar-nav .nav-link:not(.nav-training-btn):not(.nav-download-btn)::before { display: none; }
    .navbar-nav .nav-link {
        padding: 10px 6px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    /* Mega dropdowns — full width, static on mobile */
    .tt-dropdown-mega {
        min-width: 100% !important;
        width: 100% !important;
        position: static !important;
        transform: none !important;
        right: auto !important;
        left: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 2px solid var(--gold) !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        background: rgba(255,255,255,0.04) !important;
    }
    .tt-dropdown-grid {
        grid-template-columns: 1fr !important;
    }
    .tt-dropdown-col {
        flex-direction: row !important;
        text-align: left !important;
        padding: 10px 12px !important;
    }
    .tt-dropdown-col .tt-dropdown-icon {
        flex-shrink: 0;
    }
    .tt-dropdown-software {
        flex-direction: column !important;
    }
    .tt-sw-right { margin-top: 6px; }
    /* nav-actions stacked on mobile */
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px 0 0;
    }
    .nav-guest-panel {
        flex-direction: column;
        width: 100%;
        gap: 8px !important;
    }
    .btn-nav-signin, .btn-nav-signup, .btn-nav-user-ops, .btn-mobile-consult {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ── Training & Demo ─────────────────────────────────── */
.nav-training-btn {
    display: inline-flex !important; align-items: center; gap: 8px;
    background: transparent !important;
    color: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important; font-size: 13px;
    letter-spacing: 0.25px;
    transition: all 0.25s ease;
    position: relative;
    outline: none !important;
    box-shadow: none !important;
}
.nav-training-btn:focus,
.nav-training-btn:focus-visible,
.nav-training-btn:focus-within,
.nav-training-btn:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgba(255,255,255,0.14) !important;
}
.nav-training-btn i { color: var(--gold); transition: color 0.25s ease; }
.nav-training-btn::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.nav-training-btn:hover {
    background: rgba(255,255,255,0.07) !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.24) !important;
}
.nav-training-btn:hover::before { transform: scaleX(1); }
.nav-training-btn:hover i { color: var(--gold-hover); }
.nav-training-btn::after { margin-left: 4px; display: inline-block !important; opacity: 0.55; }

/* ── Download — same style as Training & Demo ─────────── */
.nav-download-btn {
    display: inline-flex !important; align-items: center; gap: 8px;
    background: transparent !important;
    color: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    font-weight: 600 !important; font-size: 13px;
    letter-spacing: 0.25px;
    transition: all 0.25s ease;
    position: relative;
    outline: none !important;
    box-shadow: none !important;
}
.nav-download-btn:focus,
.nav-download-btn:focus-visible,
.nav-download-btn:focus-within,
.nav-download-btn:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgba(255,255,255,0.14) !important;
}
.nav-download-btn i { color: var(--gold); transition: color 0.25s ease; }
.nav-download-btn::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.nav-download-btn:hover {
    background: rgba(255,255,255,0.07) !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.24) !important;
}
.nav-download-btn:hover::before { transform: scaleX(1); }
.nav-download-btn:hover i { color: var(--gold-hover); }
.nav-download-btn::after { margin-left: 4px; display: inline-block !important; opacity: 0.55; }

/* Mega dropdown panel */
.tt-dropdown-mega {
    min-width: 580px;
    background: #ffffff;
    border: 1px solid rgba(201,161,74,0.18);
    border-top: 2px solid var(--gold);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 0 0 1px rgba(201,161,74,0.06);
    padding: 22px;
    margin-top: 0 !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
}
.tt-dropdown-header {
    font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid var(--light-grey);
}
/* 3-column grid */
.tt-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
/* Each column card */
.tt-dropdown-col {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 8px;
    padding: 20px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none !important;
    color: var(--text-dark) !important;
    transition: var(--transition);
    background: var(--white);
    position: relative; overflow: hidden;
}
.tt-dropdown-col::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.tt-dropdown-col:hover {
    border-color: rgba(201,161,74,0.40);
    background: rgba(201,161,74,0.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(12,28,46,0.10);
    color: var(--navy) !important;
}
.tt-dropdown-col:hover::before { transform: scaleX(1); }
.tt-dropdown-col .tt-dropdown-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; transition: var(--transition); flex-shrink: 0;
}
.tt-dropdown-col:hover .tt-dropdown-icon { background: var(--gold); color: var(--navy); }
.tt-dropdown-col strong { font-size: 13px; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.tt-dropdown-col small  { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.tt-download-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,161,74,0.10);
    border: 1px solid rgba(201,161,74,0.22);
    border-radius: 50px; padding: 3px 10px; margin-top: 2px;
}
/* Divider between sections */
.tt-dropdown-divider {
    border: none; border-top: 1px solid var(--light-grey);
    margin: 16px 0 14px;
}
/* Software download row */
.tt-dropdown-software {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none !important;
    color: var(--text-dark) !important;
    transition: var(--transition);
    background: var(--off-white);
    position: relative; overflow: hidden;
}
.tt-dropdown-software + .tt-dropdown-software { margin-top: 8px; }
.tt-dropdown-software::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--gold); border-radius: 4px 0 0 4px;
}
.tt-dropdown-software:hover {
    border-color: rgba(201,161,74,0.45);
    background: rgba(201,161,74,0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12,28,46,0.10);
    color: var(--navy) !important;
}
.tt-sw-left  { display: flex; align-items: center; gap: 14px; }
.tt-sw-icon  {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    transition: var(--transition);
}
.tt-dropdown-software:hover .tt-sw-icon { background: var(--gold); color: var(--navy); }
.tt-sw-info  { display: flex; flex-direction: column; gap: 3px; }
.tt-sw-info strong { font-size: 14px; font-weight: 800; color: var(--text-dark); }
.tt-sw-info span   { font-size: 12px; color: var(--text-muted); }
.tt-sw-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.tt-sw-size  {
    font-family: var(--font-head); font-size: 13px; font-weight: 800;
    color: var(--gold); background: rgba(201,161,74,0.10);
    border-radius: 6px; padding: 3px 10px;
}
/* â”€â”€ Hero Carousel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-hero { position: relative; }
.hero-slide {
    min-height: 92vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
}
.hero-slide-1 { background: linear-gradient(135deg, #0c1c2e 0%, #1a3a5c 60%, #0c1c2e 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #17293f 0%, #243b55 60%, #17293f 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #0c1c2e 0%, #1a2f40 50%, #0d2035 100%); }
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
}
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,161,74,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: block; }
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.8rem); font-weight: 800;
    color: var(--white); line-height: 1.07; letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.85; margin-bottom: 42px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-info-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px); border-radius: var(--radius-lg);
    padding: 32px 28px;
}
.hero-stat-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-item:first-child { padding-top: 0; }
.hero-stat-num   { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.58); margin-top: 4px; }
.tt-hero .carousel-control-prev,
.tt-hero .carousel-control-next {
    width: 50px; height: 50px; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
    border-radius: 4px; opacity: 1;
}
.tt-hero .carousel-control-prev:hover,
.tt-hero .carousel-control-next:hover { background: var(--gold); border-color: var(--gold); }
.tt-hero .carousel-control-prev { left: 24px; }
.tt-hero .carousel-control-next { right: 24px; }
.tt-hero .carousel-indicators { bottom: 28px; }
.tt-hero .carousel-indicators button {
    width: 28px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.35); border: none; transition: var(--transition);
}
.tt-hero .carousel-indicators .active { background: var(--gold); width: 44px; }

/* Legacy hero classes (sub-pages may still reference) */
.hero-content   { position: relative; z-index: 2; }
.hero-badge     { display: inline-flex; align-items: center; gap: 10px; color: var(--gold);
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 22px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hero-stats     { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 52px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-item      { text-align: left; }
.stat-number    { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800;
    color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label     { font-size: 14px; color: rgba(255,255,255,0.60); font-weight: 500; }
.hero-visual    { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.hero-device    { position: relative; width: 420px; height: 420px; }
.device-ring    { position: absolute; border-radius: 50%; border: 1px solid; animation: orbit linear infinite; }
.ring-1 { inset: 0;    border-color: rgba(201,161,74,0.25); animation-duration: 14s; }
.ring-2 { inset: 36px; border-color: rgba(201,161,74,0.15); animation-duration: 20s; animation-direction: reverse; }
.ring-3 { inset: 72px; border-color: rgba(201,161,74,0.08); animation-duration: 28s; }
.ring-1::before { content:''; position:absolute; top:-4px; left:50%; width:8px; height:8px; background:var(--gold); border-radius:50%; transform:translateX(-50%); }
.ring-2::before { content:''; position:absolute; bottom:-4px; right:20%; width:6px; height:6px; background:var(--gold-dark); border-radius:50%; }
@keyframes orbit { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
.device-center  {
    position: absolute; inset: 100px;
    background: rgba(255,255,255,0.06); border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
}
.device-center i    { font-size: 52px; color: var(--gold); }
.device-center span { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 2px; text-transform: uppercase; }
.floating-badge {
    position: absolute; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md); padding: 12px 16px;
    display: flex; align-items: center; gap: 12px; z-index: 3; white-space: nowrap;
    animation: floatBadge ease-in-out infinite;
}
.floating-badge:nth-child(5) { top:8%;  left:-8%;  animation-duration:4s;   animation-delay:0s;   }
.floating-badge:nth-child(6) { bottom:8%; right:-8%; animation-duration:5s;  animation-delay:1.5s; }
.floating-badge:nth-child(7) { top:45%; left:-15%; animation-duration:4.5s; animation-delay:3s;   }
@keyframes floatBadge { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
.badge-icon  { width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.bg-cyan     { background:rgba(201,161,74,0.15); color:var(--gold); }
.bg-purple   { background:rgba(201,161,74,0.12); color:var(--gold-dark); }
.bg-green    { background:rgba(5,150,105,0.12);  color:#059669; }
.badge-text         { font-size:12px; line-height:1.3; }
.badge-text strong  { display:block; font-size:13px; color:var(--white); font-weight:600; }
.badge-text span    { color:rgba(255,255,255,0.55); }

/* â”€â”€ Stats Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-stats-bar { background: var(--navy-mid); padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-item { text-align: center; padding: 0 20px; position: relative; }
.stats-item + .stats-item::before {
    content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
    width: 1px; background: rgba(255,255,255,0.08);
}
.stats-num   { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stats-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }

/* â”€â”€ Counter (legacy) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.counter-wrap  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 20px; text-align: center; transition: var(--transition); box-shadow: var(--shadow); }
.counter-wrap:hover { border-color: rgba(201,161,74,0.30); box-shadow: var(--shadow-lg); }
.counter-num   { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.counter-label { color: var(--text-body); font-size: 13px; font-weight: 500; }

/* â”€â”€ Feature / Help Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.help-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 28px;
    height: 100%; transition: var(--transition); box-shadow: var(--shadow);
    position: relative; overflow: hidden;
}
.help-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.help-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(201,161,74,0.25); }
.help-card:hover::before { transform: scaleX(1); }
.help-icon {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    background: rgba(201,161,74,0.10); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 22px; transition: var(--transition);
}
.help-card:hover .help-icon { background: var(--gold); color: var(--navy); }
.help-card h4  { font-size: 1.15rem; font-weight: 800; margin-bottom: 14px; color: var(--text-dark); }
.help-card p   { color: var(--text-body); font-size: 0.95rem; line-height: 1.78; margin-bottom: 18px; }
.help-link     { color: var(--gold); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.help-link:hover { gap: 12px; color: var(--gold-dark); }

/* â”€â”€ About Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* ── About Visual Section ─────────────────────────────── */
.about-visual-wrap {
    position: relative;
    padding-right: 24px;
    padding-bottom: 24px;
}
/* Dot grid — top-left decoration */
.about-dots {
    position: absolute;
    top: -18px; left: -18px;
    width: 156px; height: 156px;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.28; pointer-events: none; z-index: 0;
}
/* Gold accent border — offset bottom-right behind image */
.about-accent-frame {
    position: absolute;
    top: 22px; left: 22px; right: 0; bottom: 0;
    border: 2px solid var(--gold);
    border-radius: 20px; opacity: 0.38; z-index: 1; pointer-events: none;
}
/* Main image container */
.about-img-frame {
    position: relative; z-index: 2;
    border-radius: 20px; overflow: hidden; height: 500px;
    box-shadow: 0 28px 72px rgba(12,28,46,0.30), 0 6px 18px rgba(12,28,46,0.10);
}
.about-img-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    display: block;
    transition: transform 0.70s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-img-frame:hover .about-img-photo { transform: scale(1.05); }
/* Gradient overlay — dark at bottom for badge readability */
.about-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(12,28,46,0.00)  0%,
        rgba(12,28,46,0.10) 45%,
        rgba(12,28,46,0.68) 100%);
    z-index: 1;
}
/* Floating project stat card — top-left */
.about-float-stat {
    position: absolute; top: 22px; left: 22px; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    background: rgba(10,20,46,0.78);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(201,161,74,0.28);
    border-radius: 14px; padding: 13px 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.about-float-icon {
    width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
    background: rgba(201,161,74,0.16);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: var(--gold);
}
.about-float-num { font-family: var(--font-head); font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1; }
.about-float-lbl { font-size: 11px; color: rgba(255,255,255,0.58); font-weight: 500; margin-top: 3px; letter-spacing: 0.3px; }
/* Years active badge — bottom-right */
.about-badge {
    position: absolute; bottom: 28px; right: 28px; z-index: 3;
    background: var(--gold); border-radius: 14px;
    padding: 18px 24px; text-align: center;
    box-shadow: 0 12px 32px rgba(201,161,74,0.42);
}
.about-badge-num   { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about-badge-label { font-size: 11px; color: var(--navy-mid); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
/* legacy about-img-box (unused but kept for safety) */
.about-img-box { position:relative; border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(145deg,var(--navy) 0%,var(--navy-light) 100%); height:480px; display:flex; align-items:center; justify-content:center; }
.about-img-icon { font-size:80px; color:rgba(201,161,74,0.22); position:relative; }
.check-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.check-list li i { color: var(--gold); font-size: 13px; }
/* legacy about placeholder */
.about-img-placeholder {
    width:100%; height:480px; background:var(--navy);
    border-radius:var(--radius-lg); border:1px solid rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; flex-direction:column;
    position:relative; overflow:hidden;
}
.about-img-placeholder::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at 25% 35%, rgba(201,161,74,0.08) 0%, transparent 60%);
}

/* â”€â”€ Dark CTA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-dark-cta {
    background: var(--navy); padding: 90px 0; position: relative; overflow: hidden;
}
.tt-dark-cta::before {
    content: ''; position: absolute;
    top: -200px; right: -200px; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,161,74,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.achievement-row { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 36px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.achievement-num   { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.achievement-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 5px; }
/* CTA Section legacy */
.cta-section { background: var(--off-white); position: relative; overflow: hidden; }
.cta-glow    { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse,rgba(201,161,74,0.06) 0%,transparent 70%);
    pointer-events: none; }

/* â”€â”€ Service Cards (homepage) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 30px;
    height: 100%; transition: var(--transition); box-shadow: var(--shadow);
    position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(201,161,74,0.30); }
.svc-num  {
    font-family: var(--font-head); font-size: 4rem; font-weight: 800;
    color: rgba(201,161,74,0.12); line-height: 1;
    position: absolute; top: 20px; right: 24px; pointer-events: none;
}
.svc-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .svc-icon { background: var(--gold); color: var(--navy); }
.service-card h4 { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.service-card p  { font-size: 0.92rem; color: var(--text-body); line-height: 1.78; margin-bottom: 20px; }
.svc-list li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-body); padding: 7px 0; border-bottom: 1px solid var(--light-grey); list-style: none; }
.svc-list li:last-child { border-bottom: none; }
.svc-list li i { color: var(--gold); font-size: 10px; }
.svc-link  { color: var(--gold); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.svc-link:hover { gap: 12px; }
.service-icon  { width:56px; height:56px; border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:20px; background:var(--navy); color:var(--gold); }
.icon-cyan     { background: rgba(201,161,74,0.10); color: var(--gold); }
.icon-purple   { background: var(--navy); color: var(--gold); }
.icon-green    { background: rgba(5,150,105,0.10); color: #059669; }
.icon-pink     { background: rgba(219,39,119,0.10); color: #db2777; }
.service-link  { color: var(--gold); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 12px; }

/* â”€â”€ Portfolio / Case Study Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.portfolio-card {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 100%; transition: var(--transition); box-shadow: var(--shadow);
    background: var(--white); border: 1px solid var(--border);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(201,161,74,0.25); }
.portfolio-thumb { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.portfolio-thumb-1 { background: linear-gradient(135deg, #0c1c2e, #243b55); }
.portfolio-thumb-2 { background: linear-gradient(135deg, #17293f, #1a3a5c); }
.portfolio-thumb-3 { background: linear-gradient(135deg, #0d2035, #1a3a5c); }
.portfolio-thumb-4 { background: linear-gradient(135deg, #0c1c2e, #17293f); }
.portfolio-thumb-icon { font-size: 72px; opacity: 0.15; color: var(--gold); transition: var(--transition); }
.portfolio-card:hover .portfolio-thumb-icon { opacity: 0.28; transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(12,28,46,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
.portfolio-body   { padding: 24px; }
.portfolio-body h5 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; line-height: 1.35; }
.portfolio-body p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }
.portfolio-link    { color: var(--gold); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.portfolio-link:hover { gap: 12px; }
/* legacy project classes */
.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.project-card:hover { transform: translateY(-6px); border-color: rgba(201,161,74,0.25); box-shadow: var(--shadow-lg); }
.project-thumb { height: 210px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.project-thumb-1 { background: linear-gradient(135deg, #0c1c2e, #243b55); }
.project-thumb-2 { background: linear-gradient(135deg, #17293f, #1a3a5c); }
.project-thumb-3 { background: linear-gradient(135deg, #0d2035, #243b55); }
.project-thumb-4 { background: linear-gradient(135deg, #0c1c2e, #17293f); }
.project-thumb-5 { background: linear-gradient(135deg, #0c1c2e, #1a2f46); }
.project-thumb-6 { background: linear-gradient(135deg, #17293f, #243b55); }
.project-thumb-icon { font-size: 72px; opacity: 0.15; color: var(--gold); transition: var(--transition); }
.project-card:hover .project-thumb-icon { opacity: 0.28; transform: scale(1.08); }
.project-overlay { position: absolute; inset: 0; background: rgba(12,28,46,0.75); display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 0; transition: var(--transition); }
.project-card:hover .project-overlay { opacity: 1; }
.overlay-btn { width:44px; height:44px; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.22); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:16px; cursor:pointer; transition:var(--transition); text-decoration:none; }
.overlay-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.project-info     { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.project-category { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.project-title    { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); line-height: 1.3; }
.project-desc     { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.project-tags     { display: flex; gap: 6px; flex-wrap: wrap; }
.project-tag      { font-size: 11px; font-weight: 600; background: var(--off-white); border: 1px solid var(--border); color: var(--text-muted); padding: 3px 10px; border-radius: 3px; }
.filter-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn { background: var(--white); border: 1px solid var(--border); color: var(--text-body); padding: 8px 22px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font-body); box-shadow: var(--shadow); }
.filter-btn:hover, .filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--gold); }

/* â”€â”€ Team Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    text-align: center; transition: var(--transition); box-shadow: var(--shadow);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(201,161,74,0.30); }
.team-avatar-wrap {
    height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.team-avatar-wrap i { font-size: 80px; color: rgba(201,161,74,0.25); }
.team-avatar { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.team-info { padding: 22px 20px 24px; }
.team-info h5 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.team-info .role { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.team-social { display: flex; gap: 8px; justify-content: center; }
.team-social a { width: 34px; height: 34px; background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.team-social a:hover { background: var(--navy); border-color: var(--navy); color: var(--gold); }

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-testimonials { background: var(--off-white); }
.testimonial-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px;
    height: 100%; box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
    content: '\201C'; font-size: 80px; font-family: Georgia, serif;
    color: var(--gold); opacity: 0.18; position: absolute;
    top: 12px; left: 24px; line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 18px; display: flex; gap: 3px; }
.testi-text  { font-size: 0.97rem; color: var(--text-body); line-height: 1.82; margin-bottom: 26px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--text-dark); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* â”€â”€ Contact Section (homepage) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-contact { background: var(--navy); }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon {
    width: 46px; height: 46px; min-width: 46px;
    background: rgba(201,161,74,0.15); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px;
}
.contact-text strong { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-text p, .contact-text a { font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500; margin: 0; }
.contact-text a:hover { color: var(--gold); }
.contact-form-box {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg); padding: 44px; backdrop-filter: blur(10px);
}

/* â”€â”€ Form Controls â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-label-tt { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.form-control-tt {
    width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius); padding: 12px 16px; color: var(--white);
    font-size: 14.5px; font-family: var(--font-body); transition: var(--transition);
    outline: none; display: block;
}
.form-control-tt:focus { border-color: rgba(201,161,74,0.50); background: rgba(255,255,255,0.10); box-shadow: 0 0 0 3px rgba(201,161,74,0.08); }
.form-control-tt::placeholder { color: rgba(255,255,255,0.30); }
textarea.form-control-tt { resize: vertical; min-height: 130px; }
.tt-alert { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 500; margin-bottom: 22px; }
.tt-alert-success { background: rgba(5,150,105,0.07); border: 1px solid rgba(5,150,105,0.22); color: #059669; }
.tt-alert-error   { background: rgba(239,68,68,0.07);  border: 1px solid rgba(239,68,68,0.22);  color: #dc2626; }

/* â”€â”€ Blog Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    height: 100%; transition: var(--transition); box-shadow: var(--shadow);
    display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(201,161,74,0.25); }
.blog-thumb   { height: 200px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-thumb-1 { background: linear-gradient(135deg, #0c1c2e 0%, #243b55 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #17293f 0%, #1a3a5c 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #0d2035 0%, #243b55 100%); }
.blog-thumb i { font-size: 64px; color: rgba(201,161,74,0.20); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
.blog-body   { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta   { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; display: flex; gap: 14px; align-items: center; }
.blog-meta i { font-size: 11px; margin-right: 4px; }
.blog-body h5 { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.blog-body p  { font-size: 0.88rem; color: var(--text-body); line-height: 1.72; margin-bottom: 20px; flex: 1; }
.blog-link    { color: var(--gold); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-link:hover { gap: 12px; }

/* â”€â”€ CTA Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-cta-banner { background: var(--gold); padding: 72px 0; text-align: center; }
.tt-cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); font-weight: 800; margin-bottom: 16px; }
.tt-cta-banner p  { font-size: 1.05rem; color: rgba(12,28,46,0.72); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }

/* â”€â”€ Page Heroes (sub-pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
    background: var(--navy); min-height: 44vh;
    display: flex; align-items: center;
    padding: 110px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero-title    { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; line-height: 1.1; }
.page-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.8; }
.tt-breadcrumb   { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.50); margin-bottom: 20px; }
.tt-breadcrumb a { color: rgba(255,255,255,0.50); }
.tt-breadcrumb a:hover  { color: var(--gold); }
.tt-breadcrumb .sep     { color: var(--gold); }
.tt-breadcrumb .current { color: rgba(255,255,255,0.75); }

/* â”€â”€ About Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mission-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; height: 100%; transition: var(--transition); box-shadow: var(--shadow); }
.mission-card:hover { border-color: rgba(201,161,74,0.30); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mission-icon { width: 60px; height: 60px; border-radius: var(--radius-md); background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.mission-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; }
.mission-card p  { color: var(--text-body); line-height: 1.85; font-size: 0.96rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); display: flex; align-items: flex-start; gap: 16px; box-shadow: var(--shadow); }
.value-card:hover { border-color: rgba(201,161,74,0.25); transform: translateX(4px); }
.value-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--navy); color: var(--gold); }
.value-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.value-card p  { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin: 0; }
.tt-timeline { position: relative; padding: 12px 0; }
.tt-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold), var(--navy)); border-radius: 1px; }
.timeline-item { position: relative; padding-left: 68px; margin-bottom: 32px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: 16px; top: 3px; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 10px rgba(201,161,74,0.4); }
.timeline-year { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.timeline-content h5 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.timeline-content p  { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* â”€â”€ Services Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; margin-bottom: 28px; transition: var(--transition); box-shadow: var(--shadow); }
.service-detail-card:hover { border-color: rgba(201,161,74,0.25); box-shadow: var(--shadow-lg); }
.service-detail-card .corner-glow { position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; border-radius: 50%; pointer-events: none; }
.service-detail-icon { width: 68px; height: 68px; border-radius: var(--radius-md); background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 22px; }
.service-detail-card h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 14px; }
.service-detail-card > p { color: var(--text-body); font-size: 1rem; line-height: 1.85; margin-bottom: 24px; max-width: 640px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; }
.feature-list li { display: flex; align-items: center; gap: 10px; color: var(--text-body); font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--gold); font-size: 11px; }
.tech-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.tech-pill  { background: rgba(201,161,74,0.08); border: 1px solid rgba(201,161,74,0.20); color: var(--gold-dark); padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; transition: var(--transition); text-decoration: none; display: inline-block; }
.tech-pill:hover { background: rgba(201,161,74,0.15); color: var(--gold-dark); }
.tech-pill.purple { background: rgba(201,161,74,0.06); border-color: rgba(201,161,74,0.15); color: var(--gold-dark); }
.tech-pill.green  { background: rgba(5,150,105,0.06); border-color: rgba(5,150,105,0.15); color: #059669; }
.process-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; height: 100%; transition: var(--transition); box-shadow: var(--shadow); }
.process-card:hover { border-color: rgba(201,161,74,0.25); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-number { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--gold); margin: 0 auto 14px; }
.process-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-card p  { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* â”€â”€ Contact Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.contact-card .form-label-tt { font-size: 13px; font-weight: 600; color: var(--text-body); letter-spacing: 0.5px; text-transform: none; }
.contact-card .form-control-tt { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 12px 16px; color: var(--text-dark); font-size: 14.5px; }
.contact-card .form-control-tt:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,161,74,0.10); }
.contact-card .form-control-tt::placeholder { color: var(--text-muted); }
.contact-card textarea.form-control-tt { min-height: 150px; }
.contact-card select.form-control-tt { cursor: pointer; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239daab6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 44px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); margin-bottom: 14px; box-shadow: var(--shadow); }
.info-card:hover { border-color: rgba(201,161,74,0.30); transform: translateX(4px); }
.info-icon { width: 46px; height: 46px; min-width: 46px; border-radius: var(--radius-md); background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); }
.info-content h6 { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; }
.info-content p, .info-content a { font-size: 15px; color: var(--text-dark); font-weight: 500; margin: 0; }
.info-content a:hover { color: var(--gold); }
.form-label-tt .req { color: #db2777; margin-left: 2px; }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tt-footer { background: var(--navy); border-top: 3px solid var(--gold); }
.footer-top { padding: 80px 0 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--gold); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--navy); flex-shrink: 0; }
.footer-logo-text { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--gold); }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.78; margin-bottom: 26px; max-width: 270px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-heading { font-family: var(--font-head); font-size: 12px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a::before { content: '\203A';  color: var(--gold); font-size: 16px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 16px; line-height: 1.55; }
.footer-contact li i { color: var(--gold); margin-top: 2px; font-size: 13px; min-width: 14px; }
.footer-newsletter-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius) var(--radius) 0 0; padding: 12px 16px; color: var(--white); font-size: 14px; outline: none; display: block; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.30); }
.footer-newsletter-btn { width: 100%; background: var(--gold); border: none; border-radius: 0 0 var(--radius) var(--radius); padding: 11px; color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 13px; cursor: pointer; transition: var(--transition); }
.footer-newsletter-btn:hover { background: var(--gold-hover); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.footer-bottom p { color: rgba(255,255,255,0.40); font-size: 13px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.40); font-size: 13px; }
.footer-bottom a:hover { color: var(--gold); }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991.98px) {
    .tt-topbar { display: none; }
    .hero-slide { min-height: auto; padding: 100px 0 80px; }
    .hero-device { width: 320px; height: 320px; }
    .device-center { inset: 80px; }
    .floating-badge { display: none; }
    .service-detail-card { padding: 32px; }
    .contact-card { padding: 32px; }
    .contact-form-box { padding: 28px; }
    .check-list { grid-template-columns: 1fr; }
    .about-img-frame { height: 360px; }
    .about-float-stat { display: none; }
}
@media (max-width: 767.98px) {
    .tt-section    { padding: 72px 0; }
    .tt-section-sm { padding: 52px 0; }
    .hero-btns     { flex-direction: column; align-items: flex-start; }
    .hero-actions  { flex-direction: column; }
    .hero-stats    { gap: 28px; }
    .sec-title, .section-title { letter-spacing: 0; }
    .footer-top    { padding: 56px 0 36px; }
    .achievement-row { gap: 28px; }
    .stats-item + .stats-item::before { display: none; }
}
@media (max-width: 575.98px) {
    .hero-title { letter-spacing: -0.5px; }
    .contact-card { padding: 24px; }
    .contact-form-box { padding: 20px; }
    .btn-tt-primary, .btn-tt-outline { justify-content: center; }
}


