/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
    /* Color Palette */
    --primary-green: #B30C13;
    --dark-green: #0B0B0B;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --light-green: #FFF0F0;
    --light-gray: #F8FAFC;
    --text-muted: #64748B;
    --border-color: #E2E8F0;

    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Border Radii */
    --radius-pill: 999px;
    --radius-circle: 50%;
    --radius-30: 30px;
    --radius-20: 20px;
    --radius-18: 18px;
    --radius-15: 15px;

    /* Shadows */
    --shadow-main: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* --- 2. GLOBAL RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
    border: none;
    background: none;
}

.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2.5rem;
    width: 100%;
}

.section-padding {
    padding: 40px 0;
}

.light-bg {
    background-color: var(--light-gray);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: #CBD5E1 !important;
}

.dark-container {
    background-image: linear-gradient(rgb(0 0 0 / 80%), rgba(0, 0, 0, 0.8)), linear-gradient(135deg, rgba(255, 122, 122, 0.06) 0%, rgb(0 0 0 / 6%) 100%), url(https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1400&q=80);
    border-radius: var(--radius-30);
}

.dark-green-card {
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: var(--radius-20);
}

.w-100 {
    width: 100%;
}



.max-w-600 {
    max-width: 650px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --- 3. REUSABLE COMPONENTS & TYPOGRAPHY --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--dark-green);
    text-transform: uppercase;
    background-color: var(--light-green);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-tag.light-tag {
    background-color: rgba(231, 63, 30, 0.15);
    color: var(--primary-green);
}

.section-tag.center-tag {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17.6px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* About-specific typography overrides to keep the section compact */
.about-section .section-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-section .section-desc {
    font-size: 14px;
    margin-bottom: 12px;
}

/* Rounded Pill Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-green);
    color: #ffffff;
}

.btn-dark:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--border-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* --- 4. HEADER & STICKY NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 25px 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-main);
    padding: 14px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Desktop fallback for nav-menu: ensure mobile fixed menu styles don't apply on large screens */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-green);
    color: var(--dark-green);
    border-radius: var(--radius-15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22.4px;
    box-shadow: 0 4px 15px rgba(231, 63, 30, 0.35);
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    background-color: var(--dark-green);
    color: var(--primary-green);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--black);
}

.header.scrolled .logo-text {
    color: var(--black);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-cta {
    display: none;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 15px;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--black);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* --- 5. HERO SECTION --- */
.hero-section {
    padding-top: 100px;
    padding-bottom: 30px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section>.container {
    max-width: none;
    padding: 0;
}

.hero-container {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 45%, rgba(0, 0, 0, 0) 100%), url(../assets/homepage/hero-section.png);
    background-size: cover;
    background-position: center;
    padding: 90px 6vw 100px 6vw;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.hero-content {
    color: var(--white);
    z-index: 2;
}

.hero-container .hero-content {
    padding-right: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000000;
    backdrop-filter: blur(8px);
    border: 2px solid #ffffff;
    ;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.badge-icon {
    color: var(--primary-green);
    font-size: 17.6px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero actions button overrides removed for default compact btn */

.hero-actions .btn.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
}

.hero-actions .btn.btn-primary:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: block;
}

.hero-image-box {
    position: relative;
    border-radius: var(--radius-30);
    overflow: visible;
}

.hero-img {
    border-radius: var(--radius-30);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    max-height: 430px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.22);
    opacity: 0.82;
}

.hero-img-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: rgba(11, 11, 11, 0.95);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-20);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(231, 63, 30, 0.18);
    animation: floatAnim 4s ease-in-out infinite;
}

.hero-img-overlay-badge i {
    font-size: 35.2px;
    color: var(--primary-green);
}

