/* ============================================================
   SOLAR MANUFACTURING WEBSITE - PREMIUM CSS
   Design Concept: "Energy Meets Innovation"
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --primary: #1A73E8;
    --primary-dark: #0B3C9B;
    --primary-light: #60A5FA;
    --sky: #38BDF8;
    --sky-dark: #0EA5E9;
    --sky-darker: #0284C7;
    --teal: #10B981;
    --teal-dark: #059669;
    --teal-light: #34D399;
    --golden: var(--sky);
    --navy: #5C6BC0;
    --navy-dark: #3F51B5;
    --heading: #24324A;
    --bs-warning: #38BDF8;
    --bs-warning-rgb: 56, 189, 248;
    --paragraph: #607080;
    --bg: #F8FAFC;
    --bg-cream: #E2E8F0;
    --card-bg: #FFFFFF;
    --border: #EAEAEA;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #1A73E8 0%, #0B3C9B 100%);
    --gradient-teal: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 50, 42, 0.75) 0%, rgba(10, 15, 12, 0.65) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.12);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   2. GLOBAL RESET
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--heading);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    padding-top: 136px !important;
}

@media (max-width: 991px) {
    body {
        padding-top: 96px !important;
    }
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--teal-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--heading);
    line-height: 1.25;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: clamp(18px, 2.5vw, 22px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    color: var(--paragraph);
    line-height: 1.7;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================
   3. PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-sun {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sunPulse 1.5s ease-in-out infinite;
}

.sun-core {
    width: 30px;
    height: 30px;
    background: var(--golden);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6), 0 0 60px rgba(56, 189, 248, 0.3);
    position: relative;
    z-index: 2;
}

.sun-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sun-ray {
    position: absolute;
    width: 4px;
    height: 12px;
    background: var(--primary);
    border-radius: 2px;
    top: 50%;
    left: 50%;
}

.sun-ray:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-22px); }
.sun-ray:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateY(-22px); }
.sun-ray:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateY(-22px); }
.sun-ray:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateY(-22px); }
.sun-ray:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateY(-22px); }
.sun-ray:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateY(-22px); }
.sun-ray:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateY(-22px); }
.sun-ray:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateY(-22px); }

@keyframes sunPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================================
   4. SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    transition: width 0.1s linear;
}

/* ============================================================
   5. TOP BAR
   ============================================================ */
.top-bar {
    /* background: var(--white); */
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--paragraph);
}

.top-bar-item i {
    color: var(--teal);
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paragraph);
    font-size: 13px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.top-bar-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.top-bar-quote {
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.top-bar-quote:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(255, 253, 248, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(234, 234, 234, 0.6);
    transition: var(--transition);
}

.navbar-wrapper.scrolled {
    background: rgba(255, 253, 248, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    min-height: 72px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--paragraph);
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-cta .btn {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   7. MEGA MENU
   ============================================================ */
.mega-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 0 0 22px 22px;
    box-shadow: var(--shadow-xl);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 100;
}

.mega-menu-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.mega-menu-item:hover {
    background: var(--bg-cream);
}

.mega-menu-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.mega-menu-item:hover .mega-menu-item-icon {
    background: var(--teal-dark);
    transform: scale(1.05);
}

.mega-menu-item-text h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 4px;
}

.mega-menu-item-text p {
    font-size: 13px;
    color: var(--paragraph);
    line-height: 1.5;
    margin: 0;
}

.mega-menu-featured {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.mega-menu-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 150, 136, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
}

.mega-menu-featured-overlay h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.mega-menu-featured-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin: 0;
}

/* ============================================================
   8. SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 20px;
    color: var(--heading);
    transition: var(--transition);
}

.search-overlay-close:hover {
    background: var(--primary);
    color: var(--white);
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border);
    padding: 8px;
    width: 100%;
    max-width: 600px;
    transition: border-color 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--teal);
}

.search-form input {
    flex: 1;
    padding: 16px 24px;
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-primary);
    color: var(--heading);
}

.search-form input::placeholder {
    color: var(--paragraph);
    opacity: 0.6;
}

.search-form button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 143, 0, 0.4);
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 0;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 143, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 143, 0, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--teal);
}

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

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--bs-warning);
    --bs-btn-border-color: var(--bs-warning);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #0EA5E9;
    --bs-btn-hover-border-color: #0EA5E9;
    --bs-btn-focus-shadow-rgb: 56, 189, 248;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #0284C7;
    --bs-btn-active-border-color: #0284C7;
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: var(--bs-warning);
    --bs-btn-disabled-border-color: var(--bs-warning);
}

.btn-outline-warning {
    --bs-btn-color: var(--bs-warning);
    --bs-btn-border-color: var(--bs-warning);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--bs-warning);
    --bs-btn-hover-border-color: var(--bs-warning);
    --bs-btn-focus-shadow-rgb: 56, 189, 248;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--bs-warning);
    --bs-btn-active-border-color: var(--bs-warning);
    --bs-btn-disabled-color: var(--bs-warning);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-warning);
}

.bg-warning {
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-warning {
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity, 1)) !important;
}

.border-warning {
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity, 1)) !important;
}

.badge.bg-warning {
    background-color: rgba(var(--bs-warning-rgb), 1) !important;
}

.btn-accent {
    background: var(--golden);
    color: var(--heading);
}

.btn-accent:hover {
    background: #38BDF8;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

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

.btn-teal {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 150, 136, 0.3);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 150, 136, 0.4);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 10px 0;
}

.btn-ghost:hover {
    color: var(--primary-dark);
}

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

.btn-ghost:hover i {
    transform: translateX(4px);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================================
   10. CONTAINER & LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.col {
    padding: 0 20px;
}

.col-1 { width: 8.333%; }
.col-2 { width: 16.666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333%; }
.col-5 { width: 41.666%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333%; }
.col-8 { width: 66.666%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333%; }
.col-11 { width: 91.666%; }
.col-12 { width: 100%; }

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-10 { gap: 10px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================================
   11. SECTION STYLING
   ============================================================ */
