/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    --deep-blue: #0F1F3A;
    --sky-blue: #0B5CAD;
    --white: #FFFDF8;
    --flag-white: #FFFFFF;
    --silver: #D4DCE5;
    --light-bg: #EFF3F8;
    --text-dark: #172338;
    --saffron: #FF9933;
    --india-green: #138808;
    --chakra-blue: #1A3C8D;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-hero: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #fcfbf7 0%, #f7f8fb 45%, #eef2f7 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
.btn {
    overflow-wrap: anywhere;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    font-family: var(--font-display);
}

p {
    color: #526177;
}

.logo,
.nav-links a,
.btn,
.section-header h2,
.project-content h3,
.rd-text h3,
.widget h4,
.contact-form-title,
.page-header h1,
.footer-brand {
    font-family: var(--font-display);
}

.tech-tag {
    font-family: monospace;
    color: var(--sky-blue);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.about-grid>*,
.projects-grid>*,
.rd-content>*,
.blog-layout>*,
.blog-grid>*,
.contact-layout>*,
.team-grid>* {
    min-width: 0;
}

/* Helpers */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    /* Sharp corners for defense-grade */
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.7px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--chakra-blue) 0%, #083a73 100%);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(11, 92, 173, 0.22);
    border: 1px solid rgba(11, 92, 173, 0.58);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--sky-blue);
    box-shadow: 0 0 0 1px rgba(11, 92, 173, 0.24), inset 0 0 10px rgba(11, 92, 173, 0.18);
}

/* =========================================
   NAVIGATION
   ========================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 1.05rem 0;
    z-index: 100;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(15, 31, 58, 0.94);
    padding: 0.85rem 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--sky-blue);
}

.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 0.2rem 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    background: var(--sky-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--sky-blue);
}

.nav-links a:hover::after,
.nav-links a[style*="var(--sky-blue)"]::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 153, 51, 0.14), transparent 22%),
        radial-gradient(circle at 82% 78%, rgba(19, 136, 8, 0.12), transparent 24%),
        linear-gradient(180deg, #081224 0%, #0f1f3a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
    text-align: center;
    color: var(--sky-blue);
}

.loader-logo {
    width: min(300px, 72vw);
    margin: 0 auto 14px;
    filter: drop-shadow(0 0 12px rgba(11, 92, 173, 0.28));
}

.loader-content i {
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--sky-blue);
}

.progress-bar-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--flag-white) 50%, var(--india-green) 100%);
    box-shadow: 0 0 10px rgba(11, 92, 173, 0.45);
    transition: width 0.1s linear;
}

.loader-content p {
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--silver);
    margin: 0;
}

/* =========================================
   HERO SECTION & 3D BACKGROUND
   ========================================= */
.hero {
    height: auto;
    min-height: 1005vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: transparent;
    /* Changed from deep-blue */
    overflow: hidden;
    padding: 7.75rem 0 4rem;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Placed completely behind the content */
    pointer-events: none;
    /* Allows scrolling and clicking on content */
}

#canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(15, 31, 58, 0.52) 0%, rgba(15, 31, 58, 0.14) 52%, rgba(9, 18, 36, 0.58) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Technical scanning line effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 153, 51, 0.52);
    z-index: 3;
    animation: scan 10s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: 0;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 920px;
    padding: 0 20px;
    display: block;
}

.hero-copy,
.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(6, 14, 29, 0.24);
    backdrop-filter: blur(4px);
}

.hero-copy {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 1.75rem 1.7rem;
    background: rgba(12, 25, 48, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 36px rgba(6, 14, 29, 0.18);
}

.hero-copy-simple {
    max-width: 780px;
    padding: 1.35rem 1.5rem;
    background: transparent;
    border: 0;
    border-radius: 22px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    isolation: isolate;
}

.hero-copy-simple::before {
    display: none;
}

.hero-panel {
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(11, 24, 45, 0.82), rgba(15, 31, 58, 0.58));
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
    padding: 0.42rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: var(--font-hero);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: none;
    border-radius: 999px;
}

.hero h1 {
    color: #ffffff;
    font-family: var(--font-hero);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.hero-copy>p {
    max-width: 660px;
    margin-bottom: 1.45rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.05rem;
    letter-spacing: 0.4px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
    justify-content: center;
}

.hero-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.88rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-hero);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.hero-link-btn:hover {
    color: var(--white);
    border-color: var(--saffron);
    background: rgba(255, 153, 51, 0.12);
}


