/* ==========================================
   GOLDPE REDESIGN — PREMIUM DARK GOLD THEME
   ========================================== */

/* ---- Google Fonts (Outfit) loaded in HTML ---- */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Core Colors */
    --clr-bg: #080b12;
    --clr-bg-2: #0d1220;
    --clr-bg-3: #111827;
    --clr-surface: rgba(255, 255, 255, 0.03);
    --clr-surface-2: rgba(255, 255, 255, 0.06);
    --clr-border: rgba(255, 255, 255, 0.07);
    --clr-border-2: rgba(255, 255, 255, 0.12);

    /* Gold Palette */
    --gold: #f5b014;
    --gold-light: #fcd34d;
    --gold-dark: #d97706;
    --gold-glow: rgba(245, 176, 20, 0.25);
    --gold-glow-soft: rgba(245, 176, 20, 0.12);

    /* Text */
    --txt-primary: #f1f5f9;
    --txt-secondary: #94a3b8;
    --txt-muted: #4b5563;
    --txt-dark: #0f172a;

    /* Accents */
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px var(--gold-glow);
    --shadow-gold-sm: 0 0 15px rgba(245, 176, 20, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background: var(--clr-bg);
    color: var(--txt-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

input {
    font-family: inherit;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    box-shadow: 0 0 10px var(--gold);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(245, 176, 20, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

.cursor-ring.hovered {
    width: 56px;
    height: 56px;
    background: rgba(245, 176, 20, 0.08);
    border-color: var(--gold);
}

@media (max-width:768px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    inset: 0;
    background: #080b12;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* --- Floating Particles --- */
.pl-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pl-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 176, 20, 0.7), transparent);
    animation: pl-float-up linear infinite;
    opacity: 0;
}

.pl-particles span:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.pl-particles span:nth-child(2) {
    width: 4px;
    height: 4px;
    left: 25%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.pl-particles span:nth-child(3) {
    width: 8px;
    height: 8px;
    left: 40%;
    animation-duration: 6s;
    animation-delay: 2s;
}

.pl-particles span:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 55%;
    animation-duration: 10s;
    animation-delay: 0.5s;
}

.pl-particles span:nth-child(5) {
    width: 5px;
    height: 5px;
    left: 70%;
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.pl-particles span:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 80%;
    animation-duration: 7s;
    animation-delay: 3s;
}

.pl-particles span:nth-child(7) {
    width: 4px;
    height: 4px;
    left: 15%;
    animation-duration: 11s;
    animation-delay: 2.5s;
}

.pl-particles span:nth-child(8) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-duration: 9s;
    animation-delay: 4s;
}

.pl-particles span:nth-child(9) {
    width: 3px;
    height: 3px;
    left: 90%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.pl-particles span:nth-child(10) {
    width: 5px;
    height: 5px;
    left: 35%;
    animation-duration: 8s;
    animation-delay: 3.5s;
}

@keyframes pl-float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-20vh) scale(1.2);
        opacity: 0;
    }
}

/* --- Main Content Layout --- */
.pl-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
}

/* --- Top Welcome Text --- */
.pl-top-text {
    animation: pl-fade-up 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.pl-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 176, 20, 0.7);
    margin-bottom: 0.5rem;
}

.pl-brand {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #f1f5f9;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #fff 0%, #f5b014 50%, #fcd34d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pl-shimmer 3s linear infinite;
    background-size: 200% auto;
}

