/* ============================================================
   TWINS AI TECHNOLOGY — ULTRA PREMIUM CSS
   Luxury Defense/Tech Aesthetic
   Color Palette: Deep Navy | Gold | White | Midnight Black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* ================= CSS VARIABLES ================= */
:root {
    --gold:        #C9A84C;
    --gold-light:  #E8CC80;
    --gold-dark:   #8B6914;
    --gold-glow:   rgba(201, 168, 76, 0.5);
    --navy:        #0A1628;
    --navy-mid:    #0F2040;
    --navy-deep:   #060E1A;
    --navy-light:  #162B4A;
    --white:       #F5F0E8;
    --white-dim:   #C8BFAF;
    --accent:      #1A3A6B;
    --glow-gold:   rgba(201,168,76,0.35);
    --glow-blue:   rgba(26,90,180,0.25);
}

/* ================= GLOBAL RESET ================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.4px;
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ================= NOISE TEXTURE OVERLAY ================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ================= CUSTOM CURSOR ================= */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.08s ease;
    box-shadow: 0 0 10px var(--gold), 0 0 30px var(--glow-gold);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.18s ease, opacity 0.3s ease;
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(201,168,76,0.15);
}

.cursor.grow {
    transform: scale(3);
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold);
}

.cursor-follower.grow {
    transform: scale(1.8);
    border-color: var(--gold-light);
    opacity: 0.8;
    box-shadow: 0 0 25px rgba(201,168,76,0.3);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-follower { display: none !important; }
    body { cursor: auto !important; }
    a, button { cursor: pointer !important; }
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }

p { color: var(--white-dim); }

/* ================= GOLD LINE ACCENT ================= */
.gold-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 16px auto;
}

/* ================= KEYFRAME ANIMATIONS ================= */

@keyframes shimmerGold {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 20px var(--glow-gold), 0 0 40px rgba(201,168,76,0.15); }
    50%       { box-shadow: 0 0 40px var(--glow-gold), 0 0 80px rgba(201,168,76,0.3); }
}

@keyframes scanLine {
    0%   { transform: translateY(-100%); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes borderRotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeUpLux {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

@keyframes pageFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201,168,76,0.3); }
    50%       { border-color: rgba(201,168,76,0.8); }
}

@keyframes logoFloat {
    0%, 100% { filter: drop-shadow(0 0 8px var(--glow-gold)); }
    50%       { filter: drop-shadow(0 0 22px rgba(201,168,76,0.7)); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px var(--glow-gold); }
    50%       { text-shadow: 0 0 40px rgba(201,168,76,0.8), 0 0 60px rgba(201,168,76,0.4); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-180deg) scale(0.5); }
    to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes ripple {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes typing {
    from { width: 0; }
    to   { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50%       { border-color: var(--gold); }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25%      { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
    50%      { transform: translateY(-15px) translateX(-10px); opacity: 0.5; }
    75%      { transform: translateY(-40px) translateX(20px); opacity: 0.7; }
}

@keyframes drawLine {
    from { width: 0; }
    to   { width: 60px; }
}

@keyframes magneticPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50%      { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroParallax {
    0%   { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1.1) translateY(-20px); }
}

@keyframes orbit {
    0%   { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes fadeOut {
    0%   { opacity: 1; }
    70%  { opacity: 1; }
    100% { opacity: 0; }
}

/* ================= SCAN LINE EFFECT ================= */
.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scanLine 8s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header.scrolled {
    background: rgba(6, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.6),
        0 1px 0 rgba(201, 168, 76, 0.15);
}

.nav-container {
    height: 80px;
    max-width: 1280px;
    margin: auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Force remove any white background from image */
    background: #0A1628 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    mix-blend-mode: normal;
    /* Invert brightness if logo is dark on dark */
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.3)) brightness(1.1);
    border-radius: 0;
    padding: 0;
    -webkit-mask-image: none;
    mask-image: none;
}

.logo img:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 0 14px rgba(201,168,76,0.6)) brightness(1.2);
}
/* Logo wrapper to remove any background/border */
.logo-img-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0A1628 !important; /* Navy background to match header */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    padding: 4px;
}


