/* Variables */
:root {
    --color-primary: #12653d;
    --color-primary-dark: #0f4f2f;
    --color-secondary: #e8f5e9;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-light-gray: #f9fafb;
    --font-main: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --container-width: 1200px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-light-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

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

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.grid {
    display: grid;
}

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

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

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

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

.text-white {
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary);
}

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

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

.bg-light {
    background-color: var(--color-light-gray);
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.rounded-full {
    border-radius: var(--radius-full);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header:not(.scrolled) {
    background-color: transparent;
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-primary);
}

a.logo,
.footer-logo-modern {
    background-color: rgb(255 255 255) !important;
    padding: 5px;
    border-radius: 5px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
        margin-top: 10px;
}

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

.dropdown-item {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Nested Dropdown/Submenu */
.dropdown-item.has-submenu {
    position: relative;
    padding: 0;
}

.submenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
    width: 100%;
}

.submenu-header:hover {
    background-color: var(--color-secondary);
}

.submenu-link {
    flex: 1;
    color: var(--color-text);
    text-decoration: none;
}

.submenu-link:hover {
    color: var(--color-primary);
}

.submenu-toggle-icon {
    cursor: pointer;
    padding: 0.25rem;
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.submenu-toggle-icon:hover {
    color: var(--color-primary);
}

.dropdown-item.has-submenu.active .submenu-toggle-icon {
    transform: rotate(90deg);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: -5px;
    background-color: var(--color-white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.dropdown-item.has-submenu:hover .submenu,
.dropdown-item.has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.submenu-item {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.submenu-item:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding-left: 1.75rem;
}


/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.mobile-menu {
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
        /* Toggled via JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        flex-direction: column;
        gap: 1rem;
        max-height: calc(100vh - 80px);
        /* Ensure it fits within viewport */
        overflow-y: auto;
        /* Enable scrolling if content is too long */
    }

    .mobile-menu.active {
        display: flex;
    }

    /* Mobile Submenu Accordion */
    .mobile-submenu-wrapper {
        width: 100%;
    }

    .mobile-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
    }

    .mobile-submenu-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-submenu-wrapper.active .mobile-submenu-toggle i {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-submenu-wrapper.active .mobile-submenu {
        max-height: 500px;
        padding-top: 0.5rem;
    }

    /* Mobile Nested Submenu */
    .mobile-nested-wrapper {
        width: 100%;
    }

    .mobile-nested-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0.5rem;
    }

    .mobile-nested-link {
        flex: 1;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        color: var(--color-text-light);
    }

    .mobile-nested-toggle-icon {
        cursor: pointer;
        transition: transform 0.3s ease;
        font-size: 0.9rem;
        padding: 0.5rem;
        color: var(--color-text-light);
    }

    .mobile-nested-wrapper.active .mobile-nested-toggle-icon {
        transform: rotate(180deg);
    }

    .mobile-nested-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 1rem;
    }

    .mobile-nested-wrapper.active .mobile-nested-submenu {
        max-height: 400px;
        padding-top: 0.5rem;
    }

    .mobile-submenu .nav-link.submenu-item {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        color: var(--color-text-light);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 101, 61, 0.9), rgba(15, 79, 47, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Sections */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Project Grid */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 300px;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Timeline */
/* Modern Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--color-primary);
}

.process-card:hover .step-number {
    transform: scale(1.1);
    opacity: 0.2;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
}

.process-card:hover .process-icon i {
    transform: rotateY(-180deg);
    /* Counter-rotate icon so it stays readable if needed, or just for effect */
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.process-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Testimonials */
/* Unique Testimonials - Dark Theme Quote Bubbles */
.testimonial-swiper {
    padding: 3rem 0 5rem;
}

.testi-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
    overflow: visible;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0px 20px rgba(18, 101, 61, 0.2);
}

.testi-quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
    z-index: 1;
}

.testi-stars {
    color: #f59e0b;
    display: flex;
    gap: 3px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.testi-text {
    padding: 1.5rem 2.5rem 2rem;
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 400;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    text-align: left;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 0 0 20px 20px;
    position: relative;
}

.testi-user::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(18, 101, 61, 0.1));
}

.testi-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.testi-avatar-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-avatar-placeholder i {
    font-size: 1.5rem;
    color: white;
}

.testi-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.testi-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Pagination */
.testimonial-swiper .swiper-pagination {
    bottom: 1rem;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

/* Contact Form */

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(18, 101, 61, 0.1);
}

