/* --- Variables & Reset --- */
:root {
    --primary-color: #ff3b3b;
    /* Red Accent */
    --dark-bg: #050505;
    /* Deep Black */
    --glass-black: rgba(0, 0, 0, 0.9);
    /* Header Background */
    --text-white: #ffffff;
    --text-gray: #aaaaaa;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* --- HEADER (Transparent to Glass) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.main-header.sticky {
    padding: 15px 0;
    background: var(--glass-black);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* LOGO STYLES */
.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Invert black logo to white */
    transition: transform 0.3s ease;
}

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

/* NAVBAR */
.navbar .nav-links {
    display: flex;
}

.navbar .nav-links li {
    margin-left: 40px;
}

.navbar .nav-links a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 5px;
    transition: var(--transition);
}

/* Close Button (Hidden on Desktop) */
.close-menu {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    transform: rotate(90deg);
    color: white;
}

/* --- HERO SECTION (PREMIUM DARK) --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay-grid {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 60%;
    background-image:
        linear-gradient(rgba(255, 59, 59, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 59, 59, 0.3) 1px, transparent 1px);
    background-size: 100px 100px;
    transform: perspective(500px) rotateX(60deg);
    opacity: 0.15;
    z-index: 1;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content-layer {
    position: absolute;
    z-index: 2;
    /* BEHIND DRONE */
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.hero-drone-layer {
    position: relative;
    z-index: 3;
    /* IN FRONT OF TEXT */
    margin-top: 0px;
    perspective: 1000px;
}

.pill-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 59, 59, 0.5);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: rgba(255, 59, 59, 0.05);
    text-transform: uppercase;
}

.giant-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 12vw;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
}

.hero-btns {
    position: relative;
    z-index: 10;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(255, 59, 59, 0.6);
    transform: scale(1.05);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Drone Styling */
#drone-hero {
    width: 550px;
    max-width: 90vw;
    animation: floatDrone 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
    pointer-events: none;
    /* --- THE FIX --- */
    /* This makes the image "invisible" to the mouse, 
       so you can click the buttons behind its transparent areas */
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* --- ANIMATIONS --- */
@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(100px);
    }
}

@keyframes floatDrone {

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

    50% {
        transform: translateY(-20px);
    }
}

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

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

/* --- SECTIONS COMMON --- */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #111;
    font-weight: 700;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
}

/* Badge 2 */
.exp-badge2 {
    position: absolute;
    bottom: -60px;
    left: -20px;
    background: white;
    color: var(--primary-color);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exp-badge2 h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
}

.feature-list {
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-dark {
    background: #111;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.btn-dark:hover {
    background: var(--primary-color);
}

/* --- QUALITY SECTION --- */
.quality-section {
    background: #f9f9f9;
    padding: 100px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    background: white;
    position: relative;
    z-index: 1;
}

.service-info h3 {
    margin-bottom: 10px;
    color: #111;
    font-weight: 700;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* --- TEAM SECTION --- */
.team-section {
    background: #f9f9f9;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    color: #111;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-info .socials {
    margin-top: 15px;
}

.team-info .socials a {
    color: #ccc;
    margin: 0 8px;
    font-size: 1.1rem;
}

.team-info .socials a:hover {
    color: var(--primary-color);
}

/* --- FOOTER --- */
.footer {
    background: #111;
    color: #aaa;
    padding: 80px 0 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-widget h2 {
    display: none;
}

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

.footer-widget h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
}

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

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer form {
    display: flex;
    margin-top: 15px;
}

.footer input {
    padding: 12px;
    border: none;
    width: 100%;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.footer button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    background: #050505;
}

/* =========================================
   MOBILE RESPONSIVENESS (Refined)
   ========================================= */
/* =========================================
   MOBILE RESPONSIVENESS FIXES (Overlapping Layout)
   ========================================= */
/* =========================================
   MOBILE RESPONSIVENESS FIXES (Clean Stack)
   ========================================= */
@media (max-width: 900px) {

    /* 1. HERO SECTION (Flex Stack with Overlap) */
    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 100px;
        /* Space from header */
        min-height: 100vh;
        text-align: center;
    }

    /* STEP 1: The Text Layer */
    .hero-content-layer {
        position: relative;
        z-index: 1;
        width: 100%;
        margin-bottom: 50px;
        top: auto;
        transform: none;
    }

    .giant-text {
        font-size: 25vw;
        /* Large text */
        line-height: 1;
        margin-bottom: 0;
        opacity: 0.5;
        display: block;
    }

    .pill-badge {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    /* STEP 2: The Drone (Pulled Up) */
    .hero-drone-layer {
        position: relative;
        z-index: 2;
        /* Sits on top of text */
        width: 100%;
        display: flex;
        justify-content: center;

        /* THE MAGIC: Pull drone UP into the text */
        margin-top: -40px;
        margin-bottom: 20px;
        /* Push buttons away */
    }

    #drone-hero {
        position: absolute;
        width: 85%;
        bottom: 185px;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    }

    /* STEP 3: Description & Buttons */
    .hero p {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 30px;
        position: relative;
        z-index: 3;
        color: #ddd;
    }

    .hero-btns {
        position: relative;
        z-index: 4;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .btn {
        width: 70%;
        justify-content: center;
        padding: 12px 0;
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
        bottom: 10px;
        font-size: 0.6rem;
    }

    /* 2. OTHER SECTIONS (Standard Fixes) */
    .about-grid,
    .services-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        margin-bottom: 60px;
    }

    .exp-badge2 {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        min-width: 140px;
    }

    .services-grid,
    .card-grid {
        gap: 40px;
        padding: 0 15px;
    }

    .service-card,
    .card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    /* 3. NAVBAR & MENU */
    .logo-img {
        height: 35px;
    }

    .navbar .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: #111;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1002;
    }

    .navbar .nav-links li {
        margin: 25px 0;
        opacity: 0;
    }

    .burger {
        display: block;
        z-index: 1001;
    }

    .close-menu {
        display: block;
    }
}

