/* body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.content_starts {
    width: 94% !important;
    max-width: 1120px !important;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.moving-bg {
    position: relative;
    width: 100%;
    height: calc(90vh - 120px);
    background-image: url('../img/home_banner_bg.webp');
    background-size: 200%;
    background-repeat: no-repeat;
    animation: moveBackground 10s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

div#moving_overlay1 {
    background-image: url(../img/home_banner_ov1.webp);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;

    animation:
        enterOV1 4s ease-out forwards,
        moveOV1 6s linear infinite 4s;
}

@keyframes enterOV1 {
    0% {
        transform: translateX(-100%) translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0) translateY(-10px);
        opacity: 1;
    }
}


@keyframes moveOV1 {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}


.audio-btn {
    position: fixed;
    top: 80vh;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background 0.25s;
}

.audio-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.icon {
    width: 28px;
    height: 28px;
    display: none;
}

.icon.onn {
    fill: #00ff12;
}

.icon.off {
    fill: #ff6a00;
}

.moving-bg h1 {
    opacity: 0;
    transform: translateY(20px);
    animation: h1FadeUp 1.2s ease-out forwards;
    color: #282560;
    font-size: 50px;
    text-align: left;
    margin: 0;
    max-width: 26ch;
}

@keyframes h1FadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.moving-bg .content_starts {
    align-items: end;
    height: 100%;
} */



/* ================= ROOT TOKENS ================= */

:root {
    /* Base font size */
    --root-font-size: 16px;
    font-size: var(--root-font-size);

    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text-dark: #0b0b0b;
    --color-text-light: #ffffff;

    /* Container widths */
    --content-max-width: 1740px;
    --content-width: 90.625%;

    /* Fluid spacing unit (your MLN logic refined) */
    --fluid-unit: clamp(0.5rem, 0.85vw, 1rem);

    /* Typography */
    --font-primary: "Inter", sans-serif;
    --font-heading: "Montserrat", sans-serif;

    /* Z layers */
    --z-header: 1000;
    --z-overlay: 1200;
}

/*@font-face {*/
/*    font-family: 'Lemon/Milk Regular';*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
/*    src: local('Lemon/Milk Regular'), url('./fonts/LemonMilk.woff') format('woff');*/
/*}*/
@font-face {
    font-family: 'Lemon/Milk Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Lemon/Milk Regular'),
         url('https://iadgroup.in/assets/css/fonts/LemonMilk.woff') format('woff');
}


/* ================= RESET ================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    font-family: "Lato", sans-serif !important;
    line-height: 1.34 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.4;

    color: var(--color-text-dark);
    background: var(--color-white);
    
    background-size: 100%;
    /*background-repeat: no-repeat;*/
    background-position: top center;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}


/* ================= LAYOUT UTILITIES ================= */

.content_starts {
    width: var(--content-width);
    max-width: var(--content-max-width);
    margin-inline: auto;
}

/* Flex utilities */
.w_flex {
    display: flex;
}

.jc_spaceb {
    justify-content: space-between;
}

.jc_center {
    justify-content: center;
}

.aitem_c {
    align-items: center;
}

.aitem_e {
    align-items: end;
}

/* Width helpers */
.w100 {
    width: 100%;
}

.w70 {
    width: 70%;
}

.w60 {
    width: 60%;
}

.w50 {
    width: 50%;
}

.w40 {
    width: 40%;
}

.w30 {
    width: 30%;
}

/* ================= SECTIONS ================= */

section {
    position: relative;
    width: 100%;
}

.section_pad_lg {
    padding-block: calc(var(--fluid-unit) * 8);
}

.section_pad_md {
    padding-block: calc(var(--fluid-unit) * 5);
}

.section_pad_sm {
    padding-block: calc(var(--fluid-unit) * 3);
}

/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* ================= HEADER ================= */

:root {
    --header-height: clamp(64px, 5vw, 96px);
    --header-padding-x: clamp(16px, 5vw, 60px);
    --nav-gap: clamp(20px, 3vw, 48px);

    --header-bg-scrolled: rgb(229 246 253);
    --header-border: rgba(255, 255, 255, 0.15);

    --nav-font-size: clamp(14px, 1.1vw, 18px);
    --logo-width: clamp(110px, 12vw, 180px);

    /* Hero specific */
    --hero-min-height: 100vh;
    --hero-overlay-dark: rgba(5, 14, 28, 0.55);

    --accent-blue: #2b2f78;
    /*--accent-gradient: linear-gradient(90deg,*/
    /*        #ff7a00 0%,*/
    /*        #ffd500 33%,*/
    /*        #00c853 66%,*/
    /*        #0091ff 100%);*/
    --accent-gradient: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
}

/* Header wrapper */
header.custom_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: var(--header-height); */
    height: 130px;
    z-index: 1000;

    background: transparent;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

/* Scrolled state */
header.custom_header.is_scrolled {
    background: var(--header-bg-scrolled);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    height: var(--header-height);
}

/* Inner layout */
header.custom_header .content_starts {
    height: 100%;
    padding-inline: var(--header-padding-x);
}

/* Logo */
.header_logo img {
    width: var(--logo-width);
    height: auto;
    display: block;
    max-height: 105px;
}

/* Navigation */
.header_nav ul {
    list-style: none;
    gap: var(--nav-gap);
    margin: 0;
    padding: 0;
}

.header_nav a {
    position: relative;
    font-size: var(--nav-font-size);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0b0b0b;
    text-decoration: none;
    padding: 6px 0;

    transition: color 0.3s ease;
    font-family:'Lemon/Milk Regular' !important;
    text-shadow: 0px 0px 15px #fff;
}

/* Hover underline animation */
.header_nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0b0b0b;
    transition: width 0.35s ease;
        background: var(--accent-gradient) !important;
}

.header_nav a:hover::after, .header_nav a.active::after {
    width: 100%;
}
.header_nav a.active {
    font-weight: 700;
}

/* Color change after scroll */
header.custom_header.is_scrolled .header_nav a {
    /* color: #ffffff; */
}

header.custom_header.is_scrolled .header_logo img {
    max-height: 55px;
}

header.custom_header.is_scrolled .header_nav a::after {
    background: #ffffff;
}

/* Mobile toggle (hidden for now) */
.menu_toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu_toggle span {
    width: 26px;
    height: 2px;
    background: #000;
    transition: background 0.3s ease;
}

header.custom_header.is_scrolled .menu_toggle span {
    background: #000;
}


/* ================= HOME SECTION 1 ================= */

.home_section1 {
    position: relative;
    /* min-height: var(--hero-min-height); */
    overflow: hidden;
    height: 96vh;
    padding: 160px 0;
}

/* Video */
.hero_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero_overlay {
    position: absolute;
    inset: 0;
    /* background: var(--hero-overlay-dark); */
    z-index: 1;
}

/* Content */
.hero_content {
    position: relative;
    z-index: 2;
    /* min-height: 100vh; */
    min-height: -webkit-fill-available;
}

/* Text */
.hero_text {
    max-width: clamp(480px, 50vw, 820px);
}

