/* ========================================
   Metalix Global - Main Stylesheet
   Color Scheme:
   Primary: #95C13A (Lime Green)
   Secondary: #2A4453 (Dark Blue)
======================================== */

/* ========================================
   Root Variables
======================================== */
:root {
    --primary-color: #95C13A;
    --secondary-color: #2A4453;
    --text-dark: #1A171B;
    --text-light: #6E8DBB;
    --bg-gray-light: #F5F5F5;
    --white: #ffffff;
}

/* ========================================
   Global Styles
======================================== */
html {
    overflow-x: hidden; /* prevent horizontal scroll at document level */
    max-width: 100%;   /* 100% not 100vw — 100vw includes scrollbar width */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; /* hidden on body (not clip) so it forms a true containing block */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    text-align: justify;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ========================================
   Header & Navigation
======================================== */
#navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled {
    background: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar-brand {
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 4px 8px;
    box-sizing: border-box;
}

#navbar.scrolled .navbar-logo {
    height: 40px;
}

#navbar.scrolled .logo-img {
    height: 40px;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
    border-radius: 5px;
    background-color: transparent;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(149, 193, 58, 0.3);
    outline: none;
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
}

.navbar-toggler .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggler:hover .icon-bar {
    background-color: var(--white);
}

.navbar-nav {
    gap: 5px;
}

.main-menu-item {
    position: relative;
}

.menu-link {
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: block;
}

.menu-link:hover,
.menu-link:focus {
    color: var(--primary-color) !important;
    background-color: rgba(149, 193, 58, 0.1);
}

.main-menu-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu-link:hover::after,
.main-menu-link.active::after {
    width: 70%;
}

.main-menu-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(149, 193, 58, 0.15);
}

.menu-item-has-children > .menu-link::before {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    color: var(--primary-color);
}

/* Bootstrap Dropdown Styles */
.dropdown-menu {
    background: linear-gradient(135deg, rgba(42, 68, 83, 0.98) 0%, rgba(26, 50, 64, 0.98) 100%);
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    margin-top: 10px;
}

.dropdown-menu .dropdown-item {
    padding: 10px 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding-left: 30px;
}

.dropdown-toggle::after {
    display: none;
}

.nav-link.dropdown-toggle::before {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-link.dropdown-toggle[aria-expanded="true"]::before {
    transform: rotate(180deg);
    display: inline-block;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.sub-menu {
    background: linear-gradient(135deg, rgba(42, 68, 83, 0.98) 0%, rgba(26, 50, 64, 0.98) 100%);
    padding: 15px 0;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
}

.sub-menu-link {
    padding: 10px 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.sub-menu-link:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding-left: 30px;
}

.sub-menu-item.with-arrow .sub-menu-link::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
}

/* ═══════════════════════════════════════════
   Mobile Menu — Slide-in Drawer
   Drawer is a direct <body> child so
   position:fixed works perfectly on all
   mobile browsers — no stacking context bug.
═══════════════════════════════════════════ */

/* Overlay backdrop */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 26, 0.72);
    z-index: 1049;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
    pointer-events: all;
}

/* Drawer panel */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -105%;
    width: min(340px, 90vw);
    height: 100dvh;
    min-height: 100vh;
    background: linear-gradient(170deg, #1a3240 0%, #2A4453 100%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.55);
    border-left: 1px solid rgba(149, 193, 58, 0.15);
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    /* No transform, filter, or perspective — never breaks fixed children */
}
.mobile-drawer.is-open {
    right: 0;
}

/* Colorful scrollbar for the drawer */
.mobile-drawer {
    scrollbar-width: thin;
    scrollbar-color: #95C13A rgba(149, 193, 58, 0.1);
}
.mobile-drawer::-webkit-scrollbar {
    width: 5px;
}
.mobile-drawer::-webkit-scrollbar-track {
    background: rgba(149, 193, 58, 0.08);
    border-radius: 10px;
}
.mobile-drawer::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #95C13A 0%, #5fa010 100%);
    border-radius: 10px;
    border: 1px solid rgba(149, 193, 58, 0.2);
}
.mobile-drawer::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b5e051 0%, #95C13A 100%);
}

/* Drawer header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(149, 193, 58, 0.15);
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.12);
    gap: 16px;
}

.mobile-close-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    border: 1.5px solid rgba(149, 193, 58, 0.4);
    background: rgba(149, 193, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease;
    color: #95C13A;
    flex-shrink: 0;
}
.mobile-close-btn:hover {
    background: rgba(149, 193, 58, 0.22);
    border-color: #95C13A;
}

/* Nav label */
.mobile-nav-label {
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(149, 193, 58, 0.6);
    padding: 12px 16px 4px;
    display: block;
}

/* Nav items container */
.mobile-drawer .menu-container {
    flex: 1;
    padding: 8px 14px 6px;
    overflow-y: auto;
}

.mobile-drawer .navbar-nav {
    flex-direction: column;
    gap: 3px;
}

.mobile-drawer .main-menu-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    border-left: 3px solid transparent !important;
    transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, padding-left 0.22s ease !important;
    letter-spacing: 0.2px !important;
}
.mobile-drawer .main-menu-link::after {
    display: none !important;
}
.mobile-drawer .main-menu-link:hover {
    color: #95C13A !important;
    background: rgba(149, 193, 58, 0.1) !important;
    border-left-color: #95C13A !important;
    padding-left: 22px !important;
}
.mobile-drawer .main-menu-link.active {
    color: #95C13A !important;
    background: rgba(149, 193, 58, 0.12) !important;
    border-left-color: #95C13A !important;
    font-weight: 700 !important;
}

/* CTA button */
.mobile-drawer-cta {
    display: block;
    margin: 16px 22px 0;
    padding: 13px 20px;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff !important;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 16px rgba(149, 193, 58, 0.45);
}
.mobile-drawer-cta:hover {
    opacity: 0.88;
    color: #fff !important;
}

/* Connect toggle */
.mobile-drawer .connect-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto;
    padding: 11px 20px;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(149, 193, 58, 0.3);
    cursor: pointer;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}
.mobile-drawer .connect-toggle:active {
    opacity: 0.85;
    box-shadow: 0 2px 6px rgba(149, 193, 58, 0.3);
}
.mobile-drawer .connect-toggle i {
    font-size: 0.95rem;
}
.mobile-drawer .connect-toggle .toggle-arrow {
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer .connect-toggle.is-expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* Connect section with smooth animation */
.mobile-drawer #connectSection {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
    margin: 0 22px;
}
.mobile-drawer #connectSection.is-open {
    max-height: 400px;
    opacity: 1;
    margin: 16px 22px;
}

/* Connect section */
.mobile-drawer .connect-section {
    background: rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(149, 193, 58, 0.15);
    padding: 22px 22px 28px;
    margin: 16px 0 0;
    flex-shrink: 0;
}
.mobile-drawer .connect-section p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.55;
}
.mobile-drawer .connect-section p strong {
    color: rgba(255, 255, 255, 0.9);
}
.mobile-drawer .connect-section .conn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(149, 193, 58, 0.1);
}
.mobile-drawer .connect-section .conn-row:last-child { border-bottom: none; }
.mobile-drawer .connect-section .conn-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 9px;
    background: rgba(149, 193, 58, 0.12);
    border: 1px solid rgba(149, 193, 58, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95C13A;
}
.mobile-drawer .connect-section .conn-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1;
    margin-bottom: 2px;
}
.mobile-drawer .connect-section .conn-value a,
.mobile-drawer .connect-section .conn-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-drawer .connect-section .conn-value a:hover {
    color: #95C13A !important;
}

/* Hamburger → X when menu open */
.navbar-toggler .icon-bar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    transform-origin: center;
}
.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5.5px);
}
.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5.5px);
}

/* Hide drawer entirely on desktop */
@media (min-width: 992px) {
    .mobile-drawer,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
}

.video-bg {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 68, 83, 0.7) 0%, rgba(149, 193, 58, 0.1) 100%);
    z-index: 2;
}

.title-container {
    position: relative;
    z-index: 3;
    padding-bottom: 100px;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero h1::first-line {
    color: var(--primary-color);
}

.scroll-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(149, 193, 58, 0.5);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(149, 193, 58, 0.7);
}

.scroll-btn svg {
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Values Section
======================================== */
.values {
    padding: 80px 0 160px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-gray-light) 100%);
    position: relative;
    z-index: 5;
}

