/* ===================================================
    BluCell Energy - Production Grade Stylesheet
    ===================================================

    TABLE OF CONTENTS
    ---------------------------
    1.  Global Styles & Variables
    2.  Typography & Basic Elements
    3.  Buttons & Theme Helpers
    4.  Preloader
    5.  Header & Navigation
    6.  Off-Canvas Mobile Menu
    7.  Hero Section (Polished)
    8.  Service Section (Why Choose Us)
    9.  About Section
    10. Product Section
    11. Achievement / Counter Section
    12. Footer Section (Refined)
    13. Animations & Keyframes
    14. Plugin Overrides (MeanMenu)

    =================================================== */


/* 1. Global Styles & Variables
    =================================================== */


:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #99c93b;
    /* Primary brand color */
    --header: #022729;
    /* Dark background color */
    --text: #555;
    /* Softer text color for readability */
    --text-light: #ffffffcc;
    --border: #e3e3e3;
    --bg-light: #f3f7fb;
    --box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
    /* Slightly softer shadow */
    --font-heading: "Montserrat", sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* Font smoothing for crisper text */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    /* Increased for better paragraph spacing */
    color: var(--text);
    background-color: var(--body);
}

div::-webkit-scrollbar {
    display: none;
}

/* 2. Typography & Basic Elements
    =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0;
    padding: 0;
    color: var(--header);
    font-weight: 700;
    text-transform: capitalize;
}

/* Refined typographic scale for better hierarchy */
h1 {
    font-size: 52px;
    line-height: 1.25;
}

h2 {
    font-size: 38px;
    line-height: 1.3;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    font-size: 17px;
    font-weight: 600;
}


h6 {
    font-size: 16px;
    font-weight: 600;
}


@media (max-width: 991px) {
    h1 {
        font-size: 40px;
    }


    h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 32px;
    }


    h2 {
        font-size: 28px;
    }
}


a {
    text-decoration: none;
    color: var(--header);
    transition: all 0.3s ease-in-out;
}


a:hover {
    color: var(--theme);
}


p {
    margin: 0;
    font-weight: 500;
}


/* Set a slightly bolder default paragraph weight */
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


img {
    max-width: 100%;
    height: auto;
}


/* 3. Buttons & Theme Helpers
    =================================================== */
.theme-btn {
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    /* Adjusted padding for a more balanced look */
    border-radius: 5px;
    /* Added for a modern, softer edge */
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
    border: none;
}


.theme-btn:hover {
    background-color: var(--header);
    color: var(--white);
    transform: translateY(-2px);
    /* Subtle lift on hover */
}


.section-padding {
    padding: 70px 0;
}


/* Standardized vertical spacing */
.section-bg {
    background-color: #f3f3f3;
}


.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
}


/* 4. Preloader (No functional change) */
/* ===================================================
    4. Fast Professional Preloader
    =================================================== */


.preloader {
    display: grid;
    place-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--header);
    z-index: 9999999;
}


.preloader .animation-preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
}


/* Logo Styling and Faster Animation */
.preloader .preloader-logo {
    max-width: 180px;
    height: auto;
    animation: pulsate 1.2s infinite ease-in-out;
    /* FASTER: Was 1.8s */
}


/* Faster Progress Bar Styling */
.preloader .preloader-progress-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}


.preloader .progress-bar-fill {
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    border-radius: 4px;
    animation: loading-bar 1.5s infinite linear;
    /* FASTER: Was 2.5s */
}


/* Curtain Reveal Effect */
.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
}


.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0;
}

.preloader .loader .loader-section .bg {
    background-color: var(--header);
    height: 100%;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}


/* Faster Preloader Loaded State */
.preloader.loaded .animation-preloader {
    opacity: 0;
    transition: opacity 0.3s ease-out;
    /* FASTER: Was 0.4s */
}


.preloader.loaded .loader-section .bg {
    width: 0;
    /* FASTER: Reduced duration from 0.7s to 0.5s and delay from 0.3s to 0.2s */
    transition: width 0.5s 0.2s cubic-bezier(0.1, 0.1, 0.1, 1);
}