.section,
.section-padding {
    padding: 100px 0;
}

.section-lg {
    padding: 120px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-bg {
    background: var(--bg-cream);
}

.section-white {
    background: var(--white);
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-cream);
    border: 1px solid rgba(0, 150, 136, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--teal);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--paragraph);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   12. HERO SECTION
   ============================================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
    z-index: -1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--golden);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 6s ease-in-out infinite;
}

.hero-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.hero-particle:nth-child(3) { top: 30%; left: 60%; animation-delay: 2s; }
.hero-particle:nth-child(4) { top: 70%; left: 20%; animation-delay: 3s; }
.hero-particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 4s; }
.hero-particle:nth-child(6) { top: 80%; left: 50%; animation-delay: 5s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-floating-icon {
    position: absolute;
    font-size: 80px;
    opacity: 0.06;
    color: var(--primary);
    animation: heroFloat 12s ease-in-out infinite;
}

.hero-floating-icon:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
.hero-floating-icon:nth-child(2) { bottom: 20%; left: 5%; animation-delay: 4s; }
.hero-floating-icon:nth-child(3) { top: 50%; right: 25%; animation-delay: 8s; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    margin: 0;
    text-align: left;
    padding: 0;
}

.hero-content-inner {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 143, 0, 0.1);
    border: 1px solid rgba(255, 143, 0, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    color: var(--heading);
    line-height: 1.1;
    margin-bottom: 24px;
    display: block;
    width: 100%;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--paragraph);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 0 32px 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-nav-dot.active {
    background: var(--primary);
    width: 36px;
}

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

/* ============================================================
   13. TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo-item {
    opacity: 0.5;
    transition: var(--transition);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.trust-logo-item:hover {
    opacity: 1;
    color: var(--primary);
}

.trust-logo-item img {
    max-height: 40px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logo-item:hover img {
    filter: grayscale(0%);
}

/* ============================================================
   14. ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    z-index: 2;
}

.about-experience-badge .number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.about-experience-badge .label {
    font-size: 14px;
    color: var(--paragraph);
    font-weight: 500;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content .section-subtitle {
    text-align: left;
    margin: 0 0 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.about-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(0, 150, 136, 0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.about-feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
}

/* ============================================================
   15. VISION & MISSION CARDS
   ============================================================ */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-card,
.mission-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vision-card:hover::before,
.mission-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover,
.mission-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.vision-card-icon,
.mission-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.vision-card:hover .vision-card-icon,
.mission-card:hover .mission-card-icon {
    background: var(--teal);
    color: var(--white);
}

.vision-card h3,
.mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vision-card p,
.mission-card p {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.7;
}

/* ============================================================
   16. PRODUCT CARDS
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
    border-color: transparent;
}

.product-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.product-card-action:hover {
    background: var(--primary);
    color: var(--white);
}

.product-card-body {
    padding: 24px;
}

.product-card-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 12px;
    transition: var(--transition);
}

.product-card:hover .product-card-title {
    color: var(--primary);
}

.product-card-description {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.product-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-spec-item .spec-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--paragraph);
    letter-spacing: 0.5px;
}

.product-spec-item .spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.product-warranty {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
}

.product-warranty i {
    font-size: 16px;
}

/* ============================================================
   17. PROCESS TIMELINE
   ============================================================ */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.666% + 15px);
    width: calc(66.666% - 30px);
    height: 2px;
    background: var(--border);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .process-step-number {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 150, 136, 0.15);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    background: var(--gradient-teal);
    color: var(--white);
    transform: translateY(-4px);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================================
   18. STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--gradient-teal);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number .counter {
    display: inline;
}

.stat-number .suffix {
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

/* ============================================================
   19. PROJECTS GRID
   ============================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
}

.project-card-image {
    width: 100%;
    height: 100%;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 121, 107, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(0, 121, 107, 0.95) 0%, rgba(0, 121, 107, 0.3) 70%);
}

.project-card-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.project-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.project-card-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   20. WHY CHOOSE US CARDS
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 36px;
    border-radius: 22px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--teal);
    color: var(--white);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.6;
}

/* ============================================================
   21. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    min-height: 280px;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.testimonial-card .quote-icon i {
    font-size: 28px;
}

.testimonial-card .star-rating i {
    font-size: 14px;
}

.testimonial-card .testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-card .author-avatar {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
}

.testimonial-card .author-info h6 {
    font-size: 14px;
}

.testimonial-card .author-info small {
    font-size: 11px;
}

.testimonial-swiper .swiper-wrapper {
    padding-bottom: 40px;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--golden);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--paragraph);
}

/* ============================================================
   22. SOLAR CALCULATOR
   ============================================================ */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
}

