* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
}

:root {
    --primary-color: #2563eb;
    --text-color: black;
    --white: #ffffff;
}

body {
    background-color: white;
}

/* NAVBAR STYLES */
.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    transform: scale(3.5);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

/* .logo:hover img {
    transform: scale(3.7);
} */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link:hover {
    color: #ff5e0e;
}

.nav-link.active {
    color: #ff5e0e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff5e0e;
    animation: underlineGrow 0.3s ease-out;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.btn-lets-talk {
    background-color: #ff5e0e;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    transform: translateY(-2px);
    background-color: white;
    color: #ff5e0e !important;
    border: 1px solid #ff5e0e;
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.2);
}

/* Services Dropdown - Desktop */
.services-dropdown {
    position: static;
}

.dropdown-icon {
    margin-top: -0.8rem !important;
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none;
}

/* Rotate icon when active */
/* .services-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
} */

.dropdown-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 115%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 99;
    padding: 1.5rem 0;
    max-width: 1200px;
    width: fit-content;
    pointer-events: none;
}



.dropdown-container.active {
    pointer-events: auto;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content {
    display: flex;
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background: #e7fff2ba;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
}

.dropdown-item i {
    font-size: 1.5rem;
    color: #ff5e0e;
    margin-top: 0.3rem;
}

.dropdown-item span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.dropdown-item.active {
    background: #e7fff2ba !important;
    color: #333 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.dropdown-item:hover span {
    color: #333;
}

.dropdown-item:hover span .second-line {
    color: #666;
    transition: color 0.3s ease;
}

.dropdown-item span .second-line {
    display: block;
    font-weight: 500;
    color: white#666;
    font-size: 0.85rem;
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #ff5e0e;
}

/* Default: hide mobile logo, show desktop logo */
.logo-mobile {
    display: none;
}

.logo-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
    }
}

.dropdown-icon {
    margin-top: -0.8rem !important;
    margin-left: 0.2rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    display: none !important;
}