.hero-img-overlay-badge strong {
    display: block;
    font-size: 18.4px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-img-overlay-badge span {
    font-size: 13.6px;
    color: var(--light-green);
}

/* Floating Grid Overlapping Bottom */
.hero-floating-grid {
    position: absolute;
    bottom: -28px;
    left: 1.75rem;
    right: 1.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    z-index: 5;
}

.floating-card {
    border-radius: var(--radius-20);
    padding: 22px 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-card:hover {
    transform: translateY(-8px);
}

.glass-card {
    background-color: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.9);
}

.f-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: var(--light-green);
    color: var(--dark-green);
    border-radius: var(--radius-18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22.4px;
}

.f-card-info h4 {
    font-size: 17.6px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.f-card-info p {
    font-size: 14.4px;
    color: var(--text-muted);
    line-height: 1.4;
}

.white-card {
    background-color: var(--white);
    justify-content: center;
}

.f-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    display: inline-block;
    font-size: 31.2px;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1;
}

.stat-item .suffix {
    font-size: 22.4px;
    font-weight: 700;
    color: var(--primary-green);
    margin-left: 2px;
}

.stat-item p {
    font-size: 13.6px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- HERO RESPONSIVE RULES (moved from responsive.css) --- */
@media screen and (max-width: 1440px) {
    .hero-container {
        padding: 60px 45px 120px 45px;
    }

    .hero-title {
        font-size: 30px;
    }

}

@media screen and (max-width: 1200px) {
    .hero-container {
        padding: 55px 35px 120px 35px;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-floating-grid {
        left: 40px;
        right: 40px;
        bottom: -70px;
        gap: 16px;
    }

    .floating-card {
        padding: 22px 20px;
    }

    .f-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20.8px;
    }

    .stat-item h3 {
        font-size: 28.8px;
    }

    .stat-item .suffix {
        font-size: 22.4px;
    }
}

@media screen and (max-width: 992px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 45px 30px 160px 30px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 41.6px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.6;
        margin-bottom: 26px;
        max-width: 700px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-img {
        max-height: 420px;
    }

    .hero-img-overlay-badge {
        left: 10px;
        bottom: 15px;
        padding: 12px 18px;
    }

    .hero-floating-grid {
        grid-template-columns: 1fr;
        left: 35px;
        right: 35px;
        bottom: -180px;
        gap: 16px;
    }

    .floating-card {
        padding: 20px 24px;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        padding: 35px 22px 280px 22px;
    }

    .hero-title {
        font-size: 35.2px;
    }

    .hero-floating-grid {
        left: 25px;
        right: 25px;
        bottom: -200px;
    }
}

@media screen and (max-width: 576px) {
    .hero-container {
        padding: 45px 5vw 45px 5vw;
        border-radius: 0;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero-desc {
        margin: 0;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 31.2px;
    }

    .hero-actions {
        flex-direction: row;
        width: auto;
        justify-content: flex-start;
    }

    .hero-actions .btn {
        width: auto;
        display: inline-flex;
    }

    .hero-floating-grid {
        left: 20px;
        right: 20px;
        bottom: -220px;
    }
}

@media screen and (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-floating-grid {
        left: 15px;
        right: 15px;
    }

    .floating-card {
        padding: 16px 16px;
        gap: 14px;
    }
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
}

.green-card {
    background-color: var(--primary-green);
    justify-content: space-between;
}

.f-action-text h4 {
    font-size: 18.4px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 6px;
}

.f-action-text p {
    font-size: 14.4px;
    color: var(--dark-green);
    font-weight: 500;
    line-height: 1.4;
}

.icon-btn-round {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: var(--dark-green);
    color: var(--primary-green);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19.2px;
    transition: var(--transition-smooth);
}

.icon-btn-round:hover {
    transform: rotate(-45deg) scale(1.1);
    background-color: var(--black);
    color: var(--white);
}

/* --- WCU (WHY CHOOSE US) NEW SECTION --- */
.wcu-section {
    background-color: #F5F5F0;
}

/* Top Row */
.wcu-top-row {
    display: grid;
    align-items: center;
    margin-bottom: 20px;
}

.wcu-top-left .section-tag {
    background-color: #fff;
    border: 1.5px solid var(--border-color);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.wcu-heading {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.8px;
    margin-bottom: 18px;
}

.wcu-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.wcu-desc strong {
    color: var(--black);
    font-weight: 700;
}

/* Stats Right */
.wcu-top-right {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
}

.wcu-stat-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 44px;
}

.wcu-stat-block:first-child {
    padding-left: 0;
}

.wcu-stat-num {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -1.5px;
}

.wcu-stat-label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.4;
}

.wcu-stat-divider {
    width: 1.5px;
    height: 70px;
    background-color: #D1D5DB;
    flex-shrink: 0;
}

/* Cards Grid */
.wcu-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wcu-card {
    padding: 32px 28px 36px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: var(--transition-smooth);
    cursor: default;
}

.wcu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Lime card variant */
.wcu-card--lime {
    background-color: var(--primary-green);
    color: var(--black);
}

.wcu-card--lime .wcu-card-icon {
    background-color: #ffffff;
    color: var(--black);
}

/* Dark card variant (2nd card) */
.wcu-card--dark {
    background-color: #0B0B0B;
    color: var(--white);
}

.wcu-card--dark .wcu-card-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
}

.wcu-card--dark .wcu-card-title {
    color: var(--white);
}

.wcu-card--dark .wcu-card-desc {
    color: #CBD5E1;
}

/* Icon box */
.wcu-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wcu-card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.wcu-card-desc {
    font-size: 14.5px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for WCU */
@media screen and (max-width: 1200px) {
    .wcu-top-row {
        gap: 40px;
    }

    .wcu-heading {
        font-size: 36px;
    }

    .wcu-stat-num {
        font-size: 44px;
    }

    .wcu-stat-block {
        padding: 0 30px;
    }

    .wcu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media screen and (max-width: 992px) {
    .wcu-top-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wcu-top-right {
        justify-content: flex-start;
    }

    .wcu-stat-block:first-child {
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .wcu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .wcu-heading {
        font-size: 25px;
    }

    .wcu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wcu-card {
        padding: 10px 15px;
        min-height: auto;
        gap: 0px;
    }

    .wcu-card-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .wcu-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .wcu-card-desc {
        font-size: 11px;
    }

    .wcu-stat-num {
        font-size: 38px;
    }
}

/* --- 6. ABOUT SECTION (compact) --- */
.about-section {
    padding: 40px 0 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 30px;
    align-items: start;
}

.about-img-container {
    position: relative;
    border-radius: var(--radius-20);
    overflow: hidden;
}

.about-main-img {
    border-radius: 14px;
    box-shadow: var(--shadow-main);
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 14px rgba(231, 63, 30, 0.22);
    border: 2px solid var(--white);
}

.exp-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.about-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.about-card {
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateX(6px);
}

.about-card.dark-card {
    background-color: var(--dark-green);
    color: var(--white);
    box-shadow: var(--shadow-dark);
}

.about-card.dark-card .about-card-icon {
    background-color: rgba(231, 63, 30, 0.12);
    color: var(--primary-green);
}

.about-card.bright-card {
    background-color: var(--light-green);
    color: var(--dark-green);
}

.about-card.bright-card .about-card-icon {
    background-color: var(--dark-green);
    color: var(--primary-green);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-card-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-card-text p {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Compact About CTA button */
/* About CTA button default compact btn */

/* --- 7. SERVICES SECTION --- */
.services-header-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-end;
    margin-bottom: 60px;
}

.services-header-right {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow-main);
}

.service-stat-box {
    text-align: left;
}

.stat-number {
    font-size: 44.8px;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .unit {
    color: var(--primary-green);
}

.stat-label {
    font-size: 14.4px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
    max-width: 180px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    padding: 38px 30px;
    border-radius: var(--radius-20);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-card.bright-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.service-card.bright-card:hover {
    background-color: var(--light-green);
    border-color: var(--primary-green);
}

.service-card.dark-card {
    background-color: var(--dark-green);
    color: var(--white);
}

.no-scroll {
    overflow: hidden !important;
}

.mobile-sidebar-logo {
    display: none;
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28.8px;
    transition: var(--transition-smooth);
}

.service-card.bright-card .service-icon {
    background-color: var(--light-green);
    color: var(--dark-green);
}

.service-card.bright-card:hover .service-icon {
    background-color: var(--dark-green);
    color: var(--primary-green);
    transform: rotate(10deg);
}

.service-card.dark-card .service-icon {
    background-color: rgba(231, 63, 30, 0.15);
    color: var(--primary-green);
}

.service-index {
    font-size: 24px;
    font-weight: 800;
    opacity: 0.25;
}

.service-title {
    font-size: 21.6px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-desc {
    font-size: 15.2px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-card.dark-card .service-desc {
    color: #CBD5E1;
}

.service-link {
    font-weight: 700;
    font-size: 15.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card.bright-card .service-link {
    color: var(--dark-green);
}

.service-card.dark-card .service-link {
    color: var(--primary-green);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(6px);
}

/* --- What We Do (Services) Section --- */
.what-we-do-section {
    background-color: #000000;
}

.wwd-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.wwd-card {
    background: var(--white);
    border: 1px solid #b5b5b5;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 15px;
    flex: 1 1 200px;
    max-width: 280px;
}

.wwd-icon {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0;
    flex-shrink: 0;
}

.wwd-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 0;
    line-height: 1.3;
}

.wwd-heading {
    color: #ffffff;
    font-weight: 600 !important;
}


/* --- 8. WHY CHOOSE US SECTION --- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.why-img-wrapper {
    position: relative;
}

/* Collage layout for Why Choose Us */
.why-collage {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    gap: 18px;
    align-items: stretch;
}

.why-collage .why-main {
    position: relative;
    border-radius: var(--radius-20);
    overflow: hidden;
}

.why-collage .why-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-img {
    border-radius: var(--radius-20);
    min-height: 420px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.stack-img {
    border-radius: var(--radius-18);
    min-height: 200px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.why-floating-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
}

.why-img {
    border-radius: var(--radius-30);
    box-shadow: var(--shadow-main);
    width: 100%;
    min-height: 540px;
    object-fit: cover;
}

.why-floating-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 20px 26px;
    border-radius: var(--radius-20);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary-green);
    animation: floatAnim 5s ease-in-out infinite alternate;
}

.badge-icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--dark-green);
    border-radius: var(--radius-15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.badge-text-wrap h5 {
    font-size: 17.6px;
    font-weight: 700;
    margin-bottom: 2px;
}

.badge-text-wrap span {
    font-size: 13.6px;
    color: var(--light-green);
}

.feature-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card.dark-green-card {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 26px 30px;
    border-radius: var(--radius-20);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: var(--shadow-dark);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card.dark-green-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(15, 47, 23, 0.35);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 25.6px;
    font-weight: 800;
    color: var(--primary-green);
    background-color: rgba(231, 63, 30, 0.15);
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: var(--radius-15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-content p {
    font-size: 15.2px;
    color: #CBD5E1;
    line-height: 1.6;
}

/* --- 9. CLIENT LOGOS STRIP --- */
.logos-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-title {
    text-align: center;
    font-size: 13.6px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.logos-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 22.4px;
    font-weight: 800;
    color: var(--black);
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.logo-item i {
    font-size: 28.8px;
    color: var(--primary-green);
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.products-section {
    padding: 0;
    background-color: #000000;
}

.products-container {
    background-color: #000000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../assets/homepage/OUR-SERVICES.png);
    background-size: cover;
    background-position: center;
    border-radius: 0;
    padding: 40px 8vw 28px 8vw;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 40px;
}

.product-desc {
    color: #ffffff;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.products-section .product-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-15);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: max-content;
}

.products-section .product-card:hover {
    transform: translateY(-6px);
    background-color: #121212;
    border-color: var(--primary-green);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.product-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 16px 18px 24px 18px;
}

.product-meta {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-btn i {
    transition: var(--transition-fast);
}

.product-btn:hover i {
    transform: translateX(6px);
}

@media (max-width: 991px) {
    .product-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .products-container {
        padding: 30px 20px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
}

/* --- 11. TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.testi-img-box {
    position: relative;
    border-radius: var(--radius-30);
}

.testi-img {
    border-radius: var(--radius-30);
    box-shadow: var(--shadow-main);
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.testi-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow-main);
    text-align: center;
}

.testi-stars {
    color: #FFB800;
    font-size: 15px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testi-badge-overlay span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
}

.quote-slider-box {
    padding: 32px 32px 24px 32px;
    border-radius: var(--radius-20);
    position: relative;
    box-shadow: var(--shadow-dark);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon-top {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.slides-wrapper {
    position: relative;
    min-height: 120px;
}

.testi-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testi-slide.active-slide {
    display: block;
    opacity: 1;
    animation: fadeInSlide 0.5s forwards;
}

.quote-text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

/* User icon placeholder (replaces avatar img) */
.author-info>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-circle);
    background-color: var(--white);
    color: var(--primary-green);
    font-size: 18px;
    border: 2px solid var(--primary-green);
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.author-pos {
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-circle);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background-color: var(--primary-green);
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.arrow-btn:hover {
    background-color: var(--primary-green);
    color: var(--dark-green);
    transform: scale(1.1);
}

/* --- 12. SERVICES SHOWCASE SECTION --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.showcase-nav-mobile {
    display: none;
}

.showcase-card {
    background-color: var(--white);
    border-radius: var(--radius-20);
    overflow: hidden;
    box-shadow: var(--shadow-main);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-green);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.showcase-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.08);
}

.showcase-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
}

.showcase-content {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.showcase-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.showcase-content p {
    font-size: 14.4px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 22px;
    flex-grow: 1;
}

.showcase-content .btn {
    align-self: flex-start;
}

/* --- 13. CTA & CONSULTATION FORM SECTION --- */
.cta-section {
    padding: 0;
}

.cta-container {
    background-color: #0a1f14;
    background-image:
        linear-gradient(to right, rgba(6, 20, 10, 0.90) 42%, rgba(6, 20, 10, 0.48) 100%),
        url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0;
    padding: 60px 8vw;
    display: grid;
    grid-template-columns: minmax(auto, 650px) 400px;
    justify-content: center;
    gap: 6vw;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Left Panel */
.cta-left-panel {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cta-badge {
    display: inline-block;
    padding: 4px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.2px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    max-width: 550px;
}

.cta-desc strong {
    color: var(--white);
    font-weight: 700;
}

.cta-outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1.5px solid var(--white);
    border-radius: var(--radius-pill);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}

.cta-outline-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Right Panel: Form Card */
.cta-right-panel {
    display: flex;
    align-items: stretch;
}

.consultation-form-card {
    background-color: var(--white);
    padding: 24px 24px 28px;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
    width: 100%;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.solar-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--black);
}

.req-star {
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 11px;
    background-color: #F8F9FA;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--black);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0AEC0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.06);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.error-msg {
    font-size: 12px;
    color: #EF4444;
    font-weight: 600;
    display: none;
}

.form-group.has-error .error-msg {
    display: block;
}

.cta-submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 4px;
}

.cta-submit-btn:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.form-success-banner {
    display: none;
    background-color: #ECFDF5;
    border: 2px solid #10B981;
    color: #065F46;
    padding: 14px 18px;
    border-radius: 12px;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    animation: fadeInSlide 0.4s ease;
}

.form-success-banner.show {
    display: flex;
}

.success-icon {
    font-size: 30px;
    color: #10B981;
    flex-shrink: 0;
}

.form-success-banner strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.form-success-banner p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* CTA Responsive */
@media screen and (max-width: 1200px) {
    .cta-container {
        grid-template-columns: 1fr 320px;
        gap: 40px;
        padding: 40px 6vw;
    }

    .cta-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 5vw;
        background-image:
            linear-gradient(rgba(6, 20, 10, 0.95), rgba(6, 20, 10, 0.95)),
            url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=1400&q=80');
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-right-panel {
        max-width: 480px;
    }
}

@media screen and (max-width: 768px) {
    .cta-container {
        padding: 36px 5vw;
    }

    .cta-title {
        font-size: 22px;
    }

    .consultation-form-card {
        padding: 20px 18px 24px;
    }
}

@media screen and (max-width: 576px) {
    .cta-container {
        padding: 30px 4vw;
    }

    .cta-title {
        font-size: 20px;
    }
}



/* --- 14. BLOG SECTION --- */
.blog-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mobile-blog-controls {
    display: none;
    margin-top: 25px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-20);
    overflow: hidden;
    box-shadow: var(--shadow-main);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.blog-img-box {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 12.8px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================================================
   PREMIUM FAQ SECTION
========================================================= */
.faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.faq-premium-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.faq-premium-item {
    background-color: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-20);
    box-shadow: var(--shadow-main);
    overflow: hidden;
    transition: var(--transition-smooth);
    list-style: none;
}

.faq-premium-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Summary row */
.faq-premium-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-premium-question::-webkit-details-marker {
    display: none;
}

.faq-premium-question::marker {
    display: none;
}

/* Left side — number + text */
.faq-q-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.faq-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: var(--radius-circle);
    background-color: var(--light-green);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.faq-premium-item[open] .faq-num {
    background-color: var(--primary-green);
    color: var(--white);
}

.faq-q-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    font-family: var(--font-heading);
    transition: color 0.25s ease;
}

.faq-premium-item[open] .faq-q-text {
    color: var(--primary-green);
}

/* Toggle icon circle */
.faq-toggle-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: var(--radius-circle);
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 13px;
    transition: var(--transition-smooth);
    background-color: var(--white);
}

.faq-premium-item[open] .faq-toggle-icon {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: rotate(45deg);
}

/* Answer area */
.faq-premium-answer {
    padding: 0 28px 22px 84px;
    /* left-aligned under text, skipping number width */
    animation: faqSlideDown 0.3s ease;
}

.faq-premium-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.faq-premium-answer p strong {
    color: var(--black);
    font-weight: 700;
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0;
}

.blog-date-badge i {
    color: var(--primary-green);
}

.blog-content {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-meta {
    font-size: 13.6px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--dark-green);
}

.blog-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 14px;
}

.blog-title a:hover {
    color: var(--dark-green);
}

.blog-desc {
    font-size: 15.2px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-read-more {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more i {
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(6px);
}

.blog-grid {
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-panel-title {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.25;
    margin: 0;
    color: var(--black);
}

.faq-panel-desc {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background-color: var(--light-gray);
    border-radius: var(--radius-20);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.faq-item[open] {
    border-color: rgba(231, 63, 30, 0.16);
    background-color: rgba(255, 240, 240, 0.85);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    color: var(--black);
    background: none;
    border: none;
    text-align: left;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    transition: transform 0.35s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-cta {
    justify-self: start;
    margin-top: auto;
}

@media screen and (max-width: 1024px) {
    .blog-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 15. FOOTER SECTION --- */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    border-top: 4px solid var(--primary-green);
}

.footer-newsletter-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 50px;
}

.fn-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.fn-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background-color: rgba(231, 63, 30, 0.15);
    color: var(--primary-green);
    border-radius: var(--radius-20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.fn-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.fn-text p {
    font-size: 15.2px;
    color: #94A3B8;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 20px;
    color: var(--white);
    font-size: 15.2px;
}

.newsletter-form input::placeholder {
    color: #94A3B8;
}

.newsletter-form .btn {
    padding: 10px 22px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    width: 100%;
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 60px;
    max-height: 60px;
    border-radius: 5px
}

.footer-bio {
    font-size: 15.2px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17.6px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-green);
    color: var(--dark-green);
    transform: translateY(-4px);
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li a {
    color: #94A3B8;
    font-size: 15.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 12px;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #94A3B8;
    font-size: 15.2px;
    line-height: 1.5;
}

.contact-icon {
    color: var(--primary-green);
    font-size: 19.2px;
    margin-top: 3px;
}

.footer-contact-list li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14.4px;
    color: #64748B;
    flex-wrap: wrap;
    gap: 20px;
}

.fb-right {
    display: flex;
    gap: 15px;
}

.fb-right a:hover {
    color: var(--white);
}

/* --- 16. WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #ffffff;
    transform: translateY(-5px);
}

/* --- 17. KEYFRAME ANIMATIONS & SCROLL REVEAL --- */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   GALLERY SECTION — Collage Layout
========================================================================== */
.gallery-section {
    background-color: var(--white);
}

/* Header row */
.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
}

.gallery-header-left {
    max-width: 1000px;
}

.gallery-header-left .section-desc {
    margin-bottom: 0;
}

/* ---- Collage CSS Grid ---- */
.gallery-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 240px 240px;
    gap: 14px;
}

/* Tile base */
.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-20);
    cursor: pointer;
}

/* Grid placement per tile type */
.tile-large {
    grid-column: span 5;
    grid-row: span 2;
}

.mobile-gallery-btn {
    display: none;
    text-align: center;
    margin-top: 30px;
}

/* rows 1-2, cols 1-5  */
.tile-tall {
    grid-column: span 3;
    grid-row: span 2;
}

/* rows 1-2, cols 6-8  */
.tile-small {
    grid-column: span 2;
    grid-row: span 1;
}

/* row 1, 2 small      */
.tile-wide {
    grid-column: span 4;
    grid-row: span 1;
}

/* row 2 wide          */
.tile-medium {
    grid-column: span 2;
    grid-row: span 1;
}

/* row 2 medium        */

/* Image */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-tile:hover .gallery-img {
    transform: scale(1.08);
}

/* Hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.78) 0%,
            rgba(10, 10, 10, 0.15) 55%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 22px 20px;
}

.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    transform: translateY(12px);
    transition: transform 0.35s ease;
}

.gallery-tile:hover .gallery-overlay-inner {
    transform: translateY(0);
}

.gallery-overlay-inner i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: var(--radius-circle);
    background-color: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.gallery-overlay-inner span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* "+120 More Photos" counter badge on last tile */
.gallery-count-badge {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    pointer-events: none;
    border-radius: var(--radius-20);
    transition: opacity 0.3s ease;
}

.gallery-count-badge span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 4px;
}

.gallery-count-badge small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

.gallery-tile:hover .gallery-count-badge {
    opacity: 0.9;
}

/* View All button styling inherits .btn.btn-dark */
.gallery-view-all {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   LIGHTBOX OVERLAY
========================================================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.lb-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.lightbox-caption {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    z-index: 10000;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.lightbox-arrow:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

/* Responsive: gallery collage */
@media (max-width: 1024px) {
    .gallery-collage {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: 200px 200px;
    }

    .tile-large {
        grid-column: span 4;
        grid-row: span 2;
    }

    .tile-tall {
        grid-column: span 4;
        grid-row: span 2;
    }

    .tile-small {
        grid-column: span 2;
        grid-row: span 1;
    }

    .tile-wide {
        grid-column: span 4;
        grid-row: span 1;
    }

    .tile-medium {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gallery-collage {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 180px 180px 180px;
    }

    .tile-large {
        grid-column: span 6;
        grid-row: span 1;
    }

    .tile-tall {
        grid-column: span 3;
        grid-row: span 2;
    }

    .tile-small {
        grid-column: span 3;
        grid-row: span 1;
    }

    .tile-wide {
        grid-column: span 6;
        grid-row: span 1;
    }

    .tile-medium {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 140px);
        gap: 10px;
    }

    .gallery-tile:nth-child(5) {
        display: none;
    }

    .gallery-header-right {
        display: none;
    }

    .mobile-gallery-btn {
        display: block;
    }

    .tile-large,
    .tile-tall,
    .tile-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tile-small,
    .tile-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .lightbox-arrow {
        display: none;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
========================================================================== */

/* --- Inner Hero --- */
.inner-hero {
    margin-top: 86px;
    padding: 110px 0;
    background: linear-gradient(rgba(10, 18, 14, 0.8), rgba(10, 18, 14, 0.8)), url('../assets/homepage/breadcrumb.png') center/cover no-repeat;
    text-align: left;
}

.inner-hero-title {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    font-size: 12px;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: #ffffff;
}

/* --- Our Story Section --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img {
    width: 100%;
    border-radius: var(--radius-20);
    object-fit: cover;
    min-height: 400px;
}

.story-text p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-color);
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* --- Mission & Vision Section --- */
.mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.mv-image-col {
    position: relative;
    padding: 20px;
}

.mv-img-wrap {
    position: relative;
}

.mv-main-img {
    width: 100%;
    border-radius: var(--radius-20);
    object-fit: cover;
    min-height: 480px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mv-overlay-img {
    position: absolute;
    width: 50%;
    border-radius: var(--radius-15);
    border: 10px solid var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    z-index: 2;
}

.mv-overlay-bottom-right {
    bottom: -30px;
    right: -30px;
}

.mv-overlay-bottom-left {
    bottom: -30px;
    left: -30px;
}

.mv-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.mv-list li:last-child {
    margin-bottom: 0;
}

.mv-list li i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* --- Core Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(231, 63, 30, 0.1);
    color: var(--primary-green);
    border-radius: var(--radius-circle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.value-desc {
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Success Stats Section --- */
.success-stats-section {
    background-color: var(--dark-green);
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 45px;
}

.success-header-left h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0;
    color: #ffffff;
}

.success-header-left h2 em {
    font-style: italic;
    font-weight: 400;
}

.success-header-right p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.success-item {
    display: flex;
    flex-direction: column;
}

.success-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.success-divider {
    height: 1px;
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 25px;
}

.success-number {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
}

.success-desc {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* --- Leadership Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.member-img-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: var(--radius-circle);
    overflow: hidden;
    border: 3px solid #f1f3f5;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.member-role {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* --- Milestone Journey Section --- */
.journey-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.journey-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-green);
    transform: translateX(-50%);
}

.journey-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.journey-row::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px var(--primary-green);
}

.journey-row::before {
    content: '';
    position: absolute;
    left: calc(50% - 30px);
    right: calc(50% - 30px);
    top: 50%;
    height: 2px;
    background: var(--primary-green);
    transform: translateY(-50%);
    z-index: 1;
}

.journey-content {
    background: var(--white);
    padding: 30px;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.journey-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: block;
    position: relative;
    z-index: 2;
}

.journey-year {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
    display: inline-block;
    letter-spacing: 1px;
}

.journey-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 0px;
}

.journey-text {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Minimalist CTA Section --- */
.minimal-cta-section {
    background-color: var(--dark-bg);
    color: var(--white);
}

.minimal-cta-inner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.minimal-cta-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* --- Services Page Section --- */
.services-page-section {
    background-color: #e9e9e9;
}

.services-flat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 30px;
}

.service-flat-card {
    background-color: var(--white);
    border: 1px solid #ced4da;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-flat-content {
    padding: 15px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-bg);
    transition: var(--transition-smooth);
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- Dropdown Menus --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    padding: 10px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-green);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--dark-bg);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    padding-left: 25px;
}

/* --- Mega Menu Box for Brands --- */
.nav-item.mega-dropdown {
    position: relative;
}

.dropdown-menu.mega-menu-box {
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 780px;
    max-width: min(780px, 90vw);
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-green);
    background-color: #ffffff;
}

.nav-item.mega-dropdown:hover .dropdown-menu.mega-menu-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover {
    background: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.14);
}

.brand-logo-wrap {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.brand-svg-logo,
.brand-img-logo {
    width: 100%;
    height: 36px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.brand-card:hover .brand-name {
    color: var(--primary-green);
}

.service-flat-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.service-flat-content p {
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 10px;
    flex-grow: 1;
}

.service-flat-content .btn {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 6px 14px;
}


/* ==========================================================================
   SERVICE DETAIL PAGE STYLES (Compressed Air Solutions Template)
========================================================================== */
.section-padding-120 {
    padding: 120px 0;
}

.sd-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 20px 0 30px 0;
    width: 60px;
}

.sd-divider.center {
    margin: 20px auto 30px auto;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.sd-section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.sd-minimal-list {
    list-style: none;
    padding: 0;
}

.sd-minimal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.sd-minimal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* 1. Hero */
.sd-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.sd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 22, 0.7);
}

.sd-hero-container {
    position: relative;
    z-index: 2;
}

.sd-hero-content {
    max-width: 800px;
}

.sd-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 20px 0;
}

.sd-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.sd-hero-actions {
    display: flex;
    gap: 15px;
}

/* 2. Overview */
.sd-overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.sd-overview-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.sd-facts-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 8px;
}

.sd-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-facts-list li {
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    color: var(--text-color);
}

.sd-facts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sd-facts-list li strong {
    color: var(--dark-bg);
    display: inline-block;
    width: 130px;
    font-weight: 600;
}

/* 3. Split Rows */
.sd-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.sd-split-row.reverse .sd-split-img {
    order: 2;
}

.sd-split-row.reverse .sd-split-content {
    order: 1;
}

.sd-split-row:last-child {
    margin-bottom: 0;
}

.sd-split-img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.sd-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-split-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

/* 4. Included Services */
.sd-included-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sd-included-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s ease;
}

.sd-included-item:hover {
    transform: translateY(-5px);
}

.sd-included-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-included-item:hover img {
    transform: scale(1.02);
}

.sd-included-item h4 {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* 5. Features */
.sd-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sd-features-img img {
    width: 100%;
    border-radius: 8px;
}

.sd-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.sd-feature-list li {
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: var(--white);
    color: var(--dark-bg);
    font-weight: 500;
}

/* 6. Benefits */
.sd-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.sd-comp-box {
    padding: 50px;
}

.sd-comp-box.before {
    background: var(--white);
}

.sd-comp-box.after {
    background: var(--dark-bg);
    color: var(--white);
}

.sd-comp-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.sd-comp-box.after h4 {
    color: var(--white);
}

.sd-comp-box ul {
    list-style: none;
    padding: 0;
}

.sd-comp-box ul li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.1rem;
}

.sd-comp-box.before ul li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3545;
}

.sd-comp-box.after ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-green);
}