.logo-img-wrapper::before {
    content: "";
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.logo-img-wrapper:hover::before {
    opacity: 1;
}

/* ================= NAV MENU ================= */
.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    color: var(--white-dim);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201,168,76,0.3);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--gold);
}

/* ================= NAV DROPDOWN ================= */
.nav-dropdown {
    position: relative;
   
}

.nav-dropdown .nav-link {
    color: var(--white-dim);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 4px;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}


.nav-dropdown .nav-link:hover {
    color: var(--gold-light);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 14, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    border-radius: 4px;
    padding: 12px 0;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(201,168,76,0.1);
    z-index: 999999;
    pointer-events: auto;
    animation: fadeInScale 0.3s ease forwards;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--white-dim);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    border-left-color: var(--gold);
    padding-left: 28px;
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 99999;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid background pattern */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.35) saturate(0.7);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(6,14,26,0.5) 0%,
        rgba(6,14,26,0.2) 40%,
        rgba(6,14,26,0.8) 100%
    );
    z-index: 2;
}

/* Radial gold glow */
.hero-section .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
    z-index: 2;
    animation: glowPulse 5s ease-in-out infinite;
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particles span:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; animation-duration: 9s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { left: 35%; top: 30%; animation-delay: 2s; animation-duration: 8s; }
.hero-particles span:nth-child(4) { left: 50%; top: 70%; animation-delay: 0.5s; animation-duration: 10s; width: 2px; height: 2px; }
.hero-particles span:nth-child(5) { left: 65%; top: 25%; animation-delay: 3s; animation-duration: 7s; }
.hero-particles span:nth-child(6) { left: 75%; top: 55%; animation-delay: 1.5s; animation-duration: 9s; width: 3px; height: 3px; }
.hero-particles span:nth-child(7) { left: 85%; top: 40%; animation-delay: 2.5s; animation-duration: 8s; width: 2px; height: 2px; }
.hero-particles span:nth-child(8) { left: 45%; top: 15%; animation-delay: 4s; animation-duration: 11s; }
.hero-particles span:nth-child(9) { left: 15%; top: 80%; animation-delay: 3.5s; animation-duration: 8s; width: 3px; height: 3px; }
.hero-particles span:nth-child(10) { left: 90%; top: 75%; animation-delay: 5s; animation-duration: 9s; }

.hero-overlay-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    animation: fadeUpLux 1.2s ease forwards;
}

.hero-tag {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 5px;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
    animation: fadeUpLux 0.8s ease forwards, textGlow 4s ease-in-out infinite;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    line-height: 1.1;
    animation: fadeUpLux 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-overlay-content h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGold 4s linear infinite, textGlow 4s ease-in-out infinite;
}

.hero-overlay-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--white-dim);
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
    animation: fadeUpLux 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white-dim);
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(12px);
    padding: 10px 28px;
    border-radius: 2px;
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 36px;
    animation: fadeUpLux 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* ================= HERO BUTTONS ================= */
.hero-buttons,
.hero-btn-group,
.ai-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeUpLux 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    padding: 15px 38px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200%;
    color: var(--navy-deep);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: shimmerGold 4s linear infinite;
    border: none;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(201,168,76,0.45),
        0 5px 15px rgba(0,0,0,0.4);
    letter-spacing: 4px;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active { transform: translateY(-1px); }

.btn-outline,
.btn-secondary {
    position: relative;
    padding: 14px 36px;
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold-light);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    overflow: hidden;
}

.btn-outline::after,
.btn-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.07);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-outline:hover,
.btn-secondary:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(201,168,76,0.15);
    letter-spacing: 4px;
}

.btn-outline:hover::after,
.btn-secondary:hover::after { opacity: 1; }

