:root {
    --primary-color: #FF6A2A;
    /* Vibrant Orange */
    --primary-dark: #e55b2d;
    --secondary-color: #081B4B;
    /* Dark Navy Blue */
    --primary-green: #10B981;
    /* Fresh Produce Green */
    --primary-green-rgb: 16, 185, 129;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --nav-font: 'Poppins', sans-serif;
}

html,
body {
    overflow-x: clip;
    width: 100%;
    position: relative;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0;
    margin-left: 0;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
}



/* Navbar */
.navbar {
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1100;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.sticky-top {
    padding: 18px 0;
}

.navbar.scrolled {
    padding: 10px 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 30px rgba(8, 27, 75, 0.08) !important;
    border-bottom: 1px solid rgba(255, 106, 42, 0.15) !important;
}

.navbar-brand {
    padding: 0;
    margin-right: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled .navbar-logo {
    height: 52px;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-family: var(--nav-font);
    font-weight: 700;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0 15px;
    padding: 5px 0 !important;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 90px);
    padding: 100px 0;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(8, 27, 75, 0.4) 0%, rgba(8, 27, 75, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-tagline {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease forwards;
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

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

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #0d213f;
    color: var(--white);
}

/* Features Bar */
.features-bar {
    background-color: var(--white);
    border-bottom: 1px solid #f0f0f0;
}

.feature-card-premium {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.feature-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Section Titles */
.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* About Us */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.lead-text {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

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

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.af-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

.about-img-wrap {
    position: relative;
    padding: 20px;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: var(--light-bg);
    border-radius: 20px;
    z-index: 1;
}

.about-img-enhanced {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 106, 42, 0.3);
    text-align: center;
}

.exp-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

/* Home Services Cinematic - Premium Light Theme (to divide navy sections) */
.services-section-home {
    position: relative;
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 106, 42, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(8, 27, 75, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    overflow: hidden;
    padding: 120px 0 100px;
}

.services-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(8, 27, 75, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 27, 75, 0.015) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.services-section-home .container {
    position: relative;
    z-index: 2;
}

.services-section-home .section-title {
    color: var(--secondary-color) !important;
}

/* Service Card V3 - Industrial Premium Card */
.h-service-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(8, 27, 75, 0.03);
    border: 1px solid rgba(8, 27, 75, 0.05);
}

.h-service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 55px rgba(8, 27, 75, 0.08),
        0 0 25px rgba(255, 106, 42, 0.05);
    border-color: rgba(255, 106, 42, 0.2);
}

.h-service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.h-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.h-service-icon {
    position: absolute;
    bottom: -15px;
    right: 25px;
    width: 54px;
    height: 54px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 20px rgba(8, 27, 75, 0.1);
    z-index: 5;
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 27, 75, 0.03);
}

.h-service-card:hover .h-service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 106, 42, 0.3);
}

.h-service-content {
    padding: 35px 25px;
}

/* Service Technical Metric Tag */
.service-tech-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(255, 106, 42, 0.08);
    border: 1px solid rgba(255, 106, 42, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.h-service-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.h-service-content p {
    font-size: 0.9rem;
    color: #526075;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Mini Trust Checklist inside Service Card */
.service-spec-list {
    list-style: none;
    padding: 15px 0 0;
    margin: 15px 0 20px;
    border-top: 1px solid rgba(8, 27, 75, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-spec-list li {
    font-size: 0.8rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.service-spec-list li i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.h-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.h-service-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 25px;
}

.service-card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card-text {
    color: #666;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: url('../assets/images/cta_bg.png') no-repeat center center/cover;
    padding: 70px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 27, 75, 0.8) 0%, rgba(13, 43, 120, 0.75) 100%);
    z-index: 1;
}

.stat-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 106, 42, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 106, 42, 0.4));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-suffix {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 5px;
}

.stat-text {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Us Premium */
.why-choose-us-premium {
    background-color: #f8fafc;
    position: relative;
}

.why-content-sticky {
    position: sticky;
    top: 100px;
}

.why-cta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: fit-content;
}

.cta-mini-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cta-mini-text h6 {
    margin: 0;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-mini-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Mosaic Grid */
.advantage-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-item-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.advantage-item-modern:nth-child(even) {
    margin-top: 40px;
}

.advantage-item-modern:nth-child(odd) {
    margin-bottom: 40px;
}

.advantage-item-modern.active {
    background: var(--secondary-color);
    color: var(--white);
}

.advantage-item-modern.active .aim-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.advantage-item-modern.active p {
    color: rgba(255, 255, 255, 0.8);
}

.advantage-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 106, 42, 0.2);
}

.aim-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 42, 0.1);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.advantage-item-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.advantage-item-modern p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .advantage-mosaic {
        gap: 20px;
    }

    .advantage-item-modern:nth-child(even),
    .advantage-item-modern:nth-child(odd) {
        margin: 0;
    }
}

@media (max-width: 575px) {
    .advantage-mosaic {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-img {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* Footer */
.footer {
    background: radial-gradient(circle at top, #091e52 0%, #040e29 100%);
    color: var(--white);
    padding: 180px 0 30px;
    position: relative;
    overflow: visible;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 400px;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(255, 106, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Overlapping Glassmorphic CTA Card with Premium Floating Effect */
@keyframes ctaCardFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 25px 60px rgba(4, 12, 38, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 40px rgba(255, 106, 42, 0.06);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 35px 75px rgba(4, 12, 38, 0.65),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 55px rgba(255, 106, 42, 0.12);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 25px 60px rgba(4, 12, 38, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 40px rgba(255, 106, 42, 0.06);
    }
}

.footer-cta-card {
    margin-top: -240px;
    margin-bottom: 60px;
    background: rgba(8, 27, 75, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 50px;
    box-shadow: 0 25px 60px rgba(4, 12, 38, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 106, 42, 0.06);
    position: relative;
    z-index: 10;
    overflow: hidden;
    animation: ctaCardFloat 6s ease-in-out infinite;
}

.footer-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 106, 42, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 106, 42, 0.08);
    border: 1px solid rgba(255, 106, 42, 0.25);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.fa-spin-slow {
    animation: fa-spin 12s linear infinite;
}

.cta-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.cta-actions {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 106, 42, 0.25);
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 106, 42, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 8px;
    margin-left: -12px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    font-size: 0.85rem;
}

.footer-links a:hover::before {
    margin-left: 0;
    opacity: 1;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-top: 4px;
    filter: drop-shadow(0 0 5px rgba(255, 106, 42, 0.3));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

@media (max-width: 991px) {
    .footer-cta-card {
        padding: 35px 25px;
        margin-top: -160px;
        margin-bottom: 40px;
    }

    .footer {
        padding: 130px 0 25px; /* Reduced bottom padding from 30px to 25px */
    }

    .footer .row {
        row-gap: 30px !important; /* Reduces vertical gap between stacked columns on mobile */
    }

    .cta-title {
        font-size: 1.55rem;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px; /* Reduced vertical gap on mobile from 20px */
        align-items: center;
        margin-top: 30px; /* Reduced spacing above separator line on mobile from 60px */
        padding-top: 20px; /* Reduced padding above copyright on mobile from 25px */
    }

    .back-to-top {
        margin-bottom: 5px;
    }
}

.back-to-top {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 106, 42, 0.1);
    border: 1.5px solid rgba(255, 106, 42, 0.3);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 106, 42, 0.4),
        0 0 10px rgba(255, 106, 42, 0.2);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(10, 25, 48, 0.7), rgba(10, 25, 48, 0.5)), url('../assets/images/about_hero_bg.png') no-repeat center center/cover;
    padding: 80px 0;
    color: var(--white);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Journey Section Premium - Bento Grid System */
.journey-section-premium {
    position: relative;
    background-color: #081B4B;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 106, 42, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(13, 110, 253, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #081B4B 0%, #040e29 100%);
    overflow: hidden;
    padding: 120px 0;
    color: var(--white);
}

.journey-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60px 60px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.journey-section-premium .row>div {
    margin-bottom: 30px;
}

.journey-section-premium .row>div:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .journey-section-premium .row>div:nth-last-child(-n+2) {
        margin-bottom: 0;
    }
}

.journey-bento-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 27, 75, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 45px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 60px rgba(4, 12, 38, 0.35);
    z-index: 2;
}

/* Faint gradient glow inside card */
.bento-glow-aura {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 106, 42, 0.05) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

.journey-bento-card:hover .bento-glow-aura {
    background: radial-gradient(circle, rgba(255, 106, 42, 0.12) 0%, transparent 70%);
    width: 250px;
    height: 250px;
}

.journey-bento-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow:
        0 40px 85px rgba(4, 12, 38, 0.5),
        0 0 35px rgba(255, 106, 42, 0.25);
}

.bento-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(255, 106, 42, 0.08);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.journey-bento-card:hover .bento-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(255, 106, 42, 0.25);
}