/* Keyframe Animations (Updated with faster timings) */
@keyframes pulsate {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes loading-bar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* Responsive adjustments */
@media (max-width: 767px) {
    .preloader .preloader-logo {
        max-width: 150px;
    }

    .preloader .preloader-progress-bar {
        width: 150px;
    }
}


/* 5. Header & Navigation (Refined for a modern look)
    =================================================== */
.header-4 {
    position: fixed;
    background-color: #fff;
    /* Start transparent for hero overlay */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}


.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    /* A bit more vertical room */
    min-height: auto;
    transition: padding 0.4s ease;
}


.logo img {
    height: 48px;
    display: block;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}


.main-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
}


.main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 0;
    text-transform: capitalize;
}


/* Underline hover effect for main navigation */
.main-menu ul li a:hover,
.main-menu ul li.active a {
    color: var(--theme) !important;
}


/* Active link is white on hero */
.header-button .theme-btn {
    padding: 14px 28px;
    font-size: 15px;
}


.header__hamburger {
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
}


/* Sticky state styles */
.sticky {
    background-color: var(--white) !important;
    box-shadow: var(--box-shadow) !important;
    animation: fadeInDown 0.5s ease-in-out;
}


.sticky .header-main {
    padding: 10px 0;
}


.sticky .main-menu ul li a {
    color: var(--text);
}


.sticky .main-menu ul li a:hover,
.sticky .main-menu ul li.active a {
    color: var(--theme) !important;
}


.sticky .header__hamburger {
    color: var(--header);
}


.sticky .header-logo-2 {
    display: block;
}


.sticky .header-logo {
    display: none;
}


@media (max-width: 991px) {
    .header-right {
        gap: 25px;
    }
}


/* 6. Off-Canvas Mobile Menu (No functional change) */
/* Offcanvas Area */
.offcanvas__area {
    background-color: var(--bg-light);
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}


.offcanvas__area.info-open {
    transform: translateX(0);
}


/* Offcanvas wrapper and content */
.offcanvas__wrapper {
    height: 100%;
    overflow-y: auto;
    padding: 30px;
}


.offcanvas__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* Offcanvas Overlay */
.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.offcanvas__overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}


/* Offcanvas Header: Logo & Close Button */
.offcanvas__logo img {
    max-width: 150px;
}


.offcanvas__close-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--header);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}


.offcanvas__close-btn:hover {
    color: var(--theme);
    transform: rotate(90deg);
}


/* Mobile Menu Placeholder */
.mobile-menu {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
}


/* Contact Info Section */
.offcanvas__contact {
    margin-top: auto;
    /* Pushes this section to the bottom */
}


.offcanvas__contact-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 20px;
}


.offcanvas__contact-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


.offcanvas__contact-list li {
    margin-bottom: 20px;
}


.offcanvas__contact-list li:last-child {
    margin-bottom: 0;
}


.offcanvas__contact-icon {
    flex-shrink: 0;
    width: 30px;
    font-size: 16px;
    color: var(--theme);
}


.offcanvas__contact-text a {
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}


.offcanvas__contact-text a:hover {
    color: var(--theme);
}


/* Social Media Section */
.offcanvas__social {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}


.offcanvas__social a {
    display: inline-block;
    margin: 0 12px;
    font-size: 16px;
    color: var(--text);
    transition: color 0.3s ease, transform 0.3s ease;
}


.offcanvas__social a:hover {
    color: var(--theme);
    transform: translateY(-3px);
}


/* 7. Hero Section (Polished for Full Screen Height & Centering)
    =================================================== */
.hero-1 {
    position: relative;
    display: flex;
    align-items: center;
}


.hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../img/hero/hero.png');
    background-attachment: fixed;
}


.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(22, 23, 26, 0.65) 0%, rgba(22, 23, 26, 0.25) 40%, rgba(22, 23, 26, 0) 100%),
        radial-gradient(ellipse at left center, rgba(22, 23, 26, 0.35), transparent 70%);
    mix-blend-mode: multiply;
    z-index: 1;
}