/* Mobile  */
@media (max-width: 992px) {


    .dropdown-icon {
        display: inline-block !important;
    }


    .header {
        background-color: transparent;
    }

    .navbar-container {
        background-color: white;
    }

    .navbar-container.scrolled {
        border-radius: 0 0 30px 30px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Blur overlay for content behind menu */
    .blur-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .blur-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 97%;
        height: 80vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 2rem 2rem;
        overflow-y: auto;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-container {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        border-top: none;
        animation: none;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
        color: #333;
        background: transparent;
        min-width: auto;
        width: 100%;
    }

    .dropdown-item-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .dropdown-item:hover {
        transform: none;
        box-shadow: none;
        background: rgba(255, 94, 14, 0.05);
    }

    .dropdown-item span {
        color: #333;
        font-size: 0.9rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .dropdown-item span .second-line {
        color: #666;
        display: inline;
        font-weight: 500;
        font-size: 0.85rem;
        color: #666;
        /* margin-left: 0.3rem; */
    }

    .dropdown-item i {
        color: #ff5e0e;
        font-size: 1.2rem;
        min-width: 20px;
    }

    .services-dropdown.active .dropdown-container {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-container {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .services-dropdown {
        position: relative;
    }

    .services-dropdown.active .dropdown-container {
        position: fixed;
        top: 50%;
        left: 70%;
        /* transform: translate(-50%, -50%); */
        transform: translate(-50%, -50%);
        /* Shift slightly left */

        width: 50%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        display: block !important;
        z-index: 100;
        animation: fadeInFromLeft 0.3s ease-out;
        /* New animation */
    }

    @keyframes fadeInFromLeft {
        from {
            opacity: 0;
            transform: translate(-60%, -50%);
            /* Starts more left */
        }

        to {
            opacity: 1;
            transform: translate(-30%, -50%);
            /* Ends slightly left */
        }
    }

    .services-dropdown.active .dropdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-dropdown.active .dropdown-item {
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-bottom: 0.5rem;
    }

    .services-dropdown.active .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .services-dropdown.active .dropdown-item i {
        font-size: 1rem;
    }

    .services-dropdown.active .dropdown-item span {
        font-size: 0.7rem;
    }

    .services-dropdown.active .dropdown-item .second-line {
        font-size: 0.7rem;
    }

    /* Make sure overlay covers everything */
    .blur-overlay.active {
        z-index: 99;
    }

    .dropdown-container {
        display: none;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 250px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        z-index: 100;
        transition: all 0.3s ease;
    }

    .dropdown-item {
        pointer-events: auto;
        z-index: 101;
    }

    .services-dropdown.active .dropdown-container {
        display: flex;
        opacity: 1;
        visibility: visible;
        animation: fadeInFromLeft 0.3s ease-out;
    }

    .dropdown-content {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .dropdown-item.active {
        background: rgba(255, 94, 14, 0.1) !important;
        color: #ff5e0e !important;
        transform: none;
        box-shadow: none;
        border-left: 3px solid #ff5e0e;
    }
}




/* Products Dropdown Specific Styles */
/* .products-dropdown-container {
    max-width: 300px;
}

.products-dropdown-container .dropdown-content {
    flex-direction: row;
    gap: 0.8rem;
    padding: 1rem;
}

.products-dropdown-container .dropdown-item {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-dropdown-container .dropdown-item:hover {
    background: #e7fff2ba;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #0064006f;
}

.products-dropdown-container .dropdown-item i {
    color: #ff5e0e;
} */

.products-dropdown {
    position: static;
}

.products-dropdown-container .dropdown-item {
    align-items: center;
}

/* Mobile Styles for Products Dropdown */


@media (max-width: 992px) {
    .products-dropdown.active .dropdown-container {
        position: fixed;
        top: 50%;
        left: 70%;
        transform: translate(-50%, -50%);
        width: 50%;
        max-width: 200px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        display: block !important;
        z-index: 100;
        animation: fadeInFromLeft 0.3s ease-out;
    }

    .products-dropdown.active .dropdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .products-dropdown.active .dropdown-item {
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-bottom: 0.5rem;
        min-width: auto;
    }
}



/* TABLET VIEW NAVBAR FIXES (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {

    /* Fix navbar menu width */
    .nav-menu {
        width: 80% !important;
        max-width: 450px !important;
        top: 5rem;
        padding: 2rem 1.5rem !important;
    }

    /* ADJUST DROPDOWN POSITIONING */
    .services-dropdown.active .dropdown-container {
        left: 0% !important;
        width: 40% !important;
        top: 45% !important;
        max-width: 240px !important;
        background: white !important;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px !important;
        padding: 0.8rem !important;
    }

    .products-dropdown.active .dropdown-container {
        left: 0% !important;
        width: 30% !important;
        top: 25% !important;
        background: white !important;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px !important;
        padding: 0.8rem !important;
    }

    /* FIX TEXT COLOR ISSUE - THIS IS THE IMPORTANT PART */
    .services-dropdown.active .dropdown-item,
    .products-dropdown.active .dropdown-item {
        color: #333333 !important;
        /* Dark color for text */
        background: white !important;
        padding: 0.6rem 0.8rem !important;
        margin-bottom: 0.4rem !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 8px !important;
        transition: all 0.2s ease;
    }

    /* Fix for service dropdown items - ensure all text is visible */
    .services-dropdown.active .dropdown-item span,
    .products-dropdown.active .dropdown-item span {
        color: #333333 !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
    }

    /* Fix for the second line text */
    .services-dropdown.active .dropdown-item .second-line,
    .products-dropdown.active .dropdown-item .second-line {
        color: #666666 !important;
        font-size: 0.7rem !important;
        display: inline !important;
    }

    /* Fix icon color - keep orange */
    .services-dropdown.active .dropdown-item i,
    .products-dropdown.active .dropdown-item i {
        color: #ff5e0e !important;
        font-size: 1rem !important;
        min-width: 20px;
    }

    /* Fix hover states */
    .services-dropdown.active .dropdown-item:hover,
    .products-dropdown.active .dropdown-item:hover {
        background: #f8f8f8 !important;
        border-color: #ff5e0e !important;
        transform: translateY(-2px);
    }

    .services-dropdown.active .dropdown-item:hover span,
    .products-dropdown.active .dropdown-item:hover span {
        color: #ff5e0e !important;
    }

    /* Adjust dropdown animation */
    @keyframes fadeInFromLeft {
        from {
            opacity: 0;
            transform: translate(-70%, -50%);
        }

        to {
            opacity: 1;
            transform: translate(-40%, -50%);
        }
    }

    /* Better spacing for nav items */
    .nav-item {
        margin: 0.8rem 0 !important;
    }

    /* Ensure dropdowns don't go off screen */
    .services-dropdown.active .dropdown-container,
    .products-dropdown.active .dropdown-container {
        animation: fadeInFromLeft 0.3s ease-out;
        transform: translate(-40%, -50%) !important;
    }

    /* Fix for very small tablets (768px - 850px) */
    @media (max-width: 850px) {
        .nav-menu {
            width: 85% !important;
            max-width: 450px !important;
        }

        .services-dropdown.active .dropdown-container {
            left: 0% !important;
            width: 45% !important;
            top: 45% !important;
            transform: translate(-50%, -50%) !important;
        }

        .products-dropdown.active .dropdown-container {
            left: 0% !important;
            width: 30% !important;
            top: 25% !important;
            transform: translate(-50%, -50%) !important;
        }

        /* Ensure text is visible on very small tablets */
        .services-dropdown.active .dropdown-item span,
        .products-dropdown.active .dropdown-item span {
            font-size: 0.75rem !important;
        }
    }
}


/* LETS TALK MODEL  */

/* Modal Styles */
.lets-talk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lets-talk-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-container {
    position: relative;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 2rem;
}

.lets-talk-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 3;
}

.modal-close-btn:hover {
    color: #ff5e0e;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #f9f9f9;
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5e0e;
    background-color: white;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #ff5e0e;
    background-color: white;
}

.submit-btn {
    background-color: #ff5e0e;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #e0550c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 14, 0.3);
}


.lets-talk-style {
    position: relative;

}

.lets-talk-sleeping,
.lets-talk-awake {
    position: absolute;
    top: -48px;
    right: -0px;
    width: 50px;
    height: 50px;

    img {
        width: 100%;
        height: auto;
    }
}

.lets-talk-awake {
    display: none;
}

.lets-talk-style:hover .lets-talk-sleeping {
    display: none;
}

.lets-talk-style:hover .lets-talk-awake {
    display: block;
}


/* Mobile Specific Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-group label {
        top: 0.8rem;
        left: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 1.2rem;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .contact-form {
        gap: 1rem;
    }
}














/* ----------------------------------------------------------------------hero section */
.hero-section {
    background-image: url("/asstes/Images/marketing\ solution/marketinghero.webp");
    background-size: cover;
    background-position: center;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

/* Logo Only Version */
.hero-logo-only {
    margin-bottom: 1.5rem;
}

.hero-logo-main {
    height: 200px;
    width: auto;
    transition: all 0.3s ease;
}

.hero-logo-main:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-btn {
    background: transparent;
    color: white;
    padding: 0.9rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ff5e0e;
    border-radius: 0.5rem;
}

.hero-btn:hover {
    background-color: #ff5e0e;
    color: white;
    border: 2px solid #ff5e0e;
    transform: translateY(-2px);
}

.mobile-break {
    display: inline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }

    .hero-section {
        min-height: 500px;
        max-height: 800px;
        height: fit-content;
    }

    .hero-logo-main {
        height: 150px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo-main {
        height: 120px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}










/*------------------------------------- FOOTER */
.desktop-social {
    display: flex;
}

.mobile-social {
    display: none;
}

/* Active footer link styles */
.active-footer-link {
    color: #ff5e0e !important;
    font-weight: 600;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.1s ease;
    display: block;
}

.footer-link:hover {
    color: #ff5e0e;
}

.mobile-social .footer-socials {
    justify-content: center;
}

footer {
    background: #d5ded5;
    padding: 2rem 2rem 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-column {
    flex: 1 1 auto;
    min-width: 90px;
    padding: 0 0.5rem;
}

.footer-logo-column {
    flex: 1 1 250px;
    min-width: 20px;
}

/* Specific adjustments for Explore and Services columns */
.footer-column:nth-child(2) {
    flex: 0 1 90px;
    min-width: 90px;
}

.footer-column:nth-child(3) {
    flex: 0 1 100px;
    min-width: 100px;
}

.footer-column:nth-child(4) {
    flex: 0 1 160px;
    min-width: 160px;
}

/* Contact column should take remaining space */
.footer-column:last-child {
    flex: 1 1 250px;
}

.footer-logo-column img {
    max-width: 120px;
    margin-bottom: -0.5rem;
    margin-top: -2rem;
    transform: scale(1.8);
    margin-left: 10%;
}

.footer-logo-column p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-logo-column button {
    background-color: #ff5e0e;
    color: white;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ff5e0e;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: block;
    width: 100%;
    max-width: 200px;
}

.footer-logo-column button:hover {
    background-color: transparent;
    color: #ff5e0e;
}

.client-btn-with-icon {
    position: relative;
}

.client-btn-with-icon .client-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.footer-column h3 {
    color: #ff5e0e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-column li:hover {
    color: #ff5e0e;
}

/* CONTACT SECTION STYLES */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.contact-icon {
    color: #ff5e0e;
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-right: 5px;
    flex-shrink: 0;
    line-height: 1.5;
}

.contact-items {
    display: flex;
    align-items: center;
    line-height: 1.5;
    flex-wrap: nowrap;
}

.contact-item {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 24px;
}

.contact-line .contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contact-line .contact-item i {
    align-self: center;
    margin-top: 0;
}

.contact-item i {
    align-self: center;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.contact-separator {
    color: #999;
    padding: 0 0.5rem;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    line-height: 1;
}

.address-item {
    display: flex;
    margin-bottom: 0.8rem;
}

.address-item i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    align-self: flex-start;
}

.contact-line i {
    color: #ff5e0e;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
    min-width: 20px;
    text-align: center;
    align-self: flex-start;
}

.address-text {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* SOCIAL MEDIA STYLES */
.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: #ff5e0e;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ff5e0e;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: #ff5e0e;
    color: white;
}

/* COPYRIGHT SECTION */
.footer-copyright-section {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hide mobile copyright by default */
.mobile-copyright {
    display: none;
}

/* Desktop Copyright */
.desktop-copyright {
    display: block;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-color);
}

.footer-copyright span {
    color: #ff5e0e;
    font-weight: 600;
    cursor: pointer;
}

/* GO TO TOP BUTTON */
#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #006400;
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#goToTopBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: white;
    color: #006400;
}

/* Phone number links styling */
.contact-text {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover,
.call-link:hover,
.email-link:hover {
    color: #ff5e0e;
    text-decoration: none;
}

/* Show/hide phone versions based on device */
.desktop-phone {
    display: block;
}

.mobile-phone {
    display: none;
}

/* Email links specific styling */
.email-link:hover {
    color: #ff5e0e;
}

/* =============================================
   NEW QUERY: 1100px to 1201px - HIDE PRODUCTS COLUMN
   ============================================= */
@media (min-width: 1100px) and (max-width: 1201px) {

    /* Hide Products column (third column) */
    .footer-column:nth-child(3) {
        display: none;
    }

    /* Adjust remaining columns to fill space */
    .footer-main-row {
        justify-content: flex-start;
    }

    .footer-column:nth-child(2) {
        flex: 0 1 100px;
    }

    .footer-column:nth-child(4) {
        flex: 0 1 180px;
    }

    .footer-column:last-child {
        flex: 1 1 300px;
    }
}

/* =============================================
   TABLET VIEW (768px to 992px) - COMPLETELY FIXED
   ============================================= */
@media (min-width: 768px) and (max-width: 992px) {

    /* Hide desktop elements */
    .desktop-copyright,
    .desktop-social,
    .mobile-none {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    .mobile-social {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    /* General Footer Styles */
    footer {
        padding: 1.5rem 2rem 0;
    }

    /* Show separators in tablet view */
    .contact-separator {
        display: inline-block !important;
        color: #999;
        padding: 0 0.5rem;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        padding: 0;
        text-align: center;
        flex: 1 1 100% !important;
        min-width: 100%;
    }

    /* Logo Column */
    .footer-logo-column img {
        margin: -30px auto -10px;
        max-width: 150px;
        transform: scale(1.8);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 15%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .footer-logo-column button {
        margin: 1rem auto;
        max-width: 200px;
    }

    /* Hide Products and other desktop columns */
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        display: none;
    }

    /* Contact Section - Tablet View */
    .footer-column:last-child h3 {
        display: none;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        padding: 0 15%;
        max-width: 700px;
        margin: 0 auto;
        align-items: center;
    }

    /* Address Section */
    .address-line {
        display: flex;
        align-items: flex-start;
        text-align: left;
        max-width: 550px;
        margin: 0 auto;
    }

    .address-line i {
        color: #ff5e0e;
        font-size: 0.9rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .address-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* ===== CRITICAL FIX: Phone Numbers in SAME ROW ===== */
    .phone-line {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .phone-line .contact-items {
        display: flex !important;
        flex-direction: row !important;
        /* Force row */
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        flex-wrap: wrap;
    }

    .phone-line .contact-item {
        display: inline-flex !important;
        align-items: center;
        gap: 0.3rem;
        white-space: nowrap;
    }

    .phone-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
    }

    /* ===== CRITICAL FIX: Emails in SAME ROW ===== */
    .email-line {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .email-line .contact-items {
        display: flex !important;
        flex-direction: row !important;
        /* Force row */
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        flex-wrap: wrap;
    }

    .email-line .contact-item {
        display: inline-flex !important;
        align-items: center;
        gap: 0.3rem;
        white-space: nowrap;
    }

    .email-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
    }

    /* Mobile Social Icons */
    .footer-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 94, 14, 0.1);
        color: #ff5e0e;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background: #ff5e0e;
        color: white;
    }

    /* Keep the button in logo column */
    .footer-logo-column button {
        display: block !important;
    }

    /* Move social icons below contact details */
    .footer-social-wrapper {
        order: 1;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }

    /* Hide desktop social icons */
    .desktop-social {
        display: none !important;
    }

    /* Copyright Section - SAME ROW */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    .mobile-copyright .footer-copyright {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.3rem !important;
        font-size: 0.85rem !important;
        flex-wrap: wrap !important;
    }

    .mobile-copyright .footer-copyright br {
        display: none !important;
    }
}

/* Small adjustments for smaller tablets */
@media (min-width: 768px) and (max-width: 850px) {
    .footer-logo-column p {
        padding: 0 15%;
    }

    .contact-info {
        padding: 0 20%;
    }

    .phone-line .contact-items,
    .email-line .contact-items {
        flex-direction: row !important;
        /* Keep row but allow wrap */
    }

    .phone-line .contact-item,
    .email-line .contact-item {
        white-space: normal;
        /* Allow text to wrap if needed */
    }
}

/* =============================================
   MOBILE VIEW (below 768px) - ORIGINAL MOBILE STYLES
   ============================================= */
@media (max-width: 767px) {

    /* General Mobile Footer Styles */
    footer {
        padding: 1.5rem 1rem 0;
    }

    .contact-separator {
        display: none !important;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        padding: 0;
        text-align: center;
        flex: 1 1 100%;
    }

    /* Logo Column */
    .footer-logo-column img {
        margin: -30px auto -10px;
        max-width: 150px;
        transform: scale(1.8);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-logo-column p {
        text-align: center;
        padding: 0 10%;
    }

    .footer-logo-column button {
        margin: 1rem auto;
        max-width: 200px;
    }

    /* Hide desktop elements */
    .desktop-copyright,
    .desktop-social,
    .mobile-none {
        display: none !important;
    }

    /* Show mobile elements */
    .mobile-copyright {
        display: block;
        margin-top: 1.5rem;
    }

    /* Contact Section - Mobile View */
    .footer-column:last-child h3 {
        display: none;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0 10%;
        box-sizing: border-box;
        align-items: center;
    }

    /* Address Section */
    .address-line {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }

    .address-line i {
        color: #ff5e0e;
        font-size: 0.9rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .address-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Phone Numbers Section */
    .phone-line .contact-items {
        display: flex;
        flex-direction: column;
    }

    .phone-line .contact-item {
        display: flex;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .phone-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Email Section */
    .email-line .contact-items {
        display: flex;
        flex-direction: column;
    }

    .email-line .contact-item {
        display: flex;
        align-items: center;
        gap: 0;
        text-align: left;
    }

    .email-line .contact-item i {
        color: #ff5e0e;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Mobile Social Icons */
    .mobile-social {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 94, 14, 0.1);
        color: #ff5e0e;
        transition: all 0.3s ease;
    }

    .footer-socials a:hover {
        background: #ff5e0e;
        color: white;
    }

    /* Keep the button in logo column */
    .footer-logo-column button {
        display: block !important;
    }

    /* Move social icons below contact details */
    .footer-social-wrapper {
        order: 1;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }

    /* Hide desktop social icons */
    .desktop-social {
        display: none !important;
    }

    /* Adjust contact info spacing */
    .contact-info {
        gap: 1.2rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    footer {
        padding: 1rem 0.5rem 0;
    }

    .footer-logo-column p,
    .address-text,
    .contact-item {
        font-size: 0.85rem;
    }

    .contact-info {
        padding: 0 5%;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .desktop-phone {
        display: none !important;
    }

    .mobile-phone {
        display: block;
    }
}









/* Toast Styles */
/* Toast Styles */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 100%;
}

.toast {
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.3s forwards;
    text-align: center;
    /* Center text */
    word-break: break-word;
    /* Wrap long words */
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile view: full width toast */
@media (max-width: 600px) {
    .toast-container {
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 10px;
    }

    .toast {
        width: 100%;
        box-sizing: border-box;
    }
}





.btn-loader {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


#whatsappBtn {
    position: fixed;
    bottom: 80px;
    /* Above the go-to-top button */
    right: 20px;
    background-color: #006400;
    /* WhatsApp green */
    color: white;
    /* White icon by default */
    border: 2px solid #006400;
    /* Green border (for smooth hover transition) */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    /* Bigger icon */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

#whatsappBtn:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: transparent !important;
    /* White bg on hover */
    color: #25D366 !important;
    /* Green icon on hover */
    border-color: #25D366;
    /* Keep border green */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #whatsappBtn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        /* Slightly smaller on mobile */
        bottom: 80px;
    }
}






/* =============================================
   SECTION 1: PRODUCT CORE SECTION - BASE STYLES
   ============================================= */
.product-core-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Inter', sans-serif;
}

.product-core-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-hero-content {
    flex: 1;
}

.product-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-mockup img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-mockup img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.product-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    /* Reduced from 2.5rem */
    line-height: 1.6;
    font-weight: 500;
    max-width: 90%;
    text-align: justify;
}

/* NEW: Features Grid Styles */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 0;
}

.feature-item i {
    color: #006400;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.4;
}

.product-demo-btn {
    background: #006400;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 100, 0, 0.3);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.product-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.product-demo-btn:hover::before {
    left: 100%;
}

.product-demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 100, 0, 0.4);
    background: #008000;
}

/* =============================================
   SECTION 1: PRODUCT CORE - RESPONSIVE STYLES
   ============================================= */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .product-core-section {
        padding: 5rem 2rem;
    }

    .product-core-section .container {
        max-width: 1200px;
        gap: 4rem;
    }

    .product-heading {
        font-size: 2.5rem;
    }

    .product-tagline {
        font-size: 1.25rem;
        max-width: 90%;
    }

    .product-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

/* Desktop & Laptop (993px to 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .product-core-section {
        padding: 4rem 2rem;
    }

    .product-core-section .container {
        gap: 3rem;
    }

    .product-heading {
        font-size: 2.3rem;
    }

    .product-tagline {
        font-size: 1.2rem;
    }

    .product-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-bottom: 1.8rem;
    }

    .product-demo-btn {
        padding: 1.1rem 2.8rem;
        font-size: 1.15rem;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .product-core-section {
        padding: 3.5rem 2rem;
    }

    .product-core-section .container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .product-mockup {
        order: -1;
    }

    .product-mockup img {
        max-width: 80%;
    }

    .product-heading {
        font-size: 2.2rem;
    }

    .product-tagline {
        font-size: 1.15rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* Tablet: 3 columns grid */
    .product-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: center;
        padding: 0.5rem;
    }

    .product-demo-btn {
        padding: 1rem 2.6rem;
        font-size: 1.1rem;
    }
}

/* =============================================
   SECTION 1: PRODUCT CORE - UPDATED MOBILE STYLES (2 COLUMNS)
   ============================================= */

/* Mobile Large (576px to 767px) - 2 COLUMNS */
@media (min-width: 576px) and (max-width: 767px) {
    .product-core-section {
        padding: 3rem 2rem;
    }

    .product-core-section .container {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .product-mockup {
        order: -1;
    }

    .product-mockup img {
        max-width: 90%;
    }

    .product-heading {
        font-size: 2rem;
    }

    .product-tagline {
        font-size: 1.1rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* Mobile: 2 columns grid */
    .product-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        gap: 1rem 1.5rem;
        margin-bottom: 2rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: flex-start;
        padding: 0.3rem 0;
    }

    .product-demo-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        display: inline-block;
    }
}

/* Mobile Small (480px to 575px) - 2 COLUMNS */
@media (min-width: 481px) and (max-width: 575px) {
    .product-core-section {
        padding: 2.5rem 2rem;
    }

    .product-core-section .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .product-mockup {
        order: -1;
    }

    .product-mockup img {
        max-width: 100%;
    }

    .product-heading {
        font-size: 1.9rem;
    }

    .product-tagline {
        font-size: 1.05rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* Mobile: 2 columns grid */
    .product-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        gap: 0.8rem 1rem;
        margin-bottom: 1.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: flex-start;
        padding: 0.2rem 0;
    }

    .product-demo-btn {
        padding: 0.95rem 2.2rem;
        font-size: 1.05rem;
    }
}

/* Product Core - Extra Small Mobile (below 480px) - 2 COLUMNS */
@media (max-width: 480px) {
    .product-core-section {
        padding: 2rem 2rem;
    }

    .product-core-section .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .product-mockup {
        order: -1;
    }

    .product-heading {
        font-size: 1.8rem;
    }

    .product-tagline {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1.2rem;
    }

    /* Mobile: 2 columns grid */
    .product-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        gap: 0.8rem 0.8rem;
        margin-bottom: 1.5rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        justify-content: flex-start;
        gap: 0.4rem;
    }

    .feature-item i {
        font-size: 0.9rem;
        width: 20px;
    }

    .feature-item span {
        font-size: 0.9rem;
        white-space: nowrap;
        /* Prevents text wrapping */
    }

    .product-demo-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Even smaller devices - if text wraps */
@media (max-width: 360px) {
    .feature-item span {
        font-size: 0.85rem;
        white-space: normal;
        /* Allow wrapping if needed */
    }

    .product-features-grid {
        gap: 0.6rem;
    }
}

/* =============================================
   SECTION 2: INDUSTRIES SLIDER - BASE STYLES
   ============================================= */
.industries-slider-section {
    padding: 5rem 2rem;
    background: white;
    font-family: 'Inter', sans-serif;
}

.industries-slider-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #006400;
    border-radius: 2px;
}

/* Slider Container */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.industries-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding: 1rem 0.5rem;
}

/* Industry Cards */
.industry-card {
    flex: 0 0 calc((100% - (3 * 2rem)) / 4);
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #006400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #006400;
}

.industry-card i {
    font-size: 3rem;
    color: #006400;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover i {
    transform: scale(1.1);
    color: #008000;
}

.industry-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.industry-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Slider Arrows */
.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #006400;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 100, 0, 0.3);
    z-index: 10;
}

.slider-arrow:hover {
    background: #008000;
    transform: scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #006400;
    transform: scale(1.2);
}

/* =============================================
   SECTION 2: INDUSTRIES SLIDER - RESPONSIVE STYLES (SEPARATE)
   ============================================= */

/* Industries Slider - Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .industries-slider-section {
        padding: 5rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .industry-card {
        flex: 0 0 calc((100% - (3 * 2rem)) / 4);
        padding: 2.5rem 1.5rem;
    }

    .industry-card i {
        font-size: 3rem;
    }

    .industry-card h4 {
        font-size: 1.4rem;
    }
}

/* Industries Slider - Desktop & Laptop (993px to 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .industries-slider-section {
        padding: 4rem 2rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .industry-card {
        flex: 0 0 calc((100% - (3 * 2rem)) / 4);
        padding: 2.2rem 1.3rem;
    }

    .industry-card i {
        font-size: 2.8rem;
    }

    .industry-card h4 {
        font-size: 1.3rem;
    }
}

/* Industries Slider - Tablet (768px to 992px) - SHOW 3 CARDS */
@media (min-width: 768px) and (max-width: 992px) {
    .industries-slider-section {
        padding: 3.5rem 2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .industry-card {
        flex: 0 0 calc((100% - (2 * 2rem)) / 3);
        /* 3 cards with gap */
        padding: 2rem 1.2rem;
    }

    .industry-card i {
        font-size: 2.6rem;
        margin-bottom: 1.2rem;
    }

    .industry-card h4 {
        font-size: 1.25rem;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }
}

/* Industries Slider - Mobile (576px to 767px) - SHOW 2 CARDS */
@media (min-width: 576px) and (max-width: 767px) {
    .industries-slider-section {
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .industry-card {
        flex: 0 0 calc((100% - (1 * 2rem)) / 2);
        /* 2 cards with gap */
        padding: 1.8rem 1rem;
    }

    .industry-card i {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .industry-card h4 {
        font-size: 1.2rem;
    }

    .industry-card p {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }
}

/* Industries Slider - Small Mobile (481px to 575px) - SHOW 1 CARD */
@media (min-width: 481px) and (max-width: 575px) {
    .industries-slider-section {
        padding: 2.5rem 2rem;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .industry-card {
        flex: 0 0 calc((100% - (0 * 2rem)) / 1);
        /* 1 card */
        padding: 1.8rem 1rem;
    }

    .industry-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .industry-card h4 {
        font-size: 1.3rem;
    }

    .slider-arrow {
        width: 34px;
        height: 34px;
    }

    .slider-container {
        gap: 0.5rem;
    }
}

/* Industries Slider - Extra Small Mobile (below 480px) - SHOW 1 CARD */
@media (max-width: 480px) {
    .industries-slider-section {
        padding: 2rem 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    .industry-card {
        flex: 0 0 100%;
        /* 1 card full width */
        padding: 1.5rem 0.4rem;
    }

    .industry-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .industry-card h4 {
        font-size: 1.2rem;
    }

    .industry-card p {
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .slider-container {
        gap: 0.3rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}




/*********************************************** PRODUCT DEMO VIDEO SECTION 2 */
.demo-video-section-2 {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
}

.demo-video-section-2 .container-2 {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-video-section-2 h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.demo-video-section-2 p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container-2 {
    max-width: 70%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.video-container-2 video {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Controls 2 */
.custom-controls-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-container-2:hover .custom-controls-2 {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.play-pause-btn-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 100, 0, 0.9);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.play-pause-btn-2:hover {
    background: #006400;
    transform: scale(1.1);
}

/* Hide default controls */
.video-container-2 video::-webkit-media-controls {
    display: none !important;
}

.video-container-2 video::-webkit-media-controls-panel {
    display: none !important;
}

.video-container-2 video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-container-2 video::-webkit-media-controls-start-playback-button {
    display: none !important;
}










/* =============================================
   WHY CHOOSE US SECTION - WITH HOVER STYLES
   ============================================= */
.why-choose-section {
    padding: 5rem 2rem;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.why-choose-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #006400;
    border-radius: 2px;
}

/* Points Grid - 2 columns on desktop */
.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Points Column */
.points-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Individual Point Item - WITH HOVER EFFECTS */
.point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid transparent;
}

/* Subtle hover effect - light background and border */
.point-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Icon Styling - with hover effect */
.point-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #006400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 100, 0, 0.2);
}

.point-item:hover .point-icon {
    background: #008000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 100, 0, 0.3);
}

.point-icon i {
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.point-item:hover .point-icon i {
    transform: scale(1.1);
}

/* Point Text - with hover color change */
.point-text {
    font-size: 1.1rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.point-item:hover .point-text {
    color: #006400;
    font-weight: 600;
}

/* =============================================
   RESPONSIVE STYLES - COMPLETELY SEPARATE
   ============================================= */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .why-choose-section {
        padding: 5rem 2rem;
    }

    .why-choose-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .points-grid {
        gap: 3rem;
        max-width: 1000px;
    }

    .point-item {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }

    .point-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .point-icon i {
        font-size: 1.2rem;
    }

    .point-text {
        font-size: 1.1rem;
    }
}

/* Desktop & Laptop (993px to 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .why-choose-section {
        padding: 4rem 2rem;
    }

    .why-choose-section h2 {
        font-size: 2.3rem;
        margin-bottom: 2.8rem;
    }

    .points-grid {
        gap: 2.5rem;
        max-width: 900px;
    }

    .point-item {
        padding: 0.7rem 0.9rem;
        gap: 0.9rem;
    }

    .point-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .point-icon i {
        font-size: 1.15rem;
    }

    .point-text {
        font-size: 1.05rem;
    }
}

/* Tablet (768px to 992px) - SINGLE COLUMN */
@media (min-width: 768px) and (max-width: 992px) {
    .why-choose-section {
        padding: 3.5rem 2rem;
    }

    .why-choose-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .why-choose-section h2::after {
        width: 70px;
        height: 4px;
        bottom: -12px;
    }

    /* Single column on tablet */
    .points-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .points-column {
        gap: 1rem;
    }

    .point-item {
        padding: 0.7rem 0.9rem;
        gap: 0.9rem;
    }

    .point-item:hover {
        transform: translateX(3px);
    }

    .point-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .point-icon i {
        font-size: 1.1rem;
    }

    .point-text {
        font-size: 1.05rem;
    }
}

/* Mobile Large (576px to 767px) - SINGLE COLUMN */
@media (min-width: 576px) and (max-width: 767px) {
    .why-choose-section {
        padding: 3rem 2rem;
    }

    .why-choose-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .why-choose-section h2::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    /* Single column on mobile */
    .points-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 500px;
    }

    .points-column {
        gap: 0.9rem;
    }

    .point-item {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
    }

    .point-item:hover {
        transform: translateX(3px);
    }

    .point-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .point-icon i {
        font-size: 1rem;
    }

    .point-text {
        font-size: 1rem;
    }
}

/* Mobile Small (481px to 575px) - SINGLE COLUMN */
@media (min-width: 481px) and (max-width: 575px) {
    .why-choose-section {
        padding: 2.5rem 2rem;
    }

    .why-choose-section h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .why-choose-section h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    /* Single column on mobile */
    .points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .points-column {
        gap: 0.8rem;
    }

    .point-item {
        padding: 0.5rem 0.7rem;
        gap: 0.7rem;
    }

    .point-item:hover {
        transform: translateX(3px);
    }

    .point-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .point-icon i {
        font-size: 0.95rem;
    }

    .point-text {
        font-size: 0.95rem;
    }
}

/* Mobile Extra Small (below 480px) - SINGLE COLUMN */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 2rem 2rem;
    }

    .why-choose-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .why-choose-section h2::after {
        width: 45px;
        height: 3px;
        bottom: -8px;
    }

    /* Single column on mobile */
    .points-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 350px;
    }

    .points-column {
        gap: 0.7rem;
    }

    .point-item {
        padding: 0.5rem 0.6rem;
        gap: 0.6rem;
    }

    .point-item:hover {
        transform: translateX(3px);
    }

    .point-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .point-icon i {
        font-size: 0.9rem;
    }

    .point-text {
        font-size: 0.9rem;
    }
}



/************************************************ ABOUT TH CORE SECTION */
.about-thcore-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-thcore-section .container-2 {
    max-width: 1000px;
    margin: 0 auto;
}

.about-thcore-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 100, 0, 0.1);
    border: 1px solid #e8f5e8;
    position: relative;
    overflow: hidden;
}

.about-thcore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #006400, #00a000, #006400);
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #006400, #00a000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 100, 0, 0.2);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.card-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.main-statement {
    margin-bottom: 2.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9f0, #e8f5e8);
    border-left: 4px solid #006400;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.highlight-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #006400;
    opacity: 0.2;
    font-family: serif;
    display: none;
}

.highlight-box p {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.highlight-text {
    color: #006400;
    font-weight: 700;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, #e8f5e8 50%);
    background-size: 220% 100%;
    background-position: 100% 0;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.block-icon {
    width: 50px;
    height: 50px;
    background: #f0f9f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e8f5e8;
}

.block-icon i {
    font-size: 1.2rem;
    color: #006400;
}

.content-block p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    text-align: justify;
}

.card-visual {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.visual-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.track-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.track-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.1);
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
}

.track-item:hover .track-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 100, 0, 0.15);
    border-color: #006400;
}

.track-icon i {
    font-size: 1.8rem;
    color: #006400;
}

.track-item span {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.track-arrow {
    color: #006400;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Tablet Responsive (no changes needed) */
@media (min-width: 769px) and (max-width: 992px) {
    .about-thcore-section {
        padding: 4rem 2rem;
    }

    .about-thcore-card {
        padding: 2.5rem;
    }

    .card-header h2 {
        font-size: 2.3rem;
    }

    .highlight-box p {
        font-size: 1.2rem;
    }
}

/* Mobile Responsive - UPDATED with even heights */
@media (max-width: 768px) {
    .about-thcore-section {
        padding: 3rem 2rem;
    }

    .about-thcore-card {
        padding: 2rem 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 2rem;
    }

    .card-header h2 {
        font-size: 2rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-box p {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* HIDE ICONS in mobile view */
    .content-block .block-icon {
        display: none;
    }

    /* Adjust text to full width without icon */
    .content-block p {
        width: 100%;
        font-size: 1rem;
    }

    /* Make bottom track in SINGLE ROW with smaller icons */
    .card-visual {
        padding: 1.5rem 0.5rem;
        overflow-x: auto;
    }

    .visual-track {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        min-width: min-content;
        padding: 0.5rem 0;
        align-items: stretch;
        /* Make all items stretch to same height */
    }

    /* Fix uneven height issue */
    .track-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        min-height: 85px;
        /* Fixed minimum height */
        justify-content: flex-start;
        /* Align from top */
    }

    /* For 2-line text items */
    .track-item:first-child span,
    .track-item:last-child span {
        min-height: 2.4rem;
        /* Fixed height for 2 lines */
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }

    /* For 1-line text item (middle one) */
    .track-item:nth-child(3) span {
        min-height: 2.4rem;
        /* Same height as others */
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
        /* Add invisible second line to match height */
        position: relative;
    }

    /* Create pseudo-element to add invisible second line */
    .track-item:nth-child(3) span::after {
        content: "";
        display: block;
        height: 0;
        visibility: hidden;
    }

    .track-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        /* Prevent icon from shrinking */
    }

    .track-icon i {
        font-size: 1.2rem;
    }

    .track-item span {
        font-size: 0.75rem;
        text-align: center;
        max-width: 80px;
        line-height: 1.3;
        font-weight: 600;
        /* Ensure consistent height */
        height: 2.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .track-arrow {
        font-size: 1rem;
        transform: none;
        align-self: center;
        /* Center arrows vertically */
        margin: 0 0.2rem;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .about-thcore-section {
        padding: 2rem 1.5rem;
    }

    .about-thcore-card {
        padding: 1.5rem 1rem;
    }

    .card-header h2 {
        font-size: 1.8rem;
    }

    .highlight-box p {
        font-size: 1rem;
    }

    .content-block p {
        font-size: 0.95rem;
    }

    .visual-track {
        gap: 0.3rem;
    }

    .track-icon {
        width: 40px;
        height: 40px;
    }

    .track-icon i {
        font-size: 1rem;
    }

    .track-item {
        min-height: 80px;
    }

    .track-item span {
        font-size: 0.7rem;
        max-width: 70px;
        height: 2.2rem;
    }

    .track-arrow {
        font-size: 0.9rem;
        margin: 0 0.1rem;
    }
}


/* =============================================
   MANUFACTURING NEEDS SECTION - UPDATED WHITE BG
   ============================================= */
.manufacturing-needs-section {
    padding: 5rem 2rem;
    background: #ffffff;
    /* Pure white background */
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.manufacturing-needs-section .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Card - White with subtle border and shadow */
.needs-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Top gradient line - kept for visual interest */
.needs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #006400, #00a000, #008000, #006400);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

/* Heading */
.card-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    /* Dark color for white bg */
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* Heading underline */
.card-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: #006400;
    border-radius: 3px;
}

/* Lead text - updated for white bg */
.lead-text {
    font-size: 1.4rem;
    color: #006400;
    /* Green for white bg */
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Block - updated for white bg */
.cta-block {
    background: #f8fafc;
    /* Light gray for white bg */
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

/* CTA Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #006400;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.15);
    position: relative;
    z-index: 1;
}

.cta-badge i {
    font-size: 1.2rem;
}

/* CTA Description */
.cta-description {
    font-size: 1.3rem;
    color: #334155;
    /* Darker for white bg */
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlight text */
.highlight {
    color: #006400;
    font-weight: 800;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, #e8f5e8 50%);
    background-size: 220% 100%;
    background-position: 100% 0;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.cta-description:hover .highlight {
    background-position: 0 0;
}

/* CTA Button */
.cta-btn {
    background: #006400;
    color: white;
    border: none;
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 100, 0, 0.2);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 100, 0, 0.3);
    background: #008000;
}

/* =============================================
   RESPONSIVE STYLES - COMPLETELY SEPARATE
   ============================================= */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .manufacturing-needs-section {
        padding: 5rem 2rem;
    }

    .needs-card {
        padding: 4rem 3rem;
    }

    .card-content h2 {
        font-size: 2.8rem;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .cta-block {
        padding: 3rem 2rem;
    }

    .cta-btn {
        padding: 1.3rem 3.5rem;
        font-size: 1.3rem;
    }
}

/* Desktop & Laptop (993px to 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .manufacturing-needs-section {
        padding: 4rem 2rem;
    }

    .needs-card {
        padding: 3.5rem 2.5rem;
    }

    .card-content h2 {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.3rem;
    }

    .cta-block {
        padding: 2.8rem 2rem;
    }

    .cta-description {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 1.2rem 3rem;
        font-size: 1.25rem;
    }
}

/* Tablet (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .manufacturing-needs-section {
        padding: 3.5rem 2rem;
    }

    .needs-card {
        padding: 3rem 2rem;
    }

    .card-content h2 {
        font-size: 2.2rem;
    }

    .card-content h2::after {
        width: 70px;
        height: 4px;
        bottom: -12px;
    }

    .lead-text {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .cta-block {
        padding: 2.5rem 1.8rem;
    }

    .cta-badge {
        font-size: 1rem;
        padding: 0.7rem 1.3rem;
    }

    .cta-description {
        font-size: 1.15rem;
    }

    .cta-btn {
        padding: 1.1rem 2.8rem;
        font-size: 1.2rem;
    }
}

/* Mobile Large (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .manufacturing-needs-section {
        padding: 3rem 2rem;
    }

    .needs-card {
        padding: 2.5rem 1.5rem;
    }

    .card-content h2 {
        font-size: 2rem;
    }

    .card-content h2::after {
        width: 60px;
        height: 4px;
        bottom: -10px;
    }

    .lead-text {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .cta-block {
        padding: 2rem 1.5rem;
    }

    .cta-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1.15rem;
    }
}

/* Mobile Small (481px to 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .manufacturing-needs-section {
        padding: 2.5rem 2rem;
    }

    .needs-card {
        padding: 2rem 1.2rem;
    }

    .card-content h2 {
        font-size: 1.9rem;
    }

    .card-content h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    .lead-text {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }

    .cta-block {
        padding: 1.8rem 1.2rem;
    }

    .cta-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .cta-badge i {
        font-size: 1rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

/* Mobile Extra Small (below 480px) */
@media (max-width: 480px) {
    .manufacturing-needs-section {
        padding: 2rem 1.5rem;
    }

    .needs-card {
        padding: 1.8rem 1rem;
    }

    .card-content h2 {
        font-size: 1.8rem;
    }

    .card-content h2::after {
        width: 45px;
        height: 3px;
        bottom: -8px;
    }

    .lead-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-block {
        padding: 1.5rem 1rem;
    }

    .cta-badge {
        font-size: 0.85rem;
        padding: 0.5rem 0.9rem;
    }

    .cta-badge i {
        font-size: 0.9rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
}




/* =============================================
   TESTIMONIALS SECTION - UPDATED WITH SLIDER
   ============================================= */
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #006400;
    border-radius: 2px;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container */
.testimonials-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

/* Testimonial Cards - Base Styles */
.testimonial-card {
    flex: 0 0 calc((100% - (2 * 2rem)) / 3);
    /* 3 cards by default */
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 100, 0, 0.1);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #006400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 100, 0, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: #e8f5e8;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: #006400;
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #006400, #00a000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-role {
    color: #006400;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author-company {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Slider Arrows */
.testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #006400;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: #008000;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 100, 0, 0.4);
}

/* Slider Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #006400;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 100, 0, 0.3);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Desktop Large (1200px and above) - 3 CARDS GRID (NO SLIDER) */
@media (min-width: 1200px) {
    .testimonials-section {
        padding: 5rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    /* Hide slider arrows and dots on desktop */
    .testimonial-arrow,
    .testimonial-dots {
        display: none;
    }

    /* Make it a grid instead of slider */
    .testimonials-slider {
        overflow: visible;
    }

    .testimonials-track {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transform: none !important;
    }

    .testimonial-card {
        flex: none;
        width: 100%;
    }
}

/* Desktop & Laptop (993px to 1199px) - 3 CARDS GRID (NO SLIDER) */
@media (min-width: 993px) and (max-width: 1199px) {
    .testimonials-section {
        padding: 4rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 2.3rem;
    }

    /* Hide slider arrows and dots */
    .testimonial-arrow,
    .testimonial-dots {
        display: none;
    }

    /* Make it a grid instead of slider */
    .testimonials-slider {
        overflow: visible;
    }

    .testimonials-track {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        transform: none !important;
    }

    .testimonial-card {
        flex: none;
        width: 100%;
        padding: 2.2rem;
    }
}

/* Tablet (768px to 992px) - SLIDER WITH 2 CARDS */
@media (min-width: 768px) and (max-width: 992px) {
    .testimonials-section {
        padding: 3.5rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 2.2rem;
    }

    /* Show slider arrows and dots */
    .testimonial-arrow,
    .testimonial-dots {
        display: flex;
    }

    .testimonials-track {
        display: flex;
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - (1 * 1.5rem)) / 2);
        /* Show 2 cards */
        padding: 2rem 1.8rem;
    }
}

/* Mobile (below 768px) - SLIDER WITH 1 CARD */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 3rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Hide arrows on mobile */
    .testimonial-arrow {
        display: none !important;
    }

    /* Show dots on mobile */
    .testimonial-dots {
        display: flex !important;
    }

    .testimonials-track {
        display: flex;
        gap: 1.5rem;
        /* Slightly larger gap */
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 1rem);
        /* Almost full width */
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    /* Increase text sizes */
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .author-role,
    .author-company {
        font-size: 0.95rem;
    }

    .testimonial-rating i {
        font-size: 1.2rem;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-header p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        /* Full width */
        padding: 1.8rem 1.5rem;
        margin: 0;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
    }

    .author-avatar i {
        font-size: 1.3rem;
    }

    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile (below 480px) - Even larger cards */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonials-header p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        /* Full width */
        padding: 1.8rem 1.5rem;
        margin: 0;
    }

    /* Even larger text for small mobile */
    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
    }

    .author-avatar i {
        font-size: 1.3rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 2rem;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}






/* =============================================
   SECTION 1: TRUSTED MANUFACTURERS - BASE STYLES
   ============================================= */
.trusted-manufacturers-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: 'Inter', sans-serif;
}

.trusted-manufacturers-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #006400;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Manufacturers Grid - 2 cards centered */
.manufacturers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.manufacturer-card {
    flex: 0 1 300px;
    text-align: center;
    transition: all 0.3s ease;
}

.manufacturer-card:hover {
    transform: translateY(-5px);
}

.logo-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.manufacturer-card:hover .logo-wrapper {
    border-color: #006400;
    box-shadow: 0 15px 40px rgba(0, 100, 0, 0.15);
    transform: scale(1.05);
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-content i {
    font-size: 3rem;
    color: #006400;
    transition: all 0.3s ease;
}

.manufacturer-card:hover .logo-content i {
    transform: scale(1.2);
    color: #00a000;
}

.logo-content span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.manufacturer-category {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border-radius: 20px;
    display: inline-block;
}

/* =============================================
   SECTION 1: TRUSTED MANUFACTURERS - RESPONSIVE STYLES (SEPARATE)
   ============================================= */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .trusted-manufacturers-section {
        padding: 5rem 2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.2rem;
    }

    .manufacturers-grid {
        gap: 3rem;
    }

    .manufacturer-card {
        flex: 0 1 300px;
    }

    .logo-wrapper {
        padding: 2.5rem 2rem;
    }

    .logo-content i {
        font-size: 3rem;
    }

    .logo-content span {
        font-size: 1.3rem;
    }
}

/* Desktop & Laptop (993px to 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .trusted-manufacturers-section {
        padding: 4rem 2rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .section-header p {
        font-size: 1.15rem;
    }

    .manufacturers-grid {
        gap: 2.5rem;
    }

    .manufacturer-card {
        flex: 0 1 280px;
    }

    .logo-wrapper {
        padding: 2.2rem 1.8rem;
    }

    .logo-content i {
        font-size: 2.8rem;
    }

    .logo-content span {
        font-size: 1.25rem;
    }
}

/* Tablet (768px to 992px) - 2 cards centered */
@media (min-width: 768px) and (max-width: 992px) {
    .trusted-manufacturers-section {
        padding: 3.5rem 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header h2::after {
        width: 60px;
        height: 4px;
        bottom: -10px;
    }

    .section-header p {
        font-size: 1.1rem;
        max-width: 500px;
    }

    .manufacturers-grid {
        gap: 2rem;
        max-width: 600px;
    }

    .manufacturer-card {
        flex: 0 1 250px;
    }

    .logo-wrapper {
        padding: 2rem 1.5rem;
    }

    .logo-content i {
        font-size: 2.5rem;
    }

    .logo-content span {
        font-size: 1.2rem;
    }

    .manufacturer-category {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }
}

/* Mobile Large (576px to 767px) - 1 card */
@media (min-width: 576px) and (max-width: 767px) {
    .trusted-manufacturers-section {
        padding: 3rem 2rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    .section-header p {
        font-size: 1.1rem;
        max-width: 450px;
    }

    .manufacturers-grid {
        flex-direction: column;
        gap: 2rem;
        max-width: 350px;
    }

    .manufacturer-card {
        flex: 0 1 auto;
        width: 100%;
    }

    .logo-wrapper {
        padding: 2rem 1.5rem;
    }

    .logo-content i {
        font-size: 2.5rem;
    }

    .logo-content span {
        font-size: 1.2rem;
    }
}

/* Mobile Small (481px to 575px) - 1 card */
@media (min-width: 481px) and (max-width: 575px) {
    .trusted-manufacturers-section {
        padding: 2.5rem 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-header h2::after {
        width: 45px;
        height: 3px;
        bottom: -8px;
    }

    .section-header p {
        font-size: 1rem;
        max-width: 100%;
    }

    .manufacturers-grid {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 320px;
    }

    .manufacturer-card {
        flex: 0 1 auto;
        width: 100%;
    }

    .logo-wrapper {
        padding: 1.8rem 1.2rem;
    }

    .logo-content i {
        font-size: 2.3rem;
    }

    .logo-content span {
        font-size: 1.15rem;
    }

    .manufacturer-category {
        font-size: 0.9rem;
    }
}

/* Mobile Extra Small (below 480px) - 1 card */
@media (max-width: 480px) {
    .trusted-manufacturers-section {
        padding: 2rem 2rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header h2::after {
        width: 40px;
        height: 3px;
        bottom: -6px;
    }

    .section-header p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .manufacturers-grid {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 280px;
    }

    .manufacturer-card {
        flex: 0 1 auto;
        width: 100%;
    }

    .logo-wrapper {
        padding: 1.5rem 1rem;
    }

    .logo-content i {
        font-size: 2rem;
    }

    .logo-content span {
        font-size: 1.1rem;
    }

    .manufacturer-category {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
}
.client-logo {
    width: 4rem;       
   height: 4rem; 
    object-fit: contain;  /* prevents stretching, keeps proportions */
    display: block;
    margin: 0 auto;
    transform: scale(2);
}




/* =============================================
   SECTION 2: MANUFACTURER STATS - BASE STYLES
   ============================================= */
.manufacturer-stats-section {
    padding: 5rem 2rem 5rem 2rem !important;
    font-family: 'Inter', sans-serif;
}

.manufacturer-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, #006400, #00a000);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* =============================================
   SECTION 2: MANUFACTURER STATS - RESPONSIVE STYLES (SEPARATE)
   ============================================= */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .manufacturer-stats-section {
        padding: 0 2rem 5rem 2rem;
    }

    .stats-grid {
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Desktop & Laptop (993px to 1199px) */
@media (min-width: 993px) and (max-width: 1199px) {
    .manufacturer-stats-section {
        padding: 0 2rem 4rem 2rem;
    }

    .stats-grid {
        gap: 1.8rem;
        padding: 2.8rem 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1.05rem;
    }
}

/* Tablet (768px to 992px) - SINGLE ROW (horizontal) */
@media (min-width: 768px) and (max-width: 992px) {
    .manufacturer-stats-section {
        padding: 0 2rem 4rem 2rem;
    }

    .stats-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 1rem;
        padding: 2.5rem 1.5rem;
    }

    .stat-box {
        flex: 1;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Mobile Large (576px to 767px) - COLUMN view */
@media (min-width: 576px) and (max-width: 767px) {
    .manufacturer-stats-section {
        padding: 0 2rem 3rem 2rem;
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }

    .stat-box {
        width: 100%;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Mobile Small (481px to 575px) - COLUMN view */
@media (min-width: 481px) and (max-width: 575px) {
    .manufacturer-stats-section {
        padding: 0 2rem 2.5rem 2rem;
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

/* Mobile Extra Small (below 480px) - COLUMN view */
@media (max-width: 480px) {
    .manufacturer-stats-section {
        padding: 0 2rem 2rem 2rem;
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.8rem 1rem;
    }

    .stat-box {
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}