/* ================= TRUST BAR ================= */
.trust-bar {
    text-align: center;
    padding: 14px;
    background: rgba(6, 14, 26, 0.95);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    animation: fadeUpLux 0.6s ease forwards;
}

/* ================= PAGE OVERLAY ================= */
.page-overlay-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: auto;
    padding: 120px 48px 80px;
}

/* ================= SECTION STYLES ================= */
section { margin-bottom: 0; }

.section-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 48px;
}

.home-section {
    padding: 120px 0;
    position: relative;
}

.home-dark-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy-deep), var(--navy));
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 14px;
    animation: fadeUpLux 0.8s ease forwards;
}

.section-title h2 span {
    color: var(--gold);
    animation: textGlow 4s ease-in-out infinite;
}

.section-title .underline {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 12px auto 0;
    display: block;
    animation: drawLine 1.5s ease forwards;
}

/* ================= SERVICES SECTION ================= */
.services-section {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: drawLine 2s ease forwards;
}

.services-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    letter-spacing: 3px;
    color: var(--white);
    text-align: center;
    margin-bottom: 70px;
    animation: textGlow 4s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    row-gap: 30px;
    align-items: stretch;
    margin-top: 60px;
    margin-bottom: 60px;
}

/* ================= SERVICE CARDS ================= */
.service-card {
    position: relative;
    background: linear-gradient(145deg, rgba(10,22,40,0.9), rgba(15,32,64,0.8));
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px;
    padding: 40px 32px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 260px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    will-change: transform;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.5),
        0 0 40px rgba(201,168,76,0.12);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: 2px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-dim);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================= SERVICE CTA ================= */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.service-cta::after {
    content: "\2192";
    transition: transform 0.3s ease;
}

.service-card:hover .service-cta {
    color: var(--gold-light);
    letter-spacing: 3px;
}

.service-card:hover .service-cta::after {
    transform: translateX(6px);
}

/* ================= PREMIUM SERVICE CARDS ================= */
.service-card-premium {
    background: linear-gradient(145deg, rgba(6,14,26,0.95), rgba(15,32,64,0.85));
    border-radius: 4px;
    padding: 50px 36px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
}

.service-card-premium::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-premium:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(201,168,76,0.5);
    box-shadow:
        0 40px 90px rgba(0,0,0,0.6),
        0 0 50px rgba(201,168,76,0.15);
}

.service-card-premium:hover::before { opacity: 1; }

.service-icon {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-icon img {
    width: 46px;
    height: 46px;
}

.service-card-premium h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 2px;
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-link {
    color: var(--gold-light);
    letter-spacing: 3px;
}

/* ================= SERVICES FINAL CTA ================= */
.services-final-cta {
    margin-top: 80px;
    padding: 70px 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(15,32,64,0.95));
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite;
}

.services-final-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-final-cta h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.services-final-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--white-dim);
}

/* ================= SERVICES PAGE ================= */
.services-page {
    padding: 160px 8% 120px;
    background: linear-gradient(180deg, var(--navy-deep), var(--navy));
    text-align: center;
}

.services-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    margin-bottom: 14px;
    letter-spacing: 3px;
    animation: textGlow 4s ease-in-out infinite;
}

.services-header p {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 80px;
    color: var(--white-dim);
}

/* ================= SERVICE DETAIL ================= */
.service-detail-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
    text-align: center;
}

.service-detail-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 48px;
}

.service-detail-hero {
    padding: 160px 20px 110px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(15,32,64,0.9), var(--navy-deep));
}

.service-detail-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.service-detail-hero p {
    font-size: 18px;
    max-width: 720px;
    margin: auto;
    color: var(--white-dim);
}

.service-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.service-subtitle {
    max-width: 700px;
    margin: auto;
    color: var(--white-dim);
}

.service-detail-desc {
    max-width: 800px;
    margin: 30px auto 70px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--white-dim);
}