/* Mobile-first: stronger overlay coverage */
@media (max-width: 768px) {
    .hero-image {
        background-attachment: scroll;
    }

    .hero-image::before {
        background:
            linear-gradient(to right, rgba(22, 23, 26, 0.7) 0%, rgba(22, 23, 26, 0.4) 70%, rgba(22, 23, 26, 0.1) 100%),
            radial-gradient(ellipse at left center, rgba(22, 23, 26, 0.45), transparent 80%);
    }
}


.hero-content {
    padding: 200px 0;
    /* More vertical space */
    color: var(--white);
    max-width: 750px;
}


.hero-pretext {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--theme);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    /* Wider spacing for emphasis */
    margin-bottom: 25px;
}


.hero-title {
    color: var(--white);
    font-size: 52px;
    /* Consistent with H1 */
    margin-bottom: 25px;
}


.hero-text {
    font-size: 18px;
    font-weight: 500;
    /* Bolder for readability on image */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}


@media (max-width: 991px) {
    .hero-content {
        padding: 160px 0;
        max-width: 100%;
    }


    .hero-title {
        font-size: 40px;
    }
}


@media (max-width: 575px) {
    .hero-content {
        padding: 130px 0;
    }


    .hero-pretext {
        font-size: 12px;
        letter-spacing: 2px;
    }


    .hero-title {
        font-size: 32px;
    }


    .hero-text {
        font-size: 16px;
    }
}


/* 8. Service Section (Why Choose Us) - Typographic Polish
    =================================================== */





/* 9. About Section (Already refined) */
.about-section {
    overflow-x: hidden
}


.about-wrapper {
    display: flex;
    align-items: center
}


.founder-section {
    margin-top: 5rem
}


.about-image img {
    border-radius: 1rem;
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08)
}


.about-content {
    padding-left: 3rem
}


.founder-section .about-content {
    padding-left: 0;
    padding-right: 3rem
}


.about-content .section-title {
    margin-bottom: 1.5rem
}


.about-content .section-title span {
    color: var(--theme);
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: block;
    margin-bottom: .75rem
}


.about-content .section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .05)
}


.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444
}


.about-content p:last-child {
    margin-bottom: 0
}


@media (max-width:991.98px) {
    .about-wrapper {
        flex-direction: column
    }


    .founder-section {
        margin-top: 4rem
    }


    .about-content,
    .founder-section .about-content {
        padding: 2.5rem .5rem 0 .5rem;
        text-align: center
    }


    .about-content .section-title h2 {
        font-size: 2.4rem
    }
}


/* 10. Product Section (Typographic Polish)
    =================================================== */


/* 10. Product Section (3-Card + Partners)
    =================================================== */


/* 10. Product Section - Refined & Responsive
    =================================================== */


/* --- General Section Styles --- */
/* --- General Section Styles --- */
.news-section-4 .section-title h2 {
    font-size: 2.5rem;
}

.news-section-4 .section-title p {
    margin: 15px auto 0;
}

/* --- Product Card Base Styles --- */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 5:3 aspect ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-high-performance {
    background: var(--theme);
}

.badge-industrial-grade {
    background: #1a237e;
}