.pl-brand span {
    background: linear-gradient(135deg, #f5b014, #fcd34d, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pl-shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.pl-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
    font-weight: 500;
}

/* --- Video Wrap with Spinning Rings --- */
.pl-video-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pl-fade-up 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.pl-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.pl-ring-1 {
    background: conic-gradient(from 0deg, #f5b014 0%, transparent 40%, #f5b014 70%, transparent 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: pl-spin 3s linear infinite;
    inset: -12px;
}

.pl-ring-2 {
    background: conic-gradient(from 180deg, rgba(245, 176, 20, 0.4) 0%, transparent 35%, rgba(245, 176, 20, 0.4) 65%, transparent 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: pl-spin 5s linear infinite reverse;
    inset: -24px;
}

@keyframes pl-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.preloader-video {
    width: 230px;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(245, 176, 20, 0.25), 0 0 60px rgba(245, 176, 20, 0.1);
}

/* --- Bottom Greeting Text --- */
.pl-bottom-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: pl-fade-up 0.8s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

/* Divider */
.pl-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 0.3rem;
}

.pl-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 176, 20, 0.5), transparent);
}

.pl-divider i {
    color: #f5b014;
    font-size: 0.75rem;
    animation: pl-pulse 2s ease-in-out infinite;
}

@keyframes pl-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.pl-greeting {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.02em;
}

.pl-greeting span {
    background: linear-gradient(135deg, #f5b014, #fcd34d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pl-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.5);
    font-weight: 500;
}

/* --- Progress Bar --- */
.pl-progress-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 0.5rem;
    animation: pl-fade-up 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

.pl-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d97706, #f5b014, #fcd34d);
    border-radius: 99px;
    animation: pl-load 5.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes pl-load {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    90% {
        width: 92%;
    }

    100% {
        width: 100%;
    }
}

/* --- Shared Fade-Up Keyframe --- */
@keyframes pl-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 11, 18, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled::before {
    background: rgba(8, 11, 18, 0.9);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom-color: var(--clr-border);
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--txt-primary);
    letter-spacing: -0.02em;
}

.logo-gem {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    box-shadow: var(--shadow-gold-sm);
    animation: float 3s ease-in-out infinite;
}

.logo-pe {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--txt-secondary);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--txt-primary);
    background: var(--clr-surface-2);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000 !important;
    font-weight: 700;
    margin-left: 0.5rem;
    padding: 0.6rem 1.6rem;
    box-shadow: var(--shadow-gold-sm);
}

.nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-link.nav-cta-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border-2);
    color: var(--txt-primary) !important;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 0.6rem 1.4rem;
}

.nav-link.nav-cta-ghost:hover {
    background: var(--clr-surface-2);
    border-color: var(--gold);
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--txt-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--clr-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 176, 20, 0.2) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    bottom: 100px;
    left: -80px;
    animation-delay: -3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-pan 30s linear infinite;
}

@keyframes grid-pan {
    from {
        background-position: 0 0
    }

    to {
        background-position: 60px 60px
    }
}

#particleCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-slider {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-top: 90px;
}

.hero-slide {
    display: none;
    animation: slide-fade-in 0.7s ease;
}

.hero-slide.active {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 90px);
}

@keyframes slide-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(245, 176, 20, 0.1);
    border: 1px solid rgba(245, 176, 20, 0.25);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 176, 20, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 176, 20, 0);
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--txt-primary);
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--txt-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(245, 176, 20, 0.3);
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-gold:hover::after {
    transform: translateX(100%);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(245, 176, 20, 0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    background: var(--clr-surface-2);
    color: var(--txt-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-border-2);
    transition: var(--transition);
    cursor: pointer;
}

.btn-ghost:hover {
    background: var(--clr-border);
    transform: translateY(-2px);
    border-color: rgba(245, 176, 20, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.hero-stat {}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-num span {
    font-size: 1rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--txt-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Machine Photo (AI-generated images) */
.hero-machine-photo-wrap {
    position: relative;
    width: 420px;
    max-width: 100%;
    border-radius: var(--radius-xl);
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-machine-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(245, 176, 20, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: orb-float 5s ease-in-out infinite;
    pointer-events: none;
}

.hero-machine-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border-2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(245, 176, 20, 0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: float 4s ease-in-out infinite;
}

.hero-machine-photo-wrap:hover .hero-machine-photo {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(245, 176, 20, 0.2);
}

.hero-machine-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 176, 20, 0.3);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.machine-card {
    position: relative;
    width: 340px;
    height: 340px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
}

.machine-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold) 0%, transparent 30%, var(--gold-dark) 70%, transparent 100%);
    animation: spin-slow 4s linear infinite;
    z-index: -1;
    filter: blur(3px);
    opacity: 0.7;
}

.glow-blue {
    background: conic-gradient(from 0deg, #3b82f6 0%, transparent 30%, #1d4ed8 70%, transparent 100%);
}

.glow-green {
    background: conic-gradient(from 0deg, #10b981 0%, transparent 30%, #059669 70%, transparent 100%);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.machine-icon-wrap {
    position: relative;
}

.machine-robot {
    font-size: 4rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px var(--gold-glow));
    animation: float 3s ease-in-out infinite;
}

.machine-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(245, 176, 20, 0.3);
    animation: ring-expand 3s ease-in-out infinite;
}

.ring-1 {
    width: 90px;
    height: 90px;
    animation-delay: 0s;
}

.ring-2 {
    width: 130px;
    height: 130px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 170px;
    height: 170px;
    animation-delay: 1s;
}

@keyframes ring-expand {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.machine-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.machine-tag {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(245, 176, 20, 0.12);
    border: 1px solid rgba(245, 176, 20, 0.25);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
}

.machine-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--txt-secondary);
}

.dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7
    }
}

/* Slider controls */
.slider-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold-glow-soft);
    border-color: var(--gold);
    color: var(--gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border-2);
    transition: var(--transition);
    cursor: pointer;
}

.slide-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ==================== PROMO STRIP ==================== */
.promo-strip {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    background-size: 200% 100%;
    animation: promo-shimmer 3s linear infinite;
    padding: 1.2rem 4rem;
    position: relative;
    z-index: 10;
}

@keyframes promo-shimmer {
    from {
        background-position: 0% 50%
    }

    to {
        background-position: 200% 50%
    }
}

.promo-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    flex-wrap: wrap;
}

.promo-btn {
    padding: 6px 22px;
    border-radius: var(--radius-full);
    background: #000;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.promo-btn:hover {
    transform: scale(1.05);
}

/* ==================== LAYOUT HELPERS ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.section-dark {
    background: var(--clr-bg-2);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--txt-primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--txt-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(245, 176, 20, 0.08);
    border: 1px solid rgba(245, 176, 20, 0.2);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-grid.reverse-mobile {}

.section-text {}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--txt-primary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.body-text {
    color: var(--txt-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

/* ==================== CHALLENGES ==================== */
.challenges-visual-wrap {
    display: flex;
    justify-content: center;
}

.challenges-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 380px;
}

.ch-icon-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--txt-secondary);
    transition: var(--transition);
}

.ch-icon-card i {
    font-size: 1.5rem;
    color: var(--txt-muted);
}

.ch-icon-card.accent {
    border-color: rgba(245, 176, 20, 0.2);
    background: rgba(245, 176, 20, 0.05);
}

.ch-icon-card.accent i {
    color: var(--gold);
}

.ch-icon-card:hover {
    border-color: rgba(245, 176, 20, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-sm);
}

.challenges-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.challenge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.challenge-row:hover {
    border-color: rgba(245, 176, 20, 0.2);
    background: rgba(245, 176, 20, 0.04);
}

.ch-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.7;
    min-width: 30px;
}

.challenge-row p {
    color: var(--txt-secondary);
    font-size: 0.92rem;
}

/* ==================== STORY / ABOUT ==================== */
.story-visual-wrap {
    position: relative;
}

.story-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    aspect-ratio: 4/3;
    position: relative;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--txt-muted);
    font-size: 0.9rem;
    height: 100%;
    background: var(--clr-surface-2);
}

.story-fallback i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

/* Why GoldPE — two-column layout */
.why-goldpe-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.why-goldpe-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-goldpe-content p {
    color: var(--txt-secondary);
    line-height: 1.8;
    font-size: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(245, 176, 20, 0.2);
    transition: border-color 0.3s;
}

