:root {
    --primary: #002B7F;
    --primary-dark: #001A4D;
    --bg-dark: #030F26;
    --bg-deep: #020A18;
    --gold: #F2B100;
    --gold-light: #FFD766;
    --text-light: #FFFFFF;
    --text-muted: #C9D1E8;
    --cyan-glow: #00E5FF;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.07);
    --card-hover-border: rgba(242, 173, 0, 0.4);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 150px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 43, 127, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(242, 177, 0, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 70px 0;
    position: relative;
}

/* CUSTOM GLOW CURSOR */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(242, 177, 0, 0.5);
    background: rgba(242, 177, 0, 0.03);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.cursor-follower.grow {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    background: rgba(242, 177, 0, 0.1);
}

/* Hide custom cursor on mobile */
@media (max-width: 1024px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 250px;
    width: 100%;
}

.loader-logo {
    width: 180px;
    margin: 0 auto 30px;
    animation: pulseLogo 2s infinite ease-in-out;
}

.loader-logo img {
    width: 100%;
    height: auto;
}

.loader-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    animation: loadProgress 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes pulseLogo {

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

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #FFC000);
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(242, 177, 0, 0.25);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 177, 0, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-primary i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-secondary i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.btn-secondary:hover i {
    transform: translateX(4px);
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 177, 0, 0.03);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(242, 177, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background: rgba(242, 177, 0, 0.1);
    border-color: var(--gold);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 177, 0, 0.15);
}

.btn-gold-outline i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.btn-gold-outline:hover i {
    transform: translateX(4px);
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    background: rgba(2, 10, 24, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2, 10, 24, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    width: 190px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 4px;
    transition: var(--transition);
}

/* MOBILE NAV DRAWER */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-deep);
    z-index: 1000;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.drawer-logo {
    width: 150px;
}

.close-drawer {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: auto;
}

.drawer-links a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-muted);
}

.drawer-links a:hover,
.drawer-links a.active {
    color: var(--gold);
    padding-left: 8px;
}

.drawer-footer {
    width: 100%;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 200px;
    padding-bottom: 80px;
    overflow: hidden;
}

.blueprint-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    animation: blueprintGrid 35s linear infinite;
    opacity: 0.8;
}

@keyframes blueprintGrid {
    from {
        background-position: 0 0;
    }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 50%, transparent 10%, var(--bg-dark) 70%);
}

.hero-glow-sun {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 177, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 177, 0, 0.1);
    border: 1px solid rgba(242, 177, 0, 0.25);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    font-family: 'Poppins', sans-serif;
}

.hero h1 span {
    color: var(--gold);
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.sun-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(242, 177, 0, 0.15) 0%, rgba(0, 43, 127, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: sunPulse 8s infinite alternate ease-in-out;
}

@keyframes sunPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
        filter: blur(20px);
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
        filter: blur(35px);
    }
}

.wireframe-building {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.3));
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wireframe-building:hover {
    transform: scale(1.03) rotate(-2deg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* SECTION COMMONS */
.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.text-left {
    text-align: left;
}

.section-heading h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 60px;
}

.text-center {
    text-align: center;
}

/* REVEAL SYSTEM */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 15px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
    filter: brightness(0.9) contrast(1.05);
}

.image-accent-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(242, 177, 0, 0.1) 0%, transparent 60%);
    filter: blur(15px);
    z-index: 1;
}

.image-frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    z-index: 3;
}

.image-frame-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.image-frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h2 span {
    color: var(--gold);
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 15px 0 25px;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    bottom: 15px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.1));
}

.timeline-item {
    display: flex;
    gap: 25px;
    position: relative;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-deep);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 0 15px rgba(242, 177, 0, 0.2);
    flex-shrink: 0;
}

.timeline-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-light);
}