/* --- CRITICAL: MENU OPEN STATE --- */
/* This must be OUTSIDE the @media block at the bottom of the file */
.nav-active {
    transform: translateX(0%) !important;
}

/* Menu Item Animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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




/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

/* =========================================
   CONTACT PAGE STYLES (Add to bottom of style.css)
   ========================================= */

/* 1. Page Hero (Smaller than Home Hero) */
.page-hero {
    position: relative;
    height: 50vh;
    width: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
    /* Space for fixed header */
}

.giant-text-small {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* 2. Contact Split Section */
.contact-page-section {
    padding: 100px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: white;
}

/* Left Side: Info Box */
.contact-info-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.contact-info-box p {
    margin-bottom: 40px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item .details h4 {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item .details p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Socials Big */
.social-links-big {
    margin-top: 40px;
}

.social-links-big a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #111;
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
}

.social-links-big a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Right Side: Form */
.contact-form-box {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition);
    color: #333;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.1);
}

/* Map Section */
.map-section iframe {
    display: block;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-box {
        padding: 30px;
    }

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

    .giant-text-small {
        font-size: 2.5rem;
    }
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* =========================================
   ABOUT PAGE STYLES (Updated with Drone Fleet)
   ========================================= */

/* Narrative Section */
.about-narrative-section {
    padding: 100px 0;
    background: #fff;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.narrative-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.3;
}

.narrative-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.narrative-text strong {
    color: #111;
}

/* Quote Box */
.quote-box {
    margin-top: 30px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    background: #f9f9f9;
    position: relative;
}

.quote-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.quote-box p {
    font-style: italic;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.quote-box span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

/* --- NEW DRONE FLEET STYLES (Replaces old image styles) --- */
.narrative-img {
    position: relative;
    /* Height is required now because absolute images don't push the box open */
    min-height: 500px;
    width: 100%;
    /* Gentle glow behind the drones */
    background: radial-gradient(circle at center, rgba(255, 59, 59, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    overflow: hidden;
    /* Keeps drones inside the box */
}

.narrative-img img {
    position: absolute;
    /* Realistic drop shadow for flying objects */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    pointer-events: none;
    /* Prevents interference with clicks */
    border-radius: 0;
    /* Important: No border radius for transparent PNGs */
}

/* Main Central Drone Styling */
.drone-main {
    width: 77%;
    top: 50%;
    left: 50%;
    z-index: 2;
    /* Float Center Animation */
    animation: floatCenter 6s ease-in-out infinite;
}

/* Smaller Drones Styling */
.drone-small {
    width: 20%;
    z-index: 1;
    opacity: 0.8;
}

/* Positions for the 4 small drones */
.pos-1 {
    top: 10%;
    left: 5%;
    animation: floatFleet 5s ease-in-out infinite 0.2s;
}

.pos-2 {
    top: 15%;
    right: 5%;
    animation: floatFleet 7s ease-in-out infinite 1.5s;
}

.pos-3 {
    bottom: 20%;
    left: 10%;
    animation: floatFleet 6s ease-in-out infinite 0.8s;
}

.pos-4 {
    bottom: 10%;
    right: 0%;
    animation: floatFleet 8s ease-in-out infinite 0s;
    z-index: 100;
}

/* Animations Keyframes */
@keyframes floatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-25px);
    }
}

@keyframes floatFleet {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Overlay Badge */
.img-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.3);
    z-index: 10;
}

.img-overlay h3 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.img-overlay p {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Values Section */
.values-section {
    background: #111;
    padding: 100px 0;
    color: white;
}

.values-section .sub-title {
    color: var(--primary-color);
}

.values-section h2 {
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Responsive About */
@media (max-width: 900px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Responsive adjustments for Drone Fleet */
    .narrative-img {
        min-height: 350px;
    }

    .drone-main {
        width: 90%;
    }

    .drone-small {
        width: 25%;
    }

    .img-overlay {
        right: 0;
        bottom: 0;
        z-index: 0;
    }
}

/*  */
/*  */
/*  */
/*  */
/*  */
/* Thank you page css */
/* =========================================
   THANK YOU PAGE STYLES
   ========================================= */

.thankyou-section {
    height: 90vh;
    /* Takes up almost full screen */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.thankyou-container {
    max-width: 600px;
    padding: 20px;
}

/* Success Icon Animation */
.success-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

/* Text Styling */
.status-msg {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-msg {
    color: #888;
    margin-bottom: 40px;
}

/* Redirect Box & Loader */
.redirect-box {
    margin-top: 30px;
}

.redirect-box p {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.loader-line {
    width: 100%;
    height: 2px;
    background: #333;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    animation: loading 5s linear forwards;
    /* Matches the 5 second countdown */
}

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

    100% {
        width: 100%;
    }
}

/*  */
/*  */
/*  */
/*  */
/* =========================================
   CAREERS SECTION STYLES
   ========================================= */
.careers-section {
    background-color: #050505; /* Deep black to match footer theme */
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #222; /* Subtle separator from previous section */
    overflow: hidden;
}

/* Optional: Add a subtle glow behind the text */
.careers-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.careers-section h2 {
    font-weight: 700;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .careers-section {
        padding: 60px 0;
    }
    .careers-section h2 {
        font-size: 2rem !important;
    }
}