.service-cta-box {
    margin-top: 80px;
    padding: 60px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(15,32,64,0.9));
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite;
}

.service-cta-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-cta-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.service-cta-box p {
    margin-bottom: 28px;
    color: var(--white-dim);
}

/* ================= FEATURES GRID ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.feature-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.feature-box {
    background: rgba(10,22,40,0.7);
    padding: 24px;
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,0.1);
    font-size: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.3);
}

/* ================= WHY SECTION ================= */
.about-why,
.service-why {
    padding: 110px 20px;
    background: linear-gradient(180deg, var(--navy-deep), var(--navy));
    text-align: center;
}

.about-why h2,
.service-why h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.why-grid {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.why-list {
    max-width: 700px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--white-dim);
}

.why-card {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    padding: 34px 26px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: left;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(201,168,76,0.05);
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.why-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.why-card p {
    color: var(--white-dim);
    font-size: 15px;
}

/* ================= CTA SECTIONS ================= */
.about-cta,
.home-cta,
.service-final-cta {
    text-align: center;
    padding: 110px 20px;
    background: radial-gradient(circle at center, rgba(15,32,64,0.9), var(--navy-deep));
    position: relative;
    overflow: hidden;
}

.about-cta::before,
.home-cta::before,
.service-final-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: drawLine 2s ease forwards;
}

.about-cta h2,
.home-cta h2,
.service-final-cta h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.about-cta p,
.home-cta p,
.service-final-cta p {
    font-size: 18px;
    margin-bottom: 36px;
    color: var(--white-dim);
}

.cta-btn,
.service-final-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200%;
    color: var(--navy-deep);
    border-radius: 2px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: shimmerGold 4s linear infinite;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover,
.service-final-cta .cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(201,168,76,0.4);
    letter-spacing: 4px;
}

/* ================= ABOUT PAGE ================= */
.about-hero {
    padding: 160px 20px 110px;
    background: radial-gradient(circle at top, rgba(15,32,64,0.9), var(--navy-deep));
    color: var(--white);
}

.about-container {
    max-width: 1100px;
    margin: auto;
}

.about-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    margin-bottom: 22px;
    letter-spacing: 3px;
}

.about-hero h1 span { color: var(--gold); }

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white-dim);
    max-width: 800px;
}

.about-stats {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.stats-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.stat-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 8px;
    animation: textGlow 4s ease-in-out infinite;
}

.stat-box p {
    color: var(--white-dim);
    font-size: 15px;
}

.about-vision {
    padding: 110px 20px;
    background: radial-gradient(circle at top, rgba(15,32,64,0.9), var(--navy-deep));
}

.about-vision h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 22px;
    letter-spacing: 3px;
    color: var(--white);
}

.about-vision p {
    max-width: 800px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--white-dim);
    margin-bottom: 18px;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--navy-deep);
    color: var(--white-dim);
    padding: 80px 8% 30px;
    border-top: 1px solid rgba(201,168,76,0.15);
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col a:hover::after { width: 100%; }

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(201,168,76,0.1);
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: rgba(200,191,175,0.5);
}

/* ================= CONTACT PAGE ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.contact-info p {
    margin-bottom: 14px;
    color: var(--white-dim);
    font-size: 15px;
    line-height: 1.7;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover { color: var(--gold-light); }

.contact-phone {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,0.15);
    background: rgba(10,22,40,0.7);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(200,191,175,0.4);
    letter-spacing: 0.5px;
}

.contact-form textarea { resize: none; }

.contact-form button {
    padding: 16px;
    border-radius: 2px;
    border: none;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200%;
    color: var(--navy-deep);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: shimmerGold 4s linear infinite;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

/* ================= METRICS SECTION ================= */
.metrics-section {
    padding: 100px 0;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.metric-box,
.metric-card {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    padding: 44px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.metric-box:hover,
.metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.metric-box h2,
.metric-box h3,
.metric-number {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 10px;
    animation: textGlow 4s ease-in-out infinite;
}

.metric-box p,
.metric-label {
    color: var(--white-dim);
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* ================= INDUSTRIES SECTION ================= */
.industries-section { padding: 120px 0; }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 70px;
}

.industry-card {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    padding: 40px 32px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.industry-card:hover::before { opacity: 1; }

.industry-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-dim);
}

.industry-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--gold);
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.industry-card:hover .learn-more { color: var(--gold-light); letter-spacing: 2.5px; }