.values .card {
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(149, 193, 58, 0.2);
    margin-bottom: 30px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.values .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(149, 193, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.values .card:hover::before {
    left: 100%;
}

.values .card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.05) 100%);
}

.values .card svg {
    margin-bottom: 30px;
    height: 80px;
    transition: all 0.3s ease;
}

.values .card:hover svg {
    transform: scale(1.1) rotateY(360deg);
}

.values .card svg path {
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.values .card:hover svg path {
    fill: var(--secondary-color);
}

.values .card h2 {
    color: var(--secondary-color);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.values .card p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}

/* ========================================
   Industry Verticals Section
======================================== */
.industry-verticles {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-gray-light) 0%, var(--white) 100%);
}

.heading-bg {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #1a3240 100%);
    height: 120px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(42, 68, 83, 0.3);
}

.industry-verticles h2 {
    color: var(--secondary-color);
    font-size: 48px;
    font-weight: 700;
    margin-top: -80px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.industry-verticles h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.industry-slider {
    margin-top: 30px;
}

.industry-slider .swiper-slide {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.industry-slider .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.industry-slider .swiper-slide a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(42, 68, 83, 0.85), transparent);
    transition: all 0.4s ease;
}

.industry-slider .swiper-slide a:hover::before {
    background: linear-gradient(to top, rgba(149, 193, 58, 0.9) 0%, rgba(42, 68, 83, 0.5) 50%, transparent 100%);
}

.industry-slider .slide-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.industry-slider .swiper-slide a:hover .slide-title {
    transform: translateX(10px);
    color: var(--primary-color);
}

.swiper-scrollbar {
    background-color: rgba(42, 68, 83, 0.3);
    height: 8px;
    margin-top: 20px;
    border-radius: 4px;
}

.swiper-scrollbar-drag {
    background: linear-gradient(90deg, var(--primary-color) 0%, #b5e051 100%);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(149, 193, 58, 0.5);
}

/* ========================================
   Our Network Section
======================================== */
.our-network {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-gray-light) 100%);
}

.heading-col {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    color: var(--white);
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(42, 68, 83, 0.3);
}

.heading-col h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.heading-col h5 {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

.location-switcher {
    border: none;
    margin-bottom: 30px;
}

.location-switcher .nav-link {
    background-color: transparent;
    border: 3px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    padding: 12px 35px;
    margin: 0 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(42, 68, 83, 0.2);
}

.location-switcher .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(149, 193, 58, 0.3);
}

.location-switcher .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(149, 193, 58, 0.5);
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(149, 193, 58, 0.1) 0%, var(--bg-gray-light) 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(149, 193, 58, 0.2);
}

.map-placeholder h3 {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(149, 193, 58, 0.2);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(149, 193, 58, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    border-color: var(--secondary-color);
}

.location-item h5 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.location-item:hover h5,
.location-item:hover p {
    color: var(--white);
}

/* ========================================
   Latest News Section
======================================== */
.latest-news {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-gray-light) 0%, var(--white) 100%);
}

.section-heading {
    color: var(--secondary-color);
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #b5e051 100%);
    border-radius: 2px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(149, 193, 58, 0.2);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 3px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.news-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-gray-light);
    position: relative;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(42, 68, 83, 0.5));
    transition: all 0.3s ease;
}

.news-card:hover .news-image::before {
    background: linear-gradient(to bottom, transparent, rgba(149, 193, 58, 0.5));
}

.news-content {
    padding: 30px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.03) 100%);
}