/* 7. Applications */
.sd-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sd-app-item {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.sd-app-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-app-item:hover img {
    transform: scale(1.02);
}

.sd-app-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 8. Working Process */
.sd-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.sd-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.sd-timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
}

.step-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-weight: 600;
    color: var(--dark-bg);
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

/* 9. Tech Specs */
.sd-table-wrapper {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.sd-table {
    width: 100%;
    border-collapse: collapse;
}

.sd-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-color);
}

.sd-table tr:last-child td {
    border-bottom: none;
}

.sd-table td:first-child {
    width: 30%;
    color: var(--dark-bg);
}

/* 10. Projects Gallery */
.sd-projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sd-proj-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.sd-proj-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-proj-item:hover img {
    transform: scale(1.02);
}

.sd-proj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 22, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.sd-proj-item:hover .sd-proj-overlay {
    opacity: 1;
}

.sd-proj-overlay h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.sd-proj-overlay p {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin: 0;
}

/* 11. Choose Grid */
.sd-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.sd-choose-img img {
    width: 100%;
    border-radius: 8px;
}

/* 12. FAQ Accordion */
.sd-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.sd-acc-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.sd-acc-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.sd-acc-item summary::-webkit-details-marker {
    display: none;
}

.sd-acc-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
}

.sd-acc-item[open] summary::after {
    content: '-';
}