.center-btn { margin-top: 60px; text-align: center; }

/* ================= CAREERS ================= */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.career-card {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 44px 32px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.career-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.career-card:hover::before { opacity: 1; }

.career-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.job-overview-card {
    background: rgba(10,22,40,0.7);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 44px;
    border-radius: 4px;
    margin-top: 24px;
    line-height: 1.9;
    font-size: 16px;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

/* ================= APPLY SECTION ================= */
.apply-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.apply-card {
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 56px;
    width: 100%;
    max-width: 540px;
    position: relative;
    overflow: hidden;
}

.apply-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.apply-card h1 {
    font-family: 'Cinzel', serif;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.apply-subtitle {
    text-align: center;
    color: var(--white-dim);
    margin-bottom: 36px;
}

.apply-form .form-group { margin-bottom: 20px; }

.apply-form label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.apply-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(6,14,26,0.8);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.apply-form input:focus { border-color: var(--gold); }
.apply-form input[type="file"] { background: rgba(6,14,26,0.8); }

/* ================= GLOW BUTTON ================= */
.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200%;
    color: var(--navy-deep);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    animation: shimmerGold 4s linear infinite;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(201,168,76,0.5), 0 0 60px rgba(201,168,76,0.25);
    letter-spacing: 4px;
}

.btn-glow:active { transform: translateY(-1px); }

/* Ripple effect for buttons */
.btn-glow::before,
.btn-primary::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn-glow:active::before,
.btn-primary:active::before {
    transform: scale(3);
    opacity: 1;
    transition: 0s;
}

/* ================= SUCCESS MESSAGES ================= */
.success-msg {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 14px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 18px;
    color: var(--gold);
}

.success-popup {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #86efac;
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 18px;
    animation: fadeOut 4s forwards;
}

/* ================= DETAIL HERO ================= */
.detail-hero {
    padding-top: 160px;
    padding-bottom: 90px;
    background: radial-gradient(circle at top, rgba(15,32,64,0.9), var(--navy-deep));
    text-align: center;
}

.detail-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 48px;
}

.detail-title {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.detail-subtitle {
    font-size: 18px;
    color: var(--white-dim);
    max-width: 700px;
    margin: auto;
}

.detail-content {
    padding: 80px 0 100px;
    background: var(--navy-deep);
}

.detail-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.detail-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--white-dim);
}

/* ================= SERVICE HERO ================= */
.service-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, rgba(15,32,64,0.9), var(--navy-deep));
}

.service-hero-inner {
    max-width: 900px;
    padding: 0 20px;
}

.service-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.service-hero p {
    font-size: 18px;
    color: var(--white-dim);
}

/* ================= AGENT DETAIL ================= */
.agent-detail-hero {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 70px;
}

.agent-icon-large {
    font-size: 68px;
    margin-bottom: 12px;
}

.agent-detail-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.agent-subtitle {
    font-size: 18px;
    color: var(--white-dim);
}

.agent-description,
.agent-features,
.agent-usecases {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.agent-description h2,
.agent-features h2,
.agent-usecases h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 22px;
    color: var(--gold);
    letter-spacing: 2px;
}

.agent-usecases ul { list-style: none; padding: 0; }

.agent-usecases li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--white-dim);
    border-bottom: 1px solid rgba(201,168,76,0.07);
    transition: all 0.3s ease;
}

.agent-usecases li:hover {
    padding-left: 10px;
    color: var(--white);
}