.news-date {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-content p {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.read-more:hover {
    color: var(--white);
    background-color: var(--primary-color);
    padding: 5px 15px;
}

/* ========================================
   Footer
======================================== */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    color: var(--white);
    padding: 60px 0 30px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    footer {
        padding: 36px 0 20px;
    }
    .btm-footer {
        margin-top: 24px;
        padding-top: 20px;
    }
}

footer h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer address {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-nav ul,
.social-links {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav li a {
    position: relative;
    display: inline-block;
}

.footer-nav li a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
    transition: margin-right 0.3s ease;
}

.footer-nav li a:hover::before {
    margin-right: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(149, 193, 58, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(149, 193, 58, 0.5);
}

.social-links svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover svg path {
    fill: var(--white);
}

.arrow-right {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 12px 25px;
    background: rgba(149, 193, 58, 0.1);
    border-radius: 50px;
    border: 2px solid var(--primary-color);
}

.arrow-right:hover {
    gap: 20px;
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(149, 193, 58, 0.5);
}

.arrow-right svg {
    transition: all 0.3s ease;
}

.arrow-right:hover svg path {
    stroke: var(--white);
}

.btm-footer {
    border-top: 2px solid rgba(149, 193, 58, 0.3);
    margin-top: 40px;
    padding-top: 30px;
}

.btm-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.btm-footer ul {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btm-footer ul li a {
    font-size: 14px;
    position: relative;
}

.btm-footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.btm-footer ul li a:hover::after {
    width: 100%;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .industry-verticles h2 {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .values .card {
        padding: 30px 20px;
    }
    
    .industry-verticles h2 {
        font-size: 28px;
    }
    
    .heading-col h2 {
        font-size: 32px;
    }
    
    .location-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        padding: 20px;
    }
    
    .sub-menu {
        background-color: rgba(42, 68, 83, 0.98);
    }
}

/* ========================================
   Utility Classes
======================================== */
.bg-gray-light {
    background-color: var(--bg-gray-light);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.v-center {
    display: flex;
    align-items: center;
}

/* Connect Section in Mobile Menu */
.connect-section {
    background: rgba(26, 50, 64, 0.5) !important;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.connect-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.connect-section strong {
    color: var(--primary-color);
}

.connect-section .row {
    color: rgba(255, 255, 255, 0.9);
}

.connect-section a {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.connect-section a:hover {
    color: var(--white) !important;
}

/* Menu Brand in Mobile */
.menu-brand {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.menu-brand img {
    max-height: 50px;
}

/* Additional Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(149, 193, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 193, 58, 0.5);
    background: linear-gradient(135deg, #b5e051 0%, var(--primary-color) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(42, 68, 83, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 68, 83, 0.5);
    background: linear-gradient(135deg, #1a3240 0%, var(--secondary-color) 100%);
}

/* ========================================
   New Sections Styling
======================================== */

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-gray-light) 100%);
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 25px;
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.slogan-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    color: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 25px rgba(149, 193, 58, 0.3);
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-gray-light) 0%, var(--white) 100%);
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.08) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(149, 193, 58, 0.25);
    border: 3px solid var(--primary-color);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .mission-card,
    .vision-card {
        padding: 28px 22px;
        min-height: auto;
    }
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(149, 193, 58, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.mission-card:hover::before,
.vision-card:hover::before {
    top: -30%;
    right: -30%;
}

.mission-card h3,
.vision-card h3 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.mission-card p,
.vision-card p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Value Boxes - Colorful replacements for icons */
.value-box {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.value-box-integrity {
    background: linear-gradient(135deg, #95C13A 0%, #B5E051 100%);
}

.value-box-compliance {
    background: linear-gradient(135deg, #2A4453 0%, #3E5F73 100%);
}

.value-box-partnership {
    background: linear-gradient(135deg, #95C13A 0%, #B5E051 100%);
}

.value-box-quality {
    background: linear-gradient(135deg, #2A4453 0%, #3E5F73 100%);
}

.value-box-global {
    background: linear-gradient(135deg, #95C13A 0%, #B5E051 100%);
}

.values .card:hover .value-box {
    transform: scale(1.1) rotateY(360deg);
}

/* Staggered Layout for Core Values */
.card-value-top {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.08) 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(149, 193, 58, 0.25);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 0;
}

.card-value-bottom {
    background: linear-gradient(135deg, var(--white) 0%, rgba(42, 68, 83, 0.08) 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(42, 68, 83, 0.25);
    border: 3px solid var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive staggered layout - Desktop */
@media (min-width: 992px) {
    .card-value-top {
        margin-bottom: 0;
    }
    
    .card-value-bottom {
        margin-top: 80px;
    }
}

/* Mobile - Remove stagger */
@media (max-width: 991px) {
    .card-value-top,
    .card-value-bottom {
        margin-top: 0;
        margin-bottom: 20px;
    }
}

/* Stagger effect using transform instead of margin */
@media (min-width: 992px) {
    .values .col-lg-3:nth-child(2),
    .values .col-lg-3:nth-child(4) {
        transform: translateY(80px);
    }
}

.card-value-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(149, 193, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.card-value-bottom::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(42, 68, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.card-value-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.card-value-bottom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(42, 68, 83, 0.4);
    border-color: var(--primary-color);
}

.card-value-top:hover::before,
.card-value-bottom:hover::before {
    top: -30%;
    right: -30%;
}

.card-value-top .value-box,
.card-value-bottom .value-box {
    width: 120px;
    height: 120px;
    font-size: 42px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.card-value-top .card-body,
.card-value-bottom .card-body {
    position: relative;
    z-index: 2;
}

.card-value-top h2,
.card-value-bottom h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.card-value-top p,
.card-value-bottom p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Material Cards */
.material-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.08) 100%);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(149, 193, 58, 0.25);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(149, 193, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.material-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.material-card:hover::before {
    top: -30%;
    right: -30%;
}

.material-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.material-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.material-list li {
    color: var(--text-dark);
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid rgba(149, 193, 58, 0.2);
    text-align: justify;
    font-size: 14px;
    position: relative;
}

.material-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.material-list li:last-child {
    border-bottom: none;
}

/* Network Section Updates */
.our-network-new {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-gray-light) 100%);
}

.network-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.08) 100%);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(149, 193, 58, 0.25);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.network-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(149, 193, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.network-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.network-card:hover::before {
    top: -30%;
    right: -30%;
}

.network-flag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.network-flag-canada {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
}

.network-flag-uae {
    background: linear-gradient(135deg, #00AA00 0%, #44DD44 100%);
}

.network-flag-pakistan {
    background: linear-gradient(135deg, #00BB00 0%, #44FF44 100%);
}

.network-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.network-card p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Supplier Requirements Section */
.supplier-requirements {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-gray-light) 0%, var(--white) 100%);
}

.requirement-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.08) 100%);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(149, 193, 58, 0.25);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(149, 193, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.requirement-card:hover::before {
    top: -30%;
    right: -30%;
}

.requirement-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.requirement-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.requirement-list li {
    color: var(--text-dark);
    padding: 10px 0 10px 25px;
    font-size: 14px;
    text-align: justify;
    border-bottom: 1px solid rgba(149, 193, 58, 0.2);
    position: relative;
}

.requirement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.requirement-list li:last-child {
    border-bottom: none;
}

/* What We Offer Section */
.what-we-offer {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-gray-light) 100%);
}

.offer-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(149, 193, 58, 0.08) 100%);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(149, 193, 58, 0.25);
    border: 3px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(149, 193, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(149, 193, 58, 0.4);
    border-color: var(--secondary-color);
}

.offer-item:hover::before {
    top: -30%;
    right: -30%;
}

.offer-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(149, 193, 58, 0.4);
    position: relative;
    z-index: 1;
}

.offer-item h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.offer-item p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: justify;
}

/* Hero Primary Text Color */
.hero-primary {
    color: var(--primary-color);
}

/* Section Subtext */
.section-subtext {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-top: -40px;
    margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    text-align: center;
}


/* ========================================
   HOME REDESIGN — hx- prefix namespace
   Modern, interactive UI/UX
======================================== */

/* ── Scroll-animation base ── */
.hx-pre-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.hx-pre-animate.hx-anim--fade-up   { opacity: 1; transform: translateY(0); }
.hx-pre-animate.hx-anim--fade-right { opacity: 1; transform: translateX(0); }
.hx-pre-animate.hx-anim--fade-left  { opacity: 1; transform: translateX(0); }
[data-animate="fade-right"].hx-pre-animate { transform: translateX(-35px); }
[data-animate="fade-left"].hx-pre-animate  { transform: translateX(35px); }

/* On mobile: never shift elements horizontally — use vertical fade only.
   translateX causes the page to be wider than the viewport, producing
   horizontal scroll and left-side content cuts. */
@media (max-width: 991px) {
    [data-animate="fade-right"].hx-pre-animate,
    [data-animate="fade-left"].hx-pre-animate {
        transform: translateY(24px);
    }
    .hx-pre-animate.hx-anim--fade-right,
    .hx-pre-animate.hx-anim--fade-left {
        transform: translateY(0);
    }
}

/* ── Shared typography helpers ── */
.hx-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
    max-width: 100%;
}
.hx-section-label--center { display: flex; justify-content: center; width: 100%; }
.hx-section-label--light  { color: rgba(149,193,58,0.9); }
.hx-section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.hx-section-heading {
    display: block;
    width: 100%;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hx-section-heading--center { text-align: center; }
.hx-section-heading--light  { color: #fff; }

/* ── Section subtitle (used via x-section-header component) ── */
.hx-section-sub {
    color: var(--text-light);
    font-size: .95rem;
    max-width: 600px;
    line-height: 1.7;
    margin-top: 8px;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hx-section-sub--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.hx-section-sub--light { color: rgba(255,255,255,0.7); }

.hx-section-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 10px;
    text-align: center;
}
.hx-section-desc--light { color: rgba(255,255,255,0.7); }

.hx-body-text {
    color: #4b5867;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: left;
}

.hx-text-accent { color: var(--primary-color); }

/* ── Shared buttons ── */
.hx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}
.hx-btn--primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 20px rgba(149,193,58,0.35);
}
.hx-btn--primary:hover {
    background: #7aaa25;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(149,193,58,0.5);
}
.hx-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 2px solid rgba(255,255,255,0.3);
}
.hx-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.hx-btn--cta-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 24px rgba(149,193,58,0.4);
    font-size: 16px;
    padding: 16px 36px;
}
.hx-btn--cta-primary:hover {
    background: #7aaa25;
    color: #fff;
    transform: translateY(-3px);
}
.hx-btn--cta-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 2px solid rgba(255,255,255,0.25);
    font-size: 16px;
    padding: 16px 36px;
}
.hx-btn--cta-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a2c39 0%, #2A4453 55%, #1d3a2a 100%);
    overflow: hidden;
    padding-top: 90px;
}

/* Animated geometric shapes */
.hx-hero__shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hx-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    animation: hxFloat 8s ease-in-out infinite;
}
.hx-shape--1 {
    width: 420px; height: 420px;
    background: var(--primary-color);
    top: -100px; right: -80px;
    animation-delay: 0s;
}
.hx-shape--2 {
    width: 280px; height: 280px;
    background: var(--primary-color);
    bottom: -60px; left: -60px;
    animation-delay: -3s;
}
.hx-shape--3 {
    width: 160px; height: 160px;
    border: 3px solid var(--primary-color);
    background: transparent;
    opacity: 0.12;
    top: 30%; right: 15%;
    animation-delay: -5s;
    border-radius: 30px;
}
.hx-shape--4 {
    width: 90px; height: 90px;
    background: rgba(149,193,58,0.6);
    opacity: 0.06;
    top: 60%; left: 20%;
    animation-delay: -2s;
}
@keyframes hxFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-24px) rotate(6deg); }
    66%      { transform: translateY(12px) rotate(-3deg); }
}

.hx-hero__inner {
    position: relative;
    z-index: 3;
    padding-top: 40px;
    padding-bottom: 120px;
}

.hx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149,193,58,0.12);
    border: 1px solid rgba(149,193,58,0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hx-hero__heading {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 26px;
}
.hx-hero__heading-sub {
    display: block;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hx-hero__highlight {
    position: relative;
    color: var(--primary-color);
}
.hx-hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.4;
    border-radius: 2px;
}

.hx-hero__lead {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
    text-align: left;
}

.hx-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Stats strip */
.hx-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 10px;
}
.hx-stat {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    padding: 0 36px 0 0;
}
.hx-stat__num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hx-stat__unit {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    align-self: flex-end;
    padding-bottom: 2px;
}
.hx-stat__label {
    width: 100%;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.3px;
}
.hx-stat__divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    margin-right: 36px;
}

/* Scroll indicator */
.hx-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: hxBounce 2.4s ease infinite;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(149,193,58,0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.hx-hero__scroll:hover { background: rgba(149,193,58,0.15); }
@keyframes hxBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(9px); }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.hx-about {
    padding: 100px 0;
    background: #fff;
    overflow-x: hidden;
}

.hx-slogan {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(149,193,58,0.08), rgba(149,193,58,0.02));
    border-left: 3px solid var(--primary-color);
    padding: 16px 22px;
    border-radius: 0 8px 8px 0;
    color: var(--secondary-color);
    font-size: 15px;
    margin-top: 30px;
}