.hero_heading {
    /* font-size: clamp(32px, 4.2vw, 76px); */
    font-size: clamp(24px, 3.2vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--accent-blue);

    opacity: 0;
    transform: translateY(40px);
    /*text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);*/
    text-shadow: 0 6px 24px #fff;
    /* cinematic */
    font-family:'Lemon/Milk Regular' !important;
}

/* Reveal animation */
.home_section1.reveal .hero_heading {
    animation: heroTextReveal 1.2s ease forwards;
}

@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: none;
    }
}

/* Code */
.hero_code {
    display: inline-block;
    margin-top: clamp(24px, 4vh, 48px);
    font-size: clamp(14px, 1.1vw, 18px);
    color: #ffffff;
    opacity: 0.8;
}

/* Audio toggle */
.audio_toggle {
    position: absolute;
    right: clamp(16px, 4vw, 48px);
    /*bottom: clamp(80px, 10vh, 140px);*/
    bottom: clamp(-60px, -5vh, -120px);

    width: clamp(42px, 4vw, 56px);
    height: clamp(42px, 4vw, 56px);

    border-radius: 50%;
    border: 3px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio_toggle svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-blue);
}

.audio_toggle .icon_off {
    display: none;
}

.audio_toggle.is_muted .icon_on {
    display: none;
}

.audio_toggle.is_muted .icon_off {
    display: block;
}

/* Scroll down */
.scroll_down {
    position: absolute;
    left: 50%;
    bottom: clamp(24px, 5vh, 48px);
    transform: translateX(-50%);
    z-index: 3;

    font-size: clamp(22px, 3vw, 32px);
    color: #fff;

    animation: arrowFloat 2s ease-in-out infinite;
    color: var(--accent-blue);
    font-weight: 900;
}

@keyframes arrowFloat {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* Gradient strip */
.hero_gradient_strip {
    /*position: absolute;*/
    bottom: 0;
    left: 0;
    height: clamp(4px, 0.6vw, 7px);
    width: 100%;
    background: var(--accent-gradient);
    z-index: 4;
    margin-top: auto;
}

/* ================= HOME SECTION 2 ================= */

.home_section2 {
    position: relative;
    padding-block: clamp(80px, 12vh, 160px);
    overflow: hidden;
    /*background: linear-gradient(to bottom, #ebf5f8, #fff);*/
    background: transparent;
}

/* Background layer */
.home2_bg {
    position: absolute;
    inset: 0;
    /*background:*/
    /*    linear-gradient(120deg, #eef4fb 0%, #f7faff 60%, #eef1f8 100%),*/
    /*    url("../img/sec2_bg.png");*/
    background-size: cover;
    background-position: center;
    z-index: 0;
        background-image: url(../img/sec2_bg.png);
}

/* Content */
.home_section2 .content_starts {
    position: relative;
    z-index: 1;
}

/* Text block */
.home2_content, .home3_content {
    max-width: clamp(720px, 64vw, 1200px);
    margin: auto;
}
.home3_c_update {
    max-width: clamp(720px, 70vw, 1310px);
    gap: 50px;
}
.home4_content {
    max-width: clamp(400px, calc(337.5px + 53.6458vw), 1370px);
    margin: auto;
}
.home5_content {
    max-width: clamp(420px, calc(393.75px + 53.125vw), 1434px);
    margin: auto;
}

/* Paragraph */
.home2_para {
    /*font-size: clamp(18px, 1.6vw, 26px);*/
    font-size: clamp(22px, 2.325vw, 45px);
    line-height: 1.6;
    color: #2b2f78;
    margin-bottom: clamp(32px, 5vh, 56px);
    font-weight: 400;
}

/* Points */
.home2_points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 2.5vw, 40px);
    padding: 0;
    margin: 0 0 clamp(48px, 6vh, 72px);
        display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.home2_points li {
    position: relative;
    padding-left: 22px;
    /*font-size: clamp(14px, 1vw, 16px);*/
    font-size: clamp(16px, 1.15vw, 22px);
    /*color: #1f234f;*/
        color: #000000a8;
    font-weight: 600;
}

.home2_points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #2b2f78;
    font-size: 22px;
    line-height: 1;
}

/* CTA */
.home2_cta {
    display: flex;
    gap: clamp(16px, 2vw, 28px);
    flex-wrap: wrap;
}