.bento-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #081B4B;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.bento-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    position: relative;
    z-index: 2;
}

.bento-badge-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.bento-badge {
    background: rgba(8, 27, 75, 0.04);
    border: 1px solid rgba(8, 27, 75, 0.08);
    color: #081B4B;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.journey-bento-card:hover .bento-badge {
    background: rgba(255, 106, 42, 0.08);
    border-color: rgba(255, 106, 42, 0.3);
    color: var(--primary-color);
}

/* Bento Card Number watermark */
.bento-card-number {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(8, 27, 75, 0.02);
    -webkit-text-stroke: 1px rgba(8, 27, 75, 0.035);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

.journey-bento-card:hover .bento-card-number {
    color: rgba(255, 106, 42, 0.035);
    -webkit-text-stroke-color: rgba(255, 106, 42, 0.18);
    transform: scale(1.1) translateY(-5px);
}

/* Value chip system */
.value-chip {
    background: rgba(8, 27, 75, 0.02);
    border: 1px solid rgba(8, 27, 75, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-chip:hover {
    background: rgba(8, 27, 75, 0.04);
    border-color: rgba(8, 27, 75, 0.15);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(8, 27, 75, 0.04);
}

.value-chip-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 106, 42, 0.08);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-chip:hover .value-chip-icon {
    background: var(--primary-color);
    color: var(--white);
}

.value-chip-content h5 {
    color: #081B4B;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.value-chip-content p {
    color: #718096;
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Team Stat counters */
.team-stat-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.team-stat {
    background: rgba(8, 27, 75, 0.02);
    border: 1px solid rgba(8, 27, 75, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.journey-bento-card:hover .team-stat {
    background: rgba(8, 27, 75, 0.04);
    border-color: rgba(8, 27, 75, 0.1);
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #718096;
}

/* Advantage Accordion Unique */
.why-choose-us-cards {
    padding: 120px 0;
    position: relative;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 106, 42, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(8, 27, 75, 0.04) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    overflow: hidden;
}

.why-choose-us-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 35px 35px;
    background-image: 
        linear-gradient(to right, rgba(8, 27, 75, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 27, 75, 0.012) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.advantage-accordion-wrapper {
    display: flex;
    width: 100%;
    height: 380px;
    gap: 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.advantage-accordion-item {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(8, 27, 75, 0.03);
    border: 1px solid rgba(8, 27, 75, 0.05);
    display: flex;
    flex-direction: column;
    padding: 35px 28px;
    justify-content: space-between;
}

.advantage-accordion-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c5a);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-accordion-item.active::after {
    opacity: 1;
}

.advantage-accordion-item:hover {
    border-color: rgba(255, 106, 42, 0.2);
    box-shadow: 0 15px 35px rgba(8, 27, 75, 0.05);
    transform: translateY(-2px);
}

.advantage-accordion-item:hover,
.advantage-accordion-item.active {
    flex: 4.2;
    background: linear-gradient(135deg, #081B4B 0%, #030d24 100%);
    border-color: rgba(255, 106, 42, 0.25);
    box-shadow: 
        0 25px 50px rgba(3, 13, 36, 0.25),
        0 0 30px rgba(255, 106, 42, 0.05);
}

.aai-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(8, 27, 75, 0.15);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.advantage-accordion-item:hover .aai-number,
.advantage-accordion-item.active .aai-number {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.02);
    transform: scale(1.05);
}

.aai-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 106, 42, 0.08);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    border: 1px solid rgba(255, 106, 42, 0.15);
}

.advantage-accordion-item:hover .aai-icon-wrap,
.advantage-accordion-item.active .aai-icon-wrap {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.15) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 106, 42, 0.35);
}

.aai-cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--primary-green);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: monospace;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.5s ease 0.2s;
    width: fit-content;
}

.advantage-accordion-item.active .aai-cyber-badge {
    opacity: 1;
    transform: translateY(0);
}

.aai-cyber-badge .badge-pulse-dot {
    width: 5px;
    height: 5px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--primary-green);
    animation: hudBlink 1.2s infinite;
}

.aai-content-box {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.advantage-accordion-item:hover .aai-content-box,
.advantage-accordion-item.active .aai-content-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aai-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
    white-space: nowrap;
    transition: all 0.5s ease;
    letter-spacing: -0.5px;
}

.advantage-accordion-item:hover .aai-title,
.advantage-accordion-item.active .aai-title {
    color: var(--white);
}

.aai-text {
    font-size: 0.92rem;
    color: #55667d;
    line-height: 1.55;
    max-width: 420px;
    transition: all 0.5s ease;
    margin-bottom: 15px;
}

.advantage-accordion-item:hover .aai-text,
.advantage-accordion-item.active .aai-text {
    color: rgba(255, 255, 255, 0.75);
}

.aai-telemetry-data {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.advantage-accordion-item.active .aai-telemetry-data {
    opacity: 1;
    transform: translateY(0);
}

.aai-tel-item {
    font-size: 0.68rem;
    color: rgba(0, 242, 254, 0.8);
    font-family: monospace;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.aai-tel-item i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* Mobile responsive for accordion - Static Premium Cards */
@media (max-width: 991px) {
    .advantage-accordion-wrapper {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .advantage-accordion-item {
        flex: none;
        height: auto;
        padding: 30px 24px !important;
        background: var(--white) !important;
        border: 1px solid rgba(8, 27, 75, 0.06) !important;
        cursor: default !important;
        box-shadow: 0 8px 30px rgba(8, 27, 75, 0.03) !important;
        border-radius: 20px !important;
    }

    .advantage-accordion-item::after {
        display: none !important;
    }

    .advantage-accordion-item.active,
    .advantage-accordion-item:hover {
        background: var(--white) !important;
        border-color: rgba(255, 106, 42, 0.15) !important;
        transform: none !important;
        box-shadow: 0 12px 35px rgba(8, 27, 75, 0.06) !important;
        padding-bottom: 30px !important;
    }

    .aai-number {
        display: none !important;
    }

    .aai-icon-wrap {
        background: rgba(255, 106, 42, 0.08) !important;
        color: var(--primary-color) !important;
        transform: none !important;
        box-shadow: none !important;
        margin-bottom: 15px !important;
    }

    .aai-cyber-badge {
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: 10px !important;
    }

    .aai-content-box {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 5px;
    }

    .aai-title {
        color: var(--secondary-color) !important;
        white-space: normal !important;
        font-size: 1.15rem !important;
        margin-bottom: 6px !important;
    }

    .aai-text {
        color: #55667d !important;
        font-size: 0.88rem !important;
        margin-bottom: 12px !important;
    }

    .aai-telemetry-data {
        opacity: 1 !important;
        transform: none !important;
        border-top: 1px solid rgba(8, 27, 75, 0.06) !important;
        padding-top: 10px !important;
    }
    
    .aai-tel-item {
        color: #4a5568 !important;
    }
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(255, 106, 42, 0.4), 0 0 0 4px rgba(255, 106, 42, 0.15);
}

.dev-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.dev-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 106, 42, 0.4);
}

/* Infrastructure Page */
/* Infrastructure Page Premium */
.stats-bar-premium {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-float-container {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 30px 40px;
    box-shadow: 0 20px 50px rgba(8, 27, 75, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-premium-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-premium-item:last-child {
    border-right: none;
}

/* Stats Bar Premium Responsive Adjustments */
@media (max-width: 991px) {
    .stats-float-container {
        padding: 20px 30px;
        border-radius: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .stat-premium-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }

    .stat-premium-item:nth-child(2n+1) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-premium-item:nth-child(3),
    .stat-premium-item:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .stats-bar-premium {
        margin-top: -40px;
    }

    .stats-float-container {
        padding: 15px 20px;
        border-radius: 20px;
    }

    .stat-premium-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 10px;
        justify-content: flex-start;
    }

    .stat-premium-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .stats-bar-premium {
        margin-top: -30px;
    }

    .stats-float-container {
        padding: 12px 15px;
        border-radius: 16px;
    }

    .stat-premium-item {
        gap: 15px;
        padding: 12px 5px;
    }

    .sp-icon {
        font-size: 1.8rem;
    }

    .sp-num {
        font-size: 1.5rem;
    }

    .sp-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}


.sp-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.sp-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.sp-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Infrastructure Highlights */
/* ==========================================================================
   FUTURISTIC COLD CHAIN PIPELINE FLOW (KEY HIGHLIGHTS)
   ========================================================================== */

.infra-highlights-section {
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f7f9fc 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Add a technical grid pattern overlay */
.infra-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(8, 27, 75, 0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 27, 75, 0.01) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.pipeline-flow-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 20px 0;
}

/* Central Pipeline Track Channel */
.pipeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: rgba(8, 27, 75, 0.06);
    border-radius: 50px;
    transform: translateX(-50%);
    z-index: 2;
    overflow: hidden;
}

/* Moving Light Pulse Flow Indicator */
.pipeline-flow-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--primary-color) 40%,
            var(--primary-green) 60%,
            transparent 100%);
    border-radius: 50px;
    animation: flowPulse 7s linear infinite;
}