/* Industries Logo Grid - Removed (Replaced by Swiper) */

/* About Page Specifics */
.page-header {
    background-color: var(--color-primary);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.vision-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}


/* Refactored Utilities & Components */
.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-contact {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* .main-content {
    padding-top: 80px;
} */

/* Footer Styles */
.footer {
    background-color: var(--color-primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    gap: 3rem;
}

.footer-cols {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Home Page Specifics */
.hero-btn-group {
    flex-wrap: wrap;
}

.about-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.text-light {
    color: var(--color-text-light);
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.project-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.mt-12 {
    margin-top: 3rem;
}

/* Modern Services Section */
.service-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    height: 400px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay-modern {
    background: linear-gradient(to top, rgba(18, 101, 61, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
}

.service-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: auto;
    /* Pushes icon to top */
    margin-top: 1rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: white;
    color: var(--color-primary);
    transform: scale(1.1);
}

.service-content-modern {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-desc-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0.9;
}

.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
    /* Slight delay */
}

.service-card-modern:hover .service-link-modern {
    opacity: 1;
    transform: translateY(0);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
}

.avatar-name {
    font-weight: 600;
}

.avatar-role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.contact-section-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-text-white {
    color: white;
}

.contact-subtext {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: var(--color-text);
}

.w-full {
    width: 100%;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ccc;
}

/* About Page Specifics */
.about-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-cta-btn {
    background: white;
    color: var(--color-primary);
    border: none;
}


/* Products Page */
.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.product-desc {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Product Details */
.product-detail-hero {
    height: 60vh;
    min-height: 400px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.specs-table th {
    font-weight: 600;
    color: var(--color-primary);
    width: 40%;
}


/* Blog Styles */
.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.blog-excerpt {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.read-more-btn {
    align-self: flex-start;
    color: var(--color-primary);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

/* Blog Details */
.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.blog-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Contact Page Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Swiper Slider */
.swiper {
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }

    .swiper {
        height: 60vh;
    }
}


/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for children if needed */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}


/* Creative Slider Styles */
.hero-slider .swiper-slide {
    overflow: hidden;
}

.hero-slider .slide-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Staggered Animation Delays */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

.reveal-delay-400 {
    transition-delay: 0.4s;
}


/* =========================================
   Cinematic Slider Styles (Lonely Planet Style)
   ========================================= */
.hero-slider {
    height: 100vh;
    /* Full viewport height */
    width: 100%;
    position: relative;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.cinematic-content {
    position: absolute;
    bottom: 180px;
    /* Space for bottom nav */
    left: 5%;
    max-width: 900px;
    color: white;
    text-align: left;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.swiper-slide-active .cinematic-content {
    opacity: 1;
    transform: translateY(0);
}

.cinematic-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.cinematic-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cinematic-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid white;
    padding-bottom: 0.25rem;
    transition: all 0.3s;
}

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

/* Bottom Navigation */
.cinematic-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-item {
    flex: 1;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-progress {
    position: absolute;
    top: -1px;
    left: 0;
    height: 3px;
    background: white;
    width: 0;
    transition: width 0s;
}

.nav-item.active .nav-progress {
    width: 100%;
    transition: width 5s linear;
    /* Matches autoplay speed */
}

.nav-number {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    font-family: monospace;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

/* Transparent Header Override for Home */
.header-transparent {
    background: transparent !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-transparent .logo,
.header-transparent .nav-link,
.header-transparent .mobile-menu-btn {
    color: white !important;
}

/* Fix: Ensure mobile menu links are visible (dark) on the white background */
.header-transparent .mobile-menu .nav-link {
    color: var(--color-text) !important;
}

.header-transparent.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    position: fixed;
    border-bottom: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.header-transparent.scrolled .logo,
.header-transparent.scrolled .nav-link,
.header-transparent.scrolled .mobile-menu-btn {
    color: var(--color-text) !important;
}

/* =========================================
   PREMIUM SERVICE UI STYLES
   ========================================= */

/* =========================================
   ARCHITECTURAL MINIMALIST STYLES
   ========================================= */

/* Cinematic Split Sections */
.split-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.split-section:nth-child(even) {
    background-color: var(--color-light);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.split-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.split-section:hover .split-image {
    transform: scale(1.05);
}

/* Minimalist Tabs */
.tab-container {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.tab-btn:hover {
    color: var(--color-primary);
    background: rgba(46, 125, 50, 0.05);
}

.tab-btn.active {
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
    /* changed to block for proper layout */
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 991px) {
    .tab-pane.active {
        grid-template-columns: 1fr;
    }
}

.tab-icon-large {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    background: var(--color-light);
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
}

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

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

/* Typography Enhancements */
.display-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.lead-text {
    color: var(--color-light-text);
    font-weight: 400;
}

@media (max-width: 768px) {
    .cinematic-title {
        font-size: 2.5rem;
    }

    .cinematic-nav {
        overflow-x: auto;
    }

    .nav-item {
        min-width: 200px;
        padding: 1rem;
    }
}


/* =========================================
   REFINED Cinematic Slider Styles
   ========================================= */
.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.cinematic-content {
    position: absolute;
    bottom: 25%;
    /* Positioned higher up like the reference */
    left: 5%;
    max-width: 800px;
    color: white;
    z-index: 10;
    text-align: left;
}

.cinematic-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.cinematic-title {
    font-size: 3.5rem;
    font-weight: 600;
    /* Slightly lighter than bold */
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    /* Clean sans-serif */
}

.cinematic-btn {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.cinematic-btn:hover {
    color: white;
    border-color: white;
}

/* Bottom Navigation Bar */
.cinematic-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    padding: 0 5%;
    gap: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding-bottom: 2rem;
}

.nav-item {
    flex: 1;
    cursor: pointer;
    position: relative;
    padding-top: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.nav-item.active {
    opacity: 1;
}

.nav-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.nav-progress-fill {
    height: 100%;
    background: white;
    width: 0;
}

.nav-item.active .nav-progress-fill {
    width: 100%;
    transition: width 5s linear;
    /* Matches autoplay */
}

.nav-number {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-right: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2px 6px;
    border-radius: 2px;
}

.nav-text {
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cinematic-title {
        font-size: 2.5rem;
    }

    .cinematic-nav {
        display: none;
        /* Hide complex nav on mobile, use dots instead */
    }

    .hero-slider .swiper-pagination {
        display: block;
        /* Show dots on mobile */
    }
}

/* =========================================
   Unique About Us Section Styles
   ========================================= */
.about-unique-section {
    padding: 8rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-unique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-unique-images {
    position: relative;
    padding-left: 2rem;
    /* Space for secondary image offset */
    padding-bottom: 2rem;
}

.img-main {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: 10%;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(18, 101, 61, 0.3);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.exp-years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.about-unique-content .sub-title {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.about-unique-content .title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-unique-content .desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.feature-text h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    transition: gap 0.3s;
}

.btn-arrow:hover {
    gap: 1rem;
    color: var(--color-primary-dark);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {
    .about-unique-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-unique-images {
        padding-left: 0;
        padding-bottom: 0;
        text-align: center;
    }

    .img-main {
        width: 100%;
    }

    .img-secondary {
        display: none;
    }

    .experience-badge {
        position: static;
        margin: 2rem auto 0;
    }

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


/* =========================================
   Modern About Us Page Styles
   ========================================= */
.about-page-hero {
    background: linear-gradient(rgba(18, 101, 61, 0.9), rgba(18, 101, 61, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 6rem;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.text-block p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Vision & Mission Modern */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Seamless join */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 4rem 0;
}

.vm-card {
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.vm-card.vision {
    background: var(--color-primary);
}

.vm-card.mission {
    background: var(--color-primary-dark);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vm-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

.vm-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    line-height: 1.6;
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list li strong {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 2.5rem;
    }
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-primary);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.approach-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.approach-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products List Modern */
.products-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.product-list-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.pli-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.pli-text {
    font-weight: 600;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .vm-card {
        padding: 2.5rem;
    }
}


/* Responsive Grid Fixes */
@media (max-width: 768px) {

    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .about-page-hero {
        padding: 6rem 0 4rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .products-list-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Modern 'What We Do' & 'Approach' Styles
   ========================================= */

/* What We Do - Feature Grid */
.what-we-do-section {
    position: relative;
    overflow: hidden;
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wwd-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.wwd-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wwd-image-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.wwd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.wwd-content {
    padding: 2rem;
    position: relative;
    background: white;
}

.wwd-icon {
    position: absolute;
    top: -30px;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(18, 101, 61, 0.3);
}

.wwd-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.wwd-desc {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.wwd-link {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.wwd-link:hover {
    gap: 0.8rem;
}

/* Our Approach - Process Steps */
.approach-modern-section {
    background-color: #f8fafc;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

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

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 5px #f8fafc;
    /* Fake gap for line */
}

.process-step:hover .step-icon-wrapper {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(18, 101, 61, 0.2);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--color-primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 9;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    padding: 0 1rem;
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .process-steps::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .step-icon-wrapper {
        margin-bottom: 1rem;
    }
}

/* CTA Text Color Fix */
.cta-highlight-text {
    color: #e2e8f0;
    /* Light gray/off-white for better readability on green */
    font-weight: 500;
}


/* =========================================
   Modern Footer Styles
   ========================================= */
.footer-modern {
    background-color: #0a3d25;
    /* Darker, richer green */
    color: #e2e8f0;
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-brand-col {
    max-width: 350px;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-decoration: none;
    width: max-content;
}

.footer-logo-icon {
    color: #4ade80;
    /* Brighter green accent */
    font-size: 2rem;
}

.footer-desc-modern {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links-modern {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-heading-modern {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading-modern::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #4ade80;
    border-radius: 2px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-modern {
    color: #ffffff;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-modern:hover {
    color: #4ade80;
    transform: translateX(5px);
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.contact-icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: -2px;
}

.footer-bottom-modern {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: white;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Clean Client Logo Carousel */
.client-logo-carousel {
    padding: 3rem 0;
    overflow: hidden;
    height: auto !important;
    /* Override global .swiper height */
    min-height: 0 !important;
    /* Override global .swiper min-height */
}

.client-logo-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
    /* Essential for smooth infinite scroll */
}

.client-logo-carousel .swiper-slide {
    /* width: auto !important; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    /* Ensure slides don't force height */
}

.swiper.client-logo-carousel .swiper-slide {
    width: 10%;
}

.client-logo-svg {
    max-width: 100%;
    height: 40px;
    /* Fixed height for consistency */
    width: auto;
    color: #888;
    /* Initial gray color */
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo-svg:hover {
    color: var(--color-primary);
    /* Brand color on hover */
    transform: scale(1.1);
}

.client-logo-svg text {
    fill: currentColor;
}

.client-logo-svg path,
.client-logo-svg circle,
.client-logo-svg rect {
    fill: currentColor;
}

/* Specific handling for stroked logos if any */
.client-logo-svg[fill="none"] path,
.client-logo-svg[fill="none"] circle {
    stroke: currentColor;
    fill: none;
    /* Reset fill for stroked paths */
}

.client-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    /* Standard size for logo strips */
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sripathi,
.aditiya {
    background-color: gray;
    padding: 5px;
}


/* =====================================================
   PREMIUM PRODUCT SLIDER
   ===================================================== */

/* Product Slider Container */
.product-slider-premium {
    padding: 2rem 0 4rem;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    position: relative;
}

.product-slider-premium .swiper-wrapper {
    overflow: visible;
}

/* Product Card Premium */
.product-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(18, 101, 61, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 620px;
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    box-shadow: 0 10px 30px rgba(18, 101, 61, 0.25);
    border-color: rgba(18, 101, 61, 0.3);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(18, 101, 61, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(18, 101, 61, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(18, 101, 61, 0.5);
    }
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover .product-image-premium {
    transform: scale(1.15);
}

/* Gradient Overlay */
.product-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-premium:hover .product-overlay-gradient {
    opacity: 1;
}

/* Product Info Section */
.product-info-premium {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

/* Product Icon Badge */
.product-icon-badge {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--color-secondary), rgba(232, 245, 233, 0.5));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(18, 101, 61, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.product-card-premium:hover .product-icon-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(18, 101, 61, 0.3);
}

/* Product Name */
.product-name-premium {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Product Tagline */
.product-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin: 0;
}

/* Product Description */
.product-description-premium {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
    flex-grow: 1;
}

/* Features List */
.product-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(18, 101, 61, 0.08);
    color: var(--color-primary);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-tag i {
    font-size: 0.9rem;
}

/* Product CTA Button */
.product-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(18, 101, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.product-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-cta-btn:hover::before {
    left: 100%;
}

.product-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(18, 101, 61, 0.5);
}

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

.product-cta-btn:hover i {
    transform: translateX(5px);
}

.container.featured-products {
    position: relative;
}

/* Slider Navigation */
.product-slider-nav {
    display: flex;
    gap: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: 0;
    z-index: 10;
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
}

.product-slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    color: var(--color-primary);
    pointer-events: auto;
    border: 2px solid rgba(18, 101, 61, 0.1);
}

.product-slider-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(18, 101, 61, 0.3);
    border-color: var(--color-primary);
}

/* Pagination */
.product-slider-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.product-slider-premium .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(18, 101, 61, 0.3);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-slider-premium .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card-premium {
        height: 640px;
    }

    .product-slider-nav {
        width: calc(100%);
    }
}

@media (max-width: 768px) {
    .product-card-premium {
        height: auto;
        min-height: 600px;
    }

    .product-image-container {
        height: 240px;
    }

    .product-info-premium {
        padding: 1.5rem;
    }

    .product-name-premium {
        font-size: 1.3rem;
    }

    .product-slider-nav {
        display: none;
    }

    .product-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .product-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.65rem;
        top: 15px;
        right: 15px;
    }

    .product-icon-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Standardize all p tags */
p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Standardize h2 line-height */
h2 {
    line-height: 1.3;
}

/* Standardize heading line-heights */
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

/* Content typography */
.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.content-section ul {
    list-style-type: disc;
    padding-left: 2rem;
    line-height: 1.8;
}

/* Do's and Don'ts Cards */
.dos-donts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.dos-card,
.donts-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.dos-card {
    border-top: 4px solid var(--color-primary);
}

.donts-card {
    border-top: 4px solid #d32f2f;
}

.dos-header,
.donts-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.dos-header i {
    font-size: 2rem;
    color: var(--color-primary);
}

.donts-header i {
    font-size: 2rem;
    color: #d32f2f;
}

.dos-header h3,
.donts-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.dos-header h3 {
    color: var(--color-primary);
}

.donts-header h3 {
    color: #d32f2f;
}

.dos-list,
.donts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos-list li,
.donts-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.dos-list li:last-child,
.donts-list li:last-child {
    border-bottom: none;
}

.dos-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.donts-list li i {
    color: #d32f2f;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.dos-list li span,
.donts-list li span {
    color: var(--color-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dos-donts-grid {
        grid-template-columns: 1fr;
    }
}

/* Installation Steps */
.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.installation-step {
    display: flex;
    gap: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.step-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.step-content li {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .installation-step {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Feature Section */
.feature-section {
    text-align: center;
}

.feature-section p {
    text-align: left;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.feature-icon-large.sewage {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 20px;
}


.benefit-card {
    background: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.application-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.application-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.application-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.application-card p {
    color: var(--color-text-light);
}

/* Content Block */
.content-block {
    margin: 0 auto;
    text-align: left;
}

.content-block p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    max-width: 900px;
    margin: 0 auto;
}

.highlight-box p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.timeline-content {
    flex: 1;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.timeline-content p {
    color: var(--color-text-light);
    margin: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.advantage-card p {
    color: var(--color-text-light);
    margin: 0;
}

/* Conclusion Box */
.conclusion-box {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 900px;
    margin: 20px auto 0;
}

.conclusion-box p {
    color: var(--color-text);
    margin: 0;
    line-height: 1.8;
}

/* Capacity Table */
.capacity-table-wrapper {
    overflow-x: auto;
    max-width: 700px;
    margin: 0 auto;
}

.capacity-table-wrapper p {
    margin-top: 20px;
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-primary);
}

.capacity-table th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
}

.capacity-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.capacity-table tr:last-child td {
    border-bottom: none;
}

.use-case {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.use-case i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Capacity Cards */
.capacity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.capacity-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
}

.capacity-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.capacity-header i {
    font-size: 2rem;
    color: var(--color-primary);
}

.capacity-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.capacity-range {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}

.capacity-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.capacity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capacity-card li {
    padding: 0.5rem 0;
    color: var(--color-text);
    border-bottom: 1px solid #f0f0f0;
}

.capacity-card li:last-child {
    border-bottom: none;
}

/* Applications Title */
.applications-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
}

.spec-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.spec-card ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}

.spec-card li {
    margin-bottom: 0.5rem;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.standard-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.standard-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.standard-card p {
    color: var(--color-text-light);
    margin: 0;
}

/* Blog Styles */
.blog-header {
    padding: 6rem 0 8rem;
}

.blog-title-header {
    font-size: 2.5rem;
}

.blog-content-section {
    padding-top: 0;
}

.blog-body {
    line-height: 1.8;
    color: var(--color-text);
}

.blog-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: var(--color-primary);
}

.blog-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.blog-body li {
    margin-bottom: 0.5rem;
}

.lead-paragraph {
    font-size: 1.1rem;
}

.blog-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--color-text-light);
    margin: 3rem 0;
    font-size: 1.2rem;
}

.blog-body blockquote footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
}

.info-box {
    background: var(--color-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Overview Page Styles */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.overview-icon {
    width: 70px;
    height: 70px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.overview-icon.fire {
    background: #ffebee;
    color: #d32f2f;
}

.overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.overview-card p {
    color: var(--color-text-light);
    margin: 0;
}

/* Dark Section */
.bg-dark-section {
    background: #1a1a2e;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

.overview-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: background 0.3s ease;
}

.overview-card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
}

.overview-card-dark h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.overview-card-dark p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.overview-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.overview-link:hover {
    text-decoration: underline;
}

/* Overview Gallery */
.overview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: var(--color-white);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@media (max-width: 992px) {
    .overview-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .overview-gallery {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gallery-item img {
        aspect-ratio: 16/10;
    }
}

/* Home Page Gallery */
.home-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.home-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.home-gallery .gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 992px) {
    .home-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Content Image Row Layout */
.content-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 60px;
}

.content-image-row.reverse {
    direction: rtl;
}

.content-image-row.reverse>* {
    direction: ltr;
}

.content-col {
    padding-right: 1rem;
}

.content-image-row.reverse .content-col {
    padding-right: 0;
    padding-left: 1rem;
}

.image-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-col img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: var(--color-text);
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .content-image-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .content-image-row.reverse {
        direction: ltr;
    }

    .content-col {
        padding-right: 0;
    }

    .content-image-row.reverse .content-col {
        padding-left: 0;
    }
}

/* Tank Section Styles */
.tank-section {
    max-width: 900px;
    margin: 0 auto;
}

.tank-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tank-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.tank-icon.water {
    background: #e3f2fd;
    color: #1976d2;
}

.tank-icon.sewage {
    background: #e8f5e9;
    color: #2e7d32;
}

.tank-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.tank-content {
    margin-bottom: 2rem;
}

.content-image-row img {
    height: 400px;
    object-fit: cover;
}

.tank-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tank-benefits h3,
.tank-applications h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.benefits-list,
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item,
.application-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.bg-light .benefit-item,
.bg-light .application-item {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.benefit-item i,
.application-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-item strong,
.application-item strong {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.benefit-item span,
.application-item span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Interactive Steps */
.interactive-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step-tab:hover {
    border-color: var(--color-primary);
}

.step-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-tab.active .step-number {
    background: var(--color-secondary);
    color: var(--color-primary)
}

.step-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.step-content-wrapper {
    position: relative;
}

.step-content {
    display: none;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

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

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

.step-content .step-icon {
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.step-content>p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-details {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5px 20px;
    flex-wrap: wrap;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.step-details li i {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .step-tabs {
        flex-direction: column;
    }

    .step-tab {
        width: 100%;
        justify-content: center;
    }

    .step-details {
        flex-direction: column;
        align-items: center;
    }
}

/* Design List */
.design-list {
    list-style: none;
    padding: 0;
}

.design-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.7;
}

.design-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Install Steps */
.install-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number-badge {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .install-step {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Installation Cards */
.installation-steps-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.install-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.install-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.install-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.install-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.08);
}

.install-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.install-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.install-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.install-card li i {
    color: var(--color-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .installation-steps-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question span {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Page Grid Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid .about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

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

/* Mobile Responsiveness for Service Pages */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid .about-img {
        order: -1;
        max-height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {

    .approach-grid,
    .benefits-grid,
    .overview-grid,
    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .approach-card,
    .benefit-card,
    .overview-card,
    .capacity-card {
        margin-bottom: 1rem;
    }

    .installation-step {
        flex-direction: column;
        text-align: center;
    }

    .installation-step .step-number {
        margin-bottom: 1rem;
    }
}

/* Delivery Comparison Section */
.delivery-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.delivery-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.delivery-card.precast {
    border: 2px solid var(--color-primary);
}

.delivery-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-icon {
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.delivery-card.precast .delivery-icon {
    background: var(--color-primary);
    color: white;
}

.delivery-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.delivery-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.delivery-stats .stat {
    text-align: center;
}

.delivery-stats .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.delivery-card.traditional .stat-value {
    color: var(--color-text-light);
}

.delivery-stats .stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delivery-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .delivery-comparison {
        grid-template-columns: 1fr;
    }

    .delivery-stats {
        flex-direction: column;
        gap: 1rem;
    }
}