.calculator-form {
    padding: 40px;
}

.calculator-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.calculator-form > p {
    font-size: 15px;
    color: var(--paragraph);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--heading);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.1);
}

.form-control::placeholder {
    color: var(--paragraph);
    opacity: 0.6;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--heading);
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23607080' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 150, 136, 0.1);
}

.calculator-result {
    background: var(--gradient-teal);
    padding: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-result h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.calculator-result > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.result-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.result-item-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-item-label i {
    font-size: 18px;
    opacity: 0.7;
}

.result-item-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

/* ============================================================
   23. CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   24. INDUSTRIES SECTION
   ============================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--white);
    border-radius: 22px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.industry-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: transparent;
}

.industry-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.industry-card:hover .industry-card-icon {
    background: var(--gradient-teal);
    color: var(--white);
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.6;
}

/* ============================================================
   25. FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, #004D40 0%, #002822 100%) !important;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .navbar-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paragraph);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--paragraph);
    transition: var(--transition);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 16px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-bottom {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--paragraph);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--paragraph);
}

.footer-bottom-links a:hover {
    color: var(--teal);
}

/* ============================================================
   26. SUSTAINABILITY CARDS
   ============================================================ */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sustainability-card {
    background: var(--white);
    border-radius: 22px;
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.sustainability-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.sustainability-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.sustainability-card:hover .sustainability-card-icon {
    background: var(--teal);
    color: var(--white);
}

.sustainability-card .stat_value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--teal);
    margin-bottom: 8px;
    display: block;
}

.sustainability-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.sustainability-card p {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.6;
}

/* ============================================================
   27. FAQ ACCORDION
   ============================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-accordion-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-accordion-item.active {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--heading);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--teal);
}

.faq-question i {
    font-size: 14px;
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-accordion-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.7;
}

/* ============================================================
   28. BLOG CARDS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--paragraph);
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta-item i {
    color: var(--teal);
    font-size: 14px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--teal);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    transition: var(--transition);
}

.blog-card-link:hover {
    gap: 12px;
}

.blog-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* ============================================================
   29. GALLERY GRID
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 150, 136, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 28px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ============================================================
   30. CAREER CARDS
   ============================================================ */
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.career-card {
    background: var(--white);
    border-radius: 22px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.career-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.career-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.career-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.career-card .department {
    font-size: 14px;
    color: var(--teal);
    font-weight: 500;
}

.career-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.career-tag {
    background: var(--bg-cream);
    color: var(--heading);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.career-card p {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.6;
    margin-bottom: 20px;
}

.career-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.career-salary {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--heading);
    font-weight: 600;
}

.career-salary i {
    color: var(--teal);
}

/* ============================================================
   31. PAGE HEADER
   ============================================================ */
/* Page Header styling */

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    margin-top: 15px !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--paragraph);
}

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

.breadcrumb span {
    color: var(--paragraph);
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--teal);
    font-weight: 500;
}

/* subpage-header-color-fix */
.page-header h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white) !important;
}

.page-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 500px;
    margin: 0 auto;
}

.page-header .breadcrumb a,
.page-header .breadcrumb-item,
.page-header .breadcrumb-item.active,
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-header .breadcrumb a:hover {
    color: var(--primary) !important;
}

/* ============================================================
   32. CONTACT INFO CARDS
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--white);
    border-radius: 22px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--gradient-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--paragraph);
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--teal);
    font-weight: 500;
}

.contact-info-content a:hover {
    color: var(--teal-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 22px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: var(--paragraph);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map */
.contact-map {
    border-radius: 22px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   33. CERTIFICATIONS SCROLL
   ============================================================ */
.certifications-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.certifications-track {
    display: flex;
    gap: 30px;
    animation: scrollCertifications 25s linear infinite;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 180px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.certification-item:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--teal);
}

.certification-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.certification-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading);
    text-align: center;
}

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

/* ============================================================
   34. FLOATING ACTION BUTTONS
   ============================================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.fab-phone {
    background: var(--teal);
    color: var(--white);
}

.fab-phone:hover {
    background: var(--teal-dark);
}

.fab-whatsapp {
    background: #25D366;
    color: var(--white);
}

.fab-whatsapp:hover {
    background: #128C7E;
}

.fab-scroll-top {
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--teal);
}

.fab-scroll-top:hover {
    background: var(--teal);
    color: var(--white);
}

.fab-scroll-top.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* ============================================================
   35. TEAM SECTION
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.team-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-social {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-card-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-card-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card-social a:hover {
    background: var(--teal);
    color: var(--white);
}

.team-card-body {
    padding: 24px;
    text-align: center;
}

.team-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-body span {
    font-size: 14px;
    color: var(--teal);
    font-weight: 500;
}

/* ============================================================
   36. PARTNERS / CLIENTS
   ============================================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.partner-item:hover {
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.partner-item img {
    max-height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================================================
   37. SERVICE DETAIL
   ============================================================ */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content .section-badge {
    margin-bottom: 16px;
}