/* Facts grid */
.hx-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.hx-fact-card {
    background: var(--bg-gray-light);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.hx-fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(149,193,58,0.2);
}
.hx-fact-card--accent {
    background: linear-gradient(135deg, var(--primary-color), #7aaa25);
    color: #fff;
}
.hx-fact-card--accent .hx-fact-card__num,
.hx-fact-card--accent .hx-fact-card__label { color: rgba(255,255,255,0.9); }
.hx-fact-card--accent .hx-fact-card__icon { color: rgba(255,255,255,0.8); }
.hx-fact-card--dark {
    background: var(--secondary-color);
    color: #fff;
}
.hx-fact-card--dark .hx-fact-card__num,
.hx-fact-card--dark .hx-fact-card__label { color: rgba(255,255,255,0.9); }
.hx-fact-card--dark .hx-fact-card__icon { color: var(--primary-color); }

.hx-fact-card__icon { color: var(--primary-color); flex-shrink: 0; margin-top: 2px; }
.hx-fact-card__num  {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.hx-fact-card__num span { font-size: 0.85rem; font-weight: 600; margin-left: 3px; }
.hx-fact-card__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 5px;
}

/* ════════════════════════════════════════
   MISSION & VISION
════════════════════════════════════════ */
.hx-mv {
    padding: 0 0 100px;
    background: #fff;
}
.hx-mv-card {
    background: var(--bg-gray-light);
    border-radius: 18px;
    padding: 44px 38px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.hx-mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
}
.hx-mv-card--mission::before { background: var(--primary-color); }
.hx-mv-card--vision::before  { background: var(--secondary-color); }
.hx-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
    border-color: rgba(149,193,58,0.2);
}
.hx-mv-card__icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.hx-mv-card--mission .hx-mv-card__icon { background: rgba(149,193,58,0.1); }
.hx-mv-card--vision  .hx-mv-card__icon { background: rgba(42,68,83,0.09); }
.hx-mv-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
}
.hx-mv-card p { color: #4b5867; font-size: 15px; line-height: 1.75; text-align: left; }

/* ════════════════════════════════════════
   CORE VALUES
════════════════════════════════════════ */
.hx-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
.hx-value-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hx-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(149,193,58,0.12);
}
.hx-value-card:hover .hx-value-card__bar { transform: scaleX(1); }
.hx-value-card__num {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(149,193,58,0.07);
    line-height: 1;
    pointer-events: none;
}
.hx-value-card__icon {
    width: 54px; height: 54px;
    border-radius: 12px;
    background: rgba(149,193,58,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    transition: background 0.3s;
}
.hx-value-card:hover .hx-value-card__icon { background: var(--primary-color); color: #fff; }
.hx-value-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}
.hx-value-card p {
    color: #63748a;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    margin: 0;
    flex: 1;
}
.hx-value-card__bar {
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    margin-top: auto;
}

/* ════════════════════════════════════════
   MATERIALS
════════════════════════════════════════ */
.hx-materials {
    padding: 100px 0;
    background: #fff;
}
.hx-mat-card {
    background: var(--bg-gray-light);
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.hx-mat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
    background: #fff;
}
.hx-mat-card--highlight {
    background: linear-gradient(135deg, var(--secondary-color), #1a3240);
    color: #fff;
}
.hx-mat-card--highlight h4,
.hx-mat-card--highlight ul li { color: rgba(255,255,255,0.9); }
.hx-mat-card--highlight .hx-mat-card__icon { color: var(--primary-color); }
.hx-mat-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}
.hx-mat-icon--battery    { background: rgba(239,68,68,0.08);   color: #ef4444; }
.hx-mat-icon--aluminium  { background: rgba(59,130,246,0.08);  color: #3b82f6; }
.hx-mat-icon--compressor { background: rgba(245,158,11,0.08);  color: #f59e0b; }
.hx-mat-icon--ferrous    { background: rgba(107,114,128,0.08); color: #6b7280; }
.hx-mat-icon--nonferrous { background: rgba(149,193,58,0.1);   color: var(--primary-color); }
.hx-mat-icon--supply     { background: rgba(42,68,83,0.08);    color: var(--secondary-color); }
.hx-mat-card:hover .hx-mat-card__icon { transform: scale(1.1); }
.hx-mat-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.hx-mat-card ul {
    list-style: none;
    padding: 0; margin: 0;
}
.hx-mat-card ul li {
    color: #63748a;
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}
.hx-mat-card ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   GLOBAL NETWORK
════════════════════════════════════════ */
.hx-network {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2c39 60%, #0f2218 100%);
    position: relative;
    overflow: hidden;
}
.hx-network::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(149,193,58,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(149,193,58,0.04) 0%, transparent 40%);
    pointer-events: none;
}
.hx-net-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}
.hx-net-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: rgba(149,193,58,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hx-net-card--featured {
    background: rgba(149,193,58,0.1);
    border-color: rgba(149,193,58,0.35);
    transform: scale(1.03);
}
.hx-net-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
}
.hx-net-card__flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.hx-net-card__country {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.hx-net-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.hx-net-card p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
    margin: 0;
}
.hx-net-card p strong { color: rgba(255,255,255,0.9); }
.hx-net-card__tag {
    display: inline-block;
    margin-top: 20px;
    background: rgba(149,193,58,0.15);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(149,193,58,0.25);
}
.hx-network__connector { display: none; } /* decorative, hidden on small screens */

/* ════════════════════════════════════════
   REQUIREMENTS TIMELINE
════════════════════════════════════════ */
.hx-requirements {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.hx-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.hx-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), rgba(149,193,58,0.1));
}
.hx-timeline__item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 0 44px 0;
    position: relative;
}
.hx-timeline__item:last-child { padding-bottom: 0; }
.hx-timeline__step {
    flex-shrink: 0;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(149,193,58,0.4);
    transition: transform 0.3s;
}
.hx-timeline__item:hover .hx-timeline__step {
    transform: scale(1.1);
}
.hx-timeline__content {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 22px 26px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.hx-timeline__item:hover .hx-timeline__content {
    box-shadow: 0 10px 30px rgba(149,193,58,0.1);
    border-color: rgba(149,193,58,0.25);
}
.hx-timeline__content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.hx-timeline__content p {
    color: #63748a;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* ════════════════════════════════════════
   WHAT WE OFFER
════════════════════════════════════════ */
.hx-offer {
    padding: 100px 0;
    background: #fff;
    overflow-x: hidden; /* prevent fade-left animation translateX from creating horizontal scroll */
}
.hx-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.hx-offer-item {
    background: var(--bg-gray-light);
    border-radius: 16px;
    padding: 26px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.hx-offer-item:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 10px 30px rgba(149,193,58,0.1);
    transform: translateY(-3px);
}
.hx-offer-item__num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.hx-offer-item__body h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.hx-offer-item__body p {
    color: #63748a;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    text-align: left;
}
.hx-offer-purity {
    display: inline-block;
    background: rgba(149,193,58,0.1);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

/* ════════════════════════════════════════
   CTA
════════════════════════════════════════ */
.hx-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2c39 50%, #0f2218 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hx-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.hx-cta__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.hx-cta__shape--1 {
    width: 500px; height: 500px;
    background: var(--primary-color);
    top: -200px; right: -100px;
}
.hx-cta__shape--2 {
    width: 300px; height: 300px;
    background: var(--primary-color);
    bottom: -120px; left: -80px;
}
.hx-cta__inner { position: relative; z-index: 2; }
.hx-cta__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 18px;
}
.hx-cta__heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hx-cta__text {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
}
.hx-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 991px) {
    .hx-facts-grid    { grid-template-columns: 1fr 1fr; }
    .hx-offer-grid    { grid-template-columns: 1fr; }
    .hx-hero__inner   { padding-bottom: 80px; }
    .hx-net-card--featured { transform: none; }
    .hx-net-card--featured:hover { transform: translateY(-8px); }
}