/* Buttons (aligned with your system) */
.btn_primary,
.btn_outline {
    padding: clamp(12px, 1.2vw, 16px) clamp(24px, 2.8vw, 36px);
    font-size: clamp(14px, 1vw, 16px);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn_primary {
    background: #282560;
    color: #fff;
}

.btn_primary:hover {
    background: #1f235f;
}

.btn_outline {
    border: 1px solid #2b2f78;
    color: #2b2f78;
    background: #fff;
}

.btn_outline:hover {
    background: #2b2f78;
    color: #fff;
}

/* ================= REVEAL ANIMATIONS ================= */

/* Initial states */
.reveal_group .reveal_item {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

/* Active */
.reveal_group.is_visible .reveal_item {
    opacity: 1;
    transform: none;
}

/* Stagger */
.reveal_group.is_visible .reveal_item:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal_group.is_visible .reveal_item:nth-child(2) {
    transition-delay: 0.15s;
}

.reveal_group.is_visible .reveal_item:nth-child(3) {
    transition-delay: 0.25s;
}

.reveal_group.is_visible .reveal_item:nth-child(4) {
    transition-delay: 0.35s;
}

.reveal_group.is_visible .reveal_item:nth-child(5) {
    transition-delay: 0.45s;
}


/* ================= HOME SECTION 3 ================= */

.home_section1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.home_section3 {
    position: relative;
    padding-block: clamp(120px, 16vh, 200px);
    background: #dff0fb;
    overflow: visible;
}

/* ---------- Floating Jet ---------- */
.jet_wrapper {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0, -50%);
    z-index: 5;
    pointer-events: none;

    opacity: 0;
    transform-origin: center;
}

.home_section3.is_visible .jet_wrapper {
    animation: jetReveal 1.2s ease forwards;
}

@keyframes jetReveal {
    from {
        opacity: 0;
        transform: translate(0, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.jet_image {
    /* width: clamp(260px, 30vw, 520px); */
    width: clamp(390px, 50vw, 920px);
    position: relative;
}

.jet_image_help::after {
    content: "";
    position: absolute;

    width: calc(var(--jet-wrapper-width) * 0.025);
    height: calc(var(--jet-wrapper-width) * 0.025);

    bottom: calc(var(--jet-wrapper-width) * 0.056);
    left: calc(var(--jet-wrapper-width) * 0.562);
    transform: translateX(-50%);

    background-image: url("../img/icons8-jet-engine-50.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    animation: propSpin 0.5s linear infinite;
}


.jet_image_help::before {
    content: "";
    position: absolute;

    width: calc(var(--jet-wrapper-width) * 0.025);
    height: calc(var(--jet-wrapper-width) * 0.025);

    bottom: calc(var(--jet-wrapper-width) * 0.0559);
    left: calc(var(--jet-wrapper-width) * 0.438);
    transform: translateX(-50%);

    background-image: url("../img/icons8-jet-engine-50.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    animation: propSpin 0.5s linear infinite;
}

/*.jet_image_help_lights::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 6px;*/
/*  height: 6px;*/
/*  background: #ff3b3b;*/
/*  border-radius: 50%;*/

/*  top: 40%;*/
/*  left: 28%;*/

/*  box-shadow:*/
/*    calc(5.05vw) calc(8.15vh) 0 rgba(255, 59, 59, 1);*/

/*  animation: blinkLights 1.8s infinite;*/
/*}*/



.jet_image_help_lights::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff3b3b;
    border-radius: 50%;
    top: 55%;
    left: 16%;
    box-shadow: calc(var(--jet-wrapper-width) * 0.67) 0 0 rgba(255, 59, 59, 0.9);
    animation: blinkLights2 1.8s infinite;
}

/* Propeller simulation */
.jet_image::before,
.jet_image::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    top: 46%;
    animation: propSpin 1.2s linear infinite;
}

.jet_image::before {
    left: 36%;
}

.jet_image::after {
    right: 36%;
}

@keyframes propSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Layout ---------- */
.home3_left {
    width: 45%;
    max-width: 520px;
}

.home3_right {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
    grid-template-rows: repeat(18, 1fr);
}

/* ---------- Left Content ---------- */
.home3_title {
    /*font-size: clamp(22px, 2vw, 28px);*/
    font-size: clamp(22px, 2.325vw, 40px);
    /*letter-spacing: 0.08em;*/
    color: #2b2f78;
    margin-bottom: 20px;
        font-family: 'Lemon/Milk Regular' !important;
        
}

.home3_para {
    /*font-size: clamp(15px, 1.1vw, 17px);*/
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    color: #1f234f;
    margin-bottom: 16px;
    font-weight: 500;
}

.home3_link {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    color: #2b2f78;
    border-bottom: 1px solid currentColor;
}
.main_cta {
    color: #282560 !important;
    border-color: #ED7524 !important;
    font-size: 18px !important;
    letter-spacing: 1.8px;
    padding-bottom: 6px;
    font-weight: 400;
    border-width: 2px;
}

/* ---------- Cards ---------- */
.home3_card {
    background: #0f2f4f;
    color: #fff;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
    /*padding: clamp(20px, 2.5vw, 36px);*/
    padding: clamp(20px, 2.25vw, 30px);
    min-height: clamp(160px, 18vw, 220px);
        gap: 50px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: grid;
    align-content: space-between;
}

.home3_card h3 {
    /*font-size: clamp(14px, calc(0.01085 * 100vw + 9.17px), 30px);*/
    /*font-size: clamp(14px, calc(0.65vw + 11px), 28px);*/
    font-size: clamp(14px, 1.25vw, 28px);
    line-height: 1.4;
        text-align: center;
    font-weight: 400;
}
.home3_card img {
    float: right;
    max-width: 20%;
}

.gr_s2 {
    grid-row: span 8;
}
.gr_s3 {
    grid-row: span 12;
}

.home3_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

/* ---------- Reveal Animations ---------- */
.reveal_group .reveal_item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal_group.is_visible .reveal_item {
    opacity: 1;
    transform: none;
}

.reveal_group.is_visible .reveal_item:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal_group.is_visible .reveal_item:nth-child(2) {
    transition-delay: 0.15s;
}

.reveal_group.is_visible .reveal_item:nth-child(3) {
    transition-delay: 0.25s;
}

.reveal_group.is_visible .reveal_item:nth-child(4) {
    transition-delay: 0.35s;
}

/* ---------- Propellers (inactive by default) ---------- */
/*.jet_image::before,*/
/*.jet_image::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    border: 2px solid rgba(0, 0, 0, 0.25);*/
/*    border-radius: 50%;*/
/*    top: 46%;*/
/*    opacity: 0;*/
/*    transform: scale(0.6);*/
/*}*/

/* Activate after reveal */
.home_section3.is_visible .jet_image::before,
.home_section3.is_visible .jet_image::after {
    opacity: 1;
    transform: scale(1);
    animation: propSpin 1.2s linear infinite;
}

.jet_image::before {
    left: 36%;
}

.jet_image::after {
    right: 36%;
}

@keyframes propSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Card Glow Effect ---------- */
.home3_card {
    position: relative;
    overflow: hidden;
}

/* Glow layer */
.home3_card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.18),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home3_card:hover::before {
    opacity: 1;
}

/* Enhance existing hover */
.home3_card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* ================= HOME SECTION 4 ================= */

.home_section4 {
    position: relative;
    padding-block: clamp(160px, 20vh, 240px);
    /*background: linear-gradient(120deg, #eef6fc, #f4f9ff);*/
    background: transparent;
    overflow: visible;
}

/* ---------- Floating Plane ---------- */
.plane_wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    perspective: 800px;
    /* --plane-wrapper-width: 0px; */
}

.home_section4.is_visible .plane_wrapper {
    animation: planeFlyIn 1.4s ease forwards;
}

@keyframes planeFlyIn {
    from {
        opacity: 0;
        transform: translate(-50%, 140px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.plane_image {
    width: clamp(240px, 30vw, 520px);
    position: relative;
}

/* Propeller (always spinning) */
.plane_image_help::after {
    content: "✇";
    position: absolute;
    width: calc(var(--plane-wrapper-width) * 0.08);
    height: calc(var(--plane-wrapper-width) * 0.08);
    /* border: 2px solid rgb(74 75 125 / 58%); */
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: propSpin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--plane-wrapper-width) * 0.07);
    color: rgb(122 125 151);
}

/* Wing lights */
.plane_image_help::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff3b3b;
    border-radius: 50%;
    top: 44%;
    left: 10%;
    box-shadow:
        calc(var(--plane-wrapper-width) * 0.13) -3px 0 rgba(255, 59, 59, 0.8),
        calc(var(--plane-wrapper-width) * 0.65) -3px 0 rgba(255, 59, 59, 0.9),
        calc(var(--plane-wrapper-width) * 0.78) 0 0 rgba(255, 59, 59, 0.9);
    animation: blinkLights 1.8s infinite;
}

 .plane_image_help_lights::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff3b3b;
    border-radius: 50%;
    top: 44%;
    left: 10%;
    box-shadow: calc(var(--plane-wrapper-width) * 0.78) 0 0 rgba(255, 59, 59, 0.9);
    animation: blinkLights 1.8s infinite;
}

.plane_image_help_lights::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff3b3b;
    border-radius: 50%;
    top: 44%;
    left: 13%;
    box-shadow: calc(var(--plane-wrapper-width) * 0.65) -3px 0 rgba(255, 59, 59, 0.9);
    animation: blinkLights2 1.8s infinite;
} 

@keyframes propSpin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}


@keyframes blinkLights {

    0%,
    67%,
    100% {
        opacity: 0;
    }

    83.5%,
    99.5% {
        opacity: 1;
    }
}

@keyframes blinkLights2 {

    0%,
    13.2%,
    19.8%,
    33%,
    46.2%,
    52.8%,
    66%,
    67%,
    100% {
        opacity: 0;
    }

    16.5%,
    49.5% {
        opacity: 1;
    }
}


/* ---------- Content ---------- */
.home4_title {
    text-align: center;
    /*font-size: clamp(22px, 2vw, 28px);*/
    font-size: clamp(20px, calc(17px + 0.9375vw), 35px);
    /*letter-spacing: 0.08em;*/
    color: #282560;
    font-family: 'Lemon/Milk Regular' !important;
    font-weight: 300;
    margin-bottom: clamp(60px, 8vh, 100px);
}