.sd-acc-content {
    padding-top: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* 13. Related */
.sd-related-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sd-rel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--dark-bg);
    font-weight: 600;
    transition: background 0.3s ease;
}

.sd-rel-item:hover {
    background: #f8f9fa;
    color: var(--primary-green);
}

/* 14. Inquiry */
.sd-inquiry {
    position: relative;
    background-size: cover;
    background-position: center;
}

.sd-inquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 22, 0.85);
}

.sd-inquiry-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.sd-inquiry-content h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.sd-inquiry-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.sd-inq-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* ==========================================================================
   SERVICE DETAIL PAGE STYLES (Compressed Air Solutions Template)
========================================================================== */
.section-padding-120 {
    padding: 120px 0;
}

.sd-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 20px 0 30px 0;
    width: 60px;
}

.sd-divider.center {
    margin: 20px auto 30px auto;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.sd-section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.sd-minimal-list {
    list-style: none;
    padding: 0;
}

.sd-minimal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.sd-minimal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* 1. Hero */
.sd-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 80px;
    /* Offset for fixed header */
}

.sd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 22, 0.7);
}

.sd-hero-container {
    position: relative;
    z-index: 2;
}

.sd-hero-content {
    max-width: 800px;
}

.sd-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 20px 0;
}

.sd-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.sd-hero-actions {
    display: flex;
    gap: 15px;
}

/* 2. Overview */
.sd-overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.sd-overview-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.sd-facts-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 8px;
}

.sd-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-facts-list li {
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    color: var(--text-color);
}

.sd-facts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sd-facts-list li strong {
    color: var(--dark-bg);
    display: inline-block;
    width: 130px;
    font-weight: 600;
}

/* 3. Split Rows */
.sd-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.sd-split-row.reverse .sd-split-img {
    order: 2;
}

.sd-split-row.reverse .sd-split-content {
    order: 1;
}

.sd-split-row:last-child {
    margin-bottom: 0;
}

.sd-split-img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.sd-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-split-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

/* 4. Included Services */
.sd-included-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sd-included-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s ease;
}

.sd-included-item:hover {
    transform: translateY(-5px);
}