/* ── Large-screen layout fixes (lg+, ≥992px) ── */
@media (min-width: 992px) {

    /* ─ SECTION 1: About — top-align both columns
       Use align-self on each child col — this is a different CSS property
       from align-items, so it overrides the parent's align-items: center
       unconditionally, even when the parent has !important */
    .hx-about .col-lg-6 {
        align-self: flex-start;
    }

    /* ─ SECTION 2: Requirements — 2×2 grid, equal-height cards */
    .hx-timeline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        max-width: 100%;
    }
    /* Hide the vertical connecting line — only meaningful in single-column */
    .hx-timeline::before {
        display: none;
    }
    /* Each item fills its grid cell height so paired cards match */
    .hx-timeline__item {
        padding-bottom: 0;
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }
    /* Step number stays pinned top-left, doesn't stretch */
    .hx-timeline__step {
        flex-shrink: 0;
        align-self: flex-start;
    }
    /* Content card grows to fill remaining height within the item */
    .hx-timeline__content {
        flex: 1;
    }

    /* ─ SECTION 3: What We Offer — top-align columns
       align-self on the child columns overrides the parent Bootstrap row's
       align-items: center !important — different property, always wins */
    .hx-offer .col-lg-5,
    .hx-offer .col-lg-7 {
        align-self: flex-start;
    }
    /* Offer cards stretch to equal height within each grid row */
    .hx-offer-grid {
        align-items: stretch;
    }
    .hx-offer-item {
        height: 100%;
    }

    /* ─ CTA — constrain text block on wide screens */
    .hx-cta__inner {
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    .hx-hero          { padding-top: 80px; }
    .hx-hero__ctas    { flex-direction: column; align-items: flex-start; }
    .hx-hero__stats   { gap: 20px; }
    .hx-stat          { padding-right: 0; }
    .hx-stat__divider { display: none; }
    .hx-timeline::before { left: 28px; }
    .hx-facts-grid    { grid-template-columns: 1fr; }
    .hx-offer-grid    { grid-template-columns: 1fr; }
    .hx-mv,
    .hx-about,
    .hx-values,
    .hx-materials,
    .hx-network,
    .hx-requirements,
    .hx-offer,
    .hx-cta { padding-top: 70px; padding-bottom: 70px; }
}

/* ════════════════════════════════════════
   MATERIAL CARDS V2 (Redesigned)
════════════════════════════════════════ */
.hx-mat-card-v2 {
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px 24px;
    height: 100%;
    border: 1.5px solid rgba(149,193,58,.18);
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: all .35s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hx-mat-card-v2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.hx-mat-card-v2:hover {
    transform: translateY(-7px);
    border-color: var(--primary-color);
    box-shadow: 0 18px 45px rgba(149,193,58,.2);
}
.hx-mat-card-v2:hover::after { transform: scaleX(1); }

.hx-mat-card-v2__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.hx-mat-card-v2__num {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(149,193,58,.5);
}
.hx-mat-card-v2__icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .3s ease;
}
.hx-mat-card-v2:hover .hx-mat-card-v2__icon { transform: scale(1.1) rotate(-5deg); }

.hx-mat-card-v2__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}
.hx-mat-card-v2__tag {
    display: inline-block;
    background: rgba(149,193,58,.1);
    color: #6a9e1e;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.hx-mat-card-v2__list {
    list-style: none !important;
    padding: 0; margin: 0;
    flex: 1;
}
.hx-mat-card-v2__list li {
    color: #3d5166;
    font-size: .875rem;
    font-weight: 500;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    position: relative;
    line-height: 1.5;
}
.hx-mat-card-v2__list li:last-child { border-bottom: none; }
.hx-mat-card-v2__list li::before {
    display: none !important;
    content: none !important;
}
.hx-mat-card-v2__bar {
    height: 4px;
    border-radius: 2px;
    margin-top: 18px;
    opacity: .35;
}
.hx-mat-bar--battery    { background: #ef4444; }
.hx-mat-bar--aluminium  { background: #3b82f6; }
.hx-mat-bar--compressor { background: #f59e0b; }
.hx-mat-bar--ferrous    { background: #6b7280; }
.hx-mat-bar--nonferrous { background: var(--primary-color); }

/* CTA card variant */
.hx-mat-card-v2--cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2c39 100%);
    border-color: transparent;
    justify-content: center;
    text-align: center;
}
.hx-mat-card-v2--cta::after { background: var(--primary-color); }
.hx-mat-card-v2__cta-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(149,193,58,.15);
    border: 1.5px solid rgba(149,193,58,.35);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    transition: transform .35s ease;
}
.hx-mat-card-v2--cta:hover .hx-mat-card-v2__cta-icon { transform: scale(1.1); }
.hx-mat-card-v2__cta-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.hx-mat-card-v2__cta-desc {
    color: rgba(255,255,255,.65);
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.hx-mat-card-v2__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 6px 18px rgba(149,193,58,.4);
}
.hx-mat-card-v2__cta-btn:hover {
    background: #b5e051;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(149,193,58,.5);
}

/* ════════════════════════════════════════
   NETWORK CARD FLAG ICONS
════════════════════════════════════════ */
.hx-net-card__flag-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    transition: transform .35s ease;
}
.hx-net-card:hover .hx-net-card__flag-icon { transform: scale(1.1); }
.hx-net-flag--canada  { background: rgba(220,38,38,.15);  border: 2px solid rgba(220,38,38,.35); color: #dc2626; }
.hx-net-flag--uae     { background: rgba(149,193,58,.15); border: 2px solid rgba(149,193,58,.35); color: var(--primary-color); }
.hx-net-flag--pakistan { background: rgba(22,163,74,.15); border: 2px solid rgba(22,163,74,.35);  color: #16a34a; }
.hx-net-flag--canada svg,
.hx-net-flag--uae svg,
.hx-net-flag--pakistan svg { stroke: currentColor; }

/* ════════════════════════════════════════
   ABOUT VALUE ICON (Override for SVG)
════════════════════════════════════════ */
.about-value-icon {
    font-size: inherit !important;
}
.about-value-icon svg {
    display: block;
}

/* ════════════════════════════════════════
   MOBILE OVERFLOW / LAYOUT FIXES
   Prevent right-side cuts on small screens
════════════════════════════════════════ */

/* Ensure every section is strictly within viewport width.
   Primary containment is on html+body above; these are belt-and-suspenders. */
section {
    overflow-x: hidden;
    max-width: 100%;
}
footer, header {
    max-width: 100%;
    overflow-x: hidden;
}

/* Bootstrap container safety — only on xs, let Bootstrap's breakpoints handle larger screens */
@media (max-width: 575px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl,
    .container-fluid {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ── About page stat strip — 3-col to 1-col on mobile ── */
@media (max-width: 575px) {
    .about-stat-strip {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    .about-stat-item {
        padding: 18px 12px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .about-stat-strip {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Quote page steps row — wrap on mobile ── */
@media (max-width: 575px) {
    .steps-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .step-item {
        flex: 0 0 calc(33.33% - 8px);
        min-width: 0;
    }
    .step-item::after {
        display: none;
    }
}

/* ── Hero heading clamp guard on tiny screens ── */
@media (max-width: 380px) {
    .hx-hero__heading {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }
    .hx-hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .hx-stat__divider {
        display: none;
    }
    .hx-stat {
        padding-right: 0;
    }
}

/* ── Page hero heading on tiny screens ── */
@media (max-width: 380px) {
    .page-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        letter-spacing: -0.5px;
    }
}

/* ── Fact cards grid — single col on xs ── */
@media (max-width: 380px) {
    .hx-facts-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CTA section buttons — full-width on tiny screens ── */
@media (max-width: 380px) {
    .hx-cta__actions,
    .cta-rich .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hx-btn,
    .cta-rich .btn-cta-primary,
    .cta-rich .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ── Network cards — no scale transform on mobile ── */
@media (max-width: 767px) {
    .hx-net-card--featured {
        transform: none !important;
    }
    .hx-net-card--featured:hover {
        transform: translateY(-8px) !important;
    }
}

/* ── Footer bottom bar — stack on mobile ── */
@media (max-width: 767px) {
    .btm-footer ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 16px;
        padding: 0;
        margin-top: 8px;
    }
    .btm-footer p { margin-bottom: 0; }
    /* Give the footer main content breathing room */
    .footer-main-row > [class*="col-"] > .row > [class*="col-"] {
        margin-top: 28px !important;
    }
}

/* ── Navbar — prevent logo+toggler wrapping overflow ── */
@media (max-width: 380px) {
    .navbar-logo {
        max-width: 140px;
        height: 40px;
    }
    .navbar-toggler {
        padding: 6px 10px;
        margin-right: 4px;
    }
}

/* ── Mission/Vision section ── */
@media (max-width: 575px) {
    .hx-mv-card {
        padding: 28px 22px;
    }
    .mission-card,
    .vision-card {
        padding: 30px 22px;
        min-height: auto;
    }
}

/* ── Material cards v2 on mobile ── */
@media (max-width: 575px) {
    .hx-mat-card-v2 {
        padding: 22px 18px 18px;
    }
}

/* ── Values stagger — remove desktop transform on mobile ── */
@media (max-width: 991px) {
    .values .col-lg-3:nth-child(2),
    .values .col-lg-3:nth-child(4) {
        transform: none !important;
    }
}

/* ── Section paddings on xs ── */
@media (max-width: 575px) {
    .hx-about,
    .hx-mv,
    .hx-values,
    .hx-materials,
    .hx-network,
    .hx-requirements,
    .hx-offer,
    .hx-cta {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .hx-timeline::before {
        left: 22px;
    }
    .hx-timeline__step {
        width: 44px;
        height: 44px;
    }
    .hx-timeline__content {
        padding: 16px 18px;
    }
}

/* ========================================
   PAGE-SPECIFIC STYLES
   (Consolidated from blade templates)
======================================== */

/* ========================================
   SHARED CTA RICH COMPONENT
   (used on: FAQ, Services, Values pages)
======================================== */

.cta-rich {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3240 0%, #2A4453 50%, #1e3d50 100%);
    overflow: hidden;
    isolation: isolate;
}
.cta-rich::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(149,193,58,.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.cta-rich::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(149,193,58,.22) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.cta-rich .cta-orb-left {
    position: absolute;
    bottom: -80px; left: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(149,193,58,.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.cta-rich .cta-inner { position: relative; z-index: 1; }
.cta-rich .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149,193,58,.15);
    border: 1px solid rgba(149,193,58,.35);
    color: #95C13A;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.cta-rich .cta-eyebrow span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #95C13A;
    display: inline-block;
    animation: ctaRichPulse 1.8s ease-in-out infinite;
}
@keyframes ctaRichPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.7); }
}
.cta-rich h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.cta-rich h2 span { color: #95C13A; }
.cta-rich .cta-desc {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
    text-align: left;
    margin-bottom: 32px;
}
.cta-rich .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.cta-rich .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #95C13A 0%, #b5e051 100%);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(149,193,58,.45);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}
.cta-rich .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(149,193,58,.55);
    color: #fff;
}
.cta-rich .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-decoration: none;
}
.cta-rich .btn-cta-secondary:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-3px);
    color: #fff;
}
.cta-rich .cta-trust-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}
.cta-rich .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    font-weight: 600;
}
.cta-rich .trust-item::before {
    content: '\2713';
    color: #95C13A;
    font-weight: 800;
    font-size: .8rem;
}
.cta-rich .trust-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}

/*  CTA Stat Grid (shared across About / FAQ / Services / Values)  */
.cta-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cta-stat-card {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(149,193,58,.22);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.cta-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #95C13A, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.cta-stat-card:hover {
    background: rgba(149,193,58,.1);
    border-color: rgba(149,193,58,.45);
    transform: translateY(-5px);
}
.cta-stat-card:hover::before { opacity: 1; }
.cta-stat-card .s-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #95C13A;
    line-height: 1;
    margin-bottom: 6px;
}
.cta-stat-card .s-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-stat-card.span-2 { grid-column: 1 / -1; }