/* Cards */
.home4_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*gap: clamp(24px, 3vw, 48px);*/
    gap: clamp(12px, calc(10px + 0.625vw), 22px);
}

.home4_card {
    background: #E4F5FC;
    /*border-radius: 18px;*/
    border-top-left-radius: 22px;
    border-bottom-right-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    
    display: flex;
  flex-direction: column;
  height: 100%; 
}

.home4_card img {
    width: 100%;
    /*height: clamp(160px, 14vw, 220px);*/
        aspect-ratio: 31 / 10;
    object-fit: cover;
}

.home4_card h3 {
    /*font-size: clamp(14px, 1vw, 16px);*/
    font-size: clamp(16px, calc(14.4px + 0.5vw), 24px);
    margin: 20px;
    color: #000000;
    font-family: 'Lemon/Milk Regular' !important;
    font-weight: 400;
}

.home4_card ul {
    margin: 0 20px 20px;
    /*padding-left: 16px;*/
    list-style: none;
    padding: 0;
}

.home4_card li {
    /*font-size: clamp(14px, calc(13.2px + 0.25vw), 18px);*/
    font-size: clamp(14px, calc(13px + 0.11vw), 16.3px);
    margin-bottom: 10px;
    color: #000000;
        display: flex;
}
.home4_card li::before {
    /*content: "➜";*/
    content: "🡢";
    margin-right: 8px;
}

.home4_card a {
    display: block;
    padding: 14px;
    text-align: center;
    background: #282560;
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Lemon/Milk Regular' !important;
}

/* Hover */
.home4_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

/* ---------- Reveal ---------- */
.reveal_item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.home_section4.is_visible .reveal_item {
    opacity: 1;
    transform: none;
}

.home_section4.is_visible .reveal_item:nth-child(1) {
    transition-delay: 0.1s;
}

.home_section4.is_visible .reveal_item:nth-child(2) {
    transition-delay: 0.25s;
}

.home_section4.is_visible .reveal_item:nth-child(3) {
    transition-delay: 0.4s;
}

/* ================= HOME SECTION 5 ================= */

.home_section5 {
    padding-block: clamp(120px, 16vh, 200px);
    /*background: linear-gradient(120deg, #eef4fb, #f6f9ff);*/
    background: transparent;
    padding-top: 0;
}

/* Title */
.home5_title {
    /*text-align: center;*/
    /*font-size: clamp(20px, 2vw, 26px);*/
    /*letter-spacing: 0.08em;*/
    /*color: #2b2f78;*/
    /*margin-bottom: clamp(60px, 8vh, 100px);*/
    text-align: center;
    font-size: clamp(20px, calc(17px + 0.9375vw), 35px);
    /* letter-spacing: 0.08em; */
    color: #282560;
    font-family: 'Lemon/Milk Regular' !important;
    font-weight: 300;
    margin-bottom: clamp(60px, 8vh, 100px);
}

/* Grid */
.home5_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*gap: clamp(24px, 3vw, 48px);*/
    gap: clamp(20px, calc(18.75px + 2.4375vw), 66px);
}

/* Card */
.home5_card {
    position: relative;
    border-top-left-radius: 22px;
    overflow: hidden;
    aspect-ratio: 3 / 5;
    background: #fff;
}

/* Animated orange/white background */
.home5_bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            #ffffff 0%,
            #ffffff 55%,
            #f26a1b 55%,
            #f26a1b 100%);
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}

/* Image */
.home5_card img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(5%);
    transition: transform 0.6s ease, filter 0.6s ease;
        scale: 1.01;
}
/*.home5_card h3 {*/
/*    z-index: 10;*/
/*    position: relative;*/
/*    color: #e45e1b;*/
/*    padding: 20px;*/
/*    text-shadow: 0 0 11px #000;*/
/*    font-size: 150%;*/
/*    text-align: center;*/
/*    transition: all 0.5s;*/
/*}*/

/* Reveal state */
.home_section5.is_visible .home5_bg {
    transform: translateY(0);
}