.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-trust-item {
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-family: var(--font-hero);
    font-size: 0.9rem;
}

.hero-trust-item span {
    color: var(--silver);
    font-size: 0.82rem;
    line-height: 1.55;
}

.hero-panel-header {
    margin-bottom: 1rem;
}

.hero-panel-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--saffron);
    font-family: var(--font-hero);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.hero-panel h3 {
    color: var(--white);
    font-family: var(--font-hero);
    font-size: 1.35rem;
    line-height: 1.35;
}

.hero-feature-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.hero-feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-feature-item i {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--saffron), var(--india-green));
    font-size: 0.9rem;
}

.hero-feature-item strong {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--white);
    font-family: var(--font-hero);
    font-size: 0.9rem;
}

.hero-feature-item span {
    color: var(--silver);
    font-size: 0.84rem;
    line-height: 1.55;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.hero-stat-card {
    padding: 0.75rem 0.7rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card span {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--saffron);
    font-family: var(--font-hero);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-stat-card strong {
    color: var(--white);
    font-family: var(--font-hero);
    font-size: 0.84rem;
    line-height: 1.45;
}

.particle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
    opacity: 0.8;
}

.scroll-indicator a:hover {
    color: var(--sky-blue);
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* HERO SLIDER */
.hero-slider-section {
    position: relative;
    min-height: clamp(70vh, 100vh, 120vh);
    height: clamp(75vh, 100vh, 120vh);
    overflow: hidden;
    background: #030714;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-section .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-section .hero-slider-caption {
    position: relative;
    z-index: 4;
    padding: 2rem 5%;
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
}

.hero-slider-section .hero-slider-caption h1 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-slider-section .hero-slider-caption p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-slider-section .hero-slider-caption .hero-kicker {
    font-size: 0.9rem;
    letter-spacing: 1.1px;
}

.hero-slider-section .hero-slider-caption .hero-tagline {
    color: var(--saffron);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.hero-slider-section .hero-slider-caption .hero-actions {
    justify-content: center;
    display: flex;
    gap: 0.75rem;
}

.hero-bg-swiper {
    width: 100%;
    height: 100%;
}

.hero-bg-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-bg-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 20, 0.75) 0%, rgba(3, 7, 20, 0.2) 40%, rgba(3, 7, 20, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-slider-section .hero-slider-pagination {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: var(--sky-blue);
}

/* RESPONSIVE PAGE HEADERS */
.page-header {
    min-height: clamp(280px, 42vh, 420px);
    padding: clamp(2rem, 5vw, 4.5rem) 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.page-header h1 {
    width: 100%;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-header p {
    width: 100%;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-top: 0.5rem;
    max-width: 780px;
}

@media (max-width: 1024px) {
    .hero-slider-section {
        min-height: 90vh;
        height: auto;
    }

    .hero-slider-section .hero-slider-caption {
        top: 0;
        padding: 1.8rem 4%;
    }

    .hero-slider-section .hero-slider-caption h1 {
        font-size: clamp(2.3rem, 5vw, 2.8rem);
    }

    .hero-slider-section .hero-slider-caption p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .hero-slider-section .hero-slider-caption {
        padding: 1.5rem 3%;
    }

    .hero-slider-section .hero-slider-caption h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero-slider-section .hero-slider-caption .hero-actions {
        flex-direction: column;
    }

    .hero-slider-section .hero-actions .btn,
    .hero-slider-section .hero-actions .hero-link-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider-section .hero-slider-caption h1 {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .hero-slider-section .hero-slider-caption p {
        font-size: 0.88rem;
    }

    .hero-slider-section .hero-slider-caption .hero-tagline {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 3%;
    }

    .page-header h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .page-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .page-header p {
        font-size: 0.9rem;
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background-color: var(--white);
    background-image:
        radial-gradient(circle at top left, rgba(255, 153, 51, 0.08), transparent 18%),
        radial-gradient(circle at bottom right, rgba(19, 136, 8, 0.08), transparent 18%),
        linear-gradient(var(--light-bg) 1px, transparent 1px),
        linear-gradient(90deg, var(--light-bg) 1px, transparent 1px);
    background-size: 30px 30px;
    /* Grid background for tech feel */
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--flag-white) 50%, var(--india-green) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.core-values-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.about-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.98) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(15, 31, 58, 0.1);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(15, 31, 58, 0.06);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--flag-white) 50%, var(--india-green) 100%);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 31, 58, 0.12);
}

.about-card:hover::before {
    width: 100%;
}

.about-card i {
    font-size: 2.5rem;
    color: var(--chakra-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.about-card:hover i {
    color: var(--india-green);
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-highlight {
    background: linear-gradient(180deg, rgba(11, 24, 45, 0.95), rgba(15, 31, 58, 0.9));
    color: var(--white);
    padding: 1.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 36px rgba(4, 14, 35, 0.42);
}

.about-highlight h3 {
    margin-bottom: 0.75rem;
    color: var(--saffron);
    font-size: 1.45rem;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.specialization-card {
    background: #ffffff;
    border: 1px solid rgba(15, 31, 58, 0.12);
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(10, 26, 58, 0.08);
    transition: var(--transition);
}

.specialization-card i {
    font-size: 2rem;
    color: var(--sky-blue);
    margin-bottom: 0.8rem;
}

.specialization-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.specialization-card:hover {
    transform: translateY(-4px);
    border-color: var(--sky-blue);
    box-shadow: 0 18px 34px rgba(10, 26, 58, 0.17);
}

.section-note {
    margin-top: 2rem;
    padding: 1.4rem 2rem;
    border-radius: 10px;
    background: rgba(15, 31, 58, 0.06);
    border: 1px solid rgba(15, 31, 58, 0.12);
    color: #3c4a68;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid rgba(15, 31, 58, 0.12);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(10, 26, 58, 0.08);
}

.info-card h3 {
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--deep-blue);
}

.info-card ul {
    list-style: none;
    padding-left: 0;
    color: #3b4564;
}

.info-card ul li {
    padding-left: 1.3rem;
    position: relative;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.usp-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 31, 58, 0.12);
    box-shadow: 0 10px 24px rgba(10, 26, 58, 0.08);
    transition: var(--transition);
}

.usp-card h3 {
    margin-bottom: 0.65rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.usp-card p {
    color: #505c78;
    line-height: 1.6;
}

.usp-card:hover {
    transform: translateY(-4px);
    border-color: var(--sky-blue);
}

.usp-footnote {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 31, 58, 0.12);
    background: rgba(19, 136, 8, 0.08);
    color: #2c3b20;
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.vertical-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 31, 58, 0.12);
    box-shadow: 0 10px 24px rgba(10, 26, 58, 0.08);
}

.vertical-card h3 {
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--deep-blue);
}

.vertical-card ul {
    list-style: none;
    padding-left: 0;
    color: #3b4564;
}

.vertical-card ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.vertical-card ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--saffron);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.tech-card {
    border-radius: 12px;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid rgba(15, 31, 58, 0.15);
    box-shadow: 0 10px 28px rgba(10, 26, 58, 0.08);
}

.tech-card h3 {
    margin-bottom: 0.8rem;
    color: var(--deep-blue);
}

.tech-card p {
    margin-bottom: 0.9rem;
    color: #405073;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.approach-step {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(15, 31, 58, 0.12);
    text-align: center;
    box-shadow: 0 10px 24px rgba(10, 26, 58, 0.1);
}

.approach-step span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sky-blue);
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.approach-step h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--deep-blue);
}