/*  Trust bar (global)  */
.cta-trust-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}
.cta-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    font-weight: 600;
}
.cta-trust-bar .trust-item::before {
    content: '\2713';
    color: #95C13A;
    font-weight: 800;
    font-size: .8rem;
}
.cta-trust-bar .trust-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}

/* ========================================
   PAGE HERO  (partials/hero.blade.php)
======================================== */

.page-hero {
    min-height: 380px;
    background:
        linear-gradient(135deg, rgba(42,68,83,.72) 0%, rgba(26,50,64,.55) 100%),
        url('/storage/hero-section.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 70px;
    border-radius: 0 0 48% 48% / 0 0 48px 48px;
}
@media (max-width: 767px) {
    .page-hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
        border-radius: 0 0 50% 50% / 0 0 36px 36px;
    }
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(149,193,58,.2) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    position: relative;
    line-height: 1.1;
}
.page-hero h1 span { color: #95C13A; }
.page-hero .lead {
    color: rgba(255,255,255,.78);
    font-size: 1.1rem;
    position: relative;
    max-width: 520px;
}
.page-hero .hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 8px 18px;
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    font-weight: 600;
    margin-top: 6px;
    margin-right: 8px;
}
.page-hero .hero-stat .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #95C13A;
    display: inline-block;
}
.page-hero .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255,255,255,.4);
    padding: 0 6px;
}

/* ========================================
   ABOUT PAGE
======================================== */

/*  Who We Are intro strip  */
.about-intro {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}
@media (max-width: 767px) {
    .about-intro { padding: 18px 0 24px; }
}
.about-intro-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 20px;
}
.slogan-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(149,193,58,.38);
    margin-top: 10px;
}

/*  About stat strip  */
.about-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(149,193,58,.2);
    border: 2px solid rgba(149,193,58,.25);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}
.about-stat-item {
    background: linear-gradient(135deg, #fff 0%, rgba(149,193,58,.06) 100%);
    padding: 28px 16px;
    text-align: center;
    transition: background 0.3s ease;
}
.about-stat-item:hover {
    background: linear-gradient(135deg, rgba(149,193,58,.1) 0%, rgba(149,193,58,.03) 100%);
}
.about-stat-item .stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}
.about-stat-item .stat-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

/*  Core Values & Why Partner sections  */
.about-core-values {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}
.about-why-partner {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

/*  Value Cards (About page)  */
.about-value-card {
    background: linear-gradient(135deg, #fff 0%, rgba(149,193,58,.07) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 34px 30px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(149,193,58,.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.about-value-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 190px; height: 190px;
    background: radial-gradient(circle, rgba(149,193,58,.12) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}
.about-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 50px rgba(149,193,58,.35);
    border-color: var(--secondary-color);
}
.about-value-card:hover::before { top: -30%; right: -30%; }
.about-value-icon {
    width: 56px; height: 56px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 7px 20px rgba(149,193,58,.42);
    margin-bottom: 18px;
    transition: transform 0.35s ease;
    position: relative; z-index: 1;
}
.about-value-card:hover .about-value-icon { transform: rotate(-8deg) scale(1.14); }
.about-value-card h3 {
    color: var(--secondary-color);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative; z-index: 1;
}
.about-value-card p {
    color: var(--text-dark);
    font-size: .88rem;
    line-height: 1.75;
    position: relative; z-index: 1;
}

/*  Why Choose Us feature cards  */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(149,193,58,.06) 100%);
    border: 2px solid rgba(149,193,58,.3);
    border-radius: 16px;
    padding: 24px 22px;
    height: 100%;
    box-shadow: 0 6px 22px rgba(149,193,58,.14);
    transition: all 0.35s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(149,193,58,.3);
    border-color: var(--primary-color);
}
.feature-card-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 5px 14px rgba(42,68,83,.3);
}
.feature-card-body h4 {
    color: var(--secondary-color);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.feature-card-body p {
    color: var(--text-light);
    font-size: .82rem;
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/*  Network card icon  */
.network-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    position: relative; z-index: 1;
}

/*  About page CTA section  */
.cta-about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3240 0%, #2A4453 50%, #1e3d50 100%);
    overflow: hidden;
    isolation: isolate;
}
.cta-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(149,193,58,.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.cta-about::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(149,193,58,.22) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.cta-about .cta-orb-left {
    position: absolute;
    bottom: -80px; left: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(149,193,58,.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.cta-about .cta-inner { position: relative; z-index: 1; }
.cta-about .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149,193,58,.15);
    border: 1px solid rgba(149,193,58,.35);
    color: #95C13A;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.cta-about .cta-eyebrow span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #95C13A;
    display: inline-block;
    animation: ctaPulse 1.8s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.7); }
}
.cta-about h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.cta-about h2 span { color: #95C13A; }
.cta-about .cta-desc {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
    text-align: left;
    margin-bottom: 32px;
}
.cta-about .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.cta-about .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #95C13A 0%, #b5e051 100%);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(149,193,58,.45);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}
.cta-about .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(149,193,58,.55);
    color: #fff;
}
.cta-about .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-decoration: none;
}
.cta-about .btn-cta-secondary:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-3px);
    color: #fff;
}
.cta-about .cta-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    align-self: stretch;
    margin: 0 8px;
}