/* Continuous subtle motion (after reveal) */
.home_section5.is_visible .home5_bg {
    animation: bgFloat 6s ease-in-out infinite;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Hover polish */
.home5_card:hover img {
    transform: scale(1.03);
    filter: grayscale(0);
}
.home5_card:hover h3 {
    transform: translateY(-100%);
}

/* CTA */
.home5_link {
    display: block;
    width: fit-content;
    margin: clamp(60px, 8vh, 100px) auto 0;
    font-size: 14px;
    color: #2b2f78;
    border-bottom: 1px solid currentColor;
}

/* ---------- Reveal ---------- */
.reveal_item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.home_section5.is_visible .reveal_item {
    opacity: 1;
    transform: none;
}

.home_section5.is_visible .reveal_item:nth-child(1) {
    transition-delay: 0.1s;
}

.home_section5.is_visible .reveal_item:nth-child(2) {
    transition-delay: 0.25s;
}

.home_section5.is_visible .reveal_item:nth-child(3) {
    transition-delay: 0.4s;
}

.home_section5.is_visible .reveal_item:nth-child(4) {
    transition-delay: 0.55s;
}


/* ================= FOOTER ================= */

.site_footer {
  position: relative;
  padding-block: clamp(40px, 6vh, 60px);
  /*background: radial-gradient(*/
  /*  circle at right,*/
  /*  #0c1a4a,*/
  /*  #050b2a*/
  /*);*/
  
  color: rgba(255,255,255,0.85);
  overflow: hidden;
      background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Layout */
.site_footer .content_starts {
  gap: clamp(40px, 6vw, 120px);
}

.foot_content {
    width: clamp(400px, calc(337.5px + 53.6458vw), 1370px);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.footer_right {
    width: 33%;
}

/* Logo */
.footer_logo {
  /*width: clamp(120px, 14vw, 180px);*/
  width: clamp(100px, calc(83.75px + 2.65625vw), 134px);
  margin-bottom: 20px;
}

/* Text */
.footer_company {
  /*font-size: clamp(14px, 1vw, 16px);*/
  font-size: clamp(15px, calc(13.75px + 0.390625vw), 20px);
  margin-bottom: 20px;
}

.footer_address span {
  /*font-size: 13px;*/
  font-size: clamp(14px, calc(13.25px + 0.3125vw), 18px);
  
}

.footer_address p {
  /*font-size: clamp(13px, 0.95vw, 15px);*/
  font-size: clamp(14px, calc(13.25px + 0.3125vw), 18px);
  line-height: 1.5;
  opacity: 0.7;
}

/* Links */
.footer_links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.footer_links li {
  margin-bottom: 10px;
}

.footer_links a {
  color: #fff;
  /*font-size: clamp(14px, 1vw, 16px);*/
  font-size: clamp(15px, calc(13.75px + 0.390625vw), 20px);
  position: relative;
}

.footer_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer_links a:hover::after {
  width: 100%;
}

/* Contact */
.footer_contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer_contact span {
  
  font-size: clamp(14px, calc(13.25px + 0.3125vw), 18px);
}
.footer_contact a {
  font-size: clamp(14px, calc(13.25px + 0.3125vw), 18px);
  opacity: 0.7;
      white-space: nowrap;
}

/* Social */
.footer_social {
  display: flex;
  gap: 16px;
  /*margin-top: 20px;*/
}

.footer_social a {
  width: 36px;
  height: 36px;
  /*border: 1px solid rgba(255,255,255,0.4);*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer_social a:hover {
  /*background: #fff;*/
  fill: #050b2a;
  transform: translateY(-3px);
}
.footer_social a svg {
  fill: #fff;
}

/* UAV Line Art */
/*.footer_uav {*/
/*  left: 10%;*/
/*  bottom: clamp(60px, 8vh, 100px);*/
/*  width: 260px;*/
/*  height: 80px;*/
/*  background: url("../img/footer_plane.png") no-repeat center;*/
/*  background-size: contain;*/
  /*opacity: 0.35;*/

/*  animation: uavDrift 14s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;*/
  animation-play-state: paused; /* ⬅️ paused initially */
/*  will-change: transform;*/
/*}*/

/* Active when visible */
.footer_uav.animate {
  animation-play-state: running;
}
.fc_cs_2 {
  border-bottom: 1px solid #fff;
}

.fc_cs_2 .foot_content {
  align-items: center;
  padding-top: 40px;
}

/* Smooth floating UAV animation */
/*@keyframes uavDrift {*/
/*  0% {*/
/*    transform: translate(0, -30px) rotate(0deg);*/
/*    opacity: 0;*/
/*  }*/
/*   5% {*/
/*    transform: translate(0, -30px) rotate(0deg);*/
/*    opacity: .03;*/
/*  }*/
/*   90% {*/
/*    transform: translate(20vw, 0) rotate(.5deg);*/
/*    opacity: .8;*/
/*  }*/
  
/*  100% {*/
/*    transform: translate(20vw, 0) rotate(.5deg);*/
/*    opacity: .03;*/
/*  }*/
/*}*/



/* UAV Line Art */
.footer_uav {
  left: 10%;
  bottom: clamp(60px, 8vh, 100px);
  width: 260px;
  height: 80px;
  will-change: transform;
  background: url(../img/footer_plane.png) center center / contain no-repeat;
 animation: uavDrift 8s linear infinite;
}

/* Active when visible */
.footer_uav.animate {
  animation-play-state: running;
}

/* Smooth floating UAV animation */
@keyframes uavDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  10% {
    transform: translate(2.8vw, 0) rotate(0.05deg);
    opacity: 0.9;
  }

  40% {
    transform: translate(11.2vw, -1px) rotate(0.2deg);
    opacity: 0.8;
  }

  70% {
    transform: translate(19.6vw, 1px) rotate(0.35deg);
    opacity: 0.5;
  }

  100% {
    transform: translate(28vw, 0) rotate(0.5deg);
    opacity: 0;
  }
}










/* Bottom bar */
.footer_bottom {
  text-align: center;
  font-size: 16px;
  opacity: 0.5;
  margin-top: clamp(40px, 6vh, 60px);
}

/* ---------- Reveal ---------- */
.reveal_item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.site_footer.is_visible .reveal_item {
  opacity: 1;
  transform: none;
}

.site_footer.is_visible .reveal_item:nth-child(1) {
  transition-delay: 0.1s;
}
.site_footer.is_visible .reveal_item:nth-child(2) {
  transition-delay: 0.25s;
}


/* ============================================================== About Us Page CSS ============================================================== */
/* ============================================================== About Us Page CSS ============================================================== */
/* ============================================================== About Us Page CSS ============================================================== */
.about_section1 {
        height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 130px;
}

.about_section2 h1.hero_heading {
    /*max-width: 34ch;*/
    margin-bottom: clamp(32px, 5vh, 56px);
    text-shadow: none;
    font-weight: 700;
}
.about_section2 p:not(.home2_para) {
    font-size: clamp(14px, 1.2vw, 18px);
    color: #1f234f;
    font-weight: 500;
}
.about_section2 p.home2_para {
    font-size: clamp(18px, calc(1.0625vw + 14.6px), 35px);
    font-weight: 300;
}

.about_section2_bimg {
    padding-top: clamp(80px, 12vh, 160px);
    width: 100%;
    display: block;
}


.about_section3 {
    padding-top: 0;
}
.about_section3 h2 {
    text-align: center;
        margin-bottom: clamp(32px, 5vh, 56px);
        text-transform: uppercase;
        color: #282560;
}

.vm_plane_parent {
    display: grid;
    /*grid-template-columns: 10fr 12fr;*/
    grid-template-columns: 3fr 5fr 12fr;
    gap: 30px;
    margin-bottom: clamp(32px, 5vh, 56px);
    background-size: 32% 100%;
    background-repeat: no-repeat;
    background-position: 15% 0;
}
.vm_plane_parent p, .vm_plane_parent li {
        font-size: clamp(14px, 1.2vw, 18px);
    color: #000;
    font-weight: 500;
}
.vm_plane_parent h3 {
    font-size: clamp(17px, 1.325vw, 26px);
    color: #282560;
    font-weight: 500;
}
.vm_plane_parent ul {
    list-style: none;
    padding: 0;
}
.vm_plane_parent li {
     display: flex;
         align-items: start;
             margin-bottom: 15px;
}
.vm_plane_parent li::before {
    content: "";
    background-image: url('../img/ab_sec3_bullet.webp');
        width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 20px;
    margin-right: 8px;
    margin-top: 4px;
}
.about_section3_cntnt {
    padding: clamp(32px, 5vh, 56px);
    position: relative;
}
.about_section3_cntnt::before {
    content: "";
        width: clamp(32px, 5vh, 56px);
    height: clamp(32px, 5vh, 56px);
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 2px solid #2b2f78;
    border-left: 2px solid #2b2f78;
}
.about_section3_cntnt::after {
    content: "";
        width: clamp(32px, 5vh, 56px);
    height: clamp(32px, 5vh, 56px);
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
    border-top: 2px solid #2b2f78;
    border-right: 2px solid #2b2f78;
}
.about_section3_cntnt .as3_help::before {
    content: "";
        width: clamp(32px, 5vh, 56px);
    height: clamp(32px, 5vh, 56px);
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #2b2f78;
    border-left: 2px solid #2b2f78;
}
.about_section3_cntnt .as3_help::after {
    content: "";
        width: clamp(32px, 5vh, 56px);
    height: clamp(32px, 5vh, 56px);
    background: transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #2b2f78;
    border-right: 2px solid #2b2f78;
}
/*.as3_plane {*/
/*  height: 85%;*/
/*  aspect-ratio: 1 / 1;*/
/*  position: absolute;*/
/*  background-size: contain;*/
/*  background-repeat: no-repeat;*/
/*  background-position: bottom left;*/
/*  left: clamp(-128px, -20vh, -224px);*/
/*  bottom: clamp(-128px, -20vh, -224px);*/
/*  z-index: -1;*/

  /*opacity: 0;*/
/*  animation: airplaneFly 18s cubic-bezier(0.4, 0, 0.2, 1) infinite;*/
/*  will-change: transform, opacity;*/
/*}*/

/* ✈️ Cinematic Airplane Flight */
/*@keyframes airplaneFly {*/

  /* Plane appears & takes off */
/*  0% {*/
/*    transform: translate(0, 0) scale(0.85);*/
/*    opacity: 0;*/
/*  }*/

/*  100% {*/
/*    transform: translate(5vw, -6vh) scale(1);*/
/*    opacity: 0.95;*/
/*  }*/

/*}*/




.as3_plane {
    /* Responsive sizing based on your layout */
    width: clamp(280px, 35vw, 550px);
    height: clamp(180px, 25vw, 400px);
    
    background-size: contain;
    background-repeat: no-repeat;
    /*background-position: center;*/
    
    /* Position adjustments to ensure it stays in place */
    position: absolute;
    bottom: -5%;
    left: 0%;
    z-index: 2;

    /* Performance optimization for mobile */
    will-change: transform;
    
    /* The Animation Trigger */
    animation: uavGlide 7s ease-in-out infinite;
}

/* 2. The "Banking Glide" Animation */
@keyframes uavGlide {
    0%, 100% {
        /* Starting position: Natural */
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        /* Slight lift and "banking" (tilt) to the right */
        transform: translate(20px, -25px) rotate(1.8deg);
    }
    66% {
        /* Gentle dip and tilt to the left */
        transform: translate(-10px, -10px) rotate(-1deg);
    }
}

/* 3. Mobile Responsiveness */
@media (max-width: 768px) {
    .as3_plane {
        /* Simplify the movement on mobile to prevent text overlap */
        animation: uavGlideMobile 5s ease-in-out infinite;
    width: clamp(280px, 35vw, 550px);
    height: clamp(328px, 25vw, 400px);
    background-size: contain;
    background-repeat: no-repeat;
    /* background-position: center; */
    position: absolute;
    bottom: -22%;
    left: -12%;
    z-index: 2;
    will-change: transform;
}

@keyframes uavGlideMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

}


.leader_section3 .plane_wrapper {
    position: absolute;
    top: 40px;
    left: 50%;
}

@media (max-width: 999px) {
    .leader_section3 .plane_wrapper {
        max-height: 100%;
    }
        .leader_section3 {
        background-position: center clamp(0px, 8vh, 90px);
    }
    .plane_wrapper {
        position: absolute;
        top: 5px !important;
        left: 50%;
    }
        section#home_section4 {
        padding-top: 90px;
    }
}


/* ============================================================== About Us Page CSS ============================================================== */
/* ============================================================== About Us Page CSS ============================================================== */
/* ============================================================== About Us Page CSS ============================================================== */


/* ============================================================== Capabilities Page CSS ============================================================== */
/* ============================================================== Capabilities Page CSS ============================================================== */
/* ============================================================== Capabilities Page CSS ============================================================== */
.uav_caps_parent {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr;
    gap: 6%;
}
.uav_caps_cont {
    display: grid;
    gap: 24px;
}
.uav_caps_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.uav_caps_cont:first-child .uav_caps_item {
    justify-content: flex-end;
    text-align: right;
}

.uav_caps_cont:last-child .uav_caps_item {
    justify-content: flex-start;
    text-align: left;
}


.uav_caps_item p {
    margin: 0;
            font-weight: 400 !important;
    font-size: clamp(18px, calc(0.65vw + 14.6px), 26px) !important;
}
.uav_caps_item img {
    max-height: 60px;
    /*background: #000;*/
}
.uav_caps_img {
    border: 10px solid #2b2f78;
    aspect-ratio: 9 / 16;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.uav_caps_img img {
    scale: 2;
    z-index: 2;
}
.uav_caps_img::before {
    content: "";
    position: absolute;
    top: 12%;
    left: -11px;
    width: 12px;
    height: 25%;
    background: #eff2fc;
    z-index: 0;
}

.uav_caps_img::after {
    content: "";
    position: absolute;
    bottom: 12%;
    right: -11px;
    width: 12px;
    height: 25%;
    background: #eff2fc;
    z-index: 0;
}
.cap_section1 {
    padding-bottom: 0;
}

.cap_section2 {
    background-size: cover;
    background-position: center;
        background-position: 0 -50%;
    /*z-index: 0;*/
}
.cap_section2 .hero_gradient_strip {
    margin-top: 0;
    /*margin-bottom: auto;*/
}
.cap_section2 .home4_cards {
    grid-template-columns: repeat(4, 1fr);
}
.cap_section2 .home4_card h3 {
        margin: 0;
    padding: 30px;
    background: #2b2f78;
    color: #fff;
    font-size: clamp(14px, calc(13.2px + 0.25vw), 18px);
    height: calc(1.4em * 2 + 60px);
    align-items: center;
    display: flex;
}
.cap_section2 .home4_card ul {
    margin-top: 30px;
}

/* ============================================================== Capabilities Page CSS ============================================================== */
/* ============================================================== Capabilities Page CSS ============================================================== */
/* ============================================================== Capabilities Page CSS ============================================================== */

/* ============================================================== Leadership Page CSS ============================================================== */
/* ============================================================== Leadership Page CSS ============================================================== */
/* ============================================================== Leadership Page CSS ============================================================== */
.leaders_parent {
        display: grid;
    gap: 30px;
    margin-top: clamp(32px, 5vh, 56px);
}
.leaders_grid {
    align-items: end;
    display: flex;
    gap: 30px;
}
.leaders_grid.lg_right {
    flex-direction: row-reverse;
}
.leaders_grid img {
    width: 25%;
    border-top-left-radius: 30px;
}
.lg_left {
    text-align: left;
}
.lg_right {
    text-align: right;
}
.leaders_grid .leader_content {
    display: grid;
    gap: 8px;
}
.leaders_grid p:not(.lg_desig):not(.home2_para) {
        font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 2.1 !important;
    margin-top: 20px;
    max-width: 58ch;
}

.leaders_grid p.lg_desig {
        font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    /*margin-top: 20px;*/
    opacity: 0.7;
    color: #000000;
}
.leaders_grid p.home2_para {
    margin: 0;
    font-weight: 600;
}

.leader_section3 .home4_cards {
    grid-template-columns: repeat(2, 1fr);
}
.leader_section3 .home4_cards {
    grid-template-columns: repeat(2, 1fr);
}
.ls3_hcsp2 {
        grid-column: span 2;
}
.leader_section3 .home4_card {
    flex-direction: row;
    max-height: 400px;
        align-items: center;
}
.leader_section3 .home4_card h3 {
    margin: 0;
    padding: 30px;
    background: #2b2f78;
    color: #fff;
        writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-top-left-radius: 22px;
    border-bottom-right-radius: 22px;
    text-align: center;
    height: 100%;
}
.leader_section3 .home4_card ul, .leader_section3 .home4_card p {
    margin: 13px;
}
.home4_card p strong {
    margin-top: 37px;
    display: block;
}
.leader_section2 .home2_content {
    background-size: contain;
    background-position: center;
        background-repeat: no-repeat;
}
.leader_section3 {
    background-size: contain;
    /*background-position: center;*/
    background-position: center clamp(60px, 8vh, 90px);
        background-repeat: no-repeat;
}
/* ============================================================== Leadership Page CSS ============================================================== */
/* ============================================================== Leadership Page CSS ============================================================== */
/* ============================================================== Leadership Page CSS ============================================================== */


/* ============================================================== Contact Page CSS ============================================================== */
/* ============================================================== Contact Page CSS ============================================================== */
/* ============================================================== Contact Page CSS ============================================================== */
.cw_grid {
    display: grid;
    margin-bottom: 20px;
    width: 100%;
}
.cw_flex {
    gap: 20px;
}
    .contact_parent {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.contact_form {
    background: #D3E9F6;
    border-radius: 30px;
    padding: 40px;
    /*max-width: calc(100% - 80px);*/
}

.contact_form input, .contact_form textarea {
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: #999999;
}
.contact_form input[type="submit"] {
    background: #2b2f78;
    color: #fff;
    cursor: pointer;
}
.home2_content p.reveal_item{
    font-weight: 300;
}

.contact_side {
    display: grid;
    align-content: space-between;
        gap: 30px;
}
.contact_side p {
    font-size: clamp(14px, calc(0.6875vw + 11.8px), 25px) !important;
    color: #282560 !important;
}
.contact_side p.cad_head {
        font-size: clamp(14px, calc(0.6875vw + 11.8px), 25px) !important;
        color: #000000 !important;
        font-weight: 400;
}
.contact_side p.cad_text {
        font-size: clamp(14px, 1.2vw, 18px) !important;
        color: #000000 !important;
        font-weight: 400;
}
.contact_side img {
        width: 65px;
}
.contact_sec2 {
    background-size: cover;
    background-repeat: no-repeat;
}
/* ============================================================== Contact Page CSS ============================================================== */
/* ============================================================== Contact Page CSS ============================================================== */
/* ============================================================== Contact Page CSS ============================================================== */


/* ============================================================== MAC Corrections ============================================================== */
.is-mac .home4_card li::before {
    content: "→" !important;
}
.is-mac .scroll_down {
    visibility: hidden;
}
.is-mac .scroll_down::before {
    /*content: "";*/
    content: "↓";
    visibility: visible;
}
/* ============================================================== MAC Corrections ============================================================== */

.leader_section3, .cap_section2 {
    padding-bottom: clamp(80px, 10vh, 120px);
}
.leader_section3 .main_cta, .cap_section2 .main_cta {
    padding-top: clamp(80px, 10vh, 120px);
    margin: 0;
}
.lh_167 {
        line-height: 1.67 !important;
}
.fw_rg400 {
        font-weight: 400 !important;
}
.contact_side p.reveal_item {
    line-height: 2 !important;
}
.cap_section1 h1 {
    font-size: clamp(24px, 3.1vw, 50px);
}
.four_photo h3 {
        font-size: clamp(16px, 1.5vw, 22px);
    color: #282560;
    padding-top: 12px;
}
.four_photo p {
        font-size: clamp(14px, 1.2vw, 18px);
}
.plane_wrapper {
    max-height: clamp(160px, 20vh, 240px);
    overflow: hidden;
    aspect-ratio: 283 / 144;
}
.home6_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}
.home6_grid .three_photo img {
    max-width: 300px;
    width: 100%;
}
.footer_address p {
    display: flex;
    gap: 8px;
    align-items: center;
}
.footer_address p::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: #fff; /* icon color */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M128 252.6C128 148.4 214 64 320 64C426 64 512 148.4 512 252.6C512 371.9 391.8 514.9 341.6 569.4C329.8 582.2 310.1 582.2 298.3 569.4C248.1 514.9 127.9 371.9 127.9 252.6zM320 320C355.3 320 384 291.3 384 256C384 220.7 355.3 192 320 192C284.7 192 256 220.7 256 256C256 291.3 284.7 320 320 320z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/*.home_section2, .home_section3 {*/
/*    background: #00A8E81A;*/
/*}*/



@media (max-width: 1612px) {
    .home2_points {grid-template-columns: 1fr 1fr 1fr;}
}
@media (max-width: 1300px) {
    .cap_section2 .home4_cards {grid-template-columns: repeat(3, 1fr);}
    .contact_parent {grid-template-columns: 1fr;}
/*    .home6_grid {*/
/*    grid-template-columns: 1fr 1fr;*/
/*}*/
}

/* ================= RESPONSIVE - 960 ================= */

@media (max-width: 960px) {
    .menu_toggle {
        display: flex;
    }
     
.plane_wrapper {
    max-height: 85px;
}

.home_section3, .home_section4, .home_section5, .home_section2, .home_section1 {
    padding: 60px 0;
}
/*.scroll_down, .home4_card li::before {*/
/*    font-family: sans-serif !important;*/
/*}*/
.home4_card li::before {
    content: "→";
}

button#scrollDown {
    display: none;
}
button#scrollDown::before {
    content: "↓";
}

    .header_nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 78%;
        height: 100vh;
        background: #fff;
        padding: 30px;
        padding-top: 100px;
        
        width: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s;
    }
    .header_nav ul {
    display: grid;
    text-align: center;
    gap: 28px;
}
.header_nav a {
    font-size: 24px;
    padding: 14px 0;
}
.menu_toggle.active span {
    transition: all 0.3s;
}
.header_nav.active {
        width: 78%;
        padding: 30px;
        padding-top: 100px;
    }
    .menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}