.roadmap-list {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 31, 58, 0.12);
    box-shadow: 0 10px 28px rgba(10, 26, 58, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.roadmap-list p {
    font-size: 1rem;
    color: #37435b;
    letter-spacing: 0.2px;
}

/* =========================================
   PROJECTS SECTION
   ========================================= */
.projects-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, rgba(250, 251, 253, 0.98) 24%, rgba(247, 248, 251, 0.98) 76%, rgba(19, 136, 8, 0.12) 100%);
}

.projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, transparent 18%, transparent 82%, rgba(19, 136, 8, 0.14) 100%),
        linear-gradient(90deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(19, 136, 8, 0.12) 100%),
        radial-gradient(circle at 12% 20%, rgba(255, 153, 51, 0.18), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(19, 136, 8, 0.16), transparent 30%);
    pointer-events: none;
}

.projects-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(26, 60, 141, 0.18);
    box-shadow:
        0 0 0 22px rgba(26, 60, 141, 0.06),
        0 0 0 44px rgba(26, 60, 141, 0.03);
    transform: translateY(-50%);
    opacity: 0.8;
    pointer-events: none;
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

.projects-section .section-header {
    padding: 1rem 1rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.98) 100%);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(15, 31, 58, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 14px 30px rgba(15, 31, 58, 0.08);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--flag-white) 50%, var(--india-green) 100%);
    z-index: 2;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 31, 58, 0.14);
    border-color: var(--sky-blue);
}