.why-goldpe-content p:hover {
    border-left-color: var(--gold);
    color: var(--txt-primary);
}

/* Launch image */
.why-goldpe-image {
    position: relative;
}

.launch-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    background: var(--clr-surface);
}

.launch-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.launch-img-wrap:hover .launch-img {
    transform: scale(1.02);
}

.launch-img-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: var(--txt-muted);
    font-size: 0.9rem;
    text-align: center;
    min-height: 280px;
}

.launch-img-fallback i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

.launch-img-fallback code {
    background: rgba(245, 176, 20, 0.08);
    border: 1px solid rgba(245, 176, 20, 0.2);
    padding: 3px 10px;
    border-radius: 6px;
    color: var(--gold);
    font-size: 0.85rem;
}

.launch-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(to top, rgba(8, 11, 18, 0.95), transparent);
    color: var(--txt-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.launch-img-caption i {
    color: var(--gold);
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .why-goldpe-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.group-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 5rem;
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/6;
    background: var(--clr-surface);
}

.group-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(8, 11, 18, 0.9), transparent);
    color: var(--txt-secondary);
    font-size: 0.9rem;
}

.group-image-wrap.img-error .group-img-overlay {
    display: none;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.vm-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.vm-card:hover {
    border-color: rgba(245, 176, 20, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-sm);
}

.vm-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(245, 176, 20, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 176, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--txt-primary);
}

.vm-card p {
    color: var(--txt-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vm-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}

/* ==================== PARTNERS ==================== */
.partners-section {
    padding: 3.5rem 0;
    background: var(--clr-bg-3);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.partners-header span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.partners-header span::before,
.partners-header span::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
    border-radius: 2px;
}

.partners-header span::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

.partners-track-wrap {
    overflow: hidden;
    position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 1;
}

.partners-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--clr-bg-3), transparent);
}

.partners-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--clr-bg-3), transparent);
}

.partners-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 18s linear infinite;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-33.33%)
    }
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.partner-pill:hover {
    box-shadow: 0 6px 24px rgba(245, 176, 20, 0.25);
    transform: translateY(-2px);
    border-color: rgba(245, 176, 20, 0.4);
}

/* ==================== PRODUCTS / MODELS ==================== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.model-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay);
}

.model-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 176, 20, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 176, 20, 0.25);
    box-shadow: var(--shadow-gold-sm);
}

.model-card:hover::after {
    opacity: 1;
}

.model-card.featured {
    border-color: rgba(245, 176, 20, 0.3);
    background: linear-gradient(180deg, rgba(245, 176, 20, 0.05) 0%, var(--clr-surface) 100%);
}

.model-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    color: var(--txt-muted);
    margin-bottom: 1.5rem;
}

.gold-badge {
    background: rgba(245, 176, 20, 0.1);
    border-color: rgba(245, 176, 20, 0.3);
    color: var(--gold);
}

.model-visual {
    margin-bottom: 1.5rem;
}

.model-ring-wrap {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 176, 20, 0.2);
    animation: spin-slow 10s linear infinite;
}

.model-img {
    width: 210px;
    height: 210px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    filter: drop-shadow(0 6px 16px rgba(245, 176, 20, 0.2));
}

.model-card:hover .model-img {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(245, 176, 20, 0.3));
}

.model-fallback {
    display: none;
    font-size: 2.5rem;
    color: var(--txt-muted);
    position: relative;
    z-index: 1;
}

.model-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--txt-primary);
    margin-bottom: 0.6rem;
}

.model-info p {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.model-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.model-link:hover {
    gap: 10px;
}

/* ==================== FEATURES BENTO ==================== */
.features-section {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(135deg, #0a0617 0%, #0b1020 50%, #070d1a 100%);
}

.features-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.features-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 176, 20, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.white-heading {
    color: var(--txt-primary) !important;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.5rem;
}

.feature-tile {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, rgba(10, 15, 30, 0.4) 50%, rgba(10, 15, 30, 0) 100%);
    z-index: 1;
}