.menu_toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -6px);
}
.menu_toggle.active span:nth-child(3) {
    display: none;
}

    .home_section1 {height: 60vh;}
    .home2_points {display: flex;}
    .jet_wrapper {top: 0;}
    .home3_content {display: grid;gap: 30px;}
    .home3_right {grid-template-rows: repeat(1, 1fr);}
    .gr_s2, .gr_s3 {grid-row: span 1;}
    
    .home5_grid {
        grid-template-columns: 1fr;
    }
    .home5_card {
    max-width: 200px;
    margin: auto;
}
    
    .foot_content {display: grid;gap: 30px;}
    .fc_cs_2 .foot_content {padding: 0;gap: 0;}
    .footer_social a {width: 100px;height: 100px;}
    .footer_bottom {margin-top: 30px;}
     .footer_uav {
    display: none;
  }
  
  
  
  
  
  .vpi_mh {display: none;}
  .vm_plane_parent {grid-template-columns: 1fr;}
  .about_section3_cntnt {padding-left: 0;padding-right: 0;}
  .as3_plane {max-width: 100%;}
  
  
  
  .uav_caps_parent {grid-template-columns: 1fr;}
  /*.uav_caps_item {justify-content: center !important;}*/
  .uav_caps_cont:first-child .uav_caps_item {
    flex-direction: row-reverse;
    justify-content: start !important;
    text-align: left;
}
.uav_caps_img {display: none;}
  .uav_caps_img {max-width: 40vw;margin: auto;}
  .cap_section2 .home4_cards {grid-template-columns: 1fr;}
  .uav_caps_item img {
    max-height: 40px;
}
  
  
  
  .leaders_grid, .leaders_grid .leader_content {display: initial;}
  .lg_left.leaders_grid img {float: left;margin: 20px;margin-top: 0;}
  .lg_right.leaders_grid img {float: right;margin: 20px;margin-top: 0;}
  .leaders_grid p:not(.lg_desig):not(.home2_para) {line-height: 1.6 !important;}
  .leaders_grid p.lg_desig {margin: 0;}
  .leader_section3 .home4_cards {grid-template-columns: 1fr;}
  .ls3_hcsp2 {grid-column: span 1;}
  .leader_section3 .home4_card {flex-direction: column;max-height: none;}
  .leader_section3 .home4_card h3 {writing-mode: unset;transform: none;width: 100%;}
  
  
  .contact_parent {
    grid-template-columns: 1fr;
}
.contact_form {
    /*max-width: calc(100% - 80px);*/
    overflow: hidden;
}
.cw_flex {
    gap: 0;
    flex-direction: column;
}
.contact_side img {
    width: 40px;
}
.footer_social a svg {
    width: 40px;
    height: 40px;
}
  
  .home_section1 .hero_heading {
    -webkit-text-stroke: 0.1px #ffffff80;
    font-weight: 900;
}
.about_section1 {height: calc(50vh - 130px);}
    .header_nav a {padding-bottom: 4px;}
    .header_nav a.active {font-weight: 900;}
  
  .cap_section2 .home4_cards {
    gap: 30px;
}
  .cap_section2 .home4_card h3 {
    height: auto;
}
.four_photo {
        max-width: 200px;
        margin: auto;
}

    .vm_plane_parent {
        gap: 12px;
    }