.project-img {
    height: 240px;
    background-color: #10213f;
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(80%);
}

.project-card:hover .project-img img {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
}

/* Product cards should show true image colors for model clarity */
.product-item .project-img img {
    opacity: 1;
    filter: none;
    object-fit: cover;
    object-position: center;
}

.project-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 26, 58, 0.9);
    color: var(--white);
    padding: 5px 10px;
    font-family: monospace;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 153, 51, 0.7);
}

.project-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content i {
    font-size: 2rem;
    color: var(--chakra-blue);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.project-card:hover .project-content i {
    color: var(--india-green);
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* =========================================
   R&D SECTION
   ========================================= */
.rd-section {
    background: linear-gradient(180deg, #fffdf8 0%, #f3f6fa 100%);
    border-top: 1px solid var(--silver);
}

.rd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rd-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
    text-transform: uppercase;
}

.rd-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.rd-list {
    list-style: none;
    margin-top: 2rem;
}

.rd-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem;
    border: 1px solid var(--light-bg);
    background: var(--white);
    transition: var(--transition);
}

.rd-list li:hover {
    border-color: var(--sky-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rd-list i {
    color: var(--sky-blue);
    margin-top: 3px;
    font-size: 1.4rem;
}

.rd-list strong {
    display: block;
    color: var(--deep-blue);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.rd-image {
    background:
        radial-gradient(circle at top left, rgba(255, 153, 51, 0.18), transparent 22%),
        radial-gradient(circle at bottom right, rgba(19, 136, 8, 0.14), transparent 24%),
        linear-gradient(135deg, #0d1d39 0%, #18345d 100%);
    height: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(10, 26, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 92, 173, 0.36);
}

.rd-image::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(255, 153, 51, 0.45);
    pointer-events: none;
}

.rd-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--sky-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.rd-image i {
    font-size: 6rem;
    color: var(--silver);
    z-index: 2;
    transition: var(--transition);
}

.rd-image:hover i {
    color: var(--sky-blue);
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(11, 92, 173, 0.3);
}

.rd-image .achievement-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section,
.contact-page-section {
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, rgba(250, 251, 253, 0.98) 24%, rgba(247, 248, 251, 0.98) 76%, rgba(19, 136, 8, 0.12) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--silver);
}

.contact-section::before,
.contact-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, transparent 18%, transparent 82%, rgba(19, 136, 8, 0.14) 100%),
        linear-gradient(90deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(19, 136, 8, 0.12) 100%),
        radial-gradient(circle at 12% 20%, rgba(255, 153, 51, 0.18), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(19, 136, 8, 0.16), transparent 30%);
    pointer-events: none;
}

.contact-section::after,
.contact-page-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(26, 60, 141, 0.18);
    box-shadow:
        0 0 0 22px rgba(26, 60, 141, 0.06),
        0 0 0 44px rgba(26, 60, 141, 0.03);
    transform: translateY(-50%);
    opacity: 0.8;
    pointer-events: none;
}

.contact-section .container,
.contact-page-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-header {
    padding: 1rem 1rem 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    padding: 4rem;
    box-shadow: 0 16px 36px rgba(15, 31, 58, 0.1);
    border-top: 4px solid var(--saffron);
    border-bottom: 4px solid var(--india-green);
    border-left: 1px solid rgba(11, 92, 173, 0.16);
    border-right: 1px solid rgba(11, 92, 173, 0.16);
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--silver);
}

.info-item {
    text-align: center;
    flex: 1;
}

.info-item i {
    font-size: 2rem;
    color: var(--chakra-blue);
    margin-bottom: 15px;
}

.info-item h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-item p {
    font-size: 0.95rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background:
        radial-gradient(circle at top left, rgba(255, 153, 51, 0.14), transparent 18%),
        radial-gradient(circle at bottom right, rgba(19, 136, 8, 0.12), transparent 22%),
        linear-gradient(180deg, #081224 0%, #0f1f3a 100%);
    padding: 1.75rem 0 0.8rem;
}

.footer-panel {
    background: linear-gradient(135deg, rgba(15, 31, 58, 0.96), rgba(26, 49, 85, 0.96));
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 1.5rem 1.4rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--flag-white) 50%, var(--india-green) 100%);
}