@keyframes flowPulse {
    0% {
        top: -150px;
    }

    100% {
        top: 100%;
    }
}

/* Pipeline Node Container */
.pipeline-node {
    display: flex;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    z-index: 3;
}

.pipeline-node:last-child {
    margin-bottom: 0;
}

/* Left & Right Layout Staggering */
.pipeline-node:nth-child(odd) {
    justify-content: flex-start;
}

.pipeline-node:nth-child(even) {
    justify-content: flex-end;
}

.pipeline-node-content-wrap {
    width: calc(50% - 60px);
    position: relative;
}

/* Premium Content Card styling */
.pipeline-node-card {
    background: var(--white);
    border-radius: 28px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(8, 27, 75, 0.02);
    border: 1px solid rgba(8, 27, 75, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Left glow strip on card */
.pipeline-node-card::before {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pipeline-node:nth-child(odd) .pipeline-node-card::before {
    right: 0;
    transform-origin: bottom;
}

.pipeline-node:nth-child(even) .pipeline-node-card::before {
    left: 0;
    transform-origin: top;
}

/* Hover Interactive States */
.pipeline-node:hover .pipeline-node-card {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 42, 0.2);
    box-shadow:
        0 20px 45px rgba(8, 27, 75, 0.06),
        0 0 25px rgba(255, 106, 42, 0.04);
}

.pipeline-node:hover .pipeline-node-card::before {
    transform: scaleY(1);
}

/* Outlined Watermark Numbers */
.pipeline-node-num {
    position: absolute;
    top: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(8, 27, 75, 0.015);
    -webkit-text-stroke: 1px rgba(8, 27, 75, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

.pipeline-node:nth-child(odd) .pipeline-node-num {
    left: 40px;
}

.pipeline-node:nth-child(even) .pipeline-node-num {
    right: 40px;
}

.pipeline-node:hover .pipeline-node-num {
    color: rgba(255, 106, 42, 0.025);
    -webkit-text-stroke-color: rgba(255, 106, 42, 0.15);
    transform: scale(1.08);
}

/* Tags, Titles, Specs inside Pipeline Cards */
.pipeline-node-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.pipeline-node-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.pipeline-node-card p {
    font-size: 0.95rem;
    color: #526075;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Central Glowing Node Badges */
.pipeline-node-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid rgba(8, 27, 75, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    z-index: 4;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(8, 27, 75, 0.02);
}

.pipeline-node:hover .pipeline-node-badge {
    background: var(--primary-color);
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 0 25px rgba(255, 106, 42, 0.4);
    transform: translate(-50%, -50%) scale(1.15);
}

/* Custom Micro-Animations for Icons on Hover */
.pipeline-node:hover .pipeline-node-badge i.fa-snowflake {
    animation: rotateSnowflake 3s linear infinite;
}

.pipeline-node:hover .pipeline-node-badge i.fa-truck-fast {
    animation: driveTruck 0.8s ease infinite alternate;
}

.pipeline-node:hover .pipeline-node-badge i.fa-warehouse {
    animation: pulseWarehouse 1s ease infinite alternate;
}

.pipeline-node:hover .pipeline-node-badge i.fa-laptop-code {
    animation: flashCode 1.2s ease infinite;
}

.pipeline-node:hover .pipeline-node-badge i.fa-shield-halved {
    animation: pulseShield 1s ease infinite alternate;
}

@keyframes rotateSnowflake {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes driveTruck {
    0% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(2px);
    }
}

@keyframes pulseWarehouse {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes flashCode {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
        color: var(--primary-green);
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes pulseShield {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px var(--primary-green));
    }

    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px var(--primary-green));
    }
}

/* Floating Horizontal Connecting Lines */
.pipeline-node-connector {
    position: absolute;
    top: 50%;
    height: 3px;
    background: rgba(8, 27, 75, 0.06);
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.4s ease;
}

.pipeline-node:nth-child(odd) .pipeline-node-connector {
    right: -60px;
    width: 60px;
}

.pipeline-node:nth-child(even) .pipeline-node-connector {
    left: -60px;
    width: 60px;
}

.pipeline-node:hover .pipeline-node-connector {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE PIPELINE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 991px) {
    .pipeline-track {
        left: 30px;
        transform: none;
    }

    .pipeline-flow-pulse {
        height: 100px;
        animation: flowPulseMobile 6s linear infinite;
    }

    @keyframes flowPulseMobile {
        0% {
            top: -100px;
        }

        100% {
            top: 100%;
        }
    }

    .pipeline-node {
        justify-content: flex-end !important;
        margin-bottom: 40px;
    }

    .pipeline-node-content-wrap {
        width: calc(100% - 80px);
    }

    .pipeline-node-card {
        padding: 25px 30px;
        border-radius: 20px;
    }

    /* Shift Node Badges to the Left Track */
    .pipeline-node-badge {
        left: 30px !important;
        transform: translate(-50%, -50%) !important;
    }

    .pipeline-node:hover .pipeline-node-badge {
        transform: translate(-50%, -50%) scale(1.1) !important;
    }

    .pipeline-node-connector {
        left: -50px !important;
        width: 50px !important;
        right: auto !important;
    }

    .pipeline-node:nth-child(odd) .pipeline-node-card::before {
        left: 0;
        right: auto;
        transform-origin: top;
    }

    .pipeline-node-num {
        font-size: 3rem;
        top: 15px;
    }

    .pipeline-node:nth-child(odd) .pipeline-node-num {
        left: auto;
        right: 30px;
    }
}

@media (max-width: 575px) {
    .infra-highlights-section {
        padding: 60px 0;
    }

    .pipeline-track {
        left: 20px;
    }

    .pipeline-node-badge {
        left: 20px !important;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .pipeline-node-content-wrap {
        width: calc(100% - 55px);
    }

    .pipeline-node-connector {
        left: -35px !important;
        width: 35px !important;
    }

    .pipeline-node-card {
        padding: 20px;
        border-radius: 16px;
    }

    .pipeline-node-card h4 {
        font-size: 1.1rem;
    }

    .pipeline-node-card p {
        font-size: 0.85rem;
    }

    .pipeline-node-num {
        display: none;
        /* Hide watermarks on very small screens to avoid overlay clutter */
    }
}

.infra-card {
    border: none;
    background: transparent;
    margin-bottom: 30px;
}

.infra-card img {
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.infra-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.infra-card-text {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 767px) {
    .stat-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px 0;
    }

    .stat-bar-item:last-child {
        border-bottom: none;
    }
}

/* Gallery Page */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.gallery-grid-img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid-img:hover {
    transform: scale(1.03);
}

.filter-item {
    transition: all 0.4s ease;
}




/* Gallery Preview Modern & Cinematic Expanding Panels */
.gallery-showcase-container {
    display: flex;
    gap: 24px;
    width: 100%;
    min-height: 560px;
    margin-top: 20px;
}

.gallery-panel {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1),
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
    background: #040e29;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Image styling */
.gallery-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), filter 0.5s ease;
    filter: brightness(0.6) contrast(1.05);
}

/* Dynamic overlays */
.gallery-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(4, 14, 41, 0.95) 0%,
            rgba(4, 14, 41, 0.45) 50%,
            rgba(4, 14, 41, 0.1) 100%);
    z-index: 1;
    transition: background 0.6s ease;
}