.vm_plane_parent h3 {
    margin-top: 20px;
}
.home6_grid {
    grid-template-columns: 1fr;
    gap: 80px;
}
.leaders_grid p:not(.lg_desig):not(.home2_para) {
    max-width: none;
}

}



/* ================= RESPONSIVE - 900 ================= */

@media (max-width: 900px) {
    .content_starts {
        /*flex-direction: column;*/
        gap: 60px;
    }

    .home3_left,
    .home3_right {
        width: 100%;
    }


 .home3_right {
        grid-template-rows: 1fr 1fr;
    }
    
   .home3_content.w_flex.jc_spaceb.aitem_e
 {
    display: flex;
    flex-direction: column;
       gap: 30px;
}

    .jet_wrapper {
        top: 00px;
    }
.home3_left {
    max-width: none;
}

      .home4_cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .home4_card img {
    aspect-ratio: 21 / 10;
}
.home2_points {
    grid-template-columns: 1fr 1fr;
}

       .home5_grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .site_footer .content_starts {
    flex-direction: column;
  }

  /*.footer_uav {*/
  /*  display: none;*/
  /*}*/
 .foot_content {
  width: clamp(400px, calc(206px + 60.625vw), 1370px);
}
  
  
  .cap_section2 .home4_cards {
    grid-template-columns: repeat(2, 1fr);
}
}