.footer-brand {
    color: #F4F8FF;
    font-size: clamp(1.7rem, 3.3vw, 2.35rem);
    letter-spacing: 0.8px;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(11, 92, 173, 0.22);
}

.footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.55rem;
}

.footer-brand-logo {
    width: min(250px, 72vw);
    height: auto;
    filter: drop-shadow(0 0 12px rgba(11, 92, 173, 0.24));
}

.footer-note {
    color: var(--silver);
    font-size: 1.03rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.footer-pill {
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(198, 201, 204, 0.46);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    min-width: 0;
    width: 100%;
    padding: 0.56rem 1.25rem;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
}

.footer-pill:hover {
    color: var(--white);
    border-color: var(--sky-blue);
    background: rgba(11, 92, 173, 0.14);
    box-shadow: 0 0 0 1px rgba(11, 92, 173, 0.18) inset;
}

.footer-bottom {
    border-top: 1px solid rgba(198, 201, 204, 0.34);
    padding: 0.95rem 0.45rem 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.35rem;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    margin: 0;
}

.footer-top-link {
    color: var(--saffron);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.footer-top-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.35);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-logo-img {
        height: 48px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        width: min(300px, 92vw);
        background: rgba(15, 31, 58, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 0.35rem;
        display: none;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        z-index: 120;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 0.6rem 0;
    }

    .nav-links a::after {
        bottom: 0.15rem;
    }

    .hero-content {
        max-width: 860px;
    }

    .hero-copy,
    .hero-panel {
        padding: 1.45rem 1.25rem;
    }

    .hero h1 {
        font-size: 2.55rem;
        max-width: 12ch;
    }

    .hero-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-header.page-header-split {
        text-align: center;
        min-height: 0;
    }

    .page-header .page-header-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-top: 96px;
    }

    .page-header-copy p {
        margin: 0 auto;
    }

    .page-header-media {
        justify-content: center;
    }

    .about-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-content {
        padding: 2rem 1.4rem;
    }

    .project-content h3 {
        font-size: 1.2rem;
    }

    .rd-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .rd-image {
        height: 400px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .featured-blog {
        flex-direction: column;
    }

    .featured-blog img {
        width: 100%;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .blog-sidebar .widget {
        padding: 1.4rem;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
    }

    .article-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header {
        height: clamp(280px, 40vh, 340px);
        min-height: 280px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 44px;
    }

    .footer-panel {
        border-radius: 12px;
        padding: 1.1rem 0.85rem 0;
    }

    .footer-brand-logo {
        width: min(210px, 70vw);
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        width: min(420px, 100%);
        gap: 0.6rem;
    }

    .footer-pill {
        width: 100%;
        min-width: 0;
        padding: 0.52rem 0.95rem;
        font-size: 0.94rem;
    }

    .footer-bottom {
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-copy {
        font-size: 0.92rem;
        text-align: center;
    }

    .nav-links {
        top: calc(100% + 6px);
        left: auto;
        right: 0;
        width: 100%;
        max-width: 92vw;
        align-items: stretch;
        padding: 0.8rem;
    }

    .nav-links a {
        text-align: left;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        padding: 7rem 0 3.4rem;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-copy,
    .hero-panel {
        padding: 1.15rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-link-btn,
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-trust,
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel h3 {
        font-size: 1.28rem;
    }

    .page-header .page-header-layout {
        padding-top: 92px;
        padding-bottom: 0.6rem;
    }

    .page-header-media img {
        width: min(100%, 340px);
    }

    .about-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 0.9rem;
    }

    .team-card-top {
        margin-bottom: 0.7rem;
    }

    .team-initials {
        width: 44px;
        height: 44px;
        font-size: 0.84rem;
    }

    .team-info h3 {
        font-size: 1.08rem;
    }

    .team-info p {
        font-size: 0.9rem;
    }

    .team-tags span {
        font-size: 0.66rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-container {
        padding: 2.5rem 1.5rem;
    }

    .page-header {
        height: 300px;
        min-height: 300px;
        padding: 0;
    }

    .page-header h1 {
        letter-spacing: 1.2px;
    }

    .collab-subtitle {
        font-size: 0.95rem;
    }

    .rd-image {
        height: 320px;
    }

    .project-img {
        height: 210px;
    }

    .product-item .project-img {
        height: 220px;
    }

    .project-content {
        padding: 1.5rem 1.1rem;
    }

    .project-overlay {
        top: 10px;
        right: 10px;
        font-size: 0.72rem;
        padding: 4px 8px;
    }

    .article-body {
        padding: 1.2rem;
    }

    .map-container.contact-page-map,
    .contact-page-map {
        min-height: 300px;
    }

    .lightbox-img {
        max-width: 94vw;
        max-height: 72vh;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .specs-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* =========================================
   INTERNAL PAGE HEADERS
   ========================================= */
.page-header {
    background-color: var(--deep-blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: clamp(300px, 44vh, 420px);
    min-height: 300px;
    padding: 0;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--sky-blue);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 10, 24, 0.78), rgba(10, 26, 58, 0.74));
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--silver);
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header .container {
    width: 100%;
    padding-top: 74px;
}

.page-header.page-header-split {
    text-align: left;
    height: auto;
    min-height: clamp(360px, 52vh, 520px);
}

.page-header .page-header-layout {
    width: 100%;
    padding-top: 88px;
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 2rem;
    align-items: center;
}

.page-header-copy,
.page-header-media {
    position: relative;
    z-index: 2;
}

.page-header-copy p {
    margin: 0;
}

.page-header-media {
    display: flex;
    justify-content: flex-end;
}

.page-header-media img {
    width: min(100%, 380px);
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 36px rgba(4, 10, 22, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.products-header-bg .page-header-media img {
    object-fit: contain;
    padding: 0.9rem;
}

.about-header-bg {
    background-image: url('../image/acivement.png');
    padding-top: 60px;
}

.about-header-bg .container {
    padding-top: 100px;
}

.products-header-bg {
    background-image: url('../image/product-aerohex.png');
    background-size: cover;
    background-position: center;
}

.blog-header-bg {
    background-image: url('https://kapyah.com/wp-content/uploads/2025/07/photo_2024-12-08_23-07-24-755x425.jpg');
}

.gallery-header-bg {
    background-image: url('https://kapyah.com/wp-content/uploads/2025/07/drone-2-755x701-1.png');
}

.contact-header-bg {
    background-image: url('../image/product-tethered.jpg');
}

/* =========================================
   FILTER BUTTONS
   ========================================= */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--sky-blue);
    color: var(--deep-blue);
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sky-blue);
    color: var(--white);
    box-shadow: 0 0 10px rgba(11, 92, 173, 0.22);
}

/* =========================================
   MODALS & LIGHTBOX
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 58, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    max-width: 700px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
    border-top: 4px solid var(--sky-blue);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.modal-close:hover {
    color: var(--sky-blue);
}

/* Specs List */
.specs-list {
    list-style: none;
    margin-top: 1.5rem;
}

.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--silver);
    display: flex;
    justify-content: space-between;
}

.specs-list li strong {
    color: var(--deep-blue);
}

/* Lightbox specific */
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border: 2px solid var(--sky-blue);
    box-shadow: 0 0 30px rgba(11, 92, 173, 0.22);
}

/* =========================================
   BLOG LAYOUT
   ========================================= */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.featured-blog {
    grid-column: 1 / -1;
    display: flex;
    gap: 2rem;
    background: var(--light-bg);
    border: 1px solid var(--silver);
    margin-bottom: 2rem;
}

.featured-blog img {
    width: 50%;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--silver);
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--sky-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--sky-blue);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
    font-family: monospace;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Sidebar */