.service-detail-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    color: var(--paragraph);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service-feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(0, 150, 136, 0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.service-feature-item p {
    font-size: 15px;
    color: var(--heading);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.service-detail-image {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.service-detail-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-detail-image-badge .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-detail-image-badge .text strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
}

.service-detail-image-badge .text span {
    font-size: 13px;
    color: var(--paragraph);
}

/* ============================================================
   38. PRICING TABLE
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-badge {
    display: block;
}

.pricing-badge {
    display: none;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card-header p {
    font-size: 14px;
    color: var(--paragraph);
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--heading);
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: var(--paragraph);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--heading);
}

.pricing-feature i {
    font-size: 14px;
    color: var(--teal);
}

.pricing-feature.disabled {
    opacity: 0.4;
}

.pricing-feature.disabled i {
    color: var(--paragraph);
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================================
   39. TESTIMONIALS SLIDER
   ============================================================ */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    background: var(--white);
    border-radius: 22px;
    padding: 48px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    text-align: center;
}

.testimonial-slide-quote {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-slide-text {
    font-size: 18px;
    color: var(--paragraph);
    line-height: 1.8;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 32px;
}

.testimonial-slide-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-slide-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-display);
}

.testimonial-slide-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
}

.testimonial-slide-info span {
    font-size: 14px;
    color: var(--paragraph);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ============================================================
   40. COUNTER ANIMATION
   ============================================================ */
.counter-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter-item {
    text-align: center;
}

.counter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.counter-value {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--heading);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.counter-label {
    font-size: 15px;
    color: var(--paragraph);
    font-weight: 500;
}

/* ============================================================
   41. SERVICES LIST
   ============================================================ */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 22px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-teal);
    color: var(--white);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-card-link:hover {
    gap: 12px;
}

.service-card-link i {
    font-size: 12px;
}

/* ============================================================
   42. FEATURES SECTION
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 22px;
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: var(--gradient-teal);
    color: var(--white);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.6;
}

/* ============================================================
   43. NEWSLETTER / SUBSCRIBE
   ============================================================ */
.newsletter-section {
    background: var(--gradient-teal);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    width: 320px;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   44. TABS
   ============================================================ */
.tabs-nav {
    display: flex;
    gap: 4px;
    background: var(--bg-cream);
    border-radius: var(--radius-full);
    padding: 4px;
    margin-bottom: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--paragraph);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--white);
    color: var(--heading);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
    color: var(--teal);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   45. PROGRESS BAR / SKILL
   ============================================================ */
.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skill-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.skill-header .skill-percent {
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
}

.skill-bar {
    height: 10px;
    background: var(--bg-cream);
    border-radius: 5px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--gradient-teal);
    border-radius: 5px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   46. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 998;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

/* ============================================================
   47. NOTIFICATION BAR
   ============================================================ */
.notification-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.notification-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.notification-bar-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.notification-bar-close:hover {
    opacity: 1;
}

/* ============================================================
   48. IMAGE COMPARISON
   ============================================================ */
.image-comparison {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 400px;
}

.image-comparison-before,
.image-comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-comparison-before img,
.image-comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-comparison-before {
    clip-path: inset(0 50% 0 0);
}

.image-comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    cursor: ew-resize;
    z-index: 2;
    transform: translateX(-50%);
}

.image-comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   49. VIDEO PLAYER / CTA
   ============================================================ */
.video-cta {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.video-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.video-play-btn {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255, 143, 0, 0.4);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 143, 0, 0.5);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: videoPulse 2s ease-in-out infinite;
}

@keyframes videoPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   50. BREADCRUMB ALT
   ============================================================ */