.feature-tile-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.feature-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.6s ease;
    transform: scale(1.05);
}

.feature-tile-content {
    position: relative;
    z-index: 2;
}

.feature-tile:hover {
    border-color: rgba(245, 176, 20, 0.4);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 176, 20, 0.1);
}

.feature-tile:hover .feature-tile-media img {
    opacity: 0.8;
    transform: scale(1.1);
}

.feature-tile.large {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: center;
}

.feature-tile.wide {
    grid-column: span 2;
}

.feature-tile-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 176, 20, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-tile h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-tile.large h3 {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-tile p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.feature-tile.large p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== AWARDS ==================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.award-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    aspect-ratio: 3/4;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 8px;
}

.award-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 176, 20, 0.3);
    box-shadow: var(--shadow-gold-sm);
}

.award-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--txt-muted);
    font-size: 0.85rem;
    position: absolute;
}

.award-fallback i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.award-card.img-error .award-fallback {
    display: flex;
}

/* ==================== TEAM ==================== */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.team-card {
    width: 200px;
    text-align: center;
    transition: var(--transition-bounce);
    animation-delay: var(--delay);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-photo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 2px solid var(--clr-border);
    position: relative;
    background: var(--clr-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-card:hover .team-photo-wrap {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow-soft);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f8f0;
}

.team-avatar {
    display: none;
    font-size: 2.5rem;
    color: var(--txt-muted);
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.8rem;
    color: var(--txt-secondary);
    line-height: 1.4;
    display: block;
}

/* CEO Section */
.ceo-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-dark), var(--gold));
}

.ceo-photo-wrap {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(245, 176, 20, 0.3);
    background: var(--clr-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f8f0;
}

.ceo-avatar {
    display: none;
    font-size: 3rem;
    color: var(--txt-muted);
    position: absolute;
}

.ceo-content-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.ceo-content-col p {
    color: var(--txt-secondary);
    margin-bottom: 1rem;
}

.ceo-content-col blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--txt-secondary);
}

.ceo-stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.ceo-stat-box {
    text-align: center;
}

.ceo-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.ceo-stat-label {
    font-size: 0.8rem;
    color: var(--txt-muted);
}

/* ==================== CAREER ==================== */
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.career-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    animation-delay: var(--delay);
}

.career-card:hover {
    border-color: rgba(245, 176, 20, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold-sm);
}

.career-icon-wrap {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(245, 176, 20, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 176, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.career-content {}

.career-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 0.5rem;
}

.career-content p {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.career-tags span {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--txt-muted);
}

.career-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition);
}

.career-apply:hover {
    gap: 10px;
}

/* ==================== CLIENTS ==================== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.client-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
}

.client-card:hover {
    border-color: rgba(245, 176, 20, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-sm);
}

/* Client logos */
.client-logo-img {
    max-height: 120px;
    max-width: 220px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(0.3) brightness(1.2);
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

.client-card:hover .client-logo-img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.05);
}

.client-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--txt-secondary);
    text-align: center;
    transition: var(--transition);
}

.client-card:hover .client-name {
    color: var(--gold);
}

/* Partner pill images */
.partner-pill img {
    height: 38px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* ==================== MEDIA GALLERY ==================== */
.gallery-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.gallery-btn:hover {
    background: rgba(245, 176, 20, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: calc(33.333% - 0.667rem);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    position: relative;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #0d1220;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(8, 11, 18, 0.95), transparent);
}

.gallery-caption h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 2px;
}

.gallery-caption p {
    font-size: 0.8rem;
    color: var(--txt-secondary);
}

.gallery-item.img-error {
    background: var(--clr-surface-2);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== FAQ ==================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(245, 176, 20, 0.2);
}

.faq-item.open {
    border-color: rgba(245, 176, 20, 0.3);
    background: rgba(245, 176, 20, 0.025);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--txt-primary);
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}

.faq-trigger i {
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.faq-item.open .faq-trigger i {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body {
    max-height: 300px;
}

.faq-body p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--txt-secondary);
    line-height: 1.7;
}