.blog-sidebar .widget {
    background: var(--light-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-top: 3px solid var(--deep-blue);
}

.widget h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.search-box {
    display: flex;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--silver);
    outline: none;
}

.search-box button {
    background: var(--sky-blue);
    border: none;
    color: var(--white);
    padding: 0 15px;
    cursor: pointer;
}

.cat-list {
    list-style: none;
}

.cat-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--silver);
    padding-bottom: 10px;
}

.cat-list a {
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
}

.cat-list a:hover {
    color: var(--sky-blue);
    padding-left: 5px;
}

/* =========================================
   BLOG ARTICLE PAGE
   ========================================= */
.article-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.article-cover {
    border: 1px solid var(--silver);
    margin-bottom: 2rem;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: clamp(260px, 46vh, 430px);
    object-fit: cover;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-body {
    background: var(--white);
    border: 1px solid var(--silver);
    padding: clamp(1.2rem, 3vw, 2.2rem);
}

.article-body h2,
.article-body h3 {
    margin: 1.1rem 0 0.6rem;
    color: var(--deep-blue);
}

.article-body p {
    margin-bottom: 0.9rem;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1rem 1.1rem;
}

.article-body li {
    margin-bottom: 0.45rem;
    color: #4a5568;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}

.article-body th,
.article-body td {
    border: 1px solid var(--silver);
    padding: 0.7rem;
    text-align: left;
}

.article-body th {
    background: var(--light-bg);
    color: var(--deep-blue);
}

.article-actions {
    margin-top: 1.5rem;
}

/* =========================================
   GALLERY MASONRY
   ========================================= */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--silver);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 58, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: var(--sky-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   CONTACT FORMS & MAP
   ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details-map {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--sky-blue);
}

.contact-form-title {
    color: var(--deep-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form-title i {
    color: var(--sky-blue);
}

.submit-btn {
    width: 100%;
    border: none;
    padding: 15px;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    gap: 2rem;
    border-top: 4px solid var(--deep-blue);
    margin-bottom: 2rem;
    padding-bottom: 3rem;
}

.info-item-page {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item-page i {
    font-size: 2rem;
    margin: 0;
    color: var(--sky-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--deep-blue);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--silver);
    background: var(--light-bg);
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--sky-blue);
    background: var(--white);
}

.map-container {
    height: 100%;
    min-height: 400px;
    background: var(--light-bg);
}

.contact-page-map {
    border: 1px solid var(--silver);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.2);
}

/* =========================================
   TIMELINE
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--sky-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--sky-blue);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 6px;
    border: 1px solid var(--silver);
    position: relative;
}

.timeline-date {
    color: var(--sky-blue);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--silver);
    border-bottom: 1px solid var(--silver);
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, rgba(250, 251, 253, 0.98) 24%, rgba(247, 248, 251, 0.98) 76%, rgba(19, 136, 8, 0.12) 100%);
}

.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 153, 51, 0.14) 0%, transparent 18%, transparent 82%, rgba(19, 136, 8, 0.14) 100%),
        linear-gradient(90deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(19, 136, 8, 0.12) 100%),
        radial-gradient(circle at 12% 20%, rgba(255, 153, 51, 0.18), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(19, 136, 8, 0.16), transparent 30%);
    pointer-events: none;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 32%;
    left: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(26, 60, 141, 0.18);
    box-shadow:
        0 0 0 22px rgba(26, 60, 141, 0.06),
        0 0 0 44px rgba(26, 60, 141, 0.03);
    opacity: 0.75;
    pointer-events: none;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.team-section .section-header {
    padding: 1rem 1rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.team-section .section-header p {
    max-width: 760px;
    margin: 0 auto;
    color: #4a5568;
}

.team-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(10, 26, 58, 0.14);
    border-radius: 12px;
    padding: 1rem 1rem 1.15rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(10, 26, 58, 0.07);
    transition: var(--transition);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--flag-white), var(--india-green));
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 92, 173, 0.32);
    box-shadow: 0 16px 32px rgba(10, 26, 58, 0.13);
}

.team-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.team-initials {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--deep-blue);
    border: 1px solid rgba(11, 92, 173, 0.55);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.team-badge {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.24rem 0.55rem;
    border: 1px solid rgba(255, 153, 51, 0.45);
    color: var(--deep-blue);
    background: rgba(255, 153, 51, 0.12);
    border-radius: 999px;
}

.team-card img {
    display: none;
}

.team-card:hover img {
    filter: grayscale(0%);
}

.team-info {
    padding: 0;
    text-align: left;
}

.team-info h3 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.team-info .designation {
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 0.72rem;
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.28rem 0.56rem;
    border-radius: 999px;
    border: 1px solid rgba(19, 136, 8, 0.28);
    background: rgba(19, 136, 8, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.team-info p {
    color: var(--text-dark);
    font-size: 0.93rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.team-tags span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 1px solid rgba(10, 26, 58, 0.14);
    background: rgba(10, 26, 58, 0.03);
    color: var(--deep-blue);
    padding: 0.24rem 0.5rem;
    border-radius: 999px;
}

.team-social a {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--sky-blue);
}

/* =========================================
   PARTNERS / COLLAB
   ========================================= */
.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.collab-section .section-header {
    margin-bottom: 1.8rem;
}

.collab-kicker {
    color: var(--saffron);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.collab-head h2 {
    font-size: clamp(1.45rem, 3.5vw, 2.2rem);
    margin-bottom: 0.7rem;
}

.collab-subtitle {
    max-width: 780px;
    margin: 0 auto;
    color: #4a5568;
}

.partner-logos i {
    font-size: 4rem;
    color: var(--silver);
    transition: var(--transition);
}

.partner-logos i:hover {
    color: var(--deep-blue);
}

.partner-logo-grid {
    background: linear-gradient(135deg, #081224 0%, #102548 100%);
    border: 1px solid rgba(198, 201, 204, 0.28);
    border-radius: 14px;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 0.85rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partner-logo-grid::before {
    content: '';
    position: absolute;
    inset: -35% -10%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 153, 51, 0.18), transparent 32%),
        radial-gradient(circle at 50% 50%, rgba(11, 92, 173, 0.12), transparent 28%),
        radial-gradient(circle at 82% 80%, rgba(19, 136, 8, 0.16), transparent 34%);
    pointer-events: none;
}

.partner-logo-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(198, 201, 204, 0.2);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.partner-logo-item:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 92, 173, 0.6);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.partner-logo-item img {
    width: 100%;
    max-width: 160px;
    height: 58px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.08);
    opacity: 0.9;
    transition: var(--transition);
}