.badge-max-capacity {
    background: #b71c1c;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #1a237e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.portfolio-section,
.product-tags {
    margin-top: auto; /* Pushes content to the bottom */
}

/* --- Card Specific Content Styles --- */
.portfolio-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-list li {
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.portfolio-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.portfolio-list li span {
    color: #1a237e;
    font-size: 1rem;
    font-weight: 600;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-long-cycle {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag-high-capacity {
    background: #e3f2fd;
    color: #1565c0;
}

.tag-fast-charging {
    background: #fff3e0;
    color: #ef6c00;
}

.tag-ess-grade {
    background: #fbe9e7;
    color: #d84315;
}

.tag-robust {
    background: #ede7f6;
    color: #5e35b1;
}

.tag-high-power {
    background: #e0f7fa;
    color: #00838f;
}

/* --- Partner Brands Section --- */
.partner-brands-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.partner-description {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    color: #555;
    font-size: 1rem;
}

.brand-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.brand-tag {
    background: #fff;
    color: #495057;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.brand-tag:hover {
    background-color: var(--theme);
    color: white;
    border-color: var(--theme);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* --- Designer-Grade Minimalist Accordion --- */
.custom-accordion,
.custom-accordion .accordion-item {
    border: none;
    background: transparent;
}

.custom-accordion .accordion-item {
    border-top: 1px solid #f0f0f0;
}

.custom-accordion .accordion-item:first-child {
    border-top: none;
}

.custom-accordion .accordion-button {
    background: transparent;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: 0.3px;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--theme);
    background: transparent;
    box-shadow: none;
}

/* --- Custom Plus/Minus Icon --- */
.custom-accordion .accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 2rem;
    font-weight: 200;
    line-height: 1;
    flex-shrink: 0;
    color: var(--theme);
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-2px);
}

.custom-accordion .accordion-body {
    padding: 4px 0 10px 0;
}

/* --- Enhanced Cell Specifications Styling --- */
.cell-specs-list {
    margin: 0;
    padding: 0;
}

.cell-spec-item {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cell-spec-item:last-child {
    border-bottom: none;
    padding-bottom: 10px;
}

.cell-spec-item:first-child {
    padding-top: 0;
}

.cell-spec-title {
    color: #1a237e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cell-spec-item .cell-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.custom-accordion .cell-description {
    color: #666;
    font-size: 0.85rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1199px) {
    .cell-spec-title {
        font-size: 0.95rem;
    }
    
    .cell-spec-item .cell-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .news-section-4 .section-title h2 {
        font-size: 2.2rem;
    }

    .partner-brands-section {
        margin-top: 60px;
    }

    .custom-accordion .accordion-button {
        padding: 12px 0;
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .news-section-4 .section-title h2 {
        font-size: 1.8rem;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .partner-brands-section {
        margin-top: 50px;
        padding-top: 30px;
    }

    .brand-tags-container {
        gap: 10px;
    }

    .brand-tag {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .cell-spec-title {
        font-size: 0.9rem;
    }
    
    .cell-spec-item .cell-description {
        font-size: 0.82rem;
    }
    
    .cell-spec-item {
        padding: 12px 0;
    }
    
    .custom-accordion .accordion-button {
        padding: 10px 0;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .cell-spec-title {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .cell-spec-item .cell-description {
        font-size: 0.8rem;
    }
}



/* 11 & 11.5. Achievement / Contact Section (No major changes) */
.achievement-wrapper.style-2 {
    background: var(--theme);
    padding: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px
}


.achievement-wrapper .counter-area {
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap
}


.achievement-wrapper .counter-items {
    text-align: center
}


.achievement-wrapper .counter-items .icon {
    font-size: 2.2em;
    color: var(--white)
}


.achievement-wrapper .counter-items .content {
    margin-top: 15px
}


.achievement-wrapper .counter-items .content h2,
.achievement-wrapper .counter-items .content p {
    color: var(--white)
}


@media (max-width:767px) {
    .achievement-wrapper.style-2 {
        padding: 40px 20px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center
    }


    .achievement-wrapper .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.3
    }


    .achievement-wrapper .counter-area {
        justify-content: center;
        gap: 20px
    }


    .achievement-wrapper .counter-items {
        flex: 1 1 100px;
        max-width: 150px
    }


    .achievement-wrapper .counter-items .icon {
        font-size: 2rem
    }


    .achievement-wrapper .counter-items .content h2 {
        font-size: 1.5rem
    }


    .achievement-wrapper .counter-items .content p {
        font-size: .9rem;
        margin-top: 5px
    }
}

/* ===================================================
    11.5. Contact Section (Final Designer-Grade Version with Map)
    =================================================== */


/* Section Title Polish */
.contact-section .section-title {
    margin-bottom: 4rem;
}

.contact-section .section-title span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--theme);
}

.contact-section .section-title h2 {
    margin-top: 0.5rem;
}

.contact-section .section-title p {
    max-width: 650px;
    margin: 1rem auto 0;
    line-height: 1.8;
    font-size: 1.05rem;
}


/* Contact Card (Info & Form) General Styling */
.contact-info-card,
.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid var(--border);
}


.contact-info-card h3,
.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--header);
}


.contact-info-card p {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}


/* Information Card Specifics */
.contact-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}


.contact-list .contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-list .contact-item:not(:last-child) {
    margin-bottom: 1.75rem;
}


.contact-list .icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--bg-light);
    color: var(--theme);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}


