@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- Utility Classes for Migration --- */
.logo-img {
    height: 90px;
}

.elite-login-btn {
    padding: 10px 25px;
    font-size: 11px;
}

.hero-icon-box {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.header-action {
    flex-basis: 200px;
    text-align: right;
}

.separator-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.protection-badge {
    background: rgba(255, 204, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    font-size: 12px;
}

.asset-marquee-container {
    background: rgba(0, 0, 0, 0.3);
}

.asset-marquee-inner {
    animation: scrollMarquee 20s linear infinite;
}

.stats-section {
    padding: 100px 0 50px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--royal-gradient);
    margin: 0 auto;
}

.phase-number {
    font-family: inherit;
}

.client-headshot {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.like-badge {
    width: 30px;
    height: 30px;
    transform: translate(5px, 5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-decor {
    background: var(--royal-gradient);
    width: 100%;
    height: 380px;
    border-radius: 40px;
    transform: rotate(-3deg);
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.1;
}

.about-img {
    width: 100%;
    height: 400px;
    filter: hue-rotate(172deg);
    min-height: 250px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.newsletter-input {
    border-bottom-left-radius: 50px !important;
    border-top-left-radius: 50px !important;
}

.newsletter-btn {
    border-bottom-right-radius: 50px !important;
    border-top-right-radius: 50px !important;
    width: 60px;
}

:root {
    --bg-dark: #050508;
    --bg-card: rgba(15, 20, 30, 0.85);
    --primary-gold: #ffcc00;
    --primary-gold-glow: rgba(255, 204, 0, 0.3);
    --primary-indigo: #6366f1;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.25);
    --royal-gradient: linear-gradient(135deg, #ffcc00 0%, #b8860b 100%);
    --neon-glow: 0 0 20px rgba(255, 204, 0, 0.2);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

/* --- Immersive Background --- */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 10% 10%, rgba(220, 200, 119, 0.296) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(99, 101, 241, 0.217) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;

}

/* --- Ultra-Modern Header --- */
.main-header {
    background: transparent !important;
    position: fixed !important;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(5, 5, 8, 0.9) !important;
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navigation>li>a {
    color: var(--text-main) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 20px !important;
    transition: all 0.3s ease;
}

.navigation>li>a {
    color: var(--text-main) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 20px !important;
    transition: all 0.3s ease;
}

.navigation>li:hover>a,
.navigation>li.current>a {
    color: var(--primary-gold) !important;
    text-shadow: 0 0 10px var(--primary-gold-glow);
}

/* --- Hero Section Overhaul --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 30%, #ffcc00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 20px;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-3d-visual {
    position: relative;
    height: 500px;
    perspective: 2000px;
}

.floating-card {
    position: absolute;
    width: 300px;
    height: 400px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px;
    transform: rotateY(-20deg) rotateX(10deg);
    animation: floatCard 6s ease-in-out infinite alternate;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

@keyframes floatCard {
    0% {
        transform: rotateY(-20deg) rotateX(10deg) translateY(0);
    }

    100% {
        transform: rotateY(-15deg) rotateX(15deg) translateY(-30px);
    }
}

/* --- Premium Timeline Design --- */
.timeline-track {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 204, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.05);
}

.timeline-item {
    position: relative;
    width: 100%;
    min-height: 200px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--royal-gradient);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px var(--primary-gold-glow);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 30px var(--primary-gold);
}

.timeline-card {
    width: 45%;
    padding: 35px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
    text-align: left;
}

.timeline-phase {
    font-size: 80px;
    font-weight: 900;
    position: absolute;
    top: -20px;
    opacity: 0.05;
    color: white;
    pointer-events: none;
}

.timeline-item:nth-child(odd) .timeline-phase {
    right: 40px;
}

.timeline-item:nth-child(even) .timeline-phase {
    left: 40px;
}

@media (max-width: 991px) {
    .timeline-track::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding: 25px;
    }

    .timeline-phase {
        font-size: 50px;
        top: -10px;
    }

    .timeline-item:nth-child(odd) .timeline-phase {
        right: 20px;
        left: auto;
    }
}

/* --- Premium Buttons --- */
.royal-btn {
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: var(--royal-gradient);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.15);
}

.royal-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

.btn-secondary {
    background: var(--primary-indigo) !important;
    color: white !important;
}

.btn-secondary:hover {
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3) !important;
}

.btn-outline-gold {
    background: transparent !important;
    border: 1px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
}

.btn-outline-gold:hover {
    background: var(--primary-gold) !important;
    color: #000 !important;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    color: white !important;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
}

/* --- Glass Sections --- */
.modern-section {
    padding: 80px 0;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 30px;
    transition: all 0.5s ease;
    height: 100%;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 204, 0, 0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--royal-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    position: relative;
    z-index: 10;
}

.btn-gold {
    background: var(--royal-gradient) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 0 50px 50px 0 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-gold-glow);
}

.text-gold {
    color: var(--primary-gold);
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* --- Footer Overhaul --- */
.modern-footer {
    padding: 100px 0 0px;
    border-top: 1px solid var(--glass-border);
}

.footer-logo img {
    height: 90px;
    filter: drop-shadow(0 0 10px var(--primary-gold-glow));
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-5px) scale(1.1);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Mobile Navigation --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.mobile-nav-content {
    background: transparent;
    border: none;
    width: 90%;
    max-width: 400px;
    position: relative;
    padding: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-link {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
    display: block;
}

.mobile-link:hover {
    color: var(--primary-gold);
}

/* --- Hero Image Asset --- */
.hero-main-img-wrap {
    position: relative;
    top: 0;
    right: 0;
    width: 450px;
    min-width: 250px;
    margin: 0 auto;
    z-index: 1;
    animation: floatAsset 8s ease-in-out infinite alternate;
}

.hero-3d-asset {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.2));
}

@keyframes floatAsset {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-20px, -30px) rotate(5deg);
    }
}

@media (max-width: 991px) {
    .hero-main-img-wrap {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin: 50px auto 0;
        display: block !important;
    }

    .hero-heading {
        font-size: clamp(40px, 10vw, 60px);
    }
}