.partner-logo-item:hover img {
    filter: grayscale(0%) brightness(1.05);
    opacity: 1;
}

.partner-logos-strip {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(198, 201, 204, 0.35);
    background: #070d1b;
    padding: 6px;
}

.partner-strip-img {
    width: 100%;
    height: auto;
    display: block;
}

.fallback-logos {
    display: none;
    margin-top: 1.5rem;
}

.partner-logos-strip.is-missing+.fallback-logos {
    display: flex;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-swiper {
    padding-bottom: 60px;
    /* Space for pagination */
}

.testimonial-content {
    background:
        linear-gradient(135deg, rgba(15, 31, 58, 0.7), rgba(16, 37, 72, 0.52));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-content h4 {
    font-weight: 600;
    color: #b6f0c0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--chakra-blue) !important;
    opacity: 1;
}

@media (max-width: 768px) {

    /* Grids & Typography */
    .masonry-grid {
        column-count: 2;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Timeline adjustments */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: 21px;
    }

    /* Fix New Sections */
    .partner-logos {
        gap: 20px;
    }

    .partner-logos i {
        font-size: 2.5rem;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .partner-logo-item img {
        height: 54px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    /* Fix Contact Page Layout */
    .contact-form,
    .contact-page-info {
        padding: 1.5rem;
    }

    .info-item-page {
        flex-direction: column;
        gap: 10px;
    }

    .info-item-page i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 1;
    }

    /* Ensure Hero and general headers scale nicely */
    .nav-logo-img {
        height: 38px;
    }

    .footer-brand {
        font-size: 1.42rem;
    }

    .footer-note {
        font-size: 0.93rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        width: min(285px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .footer-pill {
        width: 100%;
        min-width: 0;
        text-align: center;
        padding: 0.56rem 1rem;
    }

    .footer-bottom {
        gap: 0.55rem;
        padding-top: 0.8rem;
    }

    .footer-copy {
        font-size: 0.86rem;
    }

    .footer-top-link {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.92rem;
    }

    .hero-content {
        padding: 0 8px;
    }

    .hero-copy,
    .hero-panel {
        padding: 1rem 0.9rem;
    }

    .hero-kicker {
        font-size: 0.68rem;
        line-height: 1.5;
    }

    .hero-panel h3 {
        font-size: 1rem;
    }

    .page-header .page-header-layout {
        padding-top: 84px;
    }

    .page-header-media img {
        width: 100%;
        max-width: 300px;
    }

    .page-header.page-header-split {
        height: auto;
        min-height: 0;
    }

    .page-header {
        height: 250px;
        min-height: 250px;
        padding: 0;
    }

    .page-header h1 {
        letter-spacing: 1px;
        font-size: 1.75rem;
    }

    .page-header .container {
        padding-top: 62px;
    }

    .btn {
        padding: 0.8rem 1.1rem;
        font-size: 0.78rem;
    }

    .loader-logo {
        width: min(230px, 78vw);
    }

    .filter-container {
        gap: 0.6rem;
    }

    .filter-btn {
        width: 100%;
    }

    .contact-container,
    .contact-form,
    .contact-page-info {
        padding: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 0.7rem;
        padding: 0.8rem;
    }

    .partner-logo-item {
        min-height: 72px;
        padding: 0.4rem;
    }

    .partner-logo-item img {
        height: 48px;
    }

    #lightboxClose {
        top: 8px !important;
        right: 8px !important;
    }
}