/* ==================== INCUBATED ==================== */
.incubated-section {
    padding: 4rem 0;
    background: var(--clr-bg-3);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.incubated-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.incubated-text span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.incubated-text span::before,
.incubated-text span::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
    border-radius: 2px;
}

.incubated-text span::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

.incubated-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0.5rem;
}

.incubated-logo {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 160px;
}

.incubated-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.incubated-logo img {
    height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.incubated-fallback {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--txt-secondary);
}

.make-india-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(245, 176, 20, 0.08);
    border: 1px solid rgba(245, 176, 20, 0.2);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
}

.footer-top {
    background: var(--clr-bg-2);
    border-top: 1px solid var(--clr-border);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(245, 176, 20, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--txt-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--gold);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;    /* Center everything horizontally */
    text-align: center;     /* Center the paragraph text */
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--txt-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-secondary);
    font-size: 1.15rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(245, 176, 20, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--txt-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--txt-muted);
    transition: var(--transition);
}

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

.footer-links a:hover i {
    color: var(--gold);
    transform: translateX(2px);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.fc-group strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 4px;
}

.fc-group a {
    display: block;
    font-size: 0.85rem;
    color: var(--txt-secondary);
    transition: var(--transition);
    line-height: 1.8;
}

.fc-group a:hover {
    color: var(--gold);
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fa-group strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 4px;
}

.fa-group p {
    font-size: 0.82rem;
    color: var(--txt-secondary);
    line-height: 1.65;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.25rem 0;
    border-top: 1px solid var(--clr-border);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.footer-bottom-inner p {
    font-size: 0.85rem;
    color: var(--txt-muted);
    font-weight: 500;
}

/* Footer brand logo (Combined Make In India + Patented) */
.footer-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    width: 100%;
}

.make-in-india-logo-link {
    display: flex;
    align-items: center;
}

.combined-footer-logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-legal {
    font-size: 0.78rem !important;
    color: var(--txt-muted) !important;
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-fab {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
}

.whatsapp-fab:hover {
    transform: scale(1.15);
}

.chatbot-fab {
    position: fixed;
    bottom: 9rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(245, 176, 20, 0.4);
    transition: var(--transition-bounce);
}

.chatbot-fab:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-gold);
}