.sd-included-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-included-item:hover img {
    transform: scale(1.02);
}

.sd-included-item h4 {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* 5. Features */
.sd-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sd-features-img img {
    width: 100%;
    border-radius: 8px;
}

.sd-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.sd-feature-list li {
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: var(--white);
    color: var(--dark-bg);
    font-weight: 500;
}

/* 6. Benefits */
.sd-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.sd-comp-box {
    padding: 50px;
}

.sd-comp-box.before {
    background: var(--white);
}

.sd-comp-box.after {
    background: var(--dark-bg);
    color: var(--white);
}

.sd-comp-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.sd-comp-box.after h4 {
    color: var(--white);
}

.sd-comp-box ul {
    list-style: none;
    padding: 0;
}

.sd-comp-box ul li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.1rem;
}

.sd-comp-box.before ul li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3545;
}

.sd-comp-box.after ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-green);
}

/* 7. Applications */
.sd-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sd-app-item {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.sd-app-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-app-item:hover img {
    transform: scale(1.02);
}

.sd-app-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* 8. Working Process */
.sd-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.sd-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.sd-timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100px;
}

.step-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-weight: 600;
    color: var(--dark-bg);
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

/* 9. Tech Specs */
.sd-table-wrapper {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.sd-table {
    width: 100%;
    border-collapse: collapse;
}

.sd-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-color);
}

.sd-table tr:last-child td {
    border-bottom: none;
}

.sd-table td:first-child {
    width: 30%;
    color: var(--dark-bg);
}

/* 10. Projects Gallery */
.sd-projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sd-proj-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.sd-proj-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sd-proj-item:hover img {
    transform: scale(1.02);
}

.sd-proj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 22, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.sd-proj-item:hover .sd-proj-overlay {
    opacity: 1;
}

.sd-proj-overlay h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.sd-proj-overlay p {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin: 0;
}

/* 11. Choose Grid */
.sd-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.sd-choose-img img {
    width: 100%;
    border-radius: 8px;
}

/* 12. FAQ Accordion */
.sd-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.sd-acc-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.sd-acc-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.sd-acc-item summary::-webkit-details-marker {
    display: none;
}

.sd-acc-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
}

.sd-acc-item[open] summary::after {
    content: '-';
}

.sd-acc-content {
    padding-top: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* 13. Related */
.sd-related-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sd-rel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--dark-bg);
    font-weight: 600;
    transition: background 0.3s ease;
}

.sd-rel-item:hover {
    background: #f8f9fa;
    color: var(--primary-green);
}

/* 14. Inquiry */
.sd-inquiry {
    position: relative;
    background-size: cover;
    background-position: center;
}

.sd-inquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 22, 0.85);
}

.sd-inquiry-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.sd-inquiry-content h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.sd-inquiry-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.sd-inq-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- Contact Page Section --- */
.contact-page-section {
    background-color: #FFFFFF;
}

.contact-ui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-ui-heading {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-ui-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.contact-ui-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(62, 179, 131, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--primary-green);
}

.contact-ui-card {
    background-color: #e7e7e7;
    padding: 50px 30px;
    border-radius: var(--radius-20);
    border: 1px solid var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.contact-ui-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-premium {
    margin-bottom: 25px;
}

.form-group-premium label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.form-group-premium input,
.form-group-premium textarea {
    width: 100%;
    background-color: var(--white);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark-bg);
    outline: none;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(62, 179, 131, 0.15);
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.contact-submit {
    width: 50%;
    padding: 15px;
    font-size: 15px;
    margin-top: 5px;
    align-items: center;
}

.contact-map-full iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    background-color: #f8f9fa;
}

/* ==========================================================================
   RESPONSIVE STYLES (merged from responsive.css)
   Breakpoints: 1440px, 1200px, 992px, 768px, 576px, 375px
========================================================================== */

/* --- 1. DESKTOP SCREENS (Max-width: 1440px) --- */
@media screen and (max-width: 1440px) {
    .container {
        max-width: 1280px;
        padding: 0 2rem;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 10px !important;
    }

    .services-grid,
    .showcase-grid {
        gap: 22px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .newsletter-form input {
        border-radius: var(--radius-pill);
    }

    .showcase-grid {
        display: flex;
        overflow-x: hidden;
        gap: 15px;
    }

    .showcase-section .showcase-card {
        flex: 0 0 calc(50% - 7.5px);
    }

    .showcase-nav-mobile {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .showcase-nav-mobile .nav-btn {
        background-color: transparent;
        color: var(--black);
        border: 2px solid var(--primary-green);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        font-size: 16px;
    }

    .showcase-nav-mobile .nav-btn:hover {
        background-color: var(--primary-green);
        color: var(--white);
    }

    .cta-container {
        padding: 60px 50px;
    }
}

/* --- 2. LAPTOP SCREENS (Max-width: 1200px) --- */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 1040px;
        padding: 0 1.8rem;
    }

    .about-grid,
    .why-us-grid,
    .testimonials-grid,
    .cta-grid {
        gap: 45px;
    }

    .services-grid,
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card {
        min-height: 320px;
    }

    .projects-container {
        padding: 60px 40px;
    }

    .blog-grid {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
        gap: 30px;
    }
}

/* --- 3. TABLET LANDSCAPE SCREENS (Max-width: 992px) --- */
@media screen and (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 22px !important;
    }

    .products-section .product-card {
        flex: 0 0 calc(50% - 10px);
    }

    /* Navigation & Hamburger */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 10, 5, 0.6);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(5px);
    }

    body.no-scroll::after {
        opacity: 1;
        visibility: visible;
    }

    body.no-scroll .header {
        background-color: transparent !important;
        box-shadow: none !important;
    }

    body.no-scroll .logo {
        opacity: 0 !important;
        visibility: hidden;
    }

    .mobile-sidebar-logo {
        display: block;
        margin-bottom: 40px;
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.12);
        margin: 0;
        padding: 30px 25px 40px 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 10px 0 0 15px;
        min-width: auto;
    }

    .dropdown-menu.mega-menu-box {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 12px 0 0 0;
        background-color: transparent;
    }

    .mega-menu-header {
        display: none;
    }

    .mega-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brand-card {
        padding: 10px 8px;
        background: #ffffff;
    }

    .brand-svg-logo {
        height: 32px;
    }

    .brand-name {
        font-size: 12px;
    }

    .brand-tag {
        font-size: 10px;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        font-size: 15px;
        padding: 8px 10px;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-nav-cta {
        display: block;
        margin-top: auto;
    }

    .mobile-nav-cta .btn {
        width: 100%;
    }

    .hamburger-btn {
        display: flex !important;
    }

    .hamburger-btn.active .bar:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .hamburger-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active .bar:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* About Section Tablet */
    .about-section {
        padding-top: 230px;
    }

    /* Collage stack on tablet */
    .why-collage {
        grid-template-columns: 1fr 0.9fr;
    }

    .about-grid,
    .why-us-grid,
    .testimonials-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-col,
    .why-us-image-col,
    .testi-image-col {
        order: 1;
    }

    .about-content-col,
    .why-us-content-col,
    .testi-content-col {
        order: 2;
    }

    .about-main-img,
    .why-img,
    .testi-img {
        min-height: 240px;
        max-height: 380px;
    }

    /* Services Tablet */
    .services-header-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-header-right {
        justify-content: flex-start;
        width: 100%;
    }

    /* Logos Tablet */
    .logos-strip {
        justify-content: center;
        gap: 30px 40px;
    }

    /* Projects Tablet */
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    /* Blog Tablet */
    .blog-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Tablet */
    .footer-newsletter-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* About Page Tablet */
    .journey-grid::before,
    .journey-row::before,
    .journey-row::after {
        display: none;
    }

    .story-grid,
    .values-grid,
    .mv-row,
    .journey-row,
    .contact-ui-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid,
    .success-grid,
    .services-flat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-img {
        min-height: 230px;
    }

    .mv-row.mv-row-reverse .mv-content-col,
    .journey-row.journey-row-reverse .journey-content {
        order: 2;
    }

    .mv-row.mv-row-reverse .mv-image-col,
    .journey-row.journey-row-reverse .journey-image {
        order: 1;
    }
}