/* ================= RESPONSIVE - 768 ================= */

@media (max-width: 768px) {
    .home2_points {
        flex-direction: column;
        gap: 16px;
    }

    .home2_cta {
        justify-content: flex-start;
    }
        .home4_cards {
        grid-template-columns: 1fr;
    }
      .home5_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= RESPONSIVE - 580 ================= */
@media (max-width: 580px) {
    
    .home_section3, .home_section4, .home_section5, .home_section2, .home_section1 {
    padding: 60px 0;
}
/*.scroll_down, .home4_card li::before {*/
/*    font-family: sans-serif !important;*/
/*}*/
.home4_card li::before {
    content: "→";
}

button#scrollDown {
    display: none;
}
button#scrollDown::before {
    content: "↓";
}

    .header_nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 78%;
        height: 100vh;
        background: #fff;
        padding: 30px;
        padding-top: 100px;
        
        width: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s;
    }
    .header_nav ul {
    display: grid;
    text-align: center;
    gap: 28px;
}
.header_nav a {
    font-size: 24px;
    padding: 14px 0;
}
.menu_toggle.active span {
    transition: all 0.3s;
}
.header_nav.active {
        width: 78%;
        padding: 30px;
        padding-top: 100px;
    }
    .menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}
.menu_toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -6px);
}
.menu_toggle.active span:nth-child(3) {
    display: none;
}

    .home_section1 {height: 60vh;}
    .home2_points {display: flex;}
    .jet_wrapper {top: 0;}
    .home3_content {display: grid;gap: 30px;}
    .home3_right {grid-template-rows: repeat(1, 1fr);}
    .gr_s2, .gr_s3 {grid-row: span 1;}
    
    .home5_grid {
        grid-template-columns: 1fr;
    }
    .home5_card {
    max-width: 200px;
    margin: auto;
}
    
    .foot_content {display: grid;gap: 30px;}
    .fc_cs_2 .foot_content {padding: 0;gap: 0;}
    .footer_social a {width: 100px;height: 100px;}
    .footer_bottom {margin-top: 30px;}
     .footer_uav {
    display: none;
  }
  
  
  
  
  
  .vpi_mh {display: none;}
  .vm_plane_parent {grid-template-columns: 1fr;}
  .about_section3_cntnt {padding-left: 0;padding-right: 0;}
  .as3_plane {max-width: 100%;}
  
  
  
  .uav_caps_parent {grid-template-columns: 1fr;}
  /*.uav_caps_item {justify-content: center !important;}*/
  .uav_caps_cont:first-child .uav_caps_item {
    flex-direction: row-reverse;
    justify-content: start !important;
    text-align: left;
}
.uav_caps_img {display: none;}
  .uav_caps_img {max-width: 40vw;margin: auto;}
  .cap_section2 .home4_cards {grid-template-columns: 1fr;}
  .uav_caps_item img {
    max-height: 40px;
}
  
  
  
  .leaders_grid, .leaders_grid .leader_content {display: initial;}
  .lg_left.leaders_grid img {float: left;margin: 20px;margin-top: 0;}
  .lg_right.leaders_grid img {float: right;margin: 20px;margin-top: 0;}
  .leaders_grid p:not(.lg_desig):not(.home2_para) {line-height: 1.6 !important;}
  .leaders_grid p.lg_desig {margin: 0;}
  .leader_section3 .home4_cards {grid-template-columns: 1fr;}
  .ls3_hcsp2 {grid-column: span 1;}
  .leader_section3 .home4_card {flex-direction: column;max-height: none;}
  .leader_section3 .home4_card h3 {writing-mode: unset;transform: none;width: 100%;}
  
  
  .contact_parent {
    grid-template-columns: 1fr;
}
.contact_form {
    /*max-width: calc(100% - 80px);*/
    overflow: hidden;
}
.cw_flex {
    gap: 0;
    flex-direction: column;
}
.contact_side img {
    width: 40px;
}
.footer_social a svg {
    width: 40px;
    height: 40px;
}
  
  .home_section1 .hero_heading {
    -webkit-text-stroke: 0.1px #ffffff80;
    font-weight: 900;
}
.about_section1 {height: calc(40vh - 130px);}
    .header_nav a {padding-bottom: 4px;}
    .header_nav a.active {font-weight: 900;}
  
  .cap_section2 .home4_cards {
    gap: 30px;
}
  .cap_section2 .home4_card h3 {
    height: auto;
}
.four_photo {
        max-width: 200px;
        margin: auto;
}

    .vm_plane_parent {
        gap: 12px;
    }
.vm_plane_parent h3 {
    margin-top: 20px;
}
.home6_grid {
    grid-template-columns: 1fr;
    gap: 80px;
}





  
}