/* Gallery Badge styling */
.gallery-panel-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 40px;
    background: rgba(4, 14, 41, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.badge-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.6s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

/* Vertical Rotated Title for Collapsed Panels */
.gallery-panel-vertical-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: bottom center;
    white-space: nowrap;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    pointer-events: none;
}

.gallery-panel-vertical-title span {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(4, 14, 41, 0.5);
}

/* Expanded Info Box */
.gallery-panel-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    pointer-events: none;
}

.panel-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.25;
}

.info-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
}

.panel-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 15px 0 20px;
}

.panel-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
}

.panel-btn i {
    transition: transform 0.3s ease;
}

.panel-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.panel-btn:hover i {
    transform: translateX(6px);
}

/* Plus Indicator for Collapsed Panels */
.gallery-panel-plus {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(4, 14, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

/* --- ACTIVE TRANSITIONS & INTERACTIONS --- */
.gallery-panel.active {
    flex: 2.8;
    box-shadow: 0 25px 55px rgba(4, 12, 38, 0.65), 0 0 35px rgba(255, 106, 42, 0.18);
    border-color: rgba(255, 106, 42, 0.45);
}

.gallery-showcase-container:has(.gallery-panel.active) .gallery-panel:not(.active) {
    flex: 0.75;
}

.gallery-panel.active .gallery-panel-bg {
    transform: scale(1.08);
    filter: brightness(0.5) contrast(1.1);
}

.gallery-panel.active .gallery-panel-overlay {
    background: linear-gradient(to top,
            rgba(8, 27, 75, 0.98) 0%,
            rgba(4, 14, 41, 0.7) 40%,
            rgba(255, 106, 42, 0.08) 100%);
}

.gallery-panel.active .gallery-panel-badge {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.gallery-panel.active .badge-num {
    color: var(--white);
}

.gallery-panel.active .badge-dot {
    background: var(--white);
    opacity: 1;
    box-shadow: 0 0 10px var(--white);
}

.gallery-panel:not(.active) .gallery-panel-vertical-title {
    opacity: 1;
    transform: translateX(-50%) rotate(-90deg);
}

.gallery-panel.active .gallery-panel-vertical-title {
    opacity: 0;
    transform: translateX(-50%) rotate(-90deg) translateY(-20px);
}

.gallery-panel.active .gallery-panel-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gallery-panel.active .info-expanded-content {
    max-height: 400px;
    opacity: 1;
    margin-top: 15px;
}

.gallery-panel.active .gallery-panel-plus {
    opacity: 0;
    transform: translateX(-50%) scale(0.6) rotate(90deg);
    pointer-events: none;
}



.btn-outline-secondary-custom {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-secondary-custom:hover {
    background: var(--secondary-color);
    color: var(--white);
}


/* Responsive Mobile Gallery Showcase */
@media (max-width: 991px) {
    .gallery-showcase-container {
        flex-direction: column;
        min-height: auto;
        gap: 16px;
        margin-top: 15px;
    }

    .gallery-panel {
        height: 140px;
        /* Collapsed height on mobile */
        flex: none !important;
        border-radius: 20px;
        transition: height 0.6s cubic-bezier(0.25, 1, 0.3, 1),
            transform 0.4s ease,
            box-shadow 0.4s ease,
            border-color 0.4s ease;
    }

    .gallery-panel-vertical-title {
        display: none !important;
        /* No vertical text on mobile */
    }

    /* Collapsed mobile card details */
    .gallery-panel-badge {
        top: 20px;
        left: 20px;
        padding: 6px 14px;
        background: rgba(4, 14, 41, 0.4);
    }

    .gallery-panel-plus {
        bottom: auto;
        top: 20px;
        right: 20px;
        left: auto !important; /* Overrides left: 50% from desktop */
        transform: none;       /* Overrides translateX(-50%) from desktop */
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    /* Mobile Collapsed State content styling: horizontal title below badge */
    .gallery-panel-info {
        padding: 20px;
        bottom: 0;
        top: auto;
        left: 20px !important;  /* Overrides left: 40px from desktop */
        right: 20px !important; /* Overrides right: 40px from desktop */
        opacity: 1;
        pointer-events: none;
        transform: none !important;
        transition: padding 0.5s ease;
    }

    .gallery-panel:not(.active-mobile) .info-header {
        margin: 0;
    }

    .gallery-panel:not(.active-mobile) .panel-title {
        font-size: 1.1rem;
        margin-top: 45px;
        /* Push down to clear the badge */
        color: var(--white);
    }

    .gallery-panel:not(.active-mobile) .panel-category,
    .gallery-panel:not(.active-mobile) .info-expanded-content {
        display: none !important;
    }

    /* Active state on Mobile (Click/Tap Triggered) */
    .gallery-panel.active-mobile {
        height: 460px;
        /* Expanded height to prevent content overflow/badge overlap */
        box-shadow:
            0 15px 35px rgba(4, 12, 38, 0.5),
            0 0 25px rgba(255, 106, 42, 0.12);
        border-color: rgba(255, 106, 42, 0.4);
    }

    .gallery-panel.active-mobile .gallery-panel-bg {
        transform: scale(1.06);
        filter: brightness(0.45) contrast(1.1);
    }

    .gallery-panel.active-mobile .gallery-panel-overlay {
        background: linear-gradient(to top,
                rgba(8, 27, 75, 0.98) 0%,
                rgba(4, 14, 41, 0.75) 50%,
                rgba(255, 106, 42, 0.05) 100%);
    }

    .gallery-panel.active-mobile .gallery-panel-badge {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .gallery-panel.active-mobile .gallery-panel-plus {
        transform: rotate(45deg); /* No translateX(-50%) translate inherited */
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    /* Expanded Mobile info box */
    .gallery-panel.active-mobile .gallery-panel-info {
        padding: 45px 20px 20px; /* Increased top padding to clear top badge space */
        pointer-events: auto;
    }

    .gallery-panel.active-mobile .panel-category {
        display: block !important;
    }

    .gallery-panel.active-mobile .panel-title {
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: 5px;
    }

    .gallery-panel.active-mobile .info-expanded-content {
        display: block !important;
        max-height: 300px;
        opacity: 1;
        margin-top: 10px;
        overflow: visible;
    }

    .gallery-panel.active-mobile .panel-description {
        margin: 10px 0 15px;
        font-size: 0.85rem;
    }

    .gallery-panel.active-mobile .panel-specs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .gallery-panel.active-mobile .spec-item {
        font-size: 0.85rem;
    }
}


/* Careers Page Ultra */
.careers-features-ultra {
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

.cf-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 35px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    z-index: 1;
}

.cf-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cf-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 42, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.cf-card:hover .cf-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.cf-card h5 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cf-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cf-bg-num {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.cf-card:hover .cf-bg-num {
    color: rgba(255, 106, 42, 0.05);
    transform: translateY(-10px);
}

/* Life at Vishra - Culture Mosaic */
.culture-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.culture-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: 30px;
}

.culture-tile {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    cursor: default;
}

.ct-img {
    width: 100%;
    height: 100%;
}

.ct-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.culture-tile:hover .ct-img img {
    transform: scale(1.1);
}

.ct-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 27, 75, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(0px);
}

.culture-tile:hover .ct-overlay {
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: blur(5px);
}

.ct-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.ct-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.ct-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .culture-mosaic-grid {
        grid-auto-rows: 350px;
    }

    .ct-overlay {
        padding: 30px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .culture-mosaic-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-info-wrap {
    padding-right: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    margin-bottom: 30px;
}

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

.contact-list-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-list-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-list-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list-content a:hover {
    color: var(--primary-color);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

@media (max-width: 991px) {
    .contact-info-wrap {
        margin-bottom: 40px;
    }
}

/* Detailed Service Cards (Services Page) */
/* Super Premium Services Section - Interactive Cryo-Tech Grid */
.services-section-premium {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.services-section-premium::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 42, 0.08);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 106, 42, 0.15);
    text-transform: uppercase;
}

.section-title-premium {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
}

.section-title-underline {
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    margin-top: 20px;
    border-radius: 10px;
}

.services-intro-text {
    font-size: 1.15rem;
    color: #556070;
    line-height: 1.8;
    max-width: 850px;
}

/* Service Card V2 - Advanced Glassmorphic Telematics Card */
.service-card-v2 {
    position: relative;
    border-radius: 28px;
    height: 510px;
    overflow: hidden;
    background-color: #040e29;
    box-shadow: 0 20px 45px rgba(4, 12, 38, 0.25);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 242, 254, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
    margin-bottom: 30px;
}

.service-card-v2:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow:
        0 30px 65px rgba(4, 12, 38, 0.55),
        0 0 35px rgba(0, 242, 254, 0.25);
}

.sv2-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.sv2-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.55) contrast(1.1);
}

.service-card-v2:hover .sv2-img-box img {
    transform: scale(1.12);
    filter: brightness(0.4) contrast(1.15);
}

.sv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 8, 19, 0.98) 0%, rgba(2, 8, 19, 0.55) 50%, transparent 100%);
    z-index: 2;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-v2:hover .sv2-overlay {
    background: linear-gradient(to top, rgba(8, 27, 75, 0.98) 0%, rgba(2, 8, 19, 0.7) 60%, transparent 100%);
}

.sv2-icon-wrap {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    border: none;
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(255, 106, 42, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-v2:hover .sv2-icon-wrap {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.35);
}

/* Glowing Live Telematics Badge */
.sv2-telemetry-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #00f2fe;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
    transition: all 0.3s ease;
}

.service-card-v2:hover .sv2-telemetry-badge {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10B981;
}

.sv2-telemetry-badge .pulsing-dot {
    width: 6px;
    height: 6px;
    background-color: #00f2fe;
    border-radius: 50%;
    display: inline-block;
    animation: telemetryPulse 1.5s infinite;
}

.service-card-v2:hover .sv2-telemetry-badge .pulsing-dot {
    background-color: #10B981;
}

@keyframes telemetryPulse {
    0% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(0, 242, 254, 0);
    }

    100% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

.sv2-content {
    position: relative;
    padding: 35px 25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(45px);
}

.service-card-v2:hover .sv2-content {
    transform: translateY(0);
}

/* Micro-Telemetry Chip Panel */
.sv2-tech-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.sv2-tech-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.service-card-v2:hover .sv2-tech-chip {
    background: rgba(0, 242, 254, 0.06);
    border-color: rgba(0, 242, 254, 0.15);
    color: rgba(255, 255, 255, 0.95);
}

.sv2-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.service-card-v2:hover .sv2-title {
    color: #00f2fe;
}

.sv2-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.sv2-link {
    margin-top: auto;
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-v2:hover .sv2-link {
    opacity: 1;
    transform: translateY(0);
    color: #00f2fe !important;
}

.sv2-link i {
    transition: transform 0.3s ease;
}

.sv2-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Section 2: Precision Produce Preservation Console [NEW]
   ========================================================================== */
.preservation-console-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #020813 0%, #081B4B 100%);
    position: relative;
    overflow: hidden;
}

.preservation-console-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.preservation-console-section::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 42, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.console-card-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 1;
}