.download-fab {
    position: fixed;
    bottom: 12.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border-2);
    color: var(--txt-secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.download-fab:hover {
    transform: scale(1.15);
    border-color: var(--gold);
    color: var(--gold);
}

.chatbot-fab-tooltip,
.wa-tooltip {
    position: absolute;
    right: 64px;
    background: #111;
    color: var(--txt-primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: var(--transition);
}

.whatsapp-fab:hover .wa-tooltip,
.chatbot-fab:hover .chatbot-fab-tooltip,
.download-fab:hover .chatbot-fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Chatbot Modal */
.chatbot-modal {
    position: fixed;
    bottom: 9rem;
    right: 1.5rem;
    width: 360px;
    max-height: 520px;
    background: #0f1420;
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    z-index: 950;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    animation: modal-in 0.3s ease;
}

.chatbot-modal.visible {
    display: flex;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.chatbot-head {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-head-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    position: relative;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid #0f1420;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.chatbot-head-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--txt-primary);
    margin-bottom: 1px;
}

.chatbot-head-info span {
    font-size: 0.75rem;
    color: var(--txt-muted);
}

.chatbot-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--clr-surface-2);
    color: var(--txt-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.chatbot-close:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.chatbot-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent;
}

.chat-msg {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.chat-msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(245, 176, 20, 0.1);
    border: 1px solid rgba(245, 176, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.75rem;
}

.chat-msg.user .chat-msg-avatar {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.chat-msg-body {
    max-width: 240px;
    background: var(--clr-surface-2);
    border-radius: 12px 12px 12px 4px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clr-border);
}

.chat-msg.user .chat-msg-body {
    border-radius: 12px 12px 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.chat-msg-body p {
    font-size: 0.85rem;
    color: var(--txt-primary);
    line-height: 1.6;
    margin-bottom: 4px;
}

.chat-time {
    font-size: 0.7rem;
    color: var(--txt-muted);
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--txt-muted);
    animation: typing-bounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.chatbot-input-area {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    gap: 8px;
}

#chatbotInput {
    flex: 1;
    padding: 0.65rem 1rem;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    color: var(--txt-primary);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

#chatbotInput:focus {
    border-color: rgba(245, 176, 20, 0.4);
}

#chatbotSend {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

#chatbotSend:hover {
    transform: scale(1.1);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border-2);
    color: var(--txt-secondary);
    font-size: 0.9rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: rgba(245, 176, 20, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* ==================== NOTIFICATION ==================== */
.toast-notification {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.5rem;
    background: #0f1420;
    border: 1px solid rgba(245, 176, 20, 0.3);
    border-radius: var(--radius-lg);
    color: var(--txt-primary);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.success i {
    color: #10b981;
}

.toast-notification.error i {
    color: #ef4444;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feature-tile.large {
        grid-column: span 2;
    }

    .feature-tile.wide {
        grid-column: span 2;
    }

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

    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-grid.reverse-mobile .section-text {
        order: -1;
    }

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

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

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .ceo-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-section::before {
        width: 100%;
        height: 4px;
        top: 0;
        bottom: auto;
    }

    .ceo-stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 280px;
        background: #0d1220;
        padding: 5rem 2rem 2rem;
        gap: 0.25rem;
        border-left: 1px solid var(--clr-border);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }

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

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

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

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .gallery-item {
        min-width: calc(100% - 0px);
    }

    .team-grid {
        gap: 1rem;
    }

    .team-card {
        width: 160px;
    }

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

    .hero-slide {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-tile.large,
    .feature-tile.wide {
        grid-column: span 1;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .ceo-stats-row {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

/* ==================== DUAL LOGO — NAVBAR ==================== */
.nav-brand-dual {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Make In India Logo — Navbar */
.make-in-india-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.make-in-india-logo-link:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

.make-in-india-nav-logo {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
}

/* Make In India Logo — Footer */
.make-in-india-footer-logo {
    height: 90px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
    margin-bottom: 1rem;
}

.dual-logo {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

.dual-logo:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* GoldPE image logo in navbar */
.brand-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.1);
    transition: var(--transition);
}

.brand-img:hover {
    filter: brightness(1.3);
}

/* Sreyas logo — slightly smaller so both feel balanced */
.sreyas-img {
    height: 44px;
    filter: brightness(1.1) grayscale(0.1);
}

/* Fallback text logos (show when images missing) */
.brand-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--txt-primary);
}

.sreyas-fallback {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--txt-secondary);
}

.sreyas-icon {
    width: 30px;
    height: 30px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 7px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 0.85rem;
}

.sreyas-text {
    line-height: 1.1;
}

.sreyas-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--txt-muted);
    text-transform: uppercase;
}

/* Vertical divider between the two logos */
.brand-divider {
    width: 1px;
    height: 28px;
    background: var(--clr-border-2);
    margin: 0 10px;
    flex-shrink: 0;
}

/* ==================== DUAL LOGO — FOOTER ==================== */
.footer-dual-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
}

.footer-logo-item {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer-logo-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Image logos in footer */
.footer-brand-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.15);
    transition: var(--transition);
}

.footer-brand-img:hover {
    filter: brightness(1.4);
}

.sreyas-footer-img {
    height: 46px;
    filter: brightness(1.1) grayscale(0.1);
}

/* Fallback text in footer */
.footer-logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--txt-primary);
    letter-spacing: -0.02em;
}

.footer-logo-fallback i {
    color: var(--gold);
}

.footer-logo-fallback .logo-pe {
    color: var(--gold);
}

.sreyas-footer-fallback {
    font-size: 1rem;
    font-weight: 700;
    color: var(--txt-secondary);
    gap: 8px;
}