.breadcrumb-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.breadcrumb-alt a {
    font-size: 14px;
    color: var(--paragraph);
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-alt a:hover {
    color: var(--teal);
}

.breadcrumb-alt .separator {
    color: var(--paragraph);
    opacity: 0.4;
    font-size: 12px;
}

.breadcrumb-alt .current {
    font-size: 14px;
    color: var(--teal);
    font-weight: 500;
}

/* ============================================================
   51. PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--bg-cream);
    border-color: var(--teal);
    color: var(--teal);
}

.pagination .active {
    background: var(--gradient-teal);
    color: var(--white);
    border-color: transparent;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 20px;
    border-radius: var(--radius-full);
    gap: 6px;
}

/* ============================================================
   52. SIDEBAR / WIDGETS
   ============================================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.sidebar-search {
    display: flex;
    gap: 8px;
}

.sidebar-search input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition);
}

.sidebar-search input:focus {
    border-color: var(--teal);
}

.sidebar-search button {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-categories li {
    border-bottom: 1px solid var(--border);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    color: var(--paragraph);
}

.sidebar-categories a:hover {
    color: var(--teal);
}

.sidebar-categories .count {
    background: var(--bg-cream);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--heading);
}

.sidebar-post-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sidebar-post-content h5 a {
    color: var(--heading);
}

.sidebar-post-content h5 a:hover {
    color: var(--teal);
}

.sidebar-post-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--paragraph);
}

.sidebar-post-meta i {
    color: var(--teal);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tag {
    background: var(--bg-cream);
    color: var(--heading);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-tag:hover {
    background: var(--teal);
    color: var(--white);
}

/* ============================================================
   53. UTILITIES
   ============================================================ */
.hover-sky:hover { color: var(--sky) !important; }
.text-primary { color: var(--primary) !important; }
.text-teal { color: var(--teal) !important; }
.text-heading { color: var(--heading) !important; }
.text-paragraph { color: var(--paragraph) !important; }
.text-white { color: var(--white) !important; }
.text-golden { color: var(--golden) !important; }
.text-sky { color: var(--sky) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-teal { background: var(--teal) !important; }
.bg-cream { background: var(--bg-cream) !important; }
.bg-white { background: var(--white) !important; }
.bg-section { background: var(--bg) !important; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
}

.border-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

.fs-12 { font-size: 12px; }
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-28 { font-size: 28px; }
.fs-32 { font-size: 32px; }
.fs-40 { font-size: 40px; }
.fs-48 { font-size: 48px; }

.lh-1 { line-height: 1; }
.lh-12 { line-height: 1.2; }
.lh-14 { line-height: 1.4; }
.lh-16 { line-height: 1.6; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0 !important; }
.p-16 { padding: 16px !important; }
.p-20 { padding: 20px !important; }
.p-24 { padding: 24px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }

.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

.px-20 { padding-left: 20px; padding-right: 20px; }
.px-40 { padding-left: 40px; padding-right: 40px; }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.cursor-pointer { cursor: pointer; }
.user-select-none { user-select: none; }

.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-10 { z-index: 10; }

.transition-all { transition: var(--transition); }

.opacity-100 { opacity: 1; }
.opacity-80 { opacity: 0.8; }
.opacity-60 { opacity: 0.6; }
.opacity-40 { opacity: 0.4; }
.opacity-20 { opacity: 0.2; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   54. RESPONSIVE DESIGN
   ============================================================ */

/* Large Devices (1200px and below) */
@media (max-width: 1200px) {
    .products-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-grid {
        gap: 24px;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-6px);
    }
}

/* Medium Devices (991px and below) */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .navbar-wrapper {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        background: transparent !important;
        border-bottom: none !important;
        backdrop-filter: none !important;
    }
    .navbar-wrapper.scrolled {
        background: #ffffff !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(234, 234, 234, 0.6) !important;
    }
    .navbar {
        min-height: 48px !important;
        padding: 2px 0 !important;
    }
    .navbar-brand {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
    }
    .navbar-brand img {
        max-height: 70px !important;
        width: auto !important;
    }
    .navbar-toggler {
        padding: 2px 6px !important;
    }
    .navbar-toggler-icon {
        width: 22px !important;
        height: 22px !important;
    }
    .navbar-logo .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }
    .logo-name {
        font-size: 15px !important;
    }

    .mega-menu-content {
        position: static;
        grid-template-columns: 1fr;
        box-shadow: none;
        border-radius: 0;
        padding: 16px;
        background: var(--bg-cream);
    }

    .mega-menu {
        display: none;
    }

    .nav-menu {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-cta {
        display: none;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .industries-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(30px, 5vw, 52px);
    }
}

/* Small Devices (767px and below) */
@media (max-width: 767px) {
    .section,
    .section-padding {
        padding: 70px 0;
    }

    .section-lg {
        padding: 90px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Hero section responsive fixes for mobile */
    .hero-section {
        height: 520px !important;
        min-height: 520px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .hero-swiper {
        height: 520px !important;
        min-height: 520px !important;
        background: #00221c !important;
    }
    .hero-slide {
        height: 520px !important;
        min-height: 520px !important;
        background: transparent !important;
    }
    .hero-slide-bg {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: 70% center !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url('../images/mobile-hero-banner.png') !important;
    }
    .hero-section .min-vh-100 {
        min-height: 520px !important;
        height: 520px !important;
    }
    .hero-content {
        padding: 60px 20px !important;
        text-align: left !important;
    }
    .hero-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    .hero-subtitle {
        font-size: 13px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }
    .hero-badge {
        font-size: 10px !important;
        padding: 4px 12px !important;
        margin-bottom: 10px !important;
    }
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .hero-buttons .btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        margin-right: 0 !important;
        flex: 1 !important;
        width: auto !important;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    #about.about-section {
        padding-top: 25px !important;
    }

    .products-grid,
    .projects-grid,
    .blog-grid,
    .testimonials-grid,
    .services-list-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Hide all filter buttons on mobile/tablet views */
    .filter-buttons, .product-filter, .product-filters {
        display: none !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 600px;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .testimonial-slide {
        padding: 30px 20px;
    }

    .testimonial-slide-text {
        font-size: 16px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .cta-content h2 {
        font-size: clamp(24px, 4vw, 36px);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .trust-logos {
        justify-content: center;
    }
}

/* Extra Small Devices (575px and below) */
@media (max-width: 575px) {
    .container {
        padding: 0 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }

    .btn-lg {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }



    .stat-number {
        font-size: 36px;
    }

    .about-experience-badge {
        right: 16px;
        bottom: 16px;
        padding: 20px 24px;
    }

    .about-experience-badge .number {
        font-size: 36px;
    }

    .hero-nav {
        bottom: 20px;
    }

    .floating-actions {
        bottom: 20px;
        right: 16px;
    }

    .fab {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .tabs-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .pagination a,
    .pagination span {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 16px;
    }
}

/* Hover states only on non-touch devices */
@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-8px);
    }

    .blog-card:hover {
        transform: translateY(-6px);
    }

    .why-card:hover {
        transform: translateY(-4px);
    }

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

    .feature-card:hover {
        transform: translateY(-6px);
    }

    .team-card:hover {
        transform: translateY(-6px);
    }

    .industry-card:hover {
        transform: translateY(-6px);
    }

    .sustainability-card:hover {
        transform: translateY(-4px);
    }

    .career-card:hover {
        transform: translateY(-4px);
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-slide-bg {
        transition: none;
    }

    .certifications-track {
        animation: none;
    }
}

/* Print styles */
@media print {
    .preloader,
    .top-bar,
    .navbar-wrapper,
    .floating-actions,
    .back-to-top,
    .scroll-progress,
    .footer,
    .cta-section,
    .newsletter-section {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section,
    .section-padding {
        padding: 20px 0;
    }

    .container {
        max-width: 100%;
    }
}

/* ============================================================
   CUSTOM SCROLLED NAVBAR STYLES
   ============================================================ */
.navbar-wrapper .navbar-brand span {
    color: var(--heading) !important;
}
.navbar-wrapper .navbar-brand small {
    color: var(--teal-dark) !important;
}
.navbar-wrapper .nav-link {
    /* color: var(--heading) !important; */
}
.navbar-wrapper .nav-link:hover,
.navbar-wrapper .nav-link.active {
    color: var(--primary) !important;
}
.navbar-wrapper #searchToggle {
    color: var(--heading) !important;
}
.navbar-wrapper .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2836, 50, 74, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-wrapper .navbar-toggler {
    border-color: rgba(36, 50, 74, 0.2) !important;
}

/* Mega Menu Layout Fix */
.mega-menu-dropdown {
    position: static !important;
}
.navbar-wrapper .mega-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 0 22px 22px !important;
    border: none !important;
    box-shadow: var(--shadow-xl) !important;
    background: var(--white) !important;
    padding: 30px !important;
    margin-top: 0 !important;
}

/* Fix Text Contrast in Dark Green / Text-White Sections */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .lead {
    color: #ffffff !important;
}

/* Theme Color Overrides for Inline Green/Teal Styles */
[style*="color:#004D40"], [style*="color: #004D40"] {
    color: var(--primary-dark) !important;
}
[style*="background:linear-gradient(135deg,#004D40,#009688)"], 
[style*="background: linear-gradient(135deg,#004D40,#009688)"],
[style*="background: linear-gradient(135deg, #004D40, #009688)"] {
    background: var(--gradient-primary) !important;
}
[style*="background:linear-gradient(135deg,#004D40,#00796B,#009688)"],
[style*="background: linear-gradient(135deg,#004D40,#00796B,#009688)"],
[style*="background: linear-gradient(135deg, #004D40, #00796B, #009688)"] {
    background: var(--gradient-primary) !important;
}
[style*="background:linear-gradient(90deg,#004D40,#009688)"],
[style*="background: linear-gradient(90deg,#004D40,#009688)"],
[style*="background: linear-gradient(90deg, #004D40, #009688)"] {
    background: var(--gradient-primary) !important;
}
[style*="background:#004D40"], [style*="background: #004D40"] {
    background: var(--primary-dark) !important;
}
[style*="background:#009688"], [style*="background: #009688"] {
    background: var(--teal) !important;
}
[style*="color:#009688"], [style*="color: #009688"] {
    color: var(--teal) !important;
}
[style*="border:1px solid #009688"], [style*="border: 1px solid #009688"] {
    border-color: var(--teal) !important;
}

/* ============================================================
   MOBILE RESPONSIVENESS AND COLLAPSIBLE NAVBAR FIXES
   ============================================================ */
html, body {
    overflow-x: hidden !important;
}

@media (max-width: 991px) {
    /* Responsive navbar dropdown menu with solid dark teal-blue background */
    .navbar-collapse {
        background: #004D40 !important;
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }
    .navbar-wrapper .navbar-collapse .nav-link {
        color: #ffffff !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-wrapper .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }
    .navbar-wrapper .navbar-collapse .nav-link.active,
    .navbar-wrapper .navbar-collapse .nav-link:hover {
        color: var(--bs-warning) !important;
    }
    .navbar-collapse .btn {
        width: 100% !important;
        margin-top: 15px;
        text-align: center;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 575px) {
    /* floating buttons responsive scaling */
    .floating-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
    }
    .floating-buttons {
        bottom: 16px !important;
        right: 12px !important;
        gap: 8px !important;
    }
    /* Logo mobile scaling */
    .navbar-brand img {
        max-height: 70px !important;
    }
}

/* ============================================================
   PREMIUM MOBILE INSTALLATION TIMELINE
   ============================================================ */
.install-mobile-timeline {
    padding: 8px 0;
}

.install-mobile-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 4px;
}

.install-mobile-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.install-mobile-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009688, #00796B);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.45);
    flex-shrink: 0;
    z-index: 1;
}

.install-mobile-connector {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, #009688, rgba(0, 150, 136, 0.12));
    margin: 6px 0;
}

.install-mobile-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 150, 136, 0.15);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.install-mobile-card:hover,
.install-mobile-card:active {
    box-shadow: 0 6px 24px rgba(0, 150, 136, 0.18);
    transform: translateY(-2px);
}

.install-mobile-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.12), rgba(0, 150, 136, 0.06));
    border: 1.5px solid rgba(0, 150, 136, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #009688;
    flex-shrink: 0;
}