.contact-list .text-content span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.contact-list .text-content a {
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-list .text-content a:hover {
    color: var(--theme);
}


/* Form Polish */
.form-control {
    background-color: var(--bg-light);
    border: 1px solid #dde2e7;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    background-color: var(--white);
    border-color: var(--theme);
    box-shadow: 0 0 0 4px rgba(153, 201, 59, 0.2);
    outline: none;
}


/* NEW: Map Wrapper Styling */
.map-wrapper {
    border-radius: 16px;
    /* Match other cards */
    overflow: hidden;
    /* Important for the border-radius to apply to the iframe */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    line-height: 0;
    /* Removes any extra space below the iframe */
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {

    .contact-info-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-section .section-title {
        margin-bottom: 2.5rem;
    }
}


/* ===================================================
    11.5. Contact Section - CSS for JS Enhancements
    =================================================== */


/* Container for floating label functionality */
.form-group {
    position: relative;
}


/* Floating label base style */
.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    background: none;
    padding: 0 5px;
    pointer-events: none;
    transition: all 0.3s ease;
}


/* Style for the label when the input is focused or has a value */
.form-control:focus+label,
.form-control.has-value+label {
    top: -10px;
    /* Moves the label up */
    left: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--theme);
    background-color: var(--white);
    /* Ensures it covers the input border */
}


/* Styling for the form status messages (success/error) */
#form-status {
    text-align: center;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: none;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.4s ease;
}

#form-status.success {
    background-color: #e9f9ee;
    color: #27ae60;
    display: block;
    opacity: 1;
}

#form-status.error {
    background-color: #fdeaea;
    color: #e74c3c;
    display: block;
    opacity: 1;
}


/* 12. Footer Section (No major changes) */
.footer-section {
    background-color: var(--header);
    color: var(--white);
    padding: 40px 0;
    position: relative;
    z-index: 1
}


.footer-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}


.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}


.footer-logo img {
    height: 45px;
    margin-bottom: 15px
}


.footer-copyright p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .7)
}


.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}


.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px
}


.footer-nav ul li a {
    color: var(--white);
    font-weight: 500
}


.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px
}


.footer-contact a {
    color: var(--white);
    font-weight: 500
}


.scroll-icon {
    display: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: var(--theme);
    border-radius: 50%;
    color: var(--white);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99
}


@media (min-width:992px) {


    .footer-left,
    .footer-right {
        flex-direction: row;
        align-items: center
    }


    .footer-left {
        gap: 25px
    }


    .footer-logo img {
        margin-bottom: 0
    }


    .footer-right {
        gap: 40px
    }
}


@media (max-width:991px) {
    .footer-section .container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center
    }
}


/* 13. Animations & Keyframes (No changes) */
@keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}


@keyframes letters-loading {


    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }


    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0)
    }


    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}


/* 14. Plugin Overrides (MeanMenu) (No changes) */
.mean-container a.meanmenu-reveal {
    display: none !important
}


.mean-container .mean-nav {
    background: none;
    margin-top: 0
}


.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none
}


.mean-container .mean-nav>ul {
    display: block !important
}


.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 12px 5%;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--border)
}


.mean-container .mean-nav ul li a:hover {
    color: var(--theme)
}

/* ===================================================
     8. Creative Bento Grid Section
   =================================================== */
/* ===================================================
     8. Symmetrical Bento Grid Section (FINAL - Mobile Fix)
   =================================================== */

.bento-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* --- Decorative Vector Shapes --- */
.bento-shape-1, .bento-shape-2 {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}
.bento-shape-1 {
    width: 350px;
    height: 350px;
    top: -80px;
    left: -120px;
    background-color: rgba(153, 201, 59, 0.1);
}
.bento-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    background-color: rgba(2, 39, 41, 0.05);
}

/* --- Bento Grid Layout --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.bento-item {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- Specific Item Styles (Desktop) --- */
.bento-visual {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    border-radius: 16px;
}
.bento-visual img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.bento-visual:hover img { transform: scale(1.03); }

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
}
.bento-overlay h3 { color: var(--header); font-size: 1.8rem; }