.sreyas-footer-fallback i {
    color: #60a5fa;
    font-size: 0.85rem;
}

/* Footer divider between logos */
.footer-logo-divider {
    width: 1px;
    height: 30px;
    background: var(--clr-border-2);
    margin: 0 12px;
    flex-shrink: 0;
}

/* ==================== RESPONSIVE — DUAL LOGO ==================== */
@media (max-width: 480px) {
    .brand-img {
        height: 30px;
    }

    .sreyas-img {
        height: 26px;
    }

    .brand-fallback {
        font-size: 1.2rem;
    }

    .sreyas-fallback {
        font-size: 0.85rem;
    }

    .brand-divider {
        margin: 0 6px;
    }

    .footer-brand-img {
        height: 34px;
    }

    .sreyas-footer-img {
        height: 28px;
    }
}

/* ==================== ROUND LOGO FRAMES — NAVBAR ==================== */
.nav-brand-dual {
    display: flex;
    align-items: center;
    gap: 0;
}

.round-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.round-logo-link:hover {
    transform: scale(1.06);
}

/* The circular frame */
.round-logo-frame {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

/* GoldPE circle — gold ring */
.goldpe-frame {
    border: 2.5px solid var(--gold);
    box-shadow: 0 0 14px rgba(245, 176, 20, 0.35), 0 0 0 4px rgba(245, 176, 20, 0.08);
}

.round-logo-link:hover .goldpe-frame {
    box-shadow: 0 0 22px rgba(245, 176, 20, 0.55), 0 0 0 6px rgba(245, 176, 20, 0.12);
}

/* Sreyas circle — subtle white/blue ring */
.sreyas-frame {
    border: 2.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2), 0 0 0 4px rgba(59, 130, 246, 0.06);
}

.round-logo-link:hover .sreyas-frame {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.35), 0 0 0 6px rgba(59, 130, 246, 0.1);
}

/* Image fills the circle */
.round-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    padding: 0;
    background: #fff;
    transform: scale(1.45);
}

/* When image fails to load — show gradient placeholder */
.round-logo-frame.logo-missing {
    background: linear-gradient(135deg, rgba(245, 176, 20, 0.15), rgba(245, 176, 20, 0.05));
}

.round-logo-frame.logo-missing::after {
    content: 'Logo';
    position: absolute;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sreyas-frame.logo-missing {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
}

.sreyas-frame.logo-missing::after {
    color: #60a5fa;
}

/* Divider between two round logos */
.brand-divider {
    width: 1px;
    height: 46px;
    background: var(--clr-border-2);
    margin: 0 16px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .round-logo-frame {
        width: 90px;
        height: 90px;
    }

    .brand-divider {
        margin: 0 8px;
        height: 28px;
    }
}

/* ==================== APPLICATION FORM ==================== */
.apply-page {
    padding-top: 100px;
}

.form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.form-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.triplet {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.form-group.half {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--txt-secondary);
    font-weight: 500;
}

.goldpe-form input[type="text"],
.goldpe-form input[type="email"],
.goldpe-form input[type="number"],
.goldpe-form input[type="tel"],
.goldpe-form select,
.goldpe-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--txt-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.goldpe-form input:focus,
.goldpe-form select:focus,
.goldpe-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 176, 20, 0.15);
}

.custom-select-wrap {
    position: relative;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--txt-secondary);
    pointer-events: none;
}

.goldpe-form select {
    appearance: none;
    cursor: pointer;
}

.goldpe-form select option {
    background: var(--clr-bg);
    color: var(--txt-primary);
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
    padding-top: 10px;
}

.radio-label,
.check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--txt-primary);
}

.form-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 2.5rem 0;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row.triplet {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* ==================== MAP SECTION ==================== */
.map-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.map-tab-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    color: var(--txt-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.map-tab-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.map-tab-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow-soft);
}

.map-iframe-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .map-tabs {
        gap: 10px;
    }

    .map-tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}