.console-btn-pill {
    width: 100%;
    border-radius: 18px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
}

.console-btn-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.console-btn-pill.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 106, 42, 0.35);
    transform: translateX(8px);
}

.console-btn-pill .crop-emoji {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glassmorphic Telemetry Screen */
.console-display-panel {
    background: rgba(4, 14, 41, 0.6);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 28px;
    padding: 35px;
    box-shadow: inset 0 0 30px rgba(0, 242, 254, 0.05);
    height: 100%;
}

.panel-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.panel-status-ticker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10B981;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.panel-status-ticker .ticker-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: telemetryPulse 1.5s infinite;
}

.crop-display-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-top: 15px;
}

/* Dial Gauge Widget */
.chamber-dial-widget {
    text-align: center;
}

.chamber-dial-outer {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 6px dashed rgba(0, 242, 254, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.chamber-dial-gauge {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00f2fe;
    border-right-color: #00f2fe;
    transform: rotate(45deg);
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chamber-dial-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, #081B4B 0%, #030a1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.chamber-dial-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #00f2fe;
    line-height: 1;
    letter-spacing: -1px;
}

.chamber-dial-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Humidity Progress Widget */
.humidity-meter-widget {
    margin-bottom: 25px;
}

.humidity-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.humidity-target-val {
    color: #00f2fe;
}

.humidity-progress-track {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 14px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.humidity-progress-bar {
    height: 100%;
    width: 90%;
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    position: relative;
    transition: width 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.humidity-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: flowWave 2s infinite linear;
}

@keyframes flowWave {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Atmosphere Grid */
.atmosphere-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.atmosphere-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.at-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    color: #00f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.at-details {
    display: flex;
    flex-direction: column;
}

.at-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.at-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    margin-top: 2px;
}

/* Shelf Life Projections - Default stacked state (< 1200px) */
.shelf-life-chart {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 30px;
}

/* Side-by-side desktop refinement (>= 1200px) */
@media (min-width: 1200px) {
    .shelf-life-chart {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .console-display-panel .row>div+div {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 35px;
    }
}


.chart-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-row {
    margin-bottom: 12px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.chart-bar-outer {
    height: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    overflow: hidden;
}

.chart-bar-inner {
    height: 100%;
    border-radius: 5px;
    transition: width 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chart-bar-inner.std {
    background: #526075;
    width: 30%;
}

.chart-bar-inner.vishra {
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c5a 100%);
    box-shadow: 0 0 10px rgba(255, 106, 42, 0.4);
    width: 90%;
}

/* CTA Banner Section */
.cta-section {
    padding: 0 0 80px;
}

.cta-banner {
    background: linear-gradient(rgba(10, 25, 48, 0.85), rgba(10, 25, 48, 0.85)), url('../assets/images/cta_bg.png') no-repeat center center/cover;
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .hero-section {
        height: auto;
        padding: 80px 0;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* Services Highlights Split Premium */
.services-highlights-premium {
    background-color: #ffffff;
    padding: 120px 0;
}

.highlights-sticky-content {
    position: sticky;
    top: 120px;
}

.highlights-lead-text {
    font-size: 1.1rem;
    color: #556070;
    line-height: 1.7;
    margin-top: 15px;
}

.experience-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.eb-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.eb-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #777;
    line-height: 1.3;
}

/* Highlight Item - Modern Isometric Tech Card */
.highlight-item-new {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    padding: 40px 35px;
    border-radius: 28px;
    border: 1px solid rgba(8, 27, 75, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(8, 27, 75, 0.02);
    z-index: 1;
}

.highlight-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-item-new:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow:
        0 30px 60px rgba(8, 27, 75, 0.08),
        0 0 25px rgba(0, 242, 254, 0.05);
}

.highlight-item-new:hover::before {
    transform: scaleY(1);
    transform-origin: top;
    background: #00f2fe;
}

.hi-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 106, 42, 0.08);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 106, 42, 0.05);
}

.highlight-item-new:hover .hi-icon {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.3);
}

.highlight-item-new h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.highlight-item-new:hover h4 {
    color: #00f2fe;
}

.highlight-item-new p {
    font-size: 0.95rem;
    color: #556070;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Watermark Numbers */
.hi-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(8, 27, 75, 0.005);
    -webkit-text-stroke: 1px rgba(0, 242, 254, 0.12);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

.highlight-item-new:hover .hi-number {
    color: rgba(0, 242, 254, 0.03);
    -webkit-text-stroke-color: rgba(0, 242, 254, 0.3);
    transform: scale(1.15) translateY(-5px);
}

/* Special full-width Dark Navy card */
.highlight-special {
    display: flex;
    align-items: center;
    gap: 35px;
    background: linear-gradient(135deg, #081B4B 0%, #030d24 100%);
    border-color: rgba(0, 242, 254, 0.15);
    box-shadow: 0 20px 45px rgba(4, 12, 38, 0.25);
    padding: 35px 40px;
}

.highlight-special::before {
    background: #00f2fe;
}

.highlight-special:hover {
    border-color: rgba(0, 242, 254, 0.45);
    box-shadow:
        0 30px 60px rgba(4, 12, 38, 0.45),
        0 0 30px rgba(0, 242, 254, 0.2);
}

.highlight-special h4 {
    color: var(--white);
}

.highlight-special p {
    color: rgba(255, 255, 255, 0.75);
}

.highlight-special .hi-number {
    color: rgba(255, 255, 255, 0.002);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
}

.highlight-special:hover .hi-number {
    color: rgba(0, 242, 254, 0.02);
    -webkit-text-stroke-color: rgba(0, 242, 254, 0.2);
}

/* Live Operational Support Ticker Badge */
.support-ticker {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.support-ticker .ticker-dot {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    animation: telemetryPulse 1.5s infinite;
}

@media (max-width: 991px) {
    .highlights-sticky-content {
        position: static;
        margin-bottom: 50px;
        text-align: center;
    }

    .experience-badge-mini {
        justify-content: center;
    }

    .console-card-wrapper {
        padding: 30px;
    }

    .preservation-console-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .console-btn-pill.active {
        transform: scale(1.02);
    }

    .console-btn-pill {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .highlight-special {
        flex-direction: column;
        text-align: center;
    }
}

/* Gallery Cinematic Mosaic */
.gallery-filters-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-pill {
    background: transparent;
    border: 1px solid #eee;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 106, 42, 0.2);
    transform: translateY(-3px);
}

.gallery-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.mosaic-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item-tall {
    grid-row: span 2;
}

.mosaic-item-wide {
    grid-column: span 2;
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 27, 75, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

.mosaic-info {
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-item:hover .mosaic-info {
    transform: translateY(0);
}

.m-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.m-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.m-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.mosaic-item:hover .m-zoom {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1199px) {
    .gallery-mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gallery-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .mosaic-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 575px) {
    .gallery-mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .mosaic-item-large,
    .mosaic-item-wide {
        grid-column: span 1;
    }
}

/* ==========================================
   NEW HOMEPAGE SECTIONS STYLING
   ========================================== */

/* Industries We Serve */
.industries-section {
    background-color: var(--white);
}

/* Certifications Section - Premium Trust Graphics */
.certifications-section {
    position: relative;
    background-color: #f3f7fb;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 106, 42, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(8, 27, 75, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 50%, #f8fafc 100%);
    overflow: hidden;
    padding: 100px 0;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(8, 27, 75, 0.045) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.certifications-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(255, 106, 42, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    pointer-events: none;
    z-index: 1;
}

.certifications-section .container {
    position: relative;
    z-index: 2;
}

.cert-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(8, 27, 75, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(8, 27, 75, 0.04);
    height: 100%;
    position: relative;
    z-index: 1;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(8, 27, 75, 0.08);
    border-color: var(--primary-color);
}

.cert-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 42, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cert-card:hover .cert-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.cert-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.cert-text {
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 106, 42, 0.2);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.client-avatar {
    background: var(--secondary-color) !important;
}

.client-name {
    font-size: 1.05rem;
}

.client-role {
    font-size: 0.85rem;
}

/* FAQ Accordion Custom Styling */
.faq-section {
    background-color: var(--white);
}

.accordion-custom .accordion-item {
    transition: all 0.3s ease;
}

.accordion-custom .accordion-button {
    box-shadow: none !important;
    border-radius: 16px !important;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: rgba(255, 106, 42, 0.03) !important;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23081B4B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6A2A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-custom .accordion-collapse {
    border: none !important;
}

/* Unique Premium Industry Cards */
.industry-card-premium {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(8, 27, 75, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #081B4B;
    margin-bottom: 30px;
}

/* Background Image inside Card */
.industry-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Elegant Gradient Overlay with modern dark overlay */
.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(8, 27, 75, 0) 0%,
            rgba(8, 27, 75, 0.4) 40%,
            rgba(8, 27, 75, 0.95) 100%);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Glassmorphic border glow effect on hover */
.industry-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    z-index: 4;
    pointer-events: none;
}

/* Card Content styling */
.industry-card-content {
    position: relative;
    padding: 30px;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Icon Wrap inside card */
.industry-icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 106, 42, 0.3);
}

/* Title Styling */
.industry-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

/* Description text - slides up on hover */
.industry-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

/* Hover Interactive States */
.industry-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(8, 27, 75, 0.25);
}

.industry-card-premium:hover .industry-card-bg {
    transform: scale(1.1);
}

.industry-card-premium:hover .industry-card-overlay {
    background: linear-gradient(180deg,
            rgba(8, 27, 75, 0.1) 0%,
            rgba(8, 27, 75, 0.5) 30%,
            rgba(8, 27, 75, 0.98) 100%);
}

.industry-card-premium:hover::after {
    border-color: rgba(255, 106, 42, 0.4);
    box-shadow: inset 0 0 20px rgba(255, 106, 42, 0.15);
}

.industry-card-premium:hover .industry-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.industry-card-premium:hover .industry-desc {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    margin-top: 5px;
}

/* Home Gallery Cinematic - Premium Dark Navy Theme (matches Services section!) */
.gallery-section {
    position: relative;
    background-color: #081B4B;
    background-image:
        radial-gradient(circle at 85% 20%, rgba(255, 106, 42, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(13, 110, 253, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #081B4B 0%, #040e29 100%);
    overflow: hidden;
    padding: 100px 0;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-section .section-title {
    color: var(--white) !important;
}

/* Upgraded glowing outline button for dark theme */
.gallery-section .btn-outline-secondary-custom {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white) !important;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
}

.gallery-section .btn-outline-secondary-custom:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 0 25px rgba(255, 106, 42, 0.4);
}

/* ==========================================
   RESPONSIVE ALIGNMENT & TYPOGRAPHY FIXES
   ========================================== */

/* 1. Statistics Card & Numbers Responsiveness */
@media (max-width: 991px) {
    .stat-card {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .stat-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-suffix {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 575px) {
    .stat-card {
        padding: 20px 10px;
        border-radius: 16px;
    }

    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-suffix {
        font-size: 1.4rem;
    }

    .stat-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* 2. Industries We Serve - Touch/Mobile Accessibility Fix */
@media (max-width: 991px) {

    /* Make description visible on mobile/tablet touch screens */
    .industry-card-premium .industry-desc {
        height: auto;
        opacity: 1;
        transform: translateY(0);
        margin-top: 10px;
    }

    /* Darken overlay on mobile/tablet to ensure text readability by default */
    .industry-card-premium .industry-card-overlay {
        background: linear-gradient(180deg,
                rgba(8, 27, 75, 0.2) 0%,
                rgba(8, 27, 75, 0.6) 30%,
                rgba(8, 27, 75, 0.98) 100%);
    }

    /* Scale background image slightly on mobile to feel premium */
    .industry-card-premium .industry-card-bg {
        transform: scale(1.05);
    }
}

/* 3. Sticky Content & CTA Alignment Fixes for Mobile/Tablet */
@media (max-width: 991px) {

    .why-content-sticky,
    .highlights-sticky-content {
        position: static !important;
        margin-bottom: 40px;
        text-align: center;
    }

    .why-cta-box {
        margin: 0 auto;
        text-align: left;
        /* Keep box content left-aligned for good layout, but box itself is centered */
    }

    .experience-badge-mini {
        justify-content: center;
    }
}

/* 4. Global Typography & Spacing Responsiveness (Hero & Section Titles) */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Stack hero CTA buttons vertically on mobile for proper alignment */
    .hero-content .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .hero-content .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* 5. Bulletproof Mobile Spacing for Homepage Sections (Services, Industries & Certifications) */
@media (max-width: 991px) {

    /* Spacing between service cards stacked on mobile/tablet */
    .services-section-home .row>div {
        margin-bottom: 30px !important;
    }

    .services-section-home .row>div:last-child {
        margin-bottom: 0 !important;
    }

    /* Spacing between industry cards stacked on mobile/tablet */
    .industries-section .row>div {
        margin-bottom: 30px !important;
    }

    .industries-section .row>div:last-child {
        margin-bottom: 0 !important;
    }

    /* Spacing between certification cards stacked on mobile/tablet */
    .certifications-section .row>div {
        margin-bottom: 30px !important;
    }

    .certifications-section .row>div:last-child {
        margin-bottom: 0 !important;
    }

    /* Spacing between gallery items stacked on mobile/tablet */
    .gallery-section .row>div {
        margin-bottom: 30px !important;
    }

    .gallery-section .row>div:last-child {
        margin-bottom: 0 !important;
    }

    /* Spacing between testimonial cards stacked on mobile/tablet */
    .testimonials-section .row>div {
        margin-bottom: 30px !important;
    }

    .testimonials-section .row>div:last-child {
        margin-bottom: 0 !important;
    }

    /* Spacing between stats cards stacked on mobile/tablet */
    .stats-section .row>div {
        margin-bottom: 20px !important;
    }

    /* Spacing between service highlight cards stacked on mobile/tablet */
    .services-highlights-premium .row>div {
        margin-bottom: 24px !important;
    }

    .services-highlights-premium .row>div:last-child {
        margin-bottom: 0 !important;
    }
}

/* ==========================================================================
   PREMIUM INTERACTIVE INFRASTRUCTURE SHOWCASE
   ========================================================================== */

.infra-showcase-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f4f6fa 100%);
    position: relative;
    overflow: hidden;
}

/* Technical grid overlay for a premium engineering vibe */
.infra-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(8, 27, 75, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 27, 75, 0.015) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.infra-showcase-section .container {
    position: relative;
    z-index: 2;
}

/* Left Column: Interactive Menu List */
.infra-menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.infra-menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: transparent;
    border-radius: 20px;
    border: 1px solid transparent;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.infra-menu-item:hover {
    background: rgba(8, 27, 75, 0.02);
    border-color: rgba(8, 27, 75, 0.05);
    border-left-color: rgba(255, 106, 42, 0.3);
    transform: translateX(5px);
}

.infra-menu-item.active {
    background: var(--white);
    border-color: rgba(8, 27, 75, 0.08);
    border-left-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(8, 27, 75, 0.05);
}

/* Numbers in Menu */
.infra-menu-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(8, 27, 75, 0.3);
    font-family: var(--nav-font);
    transition: all 0.3s ease;
}

.infra-menu-item.active .infra-menu-num {
    color: var(--primary-color);
}

/* Icons in Menu */
.infra-menu-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(8, 27, 75, 0.04);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.infra-menu-item:hover .infra-menu-icon-wrap {
    color: var(--primary-color);
    background: rgba(255, 106, 42, 0.08);
}

.infra-menu-item.active .infra-menu-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 106, 42, 0.25);
    transform: scale(1.05);
}

/* Content Text in Menu */
.infra-menu-info {
    flex-grow: 1;
}

.infra-menu-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0 0 4px;
    transition: all 0.3s ease;
}

.infra-menu-subtitle {
    font-size: 0.82rem;
    color: #666;
    margin: 0;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
    transition: all 0.3s ease;
}

.infra-menu-item.active .infra-menu-title {
    color: var(--secondary-color);
}

/* Right Column: Visual Showcase Canvas */
.infra-display-container {
    position: relative;
    height: 540px;
    background: #081B4B;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(8, 27, 75, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Interactive elements pulse indicator */
.infra-interactive-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(8, 27, 75, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.infra-interactive-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }

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

    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

/* Image Showcase Wrapper */
.infra-display-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.infra-display-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.infra-display-img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Modern Gradient Vignette Over Images */
.infra-display-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(8, 27, 75, 0.1) 0%,
            rgba(8, 27, 75, 0.4) 50%,
            rgba(8, 27, 75, 0.92) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Glassmorphism Details Card */
.infra-display-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 40px;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.infra-display-details.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.infra-display-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 106, 42, 0.12);
    border: 1px solid rgba(255, 106, 42, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.infra-display-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.infra-display-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

/* Dynamic Specifications List inside Display Card */
.infra-specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.infra-spec-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.infra-spec-badge i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.infra-spec-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.infra-display-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 106, 42, 0.2);
}

.infra-display-action:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(255, 106, 42, 0.3);
}

.infra-display-action i {
    transition: transform 0.3s ease;
}

.infra-display-action:hover i {
    transform: translateX(5px);
}

/* Mobile Accordion Container */
.infra-accordion-container {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.infra-accordion-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(8, 27, 75, 0.06);
    box-shadow: 0 5px 15px rgba(8, 27, 75, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.infra-accordion-item.active {
    box-shadow: 0 15px 35px rgba(8, 27, 75, 0.08);
    border-color: rgba(8, 27, 75, 0.08);
}

/* Accordion Header */
.infra-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.infra-accordion-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.infra-accordion-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
}

.infra-accordion-icon {
    font-size: 1.1rem;
    color: var(--secondary-color);
    width: 32px;
    height: 32px;
    background: rgba(8, 27, 75, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.infra-accordion-item.active .infra-accordion-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 12px rgba(255, 106, 42, 0.2);
}

.infra-accordion-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin: 0;
}

.infra-accordion-arrow {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.infra-accordion-item.active .infra-accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Accordion Content Panel */
.infra-accordion-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fbfcfd;
    border-top: 0 solid rgba(8, 27, 75, 0.05);
}

.infra-accordion-item.active .infra-accordion-panel {
    max-height: 1000px;
    /* High enough to contain content */
    opacity: 1;
    border-top: 1px solid rgba(8, 27, 75, 0.05);
}

.infra-accordion-body {
    padding: 24px;
}

.infra-accordion-img-wrap {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.infra-accordion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infra-accordion-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 106, 42, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.infra-accordion-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.infra-accordion-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    background: rgba(8, 27, 75, 0.02);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(8, 27, 75, 0.04);
}

.infra-accordion-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
}

.infra-accordion-spec i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.infra-accordion-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.infra-accordion-action:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ==========================================================================
   RESPONSIVE SHOWCASE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 991px) {
    .infra-showcase-section {
        padding: 60px 0;
    }

    /* Hide Desktop Showcase, Show Mobile Accordion */
    .infra-showcase-desktop-wrapper {
        display: none !important;
    }

    .infra-accordion-container {
        display: flex;
    }
}

/* ==========================================================================
   INTERACTIVE CLIMATE-CONTROLLED PRODUCE VAULT (HOMEPAGE)
   ========================================================================== */

.produce-vault-section {
    position: relative;
    background-color: #081B4B;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 106, 42, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, #081B4B 0%, #030c22 100%);
    overflow: hidden;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Technical engineering grid overlay */
.produce-vault-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.produce-vault-section .container {
    position: relative;
    z-index: 2;
}

.produce-vault-section .section-title {
    color: var(--white) !important;
}

/* Left Column: Interactive Selector List */
.vault-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vault-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(255, 255, 255, 0.65);
}

.vault-menu-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 106, 42, 0.4);
    transform: translateX(5px);
    color: var(--white);
}