/*  Mobile spacing fixes (About page)  */
@media (max-width: 767px) {
    .section-heading           { margin-bottom: 24px; }
    .about-intro .mb-5         { margin-bottom: 0.4rem !important; }
    .our-network-new           { padding: 36px 0; }
    .our-network-new .mb-4,
    .our-network-new .mb-5     { margin-bottom: 1rem !important; }
    .mission-vision-section    { padding: 32px 0; }
    .mission-vision-section .mb-4,
    .mission-vision-section .mb-5 { margin-bottom: 1rem !important; }
    .about-core-values         { padding: 32px 0; }
    .about-core-values .mb-4,
    .about-core-values .mb-5   { margin-bottom: 1rem !important; }
    .about-why-partner         { padding: 32px 0; }
    .about-why-partner .mb-4,
    .about-why-partner .mb-5   { margin-bottom: 1rem !important; }
    .cta-about                 { padding: 36px 0; }
    .cta-about .row            { --bs-gutter-y: 1.25rem; }
    .cta-about .cta-stat-grid  { margin-top: 4px; }
    .values                    { padding: 36px 0 56px; }
    .faq-section               { padding: 40px 0 !important; }
}

/* ========================================
   CONTACT PAGE
======================================== */

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #2A4453;
    line-height: 1.2;
}

/*  Quick Contact cards  */
.qc-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(42,68,83,.1);
    border: 1px solid rgba(149,193,58,.15);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    height: 100%;
    position: relative;
}
.qc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(149,193,58,.22), 0 4px 12px rgba(0,0,0,.06);
}
.qc-card-header {
    background: linear-gradient(135deg, #2A4453 0%, #1a3240 100%);
    padding: 28px 20px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.qc-card-header::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(149,193,58,.12);
}
.qc-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.qc-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2A4453, #1a3240);
    border: 1.5px solid rgba(149,193,58,.35);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    color: #95C13A;
    box-shadow: 0 6px 20px rgba(149,193,58,.2);
    position: relative;
    z-index: 1;
}
.qc-card-body {
    padding: 20px 22px 24px;
    text-align: center;
}
.qc-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #95C13A;
    margin-bottom: 6px;
}
.qc-value {
    font-size: 1rem;
    font-weight: 700;
    color: #2A4453;
    margin-bottom: 2px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}
.qc-value a { color: #2A4453; text-decoration: none; transition: color .2s; }
.qc-value a:hover { color: #95C13A; }
.qc-sub { font-size: .8rem; color: #888; }

/*  Group Company cards  */
.gc-section {
    background: linear-gradient(180deg, #fff 0%, #f4f6f8 100%);
    padding: 80px 0;
}
.gc-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(42,68,83,.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    position: relative;
}
.gc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(42,68,83,.18), 0 4px 14px rgba(149,193,58,.15);
}
.gc-card-accent { width: 100%; height: 6px; }
.gc-accent-canada   { background: linear-gradient(90deg, #FF0000, #FF6B6B); }
.gc-accent-uae      { background: linear-gradient(90deg, #00843D, #009B48, #C8A951); }
.gc-accent-pakistan { background: linear-gradient(90deg, #01411C, #95C13A); }
.gc-card-top {
    background: linear-gradient(135deg, #2A4453 0%, #1e3548 100%);
    padding: 30px 28px 24px;
    position: relative;
    overflow: hidden;
}
.gc-card-top::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(149,193,58,.08);
}
.gc-card-top::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -10px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.gc-flag-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.gc-flag-tag span:first-child { font-size: 1.2rem; line-height: 1; }
.gc-flag-tag span:last-child {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.9);
}
.gc-company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -.3px;
}
.gc-role-tag {
    display: inline-block;
    background: rgba(149,193,58,.2);
    border: 1px solid rgba(149,193,58,.4);
    color: #95C13A;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.gc-card-body {
    padding: 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gc-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(149,193,58,.1);
}
.gc-detail-row:last-of-type { border-bottom: none; }
.gc-detail-icon {
    width: 32px; height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(149,193,58,.1);
    display: flex; align-items: center; justify-content: center;
    color: #95C13A;
}
.gc-detail-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #95C13A;
    line-height: 1;
    margin-bottom: 3px;
}
.gc-detail-value {
    font-size: .9rem;
    font-weight: 600;
    color: #2A4453;
    margin: 0;
}
.gc-card-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 20px;
    text-decoration: none;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(149,193,58,.35);
}
.gc-card-footer-btn:hover {
    opacity: .92;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(149,193,58,.5);
    color: #fff;
}

/*  Contact Form  */
.form-section { background: #f8f9fa; }
.form-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 42px;
    box-shadow: 0 8px 48px rgba(149,193,58,.1), 0 2px 12px rgba(0,0,0,.04);
    border: 1px solid rgba(149,193,58,.15);
}
@media (max-width: 576px) { .form-card { padding: 28px 18px; } }
.form-card .form-label {
    font-weight: 700;
    color: #2A4453;
    font-size: .84rem;
    letter-spacing: .3px;
    margin-bottom: 6px;
    display: block;
}
.form-card .form-control,
.form-card .form-select {
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
    color: #2A4453;
    background: #f9fafc;
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: #95C13A;
    box-shadow: 0 0 0 4px rgba(149,193,58,.18);
    background: #fff;
    outline: none;
}
.form-card textarea.form-control { resize: vertical; min-height: 130px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .field-icon {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    font-size: .95rem;
    pointer-events: none;
}
.input-icon-wrap .form-control,
.input-icon-wrap .form-select { padding-left: 40px; }
.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #95C13A;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 8px 0 18px;
}
.form-divider::before,
.form-divider::after { content: ''; flex: 1; height: 2px; background: rgba(149,193,58,.2); }
.btn-submit {
    background: linear-gradient(135deg, #95C13A 0%, #b5e051 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .4px;
    width: 100%;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 5px 20px rgba(149,193,58,.45);
    cursor: pointer;
}
.btn-submit:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(149,193,58,.6); }
.form-check-input:checked { background-color: #95C13A; border-color: #95C13A; }
.form-check-label { font-size: .87rem; color: #777; }
.form-check-label a { color: #95C13A; font-weight: 600; }
.form-check-label a:hover { color: #2A4453; }

/*  Notice box  */
.notice-box {
    background: #fff;
    border-left: 4px solid #95C13A;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(149,193,58,.1);
}
.notice-box h6 { color: #2A4453; font-weight: 800; margin-bottom: 12px; font-size: .95rem; }
.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(149,193,58,.1);
    font-size: .875rem;
    color: #555;
}
.notice-item:last-child { border-bottom: none; }
.notice-dot {
    width: 20px; height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
    font-size: .6rem;
    color: #fff;
    font-weight: 900;
}

/* ========================================
   FAQ PAGE
======================================== */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

/*  Section intro  */
.faq-section-intro .faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.faq-section-intro h2 {
    color: var(--secondary-color);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 20px;
}
.faq-section-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: linear-gradient(90deg, #95C13A 0%, #b5e051 100%);
    border-radius: 2px;
}
.faq-section-intro h2 span { color: #95C13A; }
.faq-section-intro p {
    font-size: .95rem;
    color: #6E8DBB;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/*  FAQ Accordion  */
.faq-item {
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(149,193,58,.12);
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 12px 38px rgba(149,193,58,.22); }
.faq-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(149,193,58,.05) 100%);
    border: 2px solid rgba(149,193,58,.28);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
}
.faq-header:hover {
    background: linear-gradient(135deg, rgba(149,193,58,.07) 0%, rgba(149,193,58,.02) 100%);
    border-color: #95C13A;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(149,193,58,.2);
}
.faq-header[aria-expanded="true"] {
    background: linear-gradient(135deg, #2A4453 0%, #1a3240 100%);
    border-color: #95C13A;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 8px 28px rgba(42,68,83,.3);
    transform: none;
}
.faq-header[aria-expanded="true"] h5 { color: #fff; }
.faq-header h5 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: color 0.3s ease;
}
.faq-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.3s;
    box-shadow: 0 4px 14px rgba(149,193,58,.42);
}
.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #b5e051, #95C13A);
}
.faq-body {
    padding: 24px 24px 24px 70px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(149,193,58,.04) 100%);
    border-radius: 0 0 16px 16px;
    line-height: 1.8;
    color: #555;
    position: relative;
}
.faq-body::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #95C13A 0%, #b5e051 100%);
    border-radius: 0 0 0 14px;
}

/* ========================================
   QUOTE PAGE
======================================== */

.q-badge {
    display: inline-block;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.steps-row {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
}
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}
.step-item::after {
    content: '';
    position: absolute;
    top: 18px; left: 60%;
    width: 80%; height: 2px;
    background: rgba(149,193,58,.3);
    z-index: 0;
}
.step-item:last-child::after { display: none; }
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #95C13A, #b5e051);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(149,193,58,.45);
}
.step-label { font-size: .75rem; font-weight: 600; color: #2A4453; }

.q-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 42px;
    box-shadow: 0 8px 48px rgba(149,193,58,.12);
    border: 2px solid rgba(149,193,58,.2);
}
@media (max-width: 576px) { .q-form-card { padding: 28px 18px; } }
.q-form-card .form-label {
    font-weight: 600;
    color: #2A4453;
    font-size: .86rem;
    letter-spacing: .3px;
    margin-bottom: 6px;
    display: block;
}
.q-form-card .form-control,
.q-form-card .form-select {
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .95rem;
    color: #2A4453;
    background: #f9fafc;
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
}
.q-form-card .form-control:focus,
.q-form-card .form-select:focus {
    border-color: #95C13A;
    box-shadow: 0 0 0 4px rgba(149,193,58,.18);
    background: #fff;
    outline: none;
}
.q-form-card textarea.form-control { resize: vertical; min-height: 110px; }
.q-icon-wrap { position: relative; }
.q-icon-wrap .qi {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    font-size: .95rem;
    pointer-events: none;
}
.q-icon-wrap .qi svg { color: #95C13A; }
.q-icon-wrap .form-control,
.q-icon-wrap .form-select { padding-left: 40px; }
.q-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #95C13A;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 4px 0 18px;
}
.q-divider::before,
.q-divider::after { content: ''; flex: 1; height: 2px; background: rgba(149,193,58,.25); }
.q-btn {
    background: linear-gradient(135deg, #95C13A 0%, #b5e051 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .4px;
    width: 100%;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 5px 20px rgba(149,193,58,.45);
    cursor: pointer;
}
.q-btn:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(149,193,58,.6); }
.q-notice {
    background: linear-gradient(135deg, rgba(149,193,58,.08), rgba(149,193,58,.04));
    border-left: 4px solid #95C13A;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: .88rem;
    color: #555;
}
.q-notice strong { color: #2A4453; }
.q-side-panel {
    background: linear-gradient(160deg, #2A4453 0%, #1a3240 100%);
    border-radius: 20px;
    padding: 36px 30px;
    color: #fff;
    height: 100%;
    border: 2px solid rgba(149,193,58,.3);
}
.q-side-panel h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: #95C13A; }
.q-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}
.q-feat .feat-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(149,193,58,.15);
    border: 1px solid rgba(149,193,58,.3);
    display: flex; align-items: center; justify-content: center;
    color: #95C13A;
}
.q-feat h6 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; color: #fff; }
.q-feat p  { font-size: .82rem; margin: 0; color: rgba(255,255,255,.65); }

/*  Quote steps  mobile  */
@media (max-width: 480px) {
    .steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .step-item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    .step-item::after { display: none; }
}

/* ========================================
   SERVICES PAGE
======================================== */

/*  Enhanced Material Cards (v2)  */
.material-card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    padding: 20px 28px 18px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.material-card-header::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(149,193,58,.18) 0%, transparent 65%);
    pointer-events: none;
}
.material-icon-badge {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 18px rgba(149,193,58,.45);
    flex-shrink: 0;
    transition: transform 0.35s ease;
}
.material-card:hover .material-icon-badge { transform: rotate(10deg) scale(1.1); }
.material-card-header h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.material-card-header .mat-tag {
    display: inline-block;
    background: rgba(149,193,58,.22);
    border: 1px solid rgba(149,193,58,.4);
    color: #95C13A;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 20px;
    margin-top: 4px;
}
.material-card-body {
    padding: 24px 28px 22px;
    position: relative;
    z-index: 1;
}
.material-note {
    font-size: .78rem;
    color: var(--text-light);
    background: rgba(149,193,58,.08);
    border-left: 3px solid var(--primary-color);
    padding: 7px 12px;
    border-radius: 0 8px 8px 0;
    margin-top: 4px;
}

/*  Offer Cards  */
.offer-card-styled {
    background: linear-gradient(135deg, #ffffff 0%, rgba(149,193,58,.07) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(149,193,58,.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.offer-card-styled::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(149,193,58,.12) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}
.offer-card-styled:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(149,193,58,.38);
    border-color: var(--secondary-color);
}
.offer-card-styled:hover::before { top: -30%; right: -30%; }
.offer-icon-circle {
    width: 62px; height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b5e051 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 22px rgba(149,193,58,.45);
    margin-bottom: 20px;
    transition: transform 0.35s ease;
    position: relative; z-index: 1;
}
.offer-card-styled:hover .offer-icon-circle { transform: rotate(-8deg) scale(1.12); }
.offer-card-styled h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}
.offer-card-styled p {
    color: var(--text-dark);
    font-size: .9rem;
    line-height: 1.75;
    position: relative; z-index: 1;
}

/*  Requirement icon  */
.req-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(149,193,58,.11);
    border: 1.5px solid rgba(149,193,58,.25);
    display: flex; align-items: center; justify-content: center;
    color: #95C13A;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}
.requirement-card:hover .req-icon {
    background: rgba(149,193,58,.2);
    border-color: rgba(149,193,58,.45);
    transform: rotate(-8deg) scale(1.1);
}

/*  Section eyebrow pills  */
.svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149,193,58,.12);
    border: 1px solid rgba(149,193,58,.3);
    color: #95C13A;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.svc-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #95C13A;
    display: inline-block;
}
.svc-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1a3240;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.svc-section-title span { color: #95C13A; }
.svc-section-sub {
    font-size: .95rem;
    color: #6e8dbb;
    max-width: 560px;
    line-height: 1.7;
}
.svc-section-header { margin-bottom: 48px; }
.icon-svg-white svg { color: #fff; }
.icon-svg-green svg { color: #95C13A; }
.svc-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, #95C13A, #b5e051);
    border-radius: 2px;
    margin: 14px 0 0;
}

/* ========================================
   VALUES PAGE
======================================== */

.values-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a3240 100%);
    color: var(--white);
    min-height: 400px;
}
.values-hero h1 {
    color: var(--white);
    font-size: 48px;
}
.values-hero .lead {
    color: #b5e051;
    font-size: 20px;
}
.section-intro {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
.value-detail-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(149, 193, 58, 0.2);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
}
.value-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(149, 193, 58, 0.3);
}
.value-detail-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}
.value-detail-card p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* ═══════════════════════════════════════════════
   FORM VALIDATION & AJAX TOAST — Metalix Global
   ═══════════════════════════════════════════════ */