/* --- 4. TABLET PORTRAIT & LARGE MOBILE SCREENS (Max-width: 768px) --- */
@media screen and (max-width: 768px) {
    .contact-ui-heading {
        font-size: 25px;
        font-weight: 800;
        color: var(--dark-bg);
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .contact-ui-subtitle {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-color);
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 100%;
        color: #505050;
    }

    .story-text p {
        margin-bottom: 5px;
        font-size: 15px;
        line-height: 1.7;
        color: #505050;
        font-weight: 500;
    }

    .about-wcu-desc {
        margin-bottom: 5px;
        color: #505050 !important;
        font-size: 15px !important;
    }

    .about-wcu-title {
        font-size: 22px !important;
        font-weight: 800;
        color: var(--dark-bg);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .info-text h5 {
        font-size: 16px;
    }

    .inner-hero {
        margin-top: 86px;
        padding: 60px 0;
        background: linear-gradient(rgba(10, 18, 14, 0.8), rgba(10, 18, 14, 0.8)), url(https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1920&q=80) center / cover no-repeat;
        text-align: left;
    }

    .info-text p,
    .info-text a {
        color: #505050;
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 500;
    }

    .container {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-container {
        padding: 60px 4vw 70px 4vw;
    }

    .hero-title {
        font-size: 30px;
    }

    .about-section {
        padding-top: 250px;
    }

    .why-collage {
        grid-template-columns: 1fr 0.9fr;
    }

    .services-header-right {
        flex-direction: column;
        gap: 20px;
    }

    .projects-grid,
    .blog-grid,
    .services-flat-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-img-box {
        height: 250px;
    }

    .quote-slider-box {
        padding: 15px 20px;
    }

    .quote-text {
        font-size: 15px;
    }

    .cta-container {
        padding: 45px 30px;
    }

    .consultation-form-card {
        padding: 35px 25px;
    }

    .fn-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* About Page Large Mobile */
    .inner-hero-title {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

.minimal-cta-inner h2 {
    font-size: 2.2rem;
}

.success-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.success-header-left h2 {
    font-size: 2.5rem;
}

.mv-overlay-bottom-right {
    bottom: -10px;
    right: -10px;
    border-width: 6px;
}

.mv-overlay-bottom-left {
    bottom: -10px;
    left: -10px;
    border-width: 6px;
}

/* --- 5. SMALL MOBILE SCREENS (Max-width: 576px) --- */
@media screen and (max-width: 576px) {
    .section-padding {
        padding: 25px 0;
    }

    .hero-container {
        padding: 45px 5vw 55px 5vw !important;
    }

    .journey-row {
        gap: 15px !important;
    }

    .journey-content {
        padding: 15px 20px !important;
    }

    .journey-row.journey-row-reverse .journey-content {
        order: 1 !important;
    }

    .journey-row.journey-row-reverse .journey-image {
        order: 2 !important;
    }

    .products-container {
        padding: 40px 2vw 10px 5vw !important;
    }

    .products-slider {
        padding-bottom: 5px;
    }

    .products-section .product-card {
        flex: 0 0 calc(100% - 40px);
    }

    .about-wcu-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 0 !important;
    }

    .hero-title {
        font-size: 25px;
        font-weight: 500;
        line-height: 1.3em;
    }

    .section-title {
        font-size: 21px !important;
        margin-bottom: 10px !important;
        font-weight: 600 !important;
    }

    .section-desc {
        margin-bottom: 10px;
    }

    .sd-check-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        font-size: 15px !important;
        color: #505050 !important;
        font-weight: 500;
    }

    .blog-header-right {
        display: none;
    }

    .mobile-blog-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 25px;
    }

    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-grid .blog-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .sd-check-list {
        margin: 0px 0 0 0;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.8;
        color: #505050;
        font-weight: 500;
    }

    .process-ui-top {
        margin-bottom: 15px;
    }

    .kf-section {
        padding: 25px 0 !important;
    }

    .kf-main-title {
        font-size: 25px !important;
        font-weight: 700;
        color: var(--dark-bg);
        margin-bottom: 15px;
        line-height: 1.2em;
    }

    .kf-grid {
        gap: 0;
    }

    .process-ui-header {
        margin-bottom: 25px !important;
    }

    .img-main {
        min-height: 250px !important;
        height: auto !important;
    }

    .section-desc {
        font-size: 14px !important;
    }

    .cta-title {
        font-size: 22px;
    }

    .btn {
        padding: 7px 15px;
        font-size: 14px;
    }

    /* Mobile: stack collage vertically */
    .why-collage {
        grid-template-columns: 1fr;
    }

    .why-collage .why-stack {
        grid-template-rows: 1fr 1fr;
    }

    .about-experience-badge {
        right: -10px;
        bottom: -5px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 15px;
    }

    .showcase-grid::-webkit-scrollbar {
        display: none;
    }

    .showcase-section .showcase-card {
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: center;
    }

    .showcase-img-wrap {
        height: 180px;
    }

    .showcase-content {
        padding: 20px 20px 24px 20px;
    }

    .why-floating-badge {
        top: 20px;
        left: 10px;
        padding: 14px 18px;
    }

    .cta-container {
        padding: 35px 20px;
        border-radius: 0;
    }

    .consultation-form-card {
        padding: 28px 18px;
    }

    .newsletter-form {
        flex-direction: column;
        background-color: transparent;
        border: none;
        padding: 0;
        gap: 14px;
    }

    .newsletter-form input {
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-pill);
        padding: 14px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-ui-card {
        padding: 20px 10px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-map-full iframe {
        height: 300px;
    }

    /* Service Detail Pages Mobile Tweaks */
    .sd-check-list li {
        font-size: 13px !important;
    }

    .kf-main-title,
    .process-ui-header .section-title {
        font-size: 24px !important;
    }

    .kf-title {
        font-size: 20px !important;
    }

    .kf-panel-img {
        height: 180px !important;
    }

    .kf-panel {
        gap: 15px !important;
    }

    .kf-tab {
        padding: 8px 14px;
    }

    .kf-tab-text {
        font-size: 13px;
    }

    .kf-desc,
    .process-ui-inner p {
        font-size: 13px !important;
    }

    .ts-grid {
        grid-template-columns: 1fr;
    }

    .ts-image-wrap {
        height: 200px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .fb-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* About Page Small Mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .success-title {
        font-size: 15px;
    }

    .success-number {
        font-family: var(--font-heading);
        font-size: 25px;
        margin-bottom: 5px;
    }

    .success-desc {
        color: #ffffff;
        font-size: 14px;
    }

    .mv-image-col {
        position: relative;
        padding: 0px;

    }

    .mv-main-img {
        min-height: 300px;
    }

    .mv-desc {
        font-size: 15px;
        color: #505050;
        margin-bottom: 10px;
    }

    .mv-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 600;
        color: #383838;
        margin-bottom: 10px;
    }

    .mv-row.reveal .mv-row-reverse {
        margin-top: 50px !important;
    }

    .wwd-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wwd-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 10px 5px;
        gap: 10px;
    }

    .wwd-title {
        font-size: 13px;
        text-align: center;
    }
}

/* --- 6. EXTRA SMALL MOBILE SCREENS (Max-width: 375px) --- */
@media screen and (max-width: 375px) {
    .container {
        padding: 0 1.2rem;
    }

    .f-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17.6px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item .suffix {
        font-size: 19.2px;
    }

    .about-card {
        padding: 18px 18px;
        flex-direction: column;
        gap: 12px;
    }

    .service-card {
        padding: 26px 20px;
    }

    .feature-card.dark-green-card {
        padding: 20px 18px;
        flex-direction: column;
        gap: 14px;
    }
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR SERVICE DETAIL PAGE
========================================================================== */
@media screen and (max-width: 992px) {
    .sd-hero {
        height: 500px;
    }

    .sd-hero-title {
        font-size: 2.8rem;
    }

    .section-padding-120 {
        padding: 80px 0;
    }

    .sd-split-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sd-split-row.reverse .sd-split-img {
        order: 1;
    }

    .sd-split-row.reverse .sd-split-content {
        order: 2;
    }

    .sd-split-img {
        height: 300px;
    }

    .sd-included-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sd-features-img {
        order: 2;
    }

    .sd-features-content {
        order: 1;
    }

    .sd-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .section-padding-120 {
        padding: 60px 0;
    }

    .sd-hero {
        height: 450px;
    }

    .sd-hero-title {
        font-size: 2.2rem;
    }

    .sd-hero-desc {
        font-size: 1.05rem;
    }

    .sd-hero-actions {
        flex-direction: column;
    }

    .sd-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .sd-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sd-comparison-grid {
        grid-template-columns: 1fr;
    }

    .sd-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sd-timeline::before {
        top: 0;
        left: 25px;
        width: 1px;
        height: 100%;
    }

    .sd-timeline-step {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100%;
        gap: 20px;
    }

    .step-num {
        margin: 0;
    }

    .sd-projects-gallery {
        grid-template-columns: 1fr;
    }

    .sd-related-list {
        grid-template-columns: 1fr;
    }

    .sd-inquiry-content h2 {
        font-size: 2rem;
    }

    .sd-inq-actions {
        flex-direction: column;
    }

    .sd-inq-actions .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .sd-apps-grid {
        grid-template-columns: 1fr;
    }

    .sd-feature-list {
        grid-template-columns: 1fr;
    }

    .sd-included-list {
        grid-template-columns: 1fr;
    }

    .sd-table-wrapper {
        overflow-x: auto;
    }
}

/* --- Service Detail Check List --- */
.sd-check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.sd-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
}

.sd-check-list li i {
    color: var(--primary-green);
    font-size: 15px;
}

/* --- Work Process Section --- */
.process-ui-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    row-gap: 35px;
    margin-top: 25px;
}

.process-ui-card {
    position: relative;
    background-color: var(--light-green);
    border-radius: 12px;
    padding: 25px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-ui-top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 0 10px;
}

.process-num {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    border: 3px solid #ffffff;
    z-index: 2;
}

.process-icon {
    font-size: 1.8rem;
    color: var(--primary-green);
    opacity: 0.7;
}

.process-ui-inner {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 15px;
    flex-grow: 1;
}

.process-ui-inner h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.process-ui-inner p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .process-ui-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .process-ui-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-ui-top {
        margin-bottom: 10px;
    }

    .process-num {
        position: absolute;
        top: -15px;
        left: 15px;
        width: 30px;
        height: 30px;
        background-color: var(--primary-green);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 700;
        border: 3px solid #ffffff;
        z-index: 2;
    }
}

