/* ==========================================
   CyberWing â€” global.css
   Variables, Reset, Typography, Header, Footer
   ========================================== */

:root {
    --orange: #f5a623;
    --orange-dark: #e68d3a;
    --orange-light: rgba(245, 166, 35, 0.15);
    --green: #5ee63a;
    --green-light: #89ff66;
    --green-pale: rgba(94, 230, 58, 0.10);
    --white: #ffffff;
    --beige: #0a0d08;
    --gray-bg: #0d1209;
    --gray-light: #151d0e;
    --dark: #050804;
    --dark-mid: #0b0f08;
    --text-dark: #e6f0de;
    --text-mid: #b5c7a3;
    --text-soft: #8ca375;
    --text-muted: #6b8054;
    --border: rgba(94, 230, 58, 0.25);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.14);
    --radius: 10px;
    --radius-lg: 18px;
    --radius-pill: 50px;
    --transition: all 0.22s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--dark);
    background-image:
        linear-gradient(rgba(94, 230, 58, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 230, 58, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center top;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    animation: bgMatrixPan 40s linear infinite;
}

@keyframes bgMatrixPan {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 30px 30px;
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-pad {
    padding: 88px 0;
}

.accent {
    color: var(--orange);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    border-bottom: none;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(111, 132, 74, 0.12);
}

.site-header.scrolled .hamburger span {
    background: #1a1a1a;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-nav {
    margin-left: auto;
    margin-right: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 6px;
    letter-spacing: 0.4px;
    transition: color 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.0);
    transition: background 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2.5px;
    background: #6f844a;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.nav-link:hover::before,
.has-dropdown:hover>.nav-link::before,
.nav-link.active::before {
    background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover,
.has-dropdown:hover>.nav-link,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.has-dropdown:hover>.nav-link::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* When scrolled — dark links */
.site-header.scrolled .nav-link {
    color: #1a1a1a;
}

.site-header.scrolled .nav-link::after {
    background: #6f844a;
}

.site-header.scrolled .nav-link:hover::before,
.site-header.scrolled .has-dropdown:hover>.nav-link::before {
    background: rgba(111, 132, 74, 0.08);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .has-dropdown:hover>.nav-link,
.site-header.scrolled .nav-link.active {
    color: #4d6133;
}

.nav-link i {
    font-size: 0.65rem;
    opacity: 0.7;
}

.has-dropdown {
    position: static;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 50px 15%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #2d2d2d;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dropdown-menu li a i {
    color: #6f844a;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    text-align: center;
    background: rgba(111, 132, 74, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.dropdown-menu li a:hover {
    background: #f5f9f0;
    color: #4d6133;
    border-left-color: #6f844a;
    transform: translateX(4px);
}

.dropdown-menu li a:hover i {
    background: rgba(111, 132, 74, 0.2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    flex-shrink: 0;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(111, 132, 74, 0.4);
    }

    50% {
        box-shadow: 0 4px 28px rgba(111, 132, 74, 0.7);
    }
}

/* Premium pill CTA button */
.header-cta {
    background: linear-gradient(135deg, #6f844a, #4d6133);
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: ctaPulse 3s ease-in-out infinite;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.4px;
}

.header-cta:hover {
    background: linear-gradient(135deg, #7d9655, #5a7039);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 32px rgba(111, 132, 74, 0.6);
    color: #ffffff;
    animation: none;
}

.header-socials {
    display: flex;
    gap: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* OPEN STATE */
.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: normal;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--orange);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.2);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.6), 0 0 40px rgba(245, 166, 35, 0.2);
    text-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline-dark:hover {
    background: rgba(94, 230, 58, 0.1);
    color: var(--green-light);
    box-shadow: inset 0 0 10px rgba(94, 230, 58, 0.3), 0 0 15px rgba(94, 230, 58, 0.4);
    text-shadow: 0 0 8px rgba(94, 230, 58, 0.5);
}

.btn-green {
    background: var(--green);
    color: var(--dark);
    box-shadow: 0 0 10px rgba(94, 230, 58, 0.2);
}

.btn-green:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(94, 230, 58, 0.6), 0 0 40px rgba(94, 230, 58, 0.2);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.96rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.78rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* WAVE DIVIDER (Changed to Cyber Divider) */
.wave-divider {
    line-height: 0;
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    box-shadow: 0 0 10px rgba(94, 230, 58, 0.5);
    margin: 40px 0;
}

.wave-divider svg {
    display: none;
}

/* TYPOGRAPHY */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--border);
    background: rgba(94, 230, 58, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.8);
    border-color: var(--orange);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.18;
    margin-bottom: 18px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 0.98rem;
    color: var(--text-soft);
    line-height: 1.75;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.65);
}

.section-desc {
    font-size: 0.94rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    color: #1a3a1a;
}

.section-header .section-title,
.section-header .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* FOOTER */
@keyframes footerGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    position: relative;
}

.footer-top {
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.footer-about p {
    font-size: 0.84rem;
    color: #000000;
    line-height: 1.72;
    margin-bottom: 20px;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
    justify-content: flex-start;
}

.social-link {
    width: 38px;
    height: 38px;
    background: #0b220b;
    border: 1px solid #0b220b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    background: #f5a623;
    /* Orange */
    border-color: #f5a623;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(245, 166, 35, 0.3);
}

/* Brand-specific hover colors */
.social-linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-twitter:hover {
    background: #000000;
    border-color: #555;
}

.social-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.83rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--orange);
}

.footer-links a:hover {
    color: var(--orange);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fc-item i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.fc-item span,
.fc-item a {
    font-size: 0.82rem;
    color: #000000;
    line-height: 1.5;
}

.fc-item a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    background: var(--dark);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    font-size: 0.76rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-legal span {
    color: var(--border);
    font-size: 0.7rem;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    transform: translateY(80px);
    opacity: 0;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(230, 141, 58, 0.4);
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* STICKY-SAFE ANIMATION — applied to inner content, not sticky wrappers */
@keyframes revealContent {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-blur {
    opacity: 0;
    animation: none;
}

.fade-in-blur.visible {
    animation: revealContent 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* MASK REVEAL TEXT EFFECT */
.fade-in-up.mask-reveal-wrap {
    overflow: hidden;
    transform: none !important;
    opacity: 1 !important;
    display: block;
    /* Ensure block formatting for overflow hiding */
    transition: none !important;
    /* Prevent parent fade-in-up transition from interfering */
}

.fade-in-up.mask-reveal-wrap .mask-reveal-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s ease;
}

.fade-in-up.visible.mask-reveal-wrap .mask-reveal-inner {
    transform: translateY(0);
    opacity: 1;
}

/* RESPONSIVE (Global) */
.mobile-menu-header {
    display: none;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }

    .site-header {
        padding: 0;
    }

    .header-inner {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-menu-header {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: auto;
        /* Removed bottom binding */
        height: 100vh !important;
        /* Force full screen height */
        left: auto;
        width: 65%;
        min-width: 260px;
        max-width: 360px;
        background: rgba(11, 15, 8, 0.98);
        /* Solid dark */
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        transform: translateX(100%);
        /* Slide in from Right */
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        overflow-y: auto;
        margin: 0;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* Smooth App-like background dimming overlay for drawer menu */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
        pointer-events: none;
        /* Let clicks pass when hidden */
    }

    body.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        /* Catch clicks to close */
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .nav-list li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Staggered animation when menu opens */
    .main-nav.open .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.open .nav-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.open .nav-list li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-nav.open .nav-list li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-nav.open .nav-list li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .main-nav.open .nav-list li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .main-nav.open .nav-list li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-link,
    .site-header.scrolled .nav-link,
    .site-header.scrolled .nav-link.active {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 16px 12px; /* Added horizontal padding */
        color: #ffffff !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        display: none; /* Hide by default on mobile */
        padding-left: 16px;
        margin-top: 4px;
        margin-bottom: 8px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 16px;
        animation: fadeInSubmenu 0.3s ease forwards;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #ffffff !important;
        font-size: 1.05rem;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        transition: background 0.2s ease;
    }

    .dropdown-menu li a i {
        color: var(--green) !important;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }

    .has-dropdown > a i {
        display: inline-block;
        margin-left: auto;
        transition: transform 0.3s ease;
        opacity: 0.7;
        font-size: 0.8rem;
    }

    .has-dropdown.active > a i {
        transform: rotate(180deg);
        color: var(--green);
        opacity: 1;
    }

    @keyframes fadeInSubmenu {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hamburger {
        display: flex;
        z-index: 1010;
        position: relative;
        margin-left: auto;
    }

    /* Ensure hamburger is white when menu is open (over dark background) */
    .main-nav.open~.hamburger span,
    .hamburger.open span {
        background: #ffffff !important;
    }

    .header-actions {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
}

/* ==========================================
   CyberWing â€” home.css
   Hero section, stat band, partners, process
   ========================================== */

/* NEW PREMIUM DARK HERO SECTION */
.hero-section {
    position: relative;
    padding: 120px 0 100px 0;
    margin-top: 80px;
    background: linear-gradient(-45deg, var(--dark), #0f140b, #182210, var(--dark-mid));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 940px;
    /* Matches content-main column width approx */
    margin: 0;
    padding-left: 80px;
    /* Indent for a more premium look */
    gap: 16px;
    /* Consistent vertical spacing */
    position: relative;
    z-index: 2;
}

.page-hero-content.centered {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.page-hero-content .section-tag {
    margin-bottom: 0;
}

.page-hero-content.centered .breadcrumb {
    justify-content: center;
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
}

.page-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(117, 142, 78, 0.15) 0%, rgba(28, 36, 21, 0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: glowTransform 12s infinite alternate ease-in-out;
}

@keyframes glowTransform {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2) translate(5%, 10%) rotate(15deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) translate(-5%, -5%) rotate(-5deg);
        opacity: 0.8;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-service-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 141, 58, 0.1);
    border: 1px solid rgba(230, 141, 58, 0.3);
    color: var(--orange);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(230, 141, 58, 0.6);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 141, 58, 0.6);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(230, 141, 58, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 141, 58, 0);
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .title-accent {
    color: var(--white);
}

.hero-title .title-light {
    background: linear-gradient(135deg, var(--orange), #f1b377);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.pulse-btn {
    box-shadow: 0 4px 15px rgba(230, 141, 58, 0.3);
}

.pulse-btn:hover {
    box-shadow: 0 6px 20px rgba(230, 141, 58, 0.5);
}

.hero-cycling {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.cycle-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cycle-chips-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cycle-chip {
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.cycle-chip.active {
    background: rgba(117, 142, 78, 0.2);
    color: var(--green-light);
    border-color: rgba(117, 142, 78, 0.5);
}

/* HERO VISUAL SECTION */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card.glassmorphic {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-buttons {
    display: flex;
    gap: 6px;
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-btn.red {
    background: #ff5f56;
}

.mac-btn.yellow {
    background: #ffbd2e;
}

.mac-btn.green {
    background: #27c93f;
}

.header-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 8px;
}

.hero-scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(117, 142, 78, 0) 0%, rgba(117, 142, 78, 0.1) 50%, rgba(117, 142, 78, 0) 100%);
    opacity: 0.5;
    animation: scan 3s infinite linear;
    pointer-events: none;
    z-index: 10;
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.hero-card-body {
    padding: 30px 24px;
}

.auth-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.auth-icon.primary {
    background: rgba(230, 141, 58, 0.15);
    color: var(--orange);
}

.auth-icon.success {
    background: rgba(117, 142, 78, 0.15);
    color: var(--green-light);
}

.auth-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60px;
}

.auth-lines .line {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-lines .line.w-full {
    width: 100%;
}

.auth-lines .line.w-half {
    width: 60%;
}

.auth-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 16px;
    position: relative;
    overflow: hidden;
}

.moving-dot {
    position: absolute;
    top: -1px;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--green-light);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(117, 142, 78, 0.5);
    animation: moveRight 2s infinite ease-in-out;
}

@keyframes moveRight {
    0% {
        left: 0%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.stats-row-mini {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-mini .stat-val {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-mini .stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--orange);
}

.floating-badge.badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-bg-glow {
        width: 100%;
    }

    .hero-card.glassmorphic {
        margin-top: 20px;
    }

    .floating-badge {
        display: none;
    }
}

/* STAT BAND */
.stat-band {
    background: var(--gray-bg);
    padding: 64px 0;
}

.stat-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-band-item {
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid var(--border);
}

.stat-band-item:last-child {
    border-right: none;
}

.stat-big {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.stat-suf {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green);
}

.stat-label {
    font-size: 0.84rem;
    color: var(--text-soft);
    margin-top: 8px;
    font-weight: 600;
}

/* TRUST BAND (Partner Logos inside stat area) */
.trust-band {
    background: rgba(117, 142, 78, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.trust-band .container {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-mid);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--gray-bg);
    transition: var(--transition);
}

.trust-logo-item:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.trust-logo-item i {
    color: var(--orange);
}

/* STATS ROW (Inner pages stats blocks) */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    padding: 24px;
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.big-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.big-suf {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green);
}

.stat-box span:last-child {
    display: block;
    font-size: 0.82rem;
    color: var(--text-soft);
    margin-top: 6px;
}

/* MISSION / WHY CHOOSE US */
.why-section {
    background: #d3e8d3;
    color: #1a3a1a;
}

.why-section .section-title,
.why-section .section-subtitle,
.why-section .section-tag {
    color: #1a3a1a !important;
    border-color: rgba(0, 50, 0, 0.2) !important;
}

.why-section h3,
.why-section p {
    color: #1a3a1a !important;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(230, 141, 58, 0.08);
    border-color: rgba(230, 141, 58, 0.2);
}

.why-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(230, 141, 58, 0.15);
    border: 1px solid rgba(230, 141, 58, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-card h3 {
    font-family: var(--font-head);
    font-size: 0.96rem;
    font-weight: 800;
    color: #1a3a1a;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.83rem;
    color: #4a4a4a;
    line-height: 1.65;
}

/* PROCESS SECTION */
.process-section {
    background: linear-gradient(to bottom, #d3e8d3, #ffffff);
    color: #1a3a1a;
}

.process-section .section-title,
.process-section .section-subtitle,
.process-section .section-tag {
    color: #1a3a1a !important;
}

.process-section h3,
.process-section p,
.process-section .step-number {
    color: #1a3a1a !important;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.process-connector {
    padding: 0 4px;
    color: #1a3a1a;
    font-size: 0.9rem;
    margin-top: 44px;
    flex-shrink: 0;
    opacity: 0.3;
}

.step-number {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #5a7038);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(117, 142, 78, 0.3);
}

.process-step h3 {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 800;
    color: #1a3a1a;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.8rem;
    color: #4a4a4a;
    line-height: 1.65;
}

/* CERTIFICATIONS / PARTNERS */
.cert-section {
    background: #ffffff;
    padding: 80px 0 120px;
    color: #1a3a1a;
}

.cert-section .section-title,
.cert-section .section-tag {
    color: #1a3a1a;
}

.cert-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cert-badge {
    padding: 12px 22px;
    background: #0e1a0e;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-badge i {
    color: var(--orange);
    font-size: 1rem;
}

.partner-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.partner-chip {
    padding: 10px 20px;
    background: #0e1a0e;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-chip:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.partner-chip i {
    color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stat-band-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-band-item:nth-child(2) {
        border-right: none;
    }

    .stat-band-item:nth-child(3) {
        border-right: 1px solid var(--border);
        border-top: 1px solid var(--border);
    }

    .stat-band-item:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-band-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================
   CyberWing - about.css
   About us section
   ========================================== */

/* ABOUT SECTION */
.about-section {
    background: #ffffff;
    color: #1a3a1a;
}

.about-section .section-title,
.about-section .section-subtitle,
.about-section .section-desc,
.about-section .section-tag {
    color: #1a3a1a !important;
    text-align: left;
}

.about-section p,
.about-section li,
.about-section div:not(.about-img-wrapper):not(.badge-icon) {
    color: #1a3a1a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about-image-col {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0e0, #d4e4c0);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 600;
}

.about-img-placeholder i {
    font-size: 3.5rem;
    opacity: 0.4;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Float badge */
.about-badge-float {
    position: absolute;
    bottom: -18px;
    right: 24px;
    background: #0e1a0e;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.badge-text strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 0.7rem;
    color: var(--text-soft);
}

/* Experience tag */
.about-exp-tag {
    position: absolute;
    top: 24px;
    left: -18px;
    background: #000000;
    color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.exp-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Features list */
.about-features {
    margin: 22px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feat-item {
    display: flex;
    gap: 14px;
}

.feat-icon {
    flex-shrink: 0;
    color: var(--orange);
    font-size: 1.05rem;
    margin-top: 3px;
}

.feat-text strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a3a1a;
    display: block;
    margin-bottom: 3px;
}

.feat-text p {
    font-size: 0.83rem;
    color: #4a4a4a;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about-exp-tag {
        left: 8px;
    }

    .about-badge-float {
        right: 8px;
    }
}

/* ==========================================
   CyberWing â€” services.css
   Services grid and cards
   ========================================== */

/* SERVICES SECTION */
.services-section {
    background: var(--gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(94, 230, 58, 0.15), inset 0 0 15px rgba(94, 230, 58, 0.05);
    border-color: rgba(94, 230, 58, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

/* Circle icon */
.service-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid rgba(94, 230, 58, 0.3);
    background: rgba(94, 230, 58, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    transition: var(--transition);
}

.service-icon-circle i {
    font-size: 1.5rem;
    color: var(--green);
    transition: var(--transition);
}

.service-card:hover .service-icon-circle {
    background: rgba(94, 230, 58, 0.15);
    border-color: var(--green);
    box-shadow: 0 0 15px rgba(94, 230, 58, 0.3);
}

.service-card:hover .service-icon-circle i {
    color: var(--green-light);
    filter: drop-shadow(0 0 8px rgba(94, 230, 58, 0.6));
}

.service-card-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.86rem;
    color: var(--text-soft);
    line-height: 1.72;
    margin-bottom: 22px;
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    transition: var(--transition);
    margin-top: auto;
}

.service-card-link:hover {
    background: rgba(94, 230, 58, 0.1);
    color: var(--green-light);
    gap: 10px;
    box-shadow: inset 0 0 10px rgba(94, 230, 58, 0.3), 0 0 15px rgba(94, 230, 58, 0.4);
    text-shadow: 0 0 8px rgba(94, 230, 58, 0.5);
}

/* ANIMATIONS */
.service-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.22s, box-shadow 0.22s;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CyberWing â€” inner-page.css
   Styles specific to the detailed service pages and about us page
   ========================================== */

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #2d3a1e 100%);
    background-size: cover;
    background-position: right center;
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 70px 0 40px;
        margin-top: 60px;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.95) 40%, 
        rgba(0, 0, 0, 0.4) 60%, 
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-hero::after {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.25);
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
}

/* CONTENT GRID (Service detail layout) */
.content-section {
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

.sidebar-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.sidebar-card h4 {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: var(--transition);
}

.sidebar-links a i {
    color: var(--orange);
    width: 16px;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--orange-light);
    color: var(--orange);
}

.sidebar-cta {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.sidebar-cta p {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 10px;
}

/* Feature list */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(230, 141, 58, 0.25);
    background: rgba(230, 141, 58, 0.05);
}

.fi-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fi-content strong {
    font-family: var(--font-head);
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}

.fi-content p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* Capabilities grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cap-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 22px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgb(255, 253, 251);
}

.cap-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.cap-card h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cap-card p {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* Steps list */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.step-item {
    display: flex;
    gap: 18px;
}

.step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-body strong {
    font-family: var(--font-head);
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.step-body p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* Tags */
.compliance-tags,
.diff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.comp-tag {
    padding: 7px 16px;
    background: #0d1a0d;
    border: 1px solid rgba(94, 230, 58, 0.2);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    display: inline-block;
    transition: var(--transition);
}

.comp-tag:hover {
    background: #142814;
    border-color: var(--green);
    box-shadow: 0 0 10px rgba(94, 230, 58, 0.15);
}

.diff-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #0d1a0d;
    border: 1px solid rgba(94, 230, 58, 0.2);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    transition: var(--transition);
}

.diff-badge:hover {
    background: #142814;
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.diff-badge i {
    color: var(--green);
    font-size: 0.9rem;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0;
}

.who-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.who-item i {
    color: var(--green);
    flex-shrink: 0;
}

/* Leadership */
.leadership-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.leader-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.leader-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green), #5a7038);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.leader-info h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.leader-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 2px;
}

.leader-exp {
    font-size: 0.78rem;
    color: var(--text-soft);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.exp-tag {
    padding: 5px 12px;
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CyberWing â€” contact.css
   Contact info blocks and quote forms
   ========================================== */

/* QUOTE / CONTACT SECTION */
.quote-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-mid));
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.contact-item-mini {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 14px;
}

.ci-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 141, 58, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ci-info strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.ci-info span,
.ci-info a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.ci-info a:hover {
    color: var(--orange);
}

/* Form card */
.quote-form-card {
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.quote-form-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.87rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--gray-bg);
    outline: none;
    transition: var(--transition);
}

.form-group select option {
    background: var(--dark-mid);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 3px rgba(230, 141, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* CONTACT PAGE Layout elements */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-info-card h4 {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.86rem;
    color: var(--text-soft);
    line-height: 1.65;
}

.contact-info-card a {
    color: var(--orange);
    font-weight: 600;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--gray-bg), var(--gray-light));
    border-radius: var(--radius-lg);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--green);
    border: 1px solid var(--border);
}

.map-placeholder i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.map-placeholder span {
    font-size: 0.88rem;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   ABOUT
   =================================================== */

/* ===================================================
   CyberWing â€” careers.css (updated for new design)
   =================================================== */

/* Filter buttons */
.job-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    color: var(--text-soft);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* Job cards */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.job-card {
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 141, 58, 0.3);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.job-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.job-type-badge {
    padding: 4px 10px;
    background: var(--orange-light);
    border: 1px solid rgba(230, 141, 58, 0.25);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 600;
}

.job-meta-item i {
    color: var(--orange);
    font-size: 0.75rem;
}

.job-desc {
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: fit-content;
}

.job-apply-btn:hover {
    background: var(--orange-dark);
    gap: 12px;
}

/* Application form section */
.apply-section {
    background: var(--gray-bg);
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.apply-info h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.apply-info p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 20px;
}

.apply-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apply-perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-soft);
    font-weight: 600;
}

.apply-perk-item i {
    color: var(--green);
    font-size: 0.9rem;
}

.apply-form-card {
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.apply-form-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* CV Upload */
.cv-upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    background: var(--gray-bg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 14px;
}

.cv-upload-zone:hover {
    border-color: var(--orange);
    background: var(--orange-light);
}

.cv-upload-zone i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
}

.cv-upload-zone p {
    font-size: 0.82rem;
    color: var(--text-soft);
}

.cv-upload-zone strong {
    color: var(--orange);
}

.cv-upload-zone input[type="file"] {
    display: none;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: rgba(11, 15, 8, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 9999;
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    color: var(--text-dark);
    min-width: 280px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--green);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .apply-grid {
        grid-template-columns: 1fr;
    }
}











/* CYBER EFFECTS */
.glitch-hover:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: var(--green-light);
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}





/* Additional Scroll Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* PRISMA HERO REDESIGN */
.prisma-hero {
    position: relative;
    background: #000000;
    padding: 180px 0 100px 0;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.prisma-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center left;
    z-index: 0;
}

.prisma-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000 45%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-grid-prisma {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1440px;
}

.hero-brand-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-brand-label i {
    color: #6f844a;
    font-size: 1.2rem;
}

.hero-content-prisma {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-title-prisma {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.orange-highlight {
    color: var(--orange);
}

.hero-sub-prisma {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions-prisma {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-darkgreen-pill {
    background-color: #006400;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-darkgreen-pill:hover {
    background-color: #008000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 0, 0.4);
}

.pulse-btn-darkgreen {
    box-shadow: 0 0 15px rgba(0, 100, 0, 0.5);
}

.glass-overlay-card-prisma {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .prisma-hero-bg {
        width: 100%;
        background-position: center;
        opacity: 0.6;
    }

    .prisma-hero-gradient {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, #000000 70%);
    }

    .hero-grid-prisma {
        grid-template-columns: 1fr;
        text-align: center; /* Center for mobile */
    }

    .hero-content-prisma {
        align-items: center;
        text-align: center;
    }

    .hero-sub-prisma {
        max-width: 100%;
        margin: 0 auto 30px auto;
        text-align: center;
    }

    .hero-brand-label {
        justify-content: center;
    }

    .prisma-hero {
        padding: 100px 0 20px 0; /* Reduce bottom padding significantly */
        text-align: center;
    }

    .hero-actions-prisma {
        justify-content: center;
        margin-bottom: 15px; /* Reduce bottom margin */
    }

    .hero-title-prisma {
        font-size: clamp(2.2rem, 8vw, 3rem); /* Adjust font size for mobile */
    }
}

/* ==========================================
   MOBILE IMAGE & VISUAL OPTIMIZATIONS
   ========================================== */
@media (max-width: 768px) {
    /* Standardizes the height of visual containers on mobile */
    .hero-visual, 
    .about-img-wrapper {
        height: 300px !important;
        min-height: 300px !important;
        margin-bottom: 20px;
    }

    /* Prisma Services Card Mobile Fix */
    .prisma-services-card {
        position: relative !important; /* Disable sticky on small mobile screens for better UX */
        top: 0 !important;
        margin-bottom: 30px;
        border-radius: 20px !important;
    }

    .prisma-services-content {
        padding: 30px 20px !important;
    }

    /* Ensures background images center correctly on small screens */
    .prisma-hero-bg, 
    .page-hero,
    .hero-section,
    .prisma-services-bg {
        background-attachment: scroll !important;
        background-position: center !important;
        background-size: cover !important;
    }

    /* Ensures images inside containers are properly fit */
    .hero-image, 
    .about-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 18px;
    }
}

/* PRISMA SERVICES REDESIGN */
.services-section-prisma {
    background: linear-gradient(to bottom, #ffffff, #d3e8d3);
    position: relative;
    z-index: 10;
}

.services-section-prisma .section-title-prisma,
.services-section-prisma .section-subtitle-prisma {
    color: #ffffff !important;
}

.prisma-services-stack {
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* Large gap in flow to allow the sticky stacking to feel smooth */
    padding-bottom: 50px;
}

.prisma-services-card {
    position: sticky;
    top: 140px;
    /* Higher offset to avoid header collision */
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #000000;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.prisma-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.prisma-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 50, 60, 0.95) 0%, rgba(0, 100, 100, 0.8) 50%, rgba(0, 30, 40, 0.9) 100%);
    z-index: 1;
}

.prisma-services-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
}

/* Shimmer animation for tag */
@keyframes shimmerTag {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.section-tag-prisma {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(90deg, #a3cfbb 30%, #ffffff 50%, #a3cfbb 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerTag 4s linear infinite;
    position: relative;
    padding-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: flex;
    justify-content: center;
}

.section-tag-prisma::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: #6f844a;
    border-radius: 2px;
}

.section-title-prisma {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-subtitle-prisma {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Counting context for cards */
.prisma-services-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    perspective: 1200px;
    counter-reset: service-card;
}

.prisma-service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    counter-increment: service-card;
    border: 1px solid rgba(111, 132, 74, 0.12);
}

/* Numbered badge top-right */
.prisma-service-item::before {
    content: counter(service-card, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(111, 132, 74, 0.35);
    letter-spacing: 1px;
    font-family: var(--font-head);
}

/* Animated top accent border */
.prisma-service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #6f844a, #b5cf82);
    border-radius: 16px 16px 0 0;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prisma-service-item:hover::after {
    width: 100%;
}

/* 3D entrance animation */
.prisma-service-item.fade-in-up {
    opacity: 0;
    transform: translateY(40px) rotateX(12deg);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prisma-service-item.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.prisma-service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(111, 132, 74, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.prisma-service-item h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d3b1e;
    margin-bottom: 12px;
    line-height: 1.4;
    margin-top: 4px;
}

.prisma-service-item p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #4a4a4a;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Animated Learn More link */
.prisma-service-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #4d6133;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.3s ease, gap 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prisma-service-link i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prisma-service-link:hover {
    color: #6f844a;
    gap: 12px;
}

.prisma-service-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .prisma-services-content {
        padding: 40px 20px;
    }

    .prisma-service-item {
        min-width: 260px;
    }
}

body.menu-open {
    overflow: hidden;
}

/* LIGHT THEME FOR SECTIONS */
.light-theme {
    color: #1a3a1a !important;
}

.light-theme .section-title {
    color: #1a3a1a !important;
}

.light-theme .section-desc,
.light-theme .section-subtitle,
.light-theme p {
    color: #4a4a4a !important;
}

.light-theme .glassmorphic,
.light-theme .cap-card,
.light-theme .value-card {
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(111, 132, 74, 0.15) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.light-theme .stat-big {
    color: #f5a623 !important;
    /* Orange */
}

.light-theme .stat-label {
    color: #2d3b1e !important;
}

.light-theme h3,
.light-theme h4 {
    color: #1a3a1a !important;
}

.light-theme .exp-tag {
    background: rgba(111, 132, 74, 0.05) !important;
    color: #2d3b1e !important;
}

.light-theme .section-tag {
    border-color: rgba(111, 132, 74, 0.2) !important;
    color: #4d6133 !important;
}

.light-theme .cap-icon {
    background: #f5a623 !important;
    /* Orange background */
    color: #ffffff !important;
    /* White icon */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem !important;
}

.light-theme .value-icon {
    color: #5ee63a !important;
    /* Green */
}

.light-theme .timeline-step::before {
    background: #ffffff !important;
    border-color: #5ee63a !important;
}

/* ALIGN STATS STRAIGHT */
.stat-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.stat-band-item.glassmorphic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 1024px) {
    .stat-band-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stat-band-grid {
        grid-template-columns: 1fr;
    }
    .stat-band {
        padding: 30px 0; /* Reduce space above stats on mobile */
    }
}