/* ── Inline field error messages ── */
.field-error {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #dc3545;
    margin-top: 5px;
    min-height: 0;
    transition: all 0.2s ease;
}

/* ── Invalid field borders ── */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
    background-image: none !important;
}

/* ── Valid field borders ── */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #95C13A !important;
    box-shadow: 0 0 0 3px rgba(149, 193, 58, 0.15) !important;
    background-image: none !important;
}

/* ── Invalid checkbox ── */
.form-check-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}

/* ── Submit button loading state ── */
.btn-submit.mx-loading,
.q-btn.mx-loading {
    opacity: 0.72;
    pointer-events: none;
    cursor: wait;
    position: relative;
}

/* ── Toast container ── */
#mx-toast {
    min-width: 320px;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 4px 0;
}

#mx-toast.show {
    opacity: 1;
}

#mx-toast.mx-toast-success {
    background: #2A4453;
    border: 2px solid #95C13A;
}

#mx-toast.mx-toast-error {
    background: #3d1a1a;
    border: 2px solid #dc3545;
}

#mx-toast .toast-body {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
}

.mx-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    font-size: 1rem;
    flex-shrink: 0;
}

#mx-toast.mx-toast-success .mx-toast-icon { 
    background: #95C13A; 
}

#mx-toast.mx-toast-success .mx-toast-icon::before { 
    content: '✓'; 
    color: #ffffff; 
    font-weight: 800; 
    font-size: 1.1rem; 
}

#mx-toast.mx-toast-error .mx-toast-icon { 
    background: #dc3545; 
}

#mx-toast.mx-toast-error .mx-toast-icon::before { 
    content: '✕'; 
    color: #ffffff; 
    font-weight: 800; 
    font-size: 1.1rem; 
}

#mx-toast .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    opacity: 0.7;
    transition: opacity 0.2s;
}

#mx-toast .btn-close:hover {
    opacity: 1;
}

/* ── Mobile responsiveness for toast ── */
@media (max-width: 480px) {
    #mx-toast {
        min-width: 280px;
        max-width: calc(100vw - 24px);
    }
}