.install-mobile-body {
    flex: 1;
    min-width: 0;
}

.install-mobile-body h6 {
    font-size: 13.5px;
    line-height: 1.3;
    margin-bottom: 4px !important;
    color: #1a1a1a;
}

.install-mobile-body p {
    font-size: 12px !important;
    line-height: 1.5;
    color: #6c757d;
}

.install-mobile-step.last .install-mobile-card {
    margin-bottom: 0;
    border-color: rgba(0, 150, 136, 0.3);
    background: linear-gradient(135deg, #f0faf9, #ffffff);
}

/* ============================================================
   IMAGE CONTAINMENT & SOLID BACKGROUND FORMAT (no blur)
   ============================================================ */
.product-image,
.product-img-wrap,
.product-card-image,
.project-card-image,
.project-card .position-relative,
.project-image {
    background-color: #f5f6f8 !important; /* solid light cool-gray background */
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure the product/project image is contained and crisp */
.product-image img,
.product-img-wrap img,
.project-card-image img,
.product-card-image img,
.project-card .position-relative img,
.project-card img,
.project-image img,
.card-img-top,
.img-fluid.w-100 {
    object-fit: contain !important;
    background-color: transparent !important;
}

/* Ensure absolute positioned badges and actions are on top of the image */
.product-category,
.product-actions,
.product-card-badge,
.product-card-actions,
.project-card .badge,
.project-card-overlay,
.position-relative .badge,
.zoom-icon {
    z-index: 2 !important;
}

/* Bypass adjustments for logo images, footer icons, etc. */
.navbar-brand img,
.footer-about img,
img.no-blur {
    background-color: transparent !important;
    padding: 0 !important;
}

/* ============================================================
   BLACK TO DARK GREEN THEME OVERRIDE
   ============================================================ */
.bg-dark,
div.bg-dark,
footer.bg-dark,
section.bg-dark,
.top-bar.bg-dark,
.footer,
.newsletter-section.bg-dark {
    background-color: #00332C !important;
    background: linear-gradient(135deg, #004D40 0%, #00251F 100%) !important;
}

/* Dark Green input fields in dark sections */
.bg-dark input,
input.bg-dark,
.form-control.bg-dark {
    background-color: #00241E !important;
    border-color: rgba(0, 150, 136, 0.4) !important;
    color: #ffffff !important;
}

.bg-dark input::placeholder,
.form-control.bg-dark::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Dark Green buttons */
.btn-dark {
    background-color: #004D40 !important;
    border-color: #00382F !important;
    color: #ffffff !important;
}

.btn-dark:hover {
    background-color: #00382F !important;
    border-color: #002B24 !important;
    color: #ffffff !important;
}

/* ============================================================
   TRANSPARENT HEADER OVERRIDE
   ============================================================ */
.top-bar.bg-dark {
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative;
    z-index: 1002;
}

.navbar-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease !important;
}

.top-bar + .navbar-wrapper {
    top: auto !important;
}

.navbar-wrapper.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 51, 44, 0.94) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* overridden */

.navbar-wrapper .nav-link:hover,
.navbar-wrapper .nav-link.active {
    color: #FFC107 !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.navbar-wrapper .navbar-toggler-icon {
    filter: invert(1) brightness(2) !important;
}

.navbar-wrapper .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}