.bento-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
}
.feature-item {
    background-color: var(--bg-light);
    border: 1px solid transparent;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-item .icon-wrapper { width: 60px; height: 60px; background-color: var(--white); border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1rem auto; flex-shrink: 0; }
.feature-item .icon-wrapper img { height: 30px; }
.feature-item .text-content h5 { color: var(--header); font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem 0; line-height: 1.3; }
.feature-item .text-content p { font-size: 0.85rem; color: var(--text); line-height: 1.5; margin: 0; }

.bento-content {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
.content-text { flex: 1; }
.content-text p { font-size: 1rem; line-height: 1.7; color: var(--text); }

.content-cta {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.promise-badge {
    border: 2px dashed var(--border);
    background: transparent;
    color: var(--header);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: 100%;
    cursor: default;
    user-select: none;
}
.promise-badge .icon-wrapper { color: var(--theme); font-size: 1.75rem; margin: 0; flex-shrink: 0; }
.promise-badge .text h4 { color: var(--header); font-size: 1.25rem; margin: 0 0 0.25rem 0; }
.promise-badge .text p { color: var(--text); font-size: 0.9rem; margin: 0; line-height: 1.4; }

.content-cta .theme-btn {
    width: 100%;
    text-align: center;
}


.bento-section .section-title {
    margin-bottom: 4rem;
}

.bento-section .section-title span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--theme);
}

.bento-section .section-title h2 {
    margin-top: 0.5rem;
}

.bento-section .section-title p {
    margin: 1rem auto 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-content {
        flex-direction: column;
    }
    .content-cta {
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0 auto;
        align-items: center;
    }
    .content-cta .theme-btn {
        align-self: stretch;
    }
}

@media (max-width: 767px) {
    /* Mobile Grid Order Control */
    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    
    /* Image Section - First Position */
    .bento-visual {
        order: 1;
        min-height: 250px;
        height: 250px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .bento-visual img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Features Section - Second Position */
    .bento-features {
        order: 2;
        grid-template-columns: 1fr;
    }
    
    /* Content Section - Third Position */
    .bento-content {
        order: 3;
        flex-direction: column;
    }
    
    /* Feature Items Horizontal Layout */
    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    .feature-item .icon-wrapper {
        margin: 0;
    }
    .feature-item .text-content {
        padding-left: 1rem;
    }
    
    /* Content CTA Styling */
    .content-cta {
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0 auto;
        align-items: center;
    }
    .content-cta .theme-btn {
        align-self: stretch;
    }

    
 .bento-section .section-title {
        margin-bottom: 2.5rem;
    }

}


/* --- Enhanced Bento Content Styles --- */
.bento-content {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.bento-content .content-text {
    flex: 1;
}

.bento-content .content-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.bento-content .content-text p:last-child {
    margin-bottom: 0;
}

/* --- Enhanced Content CTA --- */
.bento-content .content-cta {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* --- CTA Highlight Section --- */
.cta-highlight {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(153, 201, 59, 0.05) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(153, 201, 59, 0.2);
    width: 100%;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--theme), #7cb342);
    border-radius: 2px;
}

.cta-tagline {
    color: var(--header);
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
    position: relative;
}

.cta-tagline::before,
.cta-tagline::after {
    content: '"';
    color: var(--theme);
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.3;
    line-height: 1;
}

.cta-tagline::before {
    margin-right: 0.25rem;
}

.cta-tagline::after {
    margin-left: 0.25rem;
}

/* --- Hero CTA Button --- */
.hero-cta {
    position: relative;
    background: linear-gradient(135deg, var(--theme) 0%, #7cb342 100%);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(153, 201, 59, 0.2);
    transition: all 0.4s ease;
    width: 100%;
    text-align: center;
}

.btn-glow {
    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.8s ease;
}

.hero-cta:hover .btn-glow {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(153, 201, 59, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .bento-content {
        flex-direction: column;
    }
    
    .bento-content .content-cta {
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0 auto;
    }
}

@media (max-width: 767px) {
    .bento-content .content-cta {
        width: 100%;
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .cta-highlight {
        padding: 1rem;
    }
    
    .cta-tagline {
        font-size: 0.9rem;
    }
    
    .cta-tagline::before,
    .cta-tagline::after {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