.vault-menu-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    border-left-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vault-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.4s ease;
}

.vault-menu-item:hover .vault-menu-icon {
    background: rgba(255, 106, 42, 0.15);
    color: var(--primary-color);
    transform: scale(1.05);
}

.vault-menu-item.active .vault-menu-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 106, 42, 0.3);
}

.vault-menu-text {
    flex-grow: 1;
}

.vault-menu-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.vault-menu-sub {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 0;
}

/* Right Column: Visual Dashboard Canvas */
.vault-dashboard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    color: var(--white);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vault-dashboard::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 106, 42, 0.05) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.vault-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vault-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary-green);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
}

.vault-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.vault-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Metric Display Grids */
.vault-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.vault-metric-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
}

.vault-metric-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.vault-metric-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vault-metric-label i {
    color: var(--primary-color);
}

.vault-metric-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.vault-metric-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.vault-metric-unit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Thermometer Custom Bar */
.vault-gauge-wrap {
    margin-top: 15px;
}

.vault-temp-gauge {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.vault-temp-fill {
    height: 100%;
    width: 0%;
    /* Dynamic */
    background: linear-gradient(to right, var(--primary-green) 40%, var(--primary-color) 100%);
    border-radius: 50px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Technical Details Area */
.vault-details-bottom {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
}

.vault-tech-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.vault-specs-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vault-spec-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vault-spec-pill i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

/* ==========================================================================
   COMPLIANCE SHIELD STYLING (HOMEPAGE)
   ========================================================================== */

.cert-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 5;
}

.cert-tag.verified {
    color: var(--primary-green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cert-tag.compliant {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.cert-tag.active {
    color: var(--primary-color);
    background: rgba(255, 106, 42, 0.1);
    border: 1px solid rgba(255, 106, 42, 0.2);
}

.cert-checklist {
    list-style: none;
    padding: 15px 0 0;
    margin: 15px 0 0;
    border-top: 1px solid rgba(8, 27, 75, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.cert-checklist-item {
    font-size: 0.82rem;
    color: #526075;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-checklist-item i {
    color: var(--primary-green);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-checklist-item i {
    transform: scale(1.15);
}

/* Responsive Vault Layout adjustments */
@media (max-width: 991px) {
    .produce-vault-section {
        padding: 60px 0;
    }

    .vault-menu-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .vault-menu-item {
        flex-shrink: 0;
        scroll-snap-align: start;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-top: 4px solid transparent;
        padding: 12px 18px;
    }

    .vault-menu-item.active {
        border-left-color: rgba(255, 255, 255, 0.12);
        border-top-color: var(--primary-color);
    }

    .vault-menu-sub {
        display: none;
    }

    .vault-dashboard {
        padding: 30px;
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .vault-dashboard {
        padding: 20px;
    }

    .vault-title {
        font-size: 1.4rem;
    }

    .vault-metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vault-metric-val {
        font-size: 1.5rem;
    }

    .vault-spec-pill {
        width: 100%;
    }
}

/* ==========================================================================
   ABOUT US - OPERATIONS HUD & COLD-CHAIN TELEMETRY SHOWCASE
   ========================================================================== */

.about-hud-section {
    position: relative;
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle at 80% 50%, rgba(255, 106, 42, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 20% 50%, rgba(0, 242, 254, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #f3f6fa 100%);
    overflow: hidden;
    padding: 100px 0;
    border-top: 1px solid rgba(8, 27, 75, 0.05);
    border-bottom: 1px solid rgba(8, 27, 75, 0.05);
}

/* Blueprint grid pattern overlay */
.about-hud-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(8, 27, 75, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 27, 75, 0.02) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

.about-hud-section .container {
    position: relative;
    z-index: 2;
}

/* Info Deck Card - Ultra-Premium Light Glassmorphism */
.about-hud-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(8, 27, 75, 0.08);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(8, 27, 75, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-hud-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.08);
}

/* Pulse status badge */
.hud-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.20);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hud-pulse-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-green);
    animation: hudPulse 1.8s infinite;
}

@keyframes hudPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.about-hud-title {
    color: var(--secondary-color); /* Premium Dark Navy */
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-hud-title span {
    color: var(--primary-color);
}

.about-hud-desc {
    color: #555555; /* Sharp charcoal text for light background readability */
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 25px;
}

/* Parameter Grid */
.hud-tech-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hud-tech-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background: rgba(8, 27, 75, 0.02);
    border: 1px solid rgba(8, 27, 75, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hud-tech-item:hover {
    background: rgba(8, 27, 75, 0.04);
    border-color: rgba(8, 27, 75, 0.08);
}

.hud-tech-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    background: rgba(255, 106, 42, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hud-tech-item:hover .hud-tech-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 106, 42, 0.3);
}

.hud-tech-details h5 {
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.hud-tech-details p {
    color: #666666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Cyber Button Styling */
.btn-cyber-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(255, 106, 42, 0.25);
    overflow: hidden;
    border: none;
}

.btn-cyber-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-cyber-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 106, 42, 0.4);
}

.btn-cyber-primary:hover::before {
    left: 100%;
}

.btn-cyber-primary i {
    transition: transform 0.3s ease;
}

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

/* Right Column: Camera Frame Operations HUD */
.hud-camera-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(8, 27, 75, 0.08);
    box-shadow: 0 20px 45px rgba(8, 27, 75, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    min-height: 480px;
}

.hud-camera-frame:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 35px 70px rgba(0, 242, 254, 0.08);
}

.hud-camera-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.hud-camera-frame:hover .hud-camera-img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* Scanning line overlay */
.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to bottom, rgba(0, 242, 254, 0) 0%, rgba(0, 242, 254, 0.4) 50%, rgba(0, 242, 254, 0) 100%);
    opacity: 0.7;
    z-index: 3;
    pointer-events: none;
    animation: scanSweep 6s linear infinite;
}

@keyframes scanSweep {
    0% {
        top: -2%;
    }
    100% {
        top: 102%;
    }
}

/* Technical Brackets styling for corner HUD grids */
.hud-bracket {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 4;
    pointer-events: none;
    transition: all 0.4s ease;
}

.hud-camera-frame:hover .hud-bracket {
    border-color: rgba(0, 242, 254, 0.7);
    width: 24px;
    height: 24px;
}

.hud-bracket.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.hud-bracket.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.hud-bracket.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.hud-bracket.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Telemetry Labels & Badges */
.hud-cam-tag {
    position: absolute;
    top: 25px;
    left: 55px;
    color: rgba(0, 242, 254, 0.85);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 4;
    text-transform: uppercase;
    font-family: monospace;
    text-shadow: 0 0 5px rgba(0, 242, 254, 0.6);
}

.hud-status-stable {
    position: absolute;
    top: 25px;
    right: 55px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--primary-green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 4;
    text-transform: uppercase;
    font-family: monospace;
}

.hud-status-stable .blink-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-green);
    animation: hudBlink 1.2s infinite;
}

@keyframes hudBlink {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.hud-rec-tag {
    position: absolute;
    bottom: 25px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    z-index: 4;
    text-transform: uppercase;
    font-family: monospace;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}

.hud-rec-tag .red-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: hudBlink 1s infinite;
}

/* Detailed Climate Telemetry Dashboard overlay */
.hud-telemetry-overlay {
    position: absolute;
    bottom: 25px;
    left: 45px;
    background: rgba(8, 27, 75, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    z-index: 4;
    width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.hud-camera-frame:hover .hud-telemetry-overlay {
    background: rgba(8, 27, 75, 0.85);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.05);
}

.hud-telemetry-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: monospace;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
}

.hud-telemetry-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hud-telemetry-row:last-child {
    margin-bottom: 0;
}

.hud-telemetry-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 600;
}

.hud-telemetry-value {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hud-telemetry-value.cyan {
    color: #00f2fe;
    text-shadow: 0 0 5px rgba(0, 242, 254, 0.3);
}

.hud-telemetry-value.green {
    color: var(--primary-green);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
}

/* Mobile HUD adaptations */
@media (max-width: 991px) {
    .about-hud-section {
        padding: 60px 0;
    }
    
    .about-hud-card {
        padding: 25px;
    }
    
    .about-hud-title {
        font-size: 1.9rem;
    }
    
    .hud-camera-frame {
        min-height: 380px;
        margin-top: 30px;
    }
    
    .hud-telemetry-overlay {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        max-width: 280px;
    }

    .hud-rec-tag {
        display: none; /* Hide REC tag on mobile to save space */
    }
}

/* Mobile & Tablet Telemetry Console Adaptations for Services Page */
@media (max-width: 991px) {
    .console-display-panel {
        padding: 30px 25px !important;
    }

    .panel-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .panel-header > div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .crop-display-title {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .chamber-dial-widget {
        align-self: center !important;
        margin-top: 15px !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .atmosphere-tech-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 575px) {
    .console-display-panel {
        padding: 20px 15px !important;
    }

    .chart-labels {
        font-size: 0.7rem !important;
    }
}