.timeline-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ABOUT US TABS */
.about-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 16px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-light);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9.5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px 35px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--card-hover-border);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 177, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--bg-deep);
    transform: rotate(6deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-list li::before {
    content: '\f0da';
    /* font-awesome caret right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.75rem;
}

.service-card:hover .service-list li {
    color: var(--text-light);
}


/* WHY CHOOSE US */
.why-us {
    background: linear-gradient(180deg, rgba(2, 10, 24, 0) 0%, rgba(0, 43, 127, 0.06) 50%, rgba(2, 10, 24, 0) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-us-content h2 {
    font-size: 2.75rem;
    line-height: 1.25;
}

.why-us-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat:hover {
    border-color: var(--card-hover-border);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-icon-wrapper {
    width: 55px;
    height: 55px;
    background: rgba(0, 43, 127, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    border: 1px solid rgba(242, 177, 0, 0.15);
}

.stat h3 {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.stat span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* PROCESS */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sun-step {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold), #FFC000);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(242, 177, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.6);
    position: relative;
    border: 4px solid var(--bg-dark);
    transition: var(--transition);
}

.step:hover .sun-step {
    transform: scale(1.1);
    box-shadow: 0 0 45px rgba(242, 177, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.step-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-deep);
    font-family: 'Poppins', sans-serif;
}

.step h3 {
    font-size: 1.35rem;
    color: var(--text-light);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 220px;
    line-height: 1.5;
}

/* EXPERTISE */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.expertise-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.expertise-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 10, 24, 0.95) 15%, rgba(2, 10, 24, 0.6) 50%, rgba(2, 10, 24, 0.1) 100%);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    opacity: 1;
    transition: var(--transition);
}

.expertise-card h3 {
    font-size: 1.25rem;
    color: var(--text-light);
}

.expertise-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.expertise-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.expertise-card:hover .expertise-img {
    transform: scale(1.12);
}

.expertise-card:hover .expertise-overlay p {
    max-height: 100px;
    opacity: 1;
}

.expertise-action {
    margin-top: 40px;
}

/* PORTFOLIO (PROJECT EXPERIENCE) */
.portfolio {
    background: linear-gradient(180deg, rgba(2, 10, 24, 0) 0%, rgba(0, 43, 127, 0.05) 50%, rgba(2, 10, 24, 0) 100%);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-filters .filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filters .filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-filters .filter-btn.active {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(242, 177, 0, 0.25);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.project-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.project-card-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    line-height: 1.25;
}

.project-card-header .project-icon {
    width: 50px;
    height: 50px;
    background: rgba(242, 177, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    border: 1px solid rgba(242, 177, 0, 0.15);
    flex-shrink: 0;
}

.project-location {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.project-short-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-toggle-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: var(--transition);
    margin-top: auto;
    width: fit-content;
}

.project-toggle-btn:hover {
    color: var(--text-light);
}

.project-toggle-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.project-details-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-details-wrapper.open {
    grid-template-rows: 1fr;
}

.project-details-content {
    overflow: hidden;
}

.project-details-inner {
    padding-top: 25px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.project-details-inner p {
    margin-bottom: 15px;
}

.project-services-title {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.project-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.project-services-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
}

.project-services-list li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 0.75rem;
    top: 2px;
}

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

/* CTA */
.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold) 0%, #E09F00 100%);
    color: var(--bg-deep);
    overflow: hidden;
}

.cta-glow-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta h2 {
    font-size: 3.25rem;
    max-width: 800px;
    line-height: 1.15;
    color: var(--bg-deep);
}

.cta p {
    font-size: 1.2rem;
    max-width: 650px;
    opacity: 0.9;
    font-weight: 500;
}

.cta .btn-primary {
    background: var(--bg-deep);
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
    background: #001A4D;
    color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info h2 {
    font-size: 2.75rem;
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 43, 127, 0.2);
    border: 1px solid rgba(242, 177, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--text-light);
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FORM STYLINGS */
.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(242, 177, 0, 0.1);
}

/* Form Success Overlay */
.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-success-message.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    font-size: 4.5rem;
    color: var(--gold);
    animation: scaleCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleCheck {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.form-success-message h3 {
    font-size: 1.75rem;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    width: 180px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-social a:hover {
    color: var(--bg-deep);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.footer-contact p i {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.codsynapse {
    color: var(--gold);
    font-weight: 700;
}

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

/* RESPONSIVE DESIGNS */
@media (max-width: 1024px) {
    .hero {
        align-items: flex-start;
        padding-top: 200px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        align-items: center;
    }

    .hero p {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-visual {
        height: 380px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .nav-links,
    .nav-actions .quote-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        display: none;
    }

    .step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 20px;
    }

    .sun-step {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .step-num {
        font-size: 1.35rem;
    }

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

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

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

    .expertise-card {
        height: 320px;
    }

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

    .cta h2 {
        font-size: 2.25rem;
    }

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

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ======================================
   STRUCTURAL DRAFTING & CAD EXTENSIONS
   ====================================== */

/* Hero blueprint CAD Crosshair Lines */


/* Skyscraper FEA structural stressing nodes */
@keyframes nodePulseAnim {

    0%,
    100% {
        r: 2.5px;
        opacity: 0.45;
    }

    50% {
        r: 5.5px;
        opacity: 1;
    }
}

.node-pulse {
    animation: nodePulseAnim 3s infinite ease-in-out;
}

.node-pulse:nth-child(2n) {
    animation-delay: 0.6s;
}

.node-pulse:nth-child(3n) {
    animation-delay: 1.2s;
}

.node-pulse:nth-child(4n) {
    animation-delay: 1.8s;
}

.node-gold {
    fill: var(--gold);
}

.node-warn {
    fill: #FF5E00;
}

/* Technical dimension lines (AutoCAD-like) */
.dimension-line {
    transition: opacity 0.4s ease, stroke 0.4s ease;
}

.wireframe-building:hover .dimension-line {
    opacity: 0.8;
}

/* Blueprint Grid inside Service Cards */
.service-card {
    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: 20px 20px;
    position: relative;
}

.service-card:hover {
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px);
}

/* Corner Bracket overlay on Service Cards for Drafting Border */
.service-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.015);
    pointer-events: none;
    transition: var(--transition);
}

.service-card:hover::after {
    border-color: rgba(0, 229, 255, 0.15);
}

/* Coordinate indicator for structural columns inside cards */
.card-grid-loc {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
    opacity: 0.4;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-card:hover .card-grid-loc {
    color: var(--cyan-glow);
    opacity: 0.8;
}

/* Technical Self-Drawing animations for dimension lines and rulers */
@keyframes drawBlueprintLine {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.dimension-line line,
.dimension-line path,
.ruler-line line,
.ruler-line path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawBlueprintLine 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ruler-line text,
.dimension-line text {
    opacity: 0;
    animation: fadeInText 1s ease forwards;
    animation-delay: 2.2s;
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

/* ======================================
   WHATSAPP FLOATING INTEGRATION
   ====================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: rgba(2, 10, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 6px 12px;
    font-size: 0.78rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Remote Delivery Center Section Styling */
.delivery-center {
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(0, 43, 127, 0.08) 50%, var(--bg-deep) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: flex-start;
}

.delivery-intro h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.delivery-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.resources-showcase {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.resources-showcase h4 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.resource-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.resource-tag i {
    color: var(--gold);
    font-size: 0.8rem;
}

.resource-tag:hover {
    border-color: var(--gold);
    color: var(--text-light);
    background: rgba(242, 177, 0, 0.03);
}

.models-showcase h4 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.model-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.model-card:hover {
    border-color: var(--card-hover-border);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.model-card i {
    font-size: 1.5rem;
    color: var(--gold);
}

.model-card h5 {
    font-size: 1rem;
    color: var(--text-light);
}

.model-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.15rem;
    margin-top: 3px;
}

.benefit-text h5 {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Careers Section Styling */
.careers {
    background: var(--bg-dark);
}

.careers-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: flex-start;
}

.careers-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.careers-info h2 {
    font-size: 2.75rem;
    line-height: 1.2;
}

.careers-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.careers-email-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.careers-email-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(242, 177, 0, 0.25);
    background: rgba(242, 177, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.careers-email-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.careers-email-text h5 {
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* Careers Form */
.careers-form-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    position: relative;
}

.careers-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease;
}

.careers-form select {
    width: 100%;
    background: var(--bg-deep);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 13px 15px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9D1E8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

.careers-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.careers-form select option {
    background: var(--bg-deep);
    color: var(--text-light);
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-input {
    width: 100%;
    height: 52px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-btn {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px dashed var(--card-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    pointer-events: none;
}

.file-upload-wrapper:hover .file-upload-btn {
    border-color: var(--gold);
    color: var(--text-light);
    background: rgba(242, 177, 0, 0.03);
}

.file-upload-wrapper.has-file .file-upload-btn {
    border-style: solid;
    border-color: #25D366;
    color: #25D366;
    background: rgba(37, 211, 102, 0.03);
}

/* Careers Success State */
.careers-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    min-height: 380px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.careers-success-message.show {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {

    .delivery-grid,
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

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

    .careers-form-container {
        padding: 30px 20px;
    }
}

/* INTERACTIVE HERO IMAGE */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: rgba(2, 10, 24, 0.4);
    box-shadow: var(--shadow), 0 0 30px rgba(0, 43, 127, 0.2);
    overflow: hidden;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: crosshair;
}

.hero-image-wrapper:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow), 0 0 40px rgba(242, 177, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    transform: translateZ(10px);
}

.hero-image-wrapper:hover .hero-image {
    opacity: 0.95;
    transform: scale(1.03) translateZ(15px);
}

.hero-image-accent-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(242, 177, 0, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(-10px);
}

.cad-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.4s ease;
    transform: translateZ(5px);
}

.hero-image-wrapper:hover .cad-grid-overlay {
    opacity: 0.7;
}

/* CAD Scanner Sweep Line */
.cad-scanner-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
    box-shadow: 0 0 15px var(--cyan-glow), 0 0 5px var(--cyan-glow);
    z-index: 4;
    pointer-events: none;
    opacity: 0.6;
    animation: scannerSweep 6s infinite ease-in-out;
    transform: translateZ(20px);
}

@keyframes scannerSweep {
    0% {
        top: 0%;
        opacity: 0.2;
    }

    50% {
        top: 100%;
        opacity: 0.8;
    }

    100% {
        top: 0%;
        opacity: 0.2;
    }
}

/* Dynamic CAD Crosshair Lines */
.cad-cross-h,
.cad-cross-v {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cad-cross-h {
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(0, 229, 255, 0.25);
    transform: translateY(-50%) translateZ(12px);
}

.cad-cross-v {
    top: 0;
    height: 100%;
    width: 1px;
    border-left: 1px dashed rgba(0, 229, 255, 0.25);
    transform: translateX(-50%) translateZ(12px);
}

.hero-image-wrapper:hover .cad-cross-h,
.hero-image-wrapper:hover .cad-cross-v {
    opacity: 1;
}

/* CAD Monospace Coordinates Readout Panel */
.cad-panel {
    position: absolute;
    padding: 6px 12px;
    background: rgba(2, 10, 24, 0.75);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 6px;
    color: var(--cyan-glow);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 6;
    opacity: 0;
    transform: translateZ(30px);
    transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .cad-panel {
    opacity: 1;
}

/* Drafting Corners */
.frame-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    pointer-events: none;
    transition: var(--transition);
}

.frame-corner.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.hero-image-wrapper:hover .frame-corner {
    border-color: var(--gold);
    width: 20px;
    height: 20px;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-gold-outline {
        width: 100%;
        justify-content: center;
    }
}