@media screen and (max-width: 576px) {
    .process-ui-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .process-ui-card {
        padding: 15px 10px;
    }

    .process-ui-inner h4 {
        font-size: 14px;
    }

    .process-ui-inner p {
        font-size: 12px;
    }
}

/* --- Key Features Section --- */
.kf-section {
    background-color: #e5e5e5;
    color: var(--text-color);
    padding: 70px 0;
}

.kf-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.kf-main-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.kf-main-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.kf-grid {
    display: flex;
    gap: 30px;
    align-items: center;
}

.kf-tabs-col {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.kf-tab {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark-bg);
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 40px;
    text-align: left;
}

.kf-tab.active {
    background: var(--primary-green);
    color: #ffffff;
    border: 1px solid var(--primary-green);
    box-shadow: 0 4px 10px rgba(62, 179, 131, 0.2);
}

.kf-tab-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kf-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.kf-tab.active .kf-icon-wrap {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.kf-tab-text {
    font-size: 14px;
    font-weight: 500;
}

.kf-tab.active .kf-tab-text {
    color: #ffffff;
}

.kf-tab-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.kf-tab.active .kf-tab-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #ffffff;
}

.kf-content-area {
    flex: 1;
    position: relative;
    min-height: 320px;
}

.kf-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    align-items: center;
}

.kf-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.kf-panel-img {
    flex: 0 0 40%;
    height: 280px;
}

.kf-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.kf-panel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.kf-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 700;
}

.kf-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.kf-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.kf-btn {
    align-self: flex-start;
    background-color: var(--primary-green);
    color: #ffffff;
    border-radius: 40px;
    padding: 10px 24px;
    border: 1px solid var(--primary-green);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.kf-btn:hover {
    background-color: transparent;
    color: var(--primary-green);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .kf-grid {
        flex-direction: column;
    }

    .kf-tabs-col {
        width: 100%;
        flex: auto;
        margin-bottom: 30px;
    }

    .kf-panel {
        flex-direction: column;
        gap: 20px;
    }

    .kf-panel-img {
        height: 240px;
        width: 100%;
    }
}

/* --- Technical Specifications Section --- */
.tech-specs-section {
    background-color: #21231f;
    background-image: url('https://www.transparenttextures.com/patterns/topography.png');
    background-blend-mode: overlay;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.ts-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ts-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: #c59b6d;
    /* Gold accent */
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ts-main-title {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

.ts-grid {
    display: grid;
    grid-template-columns: 1fr 380px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.ts-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ts-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ts-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ts-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #c59b6d;
    /* Tan/gold */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* White icon inside */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ts-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    margin-top: 10px;
    /* Vertically align with icon */
}

.ts-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.ts-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ts-image-wrap {
    position: relative;
    width: 350px;
    height: 500px;
}

.ts-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 160px;
    /* Pill shape */
    position: relative;
    z-index: 2;
}

.ts-border-line {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid #c59b6d;
    border-radius: 175px;
    z-index: 1;
    opacity: 0.6;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .ts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ts-center {
        order: -1;
        /* Move image to top */
        grid-column: 1 / -1;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ts-image-wrap {
        width: 100%;
        height: 250px;
        grid-column: span 2;
    }
}

/* --- Benefits Section --- */
.benefits-section {
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--primary-green);
    padding: 20px;
    border-radius: 10px;
}

.b-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(62, 179, 131, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.b-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.b-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .benefit-item {
        padding: 15px 10px;
    }

    .benefit-item h4 {
        font-size: 14px;
    }

    .benefit-item p {
        font-size: 12px;
    }
}

/* --- Stats Section --- */
.stats-section {
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 30px;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        padding-top: 10px;
    }
}

@media screen and (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: none !important;
        padding: 15px 0 !important;
    }

    .stat-number {
        font-size: 32px !important;
    }

    .stat-text {
        font-size: 13px !important;
    }
}

/* --- Counter Section --- */
.counter-section {
    background-color: #000000;
    color: var(--white);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.counter-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.counter-icon {
    font-size: 2rem;
    color: var(--light-green);
    margin-bottom: 0;
}

.counter-content {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2px;
    line-height: 1;
}

.counter-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .counter-box {
        flex-direction: column;
        text-align: center;
        padding: 15px 5px;
        gap: 8px;
    }

    .counter-box:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .counter-box:nth-child(1),
    .counter-box:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .counter-icon {
        font-size: 1.5rem;
    }

    .counter-label {
        font-size: 12px;
    }

    .counter-number {
        font-size: 20px;
    }
}

/* --- About Page: Why Choose Us Section --- */
.about-wcu-section {
    background-color: #ffffff;
}

.about-wcu-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-wcu-left {
    padding-right: 20px;
}

.about-wcu-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-wcu-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-wcu-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.about-wcu-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.awcu-card {
    background-color: #fafafa;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--primary-green);
}

.awcu-icon {
    font-size: 1.6rem;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.awcu-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.awcu-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

kf-title {
    font-size: 23px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .about-wcu-grid {
        grid-template-columns: 1fr;
    }

    .about-wcu-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .about-wcu-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ts-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding-bottom: 15px;
    }

    .ts-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .ts-item h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .ts-item p {
        font-size: 12px;
    }

    .ts-main-title {
        font-size: 24px;
    }

    .ts-header {
        margin-bottom: 50px;
    }

    .kf-panel-text {
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }

    .kf-btn {
        align-self: center;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .kf-tabs-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .kf-tab {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
        padding: 8px 14px;
    }

    .kf-tab-arrow {
        display: none;
    }

    .product-tab-btn {
        background-color: #ffffff;
        color: #1a1a1a;
        border: 1.5px solid #1a1a1a;
        border-radius: 8px !important;
        padding: 6px 15px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.25s ease !important;
    }

    .faq-premium-answer {
        padding: 20px;
    }
}

/* --- Media Gallery Section (Collage) --- */
.media-gallery-section {
    background-color: var(--light-gray);
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.collage-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.collage-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Specific Collage Span Classes */
.collage-large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-tall {
    grid-row: span 2;
}

.collage-wide {
    grid-column: span 2;
}

/* Responsive Collage */
@media screen and (max-width: 992px) {
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .collage-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .collage-tall {
        grid-row: span 1;
    }

    .collage-wide {
        grid-column: span 2;
    }
}

@media screen and (max-width: 576px) {
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .collage-large,
    .collage-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* --- Blog Section --- */
.blog-section {
    background-color: #fbfbfb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-green);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-green);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 15px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    color: #888;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--dark-bg);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-green);
}

.blog-desc {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: var(--dark-bg);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

/* Responsive Blog */
@media screen and (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Section --- */
.product-section {
    background-color: #fbfbfb;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-section .product-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-green);
}

.product-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-section .product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-content {
    padding: 15px;
}

.product-section .product-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.product-section .product-title a {
    color: #000000;
    transition: color 0.3s ease;
}

.product-section .product-title a:hover {
    color: var(--primary-green);
}

.product-read-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.product-read-more:hover {
    gap: 12px;
}

@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Tech Specs Table --- */
.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.95rem;
    border: 1px solid var(--primary-green);
}

.tech-specs-table th,
.tech-specs-table td {
    padding: 16px 20px;
    border: 1px solid var(--primary-green);
    text-align: left;
    border-radius: 10px;
}

.tech-specs-table th {
    font-weight: 600;
    color: #000000;
    width: 40%;
}

.tech-specs-table td {
    background-color: #ffffff;
    color: #000000;
}

.tech-specs-table tr:nth-child(even) td {
    background-color: #fbfbfb;
}

thead th {
    border-color: #ffffff !important;
}

/* --- Industries We Serve Section --- */
.industries-section {
    background-color: #fbfbfb;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.industry-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
}

.industry-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.industry-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 0;
}

/* Responsive Industries */
@media screen and (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .industry-card {
        padding: 10px 5px;
    }

    .industry-title {
        font-size: 11px;
    }

    .industry-icon {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-title {
        font-size: 10px;
    }
}

/* --- Product Details Tabs --- */
.product-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.product-tab-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.product-tab-btn:hover {
    background-color: #f5f5f5;
}

.product-tab-btn.active {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

.product-tabs-content {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.tab-panel-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.tab-panel-intro {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.tab-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tab-features-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.tab-features-list li:last-child {
    margin-bottom: 0;
}

.tab-features-list li i {
    color: var(--primary-green);
    font-size: 16px;
    margin-top: 6px;
    flex-shrink: 0;
}

.tab-features-list li strong {
    color: var(--dark-bg);
    font-weight: 600;
}

.tab-panel-outro {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .product-tabs-content {
        padding: 20px;
    }

    .tab-panel-title {
        font-size: 20px;
    }
}

/* =========================================================
   14. BLOG DETAILS & SIDEBAR STYLES
   ========================================================= */
.blog-details-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-main-content {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
}

.blog-detail-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 400px;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--primary-green);
}

.blog-detail-title {
    font-size: 21px !important;
    font-weight: 600 !important;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.blog-detail-body p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-detail-body blockquote {
    background-color: #f7fcf7;
    border-left: 4px solid var(--primary-green);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    font-size: 1.15rem;
    color: var(--dark-bg);
    line-height: 1.6;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}

/* Search widget */
.search-form {
    display: flex;
}

.search-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.25s ease;
}

.search-form input:focus {
    border-color: var(--primary-green);
}

.search-form button {
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.25s ease;
}

.search-form button:hover {
    background-color: var(--dark-bg);
}

/* Recent posts widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-post-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-post-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-info h5 a {
    color: var(--dark-bg);
    transition: color 0.25s ease;
}

.recent-post-info h5 a:hover {
    color: var(--primary-green);
}

.recent-post-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Categories widget */
.widget-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories-list li {
    margin-bottom: 12px;
}

.widget-categories-list li:last-child {
    margin-bottom: 0;
}

.widget-categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.widget-categories-list li a:hover {
    color: var(--primary-green);
}

.cat-count {
    background-color: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Tags widget */
.widget-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    background-color: #f5f5f5;
    color: var(--text-color);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.tag-link:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

/* Responsive Blog Details */
@media screen and (max-width: 992px) {
    .blog-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-main-content {
        padding: 25px;
    }

    .blog-detail-img {
        height: 300px;
    }

    .blog-detail-title {
        font-size: 1.8rem;
    }
}

/* =========================================================
   ALTERNATING CARDS SECTION (DEEP PNEUMATICS)
========================================================= */
.alt-cards-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.alt-cards-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.alt-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius-20);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.alt-card.alt-card-full {
    grid-template-columns: 1fr;
}

.alt-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.alt-card-reverse .alt-card-content {
    order: 2;
}

.alt-card-reverse .alt-card-image {
    order: 1;
}

.alt-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    background: transparent;
    border: none;
}

.alt-card-image img {
    width: 100%;
    height: 350px !important;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
    padding: 0;
}

.alt-card:hover .alt-card-image img {
    transform: scale(1.03);
}

.alt-card-content .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--dark-green);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.alt-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.alt-card-desc {
    font-size: 15.5px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 10px;
}

.alt-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 5px;
}

.alt-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark-bg);
}