/* ================= LOGO SLIDER ================= */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

.logo-item { flex: 0 0 auto; }

.logo-item img {
    height: 70px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: all 0.4s ease;
}

.logo-item img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ================= CLIENT TRUST ================= */
.client-trust-section,
.trust-section {
    padding: 90px 0;
    background: var(--navy);
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.trust-title {
    color: var(--white);
    margin-bottom: 50px;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    letter-spacing: 3px;
    opacity: 0.7;
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.client-logo img {
    max-height: 60px;
    filter: grayscale(100%) brightness(2);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.client-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.07);
}

/* ================= INDUSTRY INTRO ================= */
.industry-intro,
.company-intro,
.case-intro {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.industry-image,
.case-intro-img {
    flex: 1;
    min-width: 300px;
}

.industry-image img,
.case-intro-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    border: 1px solid rgba(201,168,76,0.1);
    transition: all 0.5s ease;
}

.industry-image img:hover,
.case-intro-img img:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}

.company-intro img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,0.1);
}

.industry-content,
.case-intro-content {
    flex: 1;
    min-width: 300px;
}

.industry-content h2,
.case-intro-content h2,
.company-intro h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.industry-content p,
.case-intro-content p,
.company-intro p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: var(--white-dim);
}

/* ================= IMPACT GRID ================= */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
}

/* ================= CONTACT SUCCESS ================= */
.contact-success-section {
    padding: 140px 20px;
    background: radial-gradient(circle at center, rgba(15,32,64,0.9), var(--navy-deep));
    color: var(--white);
    text-align: center;
}

.check-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--navy-deep);
    flex-shrink: 0;
    margin: auto auto 20px;
    animation: rotateIn 0.8s ease forwards, pulseGold 3s ease-in-out infinite;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 22px;
    justify-content: center;
}

.success-title {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 3px;
    animation: textGlow 4s ease-in-out infinite;
}

.success-text {
    font-size: 18px;
    margin-bottom: 44px;
    color: var(--white-dim);
}

.success-buttons a { margin: 10px; }

/* ================= BLOG GRID ================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.blog-card {
    background: linear-gradient(145deg, rgba(6,14,26,0.95), rgba(15,32,64,0.85));
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.7);
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image img {
    filter: brightness(1) saturate(1);
    transform: scale(1.05);
}

.blog-content { padding: 30px; }

.blog-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.blog-title {
    margin: 14px 0;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 1.5px;
}

.blog-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover { color: var(--gold); }

.blog-description {
    font-size: 14px;
    color: var(--white-dim);
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-read {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read:hover { color: var(--gold-light); letter-spacing: 3px; }

/* ================= WHATSAPP & CHATBOT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

#chatbot-icon {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy-deep);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: pulseGold 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

#chatbot-icon:hover { transform: scale(1.1); }

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    color: var(--gold);
    font-size: 26px;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--gold));
}

/* ================= MOBILE PANEL ================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    background: rgba(6,14,26,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transform: translateY(-100%);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 9999;
    padding: 20px 0;
}

.mobile-panel.active { transform: translateY(0); }

.mobile-item {
    padding: 20px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 28px;
    width: calc(100% - 56px);
    height: 1px;
    background: rgba(201,168,76,0.15);
}

.mobile-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-item a:hover { color: var(--gold); }

.mobile-submenu {
    display: none;
    padding: 10px 0 10px 28px;
    background: rgba(0,0,0,0.3);
}

.mobile-submenu a {
    display: block;
    padding: 10px 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-submenu a:hover { color: var(--gold); }

.mobile-panel a.active-mobile { color: var(--gold) !important; }

/* ================= FADE ANIMATIONS ================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.page-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: pageFade 1s ease forwards;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ================= ICON CIRCLE ================= */
.icon-circle {
    font-size: 38px;
    margin-bottom: 20px;
}