/* ============================================================
   PREMIUM MODERN HEADER SYSTEM OVERRIDE
   ============================================================ */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    background: linear-gradient(180deg, rgba(0, 32, 26, 0.95) 0%, rgba(0, 32, 26, 0.85) 60%, rgba(0, 32, 26, 0.7) 100%) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25) !important;
}

.site-header.scrolled {
    background: rgba(0, 35, 28, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 184, 0, 0.25) !important;
}

/* Top Bar Inside Header */
.site-header .top-bar {
    background: rgba(0, 20, 15, 0.45) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 6px 0 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.site-header.scrolled .top-bar {
    padding: 4px 0 !important;
    background: rgba(0, 20, 15, 0.75) !important;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.top-bar-link:hover {
    color: #FFC107 !important;
}

.top-bar-link i {
    color: #FFC107 !important;
}

.top-bar-badge {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* Navbar Inside Header */
.site-header .navbar-wrapper {
    position: relative !important;
    top: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2px 0 !important;
}

.site-header .navbar {
    padding: 4px 0 !important;
    min-height: auto !important;
}

/* Logo */
.site-header .navbar-brand img {
    max-height: 55px !important;
    width: auto !important;
    transition: transform 0.3s ease !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.site-header .navbar-brand:hover img {
    transform: scale(1.02);
}

/* Navigation Links */
.site-header .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 8px 16px !important;
    position: relative !important;
    transition: color 0.3s ease !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

.site-header .navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 2px !important;
    left: 50% !important;
    width: 0;
    height: 2px !important;
    background: #FFC107 !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 8px #FFC107 !important;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: #FFC107 !important;
}

.site-header .navbar-nav .nav-link:hover::after,
.site-header .navbar-nav .nav-link.active::after {
    width: 60% !important;
}

/* CTA Button */
.site-header .btn-header-cta {
    background: linear-gradient(135deg, #FFB800 0%, #FF9800 100%) !important;
    color: #00221C !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.3px !important;
}

.site-header .btn-header-cta:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6) !important;
    color: #001A15 !important;
}

/* Mobile Toggler */
.site-header .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
}

.site-header .navbar-toggler-icon {
    filter: invert(1) brightness(2) !important;
}

/* Mobile Menu Dropdown styling */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: rgba(0, 32, 26, 0.98) !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin-top: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    }
    .site-header .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
    .site-header .btn-header-cta {
        display: inline-block !important;
        margin-top: 10px !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* SITE HEADER BODY FIX */
body {
    padding-top: 95px !important;
}
@media (max-width: 991px) {
    body {
        padding-top: 70px !important;
    }
}

/* ============================================================
   MASTER PERFECT HEADER SYSTEM (OVERRIDING ALL CONFLICTS)
   ============================================================ */
header.site-header,
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: #00221C !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Top Bar */
.site-header .top-bar,
div.top-bar {
    background: #001814 !important;
    background-color: #001814 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 6px 0 !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.top-bar-link,
a.top-bar-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: color 0.2s ease !important;
}

.top-bar-link:hover {
    color: #FFC107 !important;
}

.top-bar-link i {
    color: #FFC107 !important;
}

.top-bar-badge {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* Navbar Wrapper */
.site-header .navbar-wrapper,
div.navbar-wrapper {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 2px 0 !important;
}

.site-header .navbar,
nav.navbar {
    padding: 4px 0 !important;
    min-height: auto !important;
    background: transparent !important;
}

/* Logo */
.site-header .navbar-brand img,
.navbar-brand img {
    max-height: 52px !important;
    height: 52px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Nav Links - Force Single Line & Bright White Text */
.site-header .navbar-nav .nav-link,
.navbar-wrapper .nav-link,
.nav-link {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
    position: relative !important;
    transition: color 0.2s ease !important;
    text-shadow: none !important;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active,
.navbar-wrapper .nav-link:hover,
.navbar-wrapper .nav-link.active {
    color: #FFC107 !important;
}

.site-header .navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 2px !important;
    left: 50% !important;
    width: 0;
    height: 2px !important;
    background: #FFC107 !important;
    transition: all 0.25s ease !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
}

.site-header .navbar-nav .nav-link:hover::after,
.site-header .navbar-nav .nav-link.active::after {
    width: 70% !important;
}

/* CTA Button */
.site-header .btn-header-cta,
a.btn-header-cta {
    background: linear-gradient(135deg, #FFB800 0%, #FF9800 100%) !important;
    color: #001A15 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    border: none !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.site-header .btn-header-cta:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6) !important;
    color: #001A15 !important;
}

/* Responsive Mobile Navigation */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: #001C17 !important;
        border-radius: 12px !important;
        padding: 18px !important;
        margin-top: 10px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    }
    .site-header .navbar-nav .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .site-header .btn-header-cta {
        display: flex !important;
        margin-top: 12px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ============================================================
   INSTANT PAGE OPEN & SPEED OPTIMIZATION OVERRIDE
   ============================================================ */
.preloader,
#preloader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* ============================================================
   PAGE HEADER STYLING (FIX EMPTY SPACE GAP)
   ============================================================ */
.page-header,
section.page-header {
    display: block !important;
    position: relative !important;
    padding: 45px 0 35px 0 !important;
    background: linear-gradient(135deg, #00382F 0%, #00221C 100%) !important;
    color: #ffffff !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    margin: 0 !important;
}

.page-header h1,
section.page-header h1 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.page-header p,
section.page-header p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    margin-bottom: 0 !important;
}


/* ============================================================
   CONTENT VISIBILITY & AOS FAILSAFE OVERRIDE
   ============================================================ */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
}

.hero-title,
.hero-subtitle,
.hero-badge,
.hero-buttons {
    opacity: 1 !important;
    visibility: visible !important;
}