.alt-card-list li i {
    color: var(--primary-green);
    font-size: 16px;
}

.alt-card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* Specs Grid for Cards */
.card-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 18px 0 22px 0;
}

.spec-item {
    background: #F1F5F9;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #E2E8F0;
    transition: var(--transition-smooth);
    text-align: center;
}

.alt-card:hover .spec-item {
    background: #ffffff;
    border-color: rgba(34, 197, 94, 0.35);
}

.spec-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748B;
    margin-bottom: 2px;
    white-space: nowrap;
}

.spec-value {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--black);
    white-space: nowrap;
}

/* --- Card Image Slider --- */
.card-image-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slider-slides .slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-slides .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: var(--black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: var(--primary-green);
    color: #ffffff;
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-green);
    width: 18px;
    border-radius: 10px;
}

@media screen and (max-width: 992px) {
    .alt-cards-section {
        padding: 50px 0;
    }

    .alt-card,
    .alt-card-reverse {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .alt-card-reverse .alt-card-content {
        order: 1;
    }

    .alt-card-reverse .alt-card-image {
        order: 2;
    }

    .alt-card-image img {
        height: 300px;
    }

    .card-image-slider {
        height: 300px;
    }

    .alt-card-title {
        font-size: 22px;
    }

    .card-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}

@media screen and (max-width: 576px) {
    .alt-card-list {
        grid-template-columns: 1fr;
    }
}

.alt-subheading {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 16px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alt-subheading i {
    color: var(--primary-green);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 22px;
}

.spec-item {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.spec-item:hover {
    border-color: var(--primary-green);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.spec-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-bg);
}

/* ==================== NO-IMAGE PRODUCT GRID (DEEP PNEUMATICS CATALOG) ==================== */
.no-img-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.no-img-product-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 95px;
    transition: all 0.3s ease;
    position: relative;
}

.no-img-product-card:hover {
    border-color: var(--primary-color, #E31837);
    box-shadow: 0 6px 18px rgba(227, 24, 55, 0.1);
    transform: translateY(-2px);
}

.no-img-product-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black, #1E293B);
    margin-bottom: 8px;
    line-height: 1.35;
}

.no-img-product-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color, #E31837);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    text-decoration: none;
}

.no-img-product-card:hover .no-img-product-link i {
    transform: translateX(4px);
}

.no-img-product-link i {
    transition: transform 0.3s ease;
}

@media screen and (max-width: 992px) {
    .no-img-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media screen and (max-width: 576px) {
    .no-img-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .no-img-product-card {
        padding: 10px;
    }

    .no-img-product-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .no-img-product-link {
        font-size: 11px;
    }
}

/* --- POPUP & FLOATING CTA --- */
.floating-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-main);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--dark-green);
}

.floating-cta-btn i {
    font-size: 20px;
}

/* Modal Overlay */
.site-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.site-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.site-modal {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-20);
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-dark);
}

.site-modal-overlay.active .site-modal {
    transform: translateY(0);
    opacity: 1;
}

.site-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition-fast);
}

.site-modal-close:hover {
    background: var(--primary-green);
    color: var(--white);
}

.site-modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.site-modal-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.site-modal .form-group {
    margin-bottom: 20px;
}

.site-modal .form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--light-gray);
    transition: var(--transition-fast);
}

.site-modal .form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(231, 63, 30, 0.1);
}

/* --- PRODUCT TABS --- */
.product-tabs-section {
    padding: 20px 0 40px 0;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid var(--black);
    background-color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-smooth);
    color: var(--black);
    font-size: 15px;
    font-family: var(--font-heading);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.tab-content {
    animation: fadeEffect 0.5s;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .tab-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 10px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

/* --- WORK PROCESS SECTION --- */
.work-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow-main);
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    z-index: 1;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-hover);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 100px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.process-card:hover .process-number {
    color: rgba(231, 63, 30, 0.06);
    transform: scale(1.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(231, 63, 30, 0.1);
    color: var(--primary-green);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.process-card:hover .process-icon {
    background-color: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg);
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.process-desc {
    font-size: 14.4px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media screen and (max-width: 991px) {
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .process-card {
        padding: 10px 10px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0px auto 10px;
    }

    .process-title {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--black);
    }

    .process-desc {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 575px) {
    .work-process-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SOLUTION PORTFOLIO SECTION --- */
.solution-portfolio-section {
    background-color: var(--white);
}

.portfolio-feature-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.portfolio-feature-row {
    display: flex;
    align-items: center;
    background-color: #fbfbfb;
    border-radius: var(--radius-15);
    border: 1px solid var(--primary-green);
    overflow: hidden;
}

.portfolio-feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.portfolio-img-col {
    flex: 0 0 45%;
    max-width: 45%;
    align-self: stretch;
    /* Make it stretch to fill height */
}

.portfolio-feature-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.portfolio-text-col {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 40px 50px;
}

.portfolio-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.portfolio-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.portfolio-list li i {
    color: var(--primary-green);
    font-size: 1rem;
    margin-top: 5px;
    margin-right: 15px;
}

.portfolio-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .portfolio-feature-list {
        gap: 35px;
    }

    .portfolio-feature-row,
    .portfolio-feature-row:nth-child(even) {
        flex-direction: column;
    }

    .portfolio-img-col,
    .portfolio-text-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .portfolio-img-col {
        width: 100%;
        min-height: auto;
    }

    .portfolio-feature-img {
        height: 200px;
        min-height: 200px;
    }

    .portfolio-text-col {
        padding: 20px 20px;
    }

    .portfolio-feature-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .portfolio-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}



/* --- OUR APPROACH SECTION --- */
.approach-section {
    background-color: #fbfbfb;
}

.process-step-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.process-step-item {
    flex: 1;
    min-width: 150px;
    background: var(--white);
    padding: 30px 15px;
    border-radius: var(--radius-20);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 1;
}

.process-step-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.process-step-item:hover .step-icon {
    transform: scale(1.1);
}

.step-num {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    z-index: -1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 0;
}

.step-arrow {
    color: var(--primary-green);
    font-size: 1.5rem;
    opacity: 0.5;
}

.approach-bottom-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
}

@media screen and (max-width: 991px) {
    .process-step-grid {
        flex-direction: column;
        gap: 20px;
    }

    .process-step-item {
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* --- OUR STRENGTH SECTION --- */
.strength-section {
    background-color: var(--white);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.strength-card {
    background: #fbfbfb;
    padding: 10px 10px;
    border-radius: var(--radius-15);
    text-align: center;
    border: 1px solid var(--primary-green);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strength-card:hover {
    transform: translateY(-5px);
}

.strength-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.strength-title {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

.strength-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .strength-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .strength-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

@media screen and (max-width: 768px) {
    .strength-grid {
        grid-template-columns: 1fr;
    }
}

/* --- OEM PARTNERS SECTION --- */
.oem-section {
    background-color: var(--dark-green);
}

.oem-section .section-title {
    color: var(--white);
}

.oem-section .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.oem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.oem-card {
    background: var(--white);
    padding: 15px 15px;
    border-radius: var(--radius-15);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.oem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-green);
}

.oem-logo-wrap {
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.oem-logo-img {
    max-height: 75%;
    max-width: 80%;
    object-fit: contain;
}

.oem-fallback-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark-green);
    text-transform: uppercase;
    line-height: 1.2;
}

.oem-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.3;
}

.oem-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .oem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .oem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .oem-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 480px) {
    .oem-grid {
        grid-template-columns: 1fr;
    }
}