/* ================= SERVICE FEATURES ================= */
.service-features {
    padding: 110px 20px;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.service-features h2 {
    font-family: 'Cinzel', serif;
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.service-features ul { list-style: none; padding: 0; }

.service-features li {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--white-dim);
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.service-features li:hover {
    padding-left: 24px;
    color: var(--white);
}

.service-features li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ================= SERVICE OVERVIEW ================= */
.service-overview { padding: 90px 20px; }

.service-description {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: var(--white-dim);
}

/* ================= SERVICE CONTACT CTA ================= */
.service-contact-cta {
    text-align: center;
    padding: 70px 44px;
    background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(15,32,64,0.9));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite;
}

.service-contact-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* ================= CASE IMAGE ================= */
.case-image img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid rgba(201,168,76,0.1);
}

/* ================= CLOSE BTN ================= */
.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* ================= SCROLL PROGRESS BAR ================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--gold);
}

/* ================= MAGNETIC BUTTON EFFECT ================= */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ================= PARALLAX LAYERS ================= */
.parallax-layer {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* ================= GLITCH TEXT EFFECT ================= */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-text:hover::before {
    animation: glitch-1 0.3s linear infinite;
    color: var(--gold);
    opacity: 0.8;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text:hover::after {
    animation: glitch-2 0.3s linear infinite;
    color: var(--accent);
    opacity: 0.8;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
}

/* ================= GLOWING BORDER CARDS ================= */
.glow-card {
    position: relative;
    overflow: hidden;
}

.glow-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

.glow-card:hover::before {
    opacity: 0.5;
    animation: borderRotate 3s linear infinite;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }

    .nav-container {
        height: 75px;
        padding: 0 24px;
    }

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

    .section-container,
    .detail-container { padding: 0 24px; }

    .cursor, .cursor-follower { display: none !important; }
    body { cursor: auto !important; }
    a, button { cursor: pointer !important; }
}

@media (max-width: 768px) {

    h1 { font-size: 30px; }
    h2 { font-size: 26px; }

    .logo img { height: 55px; }

    .logo span {
        font-size: 15px;
        white-space: nowrap;
    }

    .nav-menu { display: none; }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title { font-size: 34px; }

    .hero-overlay-content { padding: 0 24px; }

    .hero-section { padding: 140px 0 80px; }

    .home-section,
    .home-dark-section,
    .services-section { padding: 80px 0; }

    .service-card,
    .service-card-premium,
    .industry-card,
    .career-card { padding: 28px 22px; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid > div:first-child { order: 2; }
    .contact-grid > div:last-child  { order: 1; }

    .metrics-grid  { grid-template-columns: 1fr; }
    .careers-grid  { grid-template-columns: 1fr; }
    .impact-grid   { grid-template-columns: 1fr; gap: 24px; }

    .btn-primary,
    .btn-secondary,
    .btn-glow {
        width: 100%;
        max-width: 300px;
    }

    .hero-btn-group,
    .ai-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-btn-group a,
    .ai-buttons a {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid { gap: 30px; }

    .detail-title {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .detail-subtitle {
        font-size: 15px;
        padding: 0 12px;
    }

    .detail-hero {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .industry-intro,
    .company-intro,
    .case-intro {
        flex-direction: column;
        gap: 32px;
    }

    .service-cta-box { padding: 36px 24px; }
    .apply-card { padding: 36px 24px; }

    .home-cta .btn-outline {
        width: auto !important;
        max-width: 90%;
        padding: 14px 22px;
        line-height: 1.4;
    }

    .detail-container { padding: 60px 20px; }

    .cursor, .cursor-follower { display: none !important; }
    body { cursor: auto !important; }
    a, button { cursor: pointer !important; }
}

@media (max-height: 700px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 120px;
    }
}

/* ================= UTILITY ================= */
img, video { max-width: 100%; height: auto; }

a, button { cursor: none; }

@media (hover: none) and (pointer: coarse) {
    a, button { cursor: pointer !important; }
}

.arrow { transition: transform 0.3s ease; }
