/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0072C6;
    --secondary: #1E3A6C;
    --accent: #F8B739;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
}

body {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: 'var(--heading-font-font-family)';
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    font-size: large;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
}

.header-actions .social-link {
    color: var(--primary);
    font-size: 20px;
    transition: color 0.3s;
}

.header-actions .social-link:hover {
    color: var(--secondary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    color: var(--white);
    overflow: hidden;
}

/* Background image as <img> */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* Content stays above */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: #e6a328;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #0aa250;
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000000;
    transform: translateY(-2px);
    border-color: #00b44e;
}

/* Section Divider */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to right bottom, transparent 49%, var(--secondary) 50%);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background-color: var(--secondary);
    /* DARK BG */
    color: #ffffff;
    /* WHITE TEXT */
}

.info-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.info-text {
    flex: 1;
    font-size: large;
    text-align: justify;
}

.info-text p {
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.7;
    text-align: justify;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* about-page Section */
.about-page-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #020202;
}

.about-page-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-page-text {
    flex: 1;
    font-size: large;
    text-align: justify;
}

.about-page-text p {
    color: #000000;
    line-height: 1.5;
    text-align: justify;
}

@media (min-width: 993px) {
    .about-page-section .container {
        max-width: 50%;
        margin: 0 auto;
    }
}


/* Mobile & Tablet Responsive */
@media (max-width: 992px) {
    .info-content {
        flex-direction: column;
        /* stack vertically */
        text-align: center;
        /* optional */
    }

    /* Show image first */
    .info-image {
        order: -1;
        /* moves image ABOVE text */
    }

    .info-image img {
        height: 300px;
        /* smaller height for mobile */
    }

    .info-text {
        text-align: justify;
        font-size: 16px;
        margin-top: 20px;
    }

    .about-page-content {
        flex-direction: column;
        text-align: center;
    }

    .about-page-text {
        text-align: justify;
        font-size: 16px;
        margin-top: 20px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .info-image img {
        height: 220px;
    }

    .info-section {
        padding: 50px 0;
    }

    .about-page-section {
        padding: 50px 0;
    }
}


/* ABOUT Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
    /* WHITE BG */
    color: #000000;
    /* BLACK TEXT */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    font-size: large;
    text-align: justify;
}

.about-text h2 {
    font-size: 40px;
    color: #000000;
    /* BLACK HEADINGS */
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: #000000;
    /* BLACK TEXT */
    line-height: 1.7;
    text-align: justify;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Mobile & Tablet Responsive */
@media (max-width: 992px) {

    .about-content {
        flex-direction: column;
        /* stack vertically */
        text-align: center;
        /* optional – cleaner look */
    }

    /* Move image above text */
    .about-image {
        order: -1;
        /* puts image BEFORE the text */
    }

    .about-image img {
        height: 300px;
        /* reduce height for mobile */
    }

    .about-text {
        font-size: 16px;
        text-align: justify;
        margin-top: 20px;
    }

    .about-text h2 {
        text-align: center;
        font-size: 32px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {

    .about-image img {
        height: 220px;
    }

    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    font-size: large;
    line-height: 1.3;
    text-align: justify;
}


.services-btn-wrapper {
    text-align: center;
    margin-top: 35px;
}

.see-more-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    background: #ededed;
    color: #0f0f0f;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
}

.see-more-btn:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Snapshot Section */
.snapshot {
    padding: 80px 0;
    background-color: var(--secondary);
    color: var(--white);
}

.snapshot-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.snapshot-text {
    flex: 1;
}

.snapshot-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.snapshot-text ul {
    list-style: none;
    font-size: large;
}

.snapshot-text li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.snapshot-text li:before {
    content: "➡";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.snapshot-image {
    flex: 1;
}

.snapshot-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobile & Tablet Responsive */
@media (max-width: 992px) {

    .snapshot-content {
        flex-direction: column;
        /* stack vertically */
        text-align: center;
        /* optional */
    }

    /* Move image above text */
    .snapshot-image {
        order: -1;
        /* puts image BEFORE the text */
    }

    .snapshot-image img {
        height: 260px;
        /* smaller for mobile */
    }

    .snapshot-text h2 {
        font-size: 28px;
    }

    .snapshot-text ul {
        font-size: 16px;
        padding-left: 0;
        margin-top: 20px;
        text-align: left;
        /* keep tidy */
    }

    .snapshot-text li {
        padding-left: 20px;
    }
}

/* Extra Small Phones */
@media (max-width: 576px) {

    .snapshot-image img {
        height: 200px;
    }

    .snapshot {
        padding: 60px 0;
    }

    .snapshot-text h2 {
        font-size: 24px;
    }
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: var(--white);
}

.news-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    font-size: large;
    text-align: justify;
}

.news-item {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.news-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.news-date {
    color: var(--accent);
    font-weight: 600;
}

/* Contact Section */
/* CONTACT SECTION */
.contact {
    padding: 80px 0;
    background-color: var(--secondary);
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT FORM */
.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 36px;
    color: #FFF;
    margin-bottom: 30px;
}

/* Form layout */
.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* RIGHT IMAGE */
.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    max-height: 800px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-image img {
        height: 350px;
        max-height: none;
    }

    .contact-form h2 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }

    .contact-image img {
        height: 260px;
    }

    .contact {
        padding: 60px 0;
    }
}




/* Footer */
.footer {
    background-color: #111;
    color: #ddd;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #f39c12;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-left h4,
.footer-right h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-left h4::after,
.footer-right h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #f39c12;
}

/* Certifications */
.certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.certifications img {
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.certifications img:hover {
    transform: scale(1.1);
}

/* Right Section Info */
.footer-right {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bbb;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #222;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: #f39c12;
    color: #fff;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 20px 10px;
    }

    .certifications img {
        height: 40px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        width: 32px;
        height: 32px;
    }
}



.contact-header {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center; 
}

.contact-header h1 {
    color: white;
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}


@media(max-width: 768px) {
    .contact-header {
        height: 100px;
    }

    .contact-header h1 {
        font-size: 32px;
    }
}



/* Main layout */
.contact-section .container {
    display: flex;
    gap: 30px;
    padding: 50px 30px;
}

/* Left side image */
.contact-left {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    border-radius: 6px;
    overflow: hidden;
}

.contact-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* Right side form */
.contact-right {
    flex: 1;
    background: var(--secondary);
    padding: 30px;
    border-radius: 6px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group.half {
    flex: 1;
}

.submit-btn {
    background: white;
    color: var(--secondary);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background: #0aa250;
}   


/* ----------------------------- */
/*        RESPONSIVE DESIGN      */
/* ----------------------------- */

/* TABLETS */
@media (max-width: 992px) {
    .contact-section .container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .contact-left {
        min-height: 300px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-header h1 {
        font-size: 45px;
    }
}

/* MOBILE DEVICES */
@media (max-width: 576px) {
    .contact-header {
        padding: 50px 20px;
    }

    .contact-header h1 {
        font-size: 35px;
        text-align: center;
    }

    .contact-section .container {
        padding: 20px 15px;
    }

    .contact-right {
        padding: 20px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 16px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .contact-left img {
        height: 350px;
        /* balanced height */
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact-left img {
        height: 250px;
        /* smaller height for phones */
    }
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .form-group:first-child {
        flex-direction: column;
        gap: 0;
    }

    .footer-certifications {
        flex-direction: column;
        align-items: center;
    }
}


/* Executive Section */
.executive-section {
    padding: 80px 0;
    background-color: var(--secondary);
    color: #ffffff;
}

.executive-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.executive-text {
    flex: 1;
    font-size: 22px;
    text-align: justify;
}

.executive-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Image styling */
.executive-image {
    flex: 1;
}

.executive-image img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* ------------------------- */
/* Responsive Design        */
/* ------------------------- */

/* Tablet & Mobile */
@media (max-width: 992px) {
    .executive-content {
        flex-direction: column;
        text-align: center;
    }

    .executive-text {
        text-align: justify;
        margin-top: 20px;
    }

    .executive-image img {
        width: 400px;
        height: 400px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .executive-section {
        padding: 50px 0;
    }

    .executive-text h2 {
        font-size: 26px;
    }

    .executive-image img {
        width: 300px;
        height: 300px;
    }
}


/* CTO Section */
.cto-section {
    padding: 80px 0;
    background-color: #0aa250;
}

.cto-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Rounded Image */
.cto-image img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 50%;
    /* FULL ROUND */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Text */
.cto-text {
    flex: 1;
    font-size: 22px;
    text-align: justify;
}

.cto-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* ---------------------- */
/*     RESPONSIVE         */
/* ---------------------- */
@media (max-width: 992px) {
    .cto-content {
        flex-direction: column;
        /* STACK */
        text-align: center;
    }

    .cto-text {
        text-align: justify;
        margin-top: 20px;
        font-size: 16px;
    }

    .cto-image img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .cto-section {
        padding: 50px 0;
    }

    .cto-image img {
        width: 300px;
        height: 300px;
    }
}


/* Mission Vision Quality Section */
.mvq-section {
    background: #ffffff;
    padding: 80px 0;
}

.mvq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.mvq-box h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #0e1a2b;
    /* Dark navy */
}

.mvq-box p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* ----------------------- */
/*      RESPONSIVE         */
/* ----------------------- */

/* Tablets */
@media (max-width: 992px) {
    .mvq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .mvq-grid {
        grid-template-columns: 1fr;
    }

    .mvq-box h3 {
        text-align: center;
    }
}



.clients-page-section {
    padding: 80px 0;
    background: var(--secondary);
}

.clients-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #FFF;
}

/* Default: large screens = 5 logos per row */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

/* Logo images */
.clients-logos img {
    max-width: 200px;
    /* Responsive width */
    width: 100%;
    height: auto;
    /* FIX responsiveness */
    object-fit: contain;
    transition: 0.3s ease;
    /* filter: grayscale(100%);*/
    opacity: 0.8;
}

.clients-logos img:hover {
    transform: scale(1.12);
    filter: grayscale(0%);
    opacity: 1;
}

/* Tablet (≤ 1200px) → 4 columns */
@media (max-width: 1200px) {
    .clients-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet (≤ 992px) → 3 columns */
@media (max-width: 992px) {
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small tablet (≤ 768px) → 2 columns */
@media (max-width: 768px) {
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (≤ 480px) → 1 column */
@media (max-width: 480px) {
    .clients-logos {
        grid-template-columns: repeat(1, 1fr);
    }

    .clients-logos img {
        max-width: 200px;
        /* Slightly smaller for mobile */
    }
}



/* Section Base */
.client-content-section {
    padding: 80px 0;
    background: #0aa250;
}

/* Flex layout */
.client-content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
}

/* ---------------------- */
/*      LEFT IMAGE        */
/* ---------------------- */
.client-image-block {
    position: relative;
    width: 50%;
    min-height: 350px;
    /* Responsive height */
}

/* Blue Background Layer */
.client-image-block .bg-layer {
    position: absolute;
    top: -20px;
    left: 0;
    width: 65%;
    height: 100%;
    background: #0d2a52;
    z-index: 1;
    border-radius: 6px;
}

/* Main Image */
.client-image-block img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 90%;
    object-fit: cover;
    z-index: 2;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ---------------------- */
/*      TEXT AREA         */
/* ---------------------- */
.client-text-block {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-text-block h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

.client-text-block p {
    line-height: 1.6;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: justify;
}

/* Button */
.learn-btn {
    display: inline-block;
    width: 150px;
    padding: 15px 20px;
    background: white;
    color: #0aa250;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    text-align: center;
}

.learn-btn:hover {
    background: #0d2a52;
    color: white;
}

/* ---------------------- */
/* RESPONSIVE FIXES       */
/* ---------------------- */

/* Tablet – split stacked layout */
@media (max-width: 992px) {
    .client-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .client-image-block {
        width: 100%;
        min-height: 300px;
    }

    .client-image-block img {
        width: 75%;
        height: 85%;
        right: 50%;
        transform: translateX(50%);
    }

    .client-image-block .bg-layer {
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
    }

    .client-text-block {
        padding: 0 20px;
        align-items: center;
    }
}

/* Mobile – smaller image, centered */
@media (max-width: 576px) {
    .client-content-section {
        padding: 50px 0;
    }

    .client-image-block {
        min-height: 240px;
    }

    .client-image-block img {
        width: 80%;
        height: 80%;
    }

    .client-image-block .bg-layer {
        width: 80%;
    }
}


/* Section 1 (default) */
.client-content-section {
    background: #0aa250;
    /* Green */
}

/* Section 2 (modifier class) */
.client-content-section.alt-section {
    background: #0d2a52;
    /* Blue */
}

/* Change only the background-layer color inside alt-section */
.alt-section .bg-layer {
    background: #0aa250;
    /* Opposite color for contrast */
}

.alt-section .learn-btn:hover {
    background-color: #0aa250 !important;
    color: white;
}



/* -----------products-page Section--------- */
/* Products Page Section */
.products-page-section {
    padding: 80px 0;
    background-color: #ebebeb;
    color: #1a1a1a;
    text-align: center;
}

.products-page-section .products-page-text p {
    font-size: 1.7rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

/* Products Cards Container */
.products-page-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Product Card */
.product-card {
    width: 100%;
    max-width: 350px;
    min-height: 400px;
    padding: 20px;
    background-color: #172d4f;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
}

/* Image in Card */
.product-card img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

/* Title */
.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.product-card h3 span {
    color: #1ca34a;
}

/* Description */
.product-card .product-desc {
    opacity: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #ffffff;
    text-align: justify;
    transition: all 0.5s ease;
    width: 100%;
    margin-top: 10px;
}

/* Anchor Reset */
.products-page-cards a {
    text-decoration: none;
}

/* Hover Effects (Desktop Only) */
@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-10px);
        background-color: #000000;
        box-shadow: 12px 12px 25px rgba(23, 45, 79, 0.7);
    }

    .product-card:hover img {
        transform: scale(1.1);
    }

    .product-card:hover h3 {
        color: #1ca34a;
    }

    .product-card:hover .product-desc {
        opacity: 1;
    }
}

/* Responsive Styles for Mobile */
@media (max-width: 992px) {
    .products-page-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-card {
        width: 90%;
        min-height: auto;
        padding: 20px;
    }

    .product-card img {
        width: 80px;
        margin-bottom: 15px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card .product-desc {
        font-size: 0.95rem;
        opacity: 1;
        /* always visible on mobile */
        margin-top: 10px;
        transform: none;
    }
}


/*---------Service page-------------*/
.service-section {
    background: #0d2a52;
    padding: 80px 0;
    color: #fff;
}

/* TOP AREA */
.service-top h3 {
    text-align: center;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.service-btn {
    display: block;
    width: fit-content;
    margin: 0 auto 60px auto;
    padding: 18px 40px;
    background: #00b44e;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 700;
    text-decoration: none;
}

.service-btn:hover {
    border-color: #00b44e; /* change to any color you want */
    background: #000000; /* optional: darken the background slightly */
    color: #fff; /* keep text color white */
}

/* FLEX ROW */
.service-row {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT IMAGE — EXACT SAME ALIGNMENT AS TITLE AND BUTTON */
.service-left img {
    width: 100%;
    max-width: 700px;   /* controls image width */
    display: block;
}

/* RIGHT TEXT */
.service-right {
    flex: 1;
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
    }

    .service-left img {
        max-width: 100%;
    }
}




/* ================================
   BACKGROUND + CONTAINER
================================ */
.xfactor-green-section {
    background: #0ea769;
    /* SAME green as screenshot */
    padding: 80px 0;
    font-family: "Roboto", sans-serif;
    color: #0a1f44;
}

.xfactor-container {
    max-width: 1400px;
    width: 85%;
    margin: auto;
}

/* ================================
   SECTION HEADINGS
================================ */
.xfactor-heading-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.xfactor-heading {
    flex: 1;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    color: #1d2b53;
    /* deep purple/blue matching screenshot */
}

/* ================================
   TWO COLUMN CONTENT
================================ */
.xfactor-two-col {
    display: flex;
    gap: 80px;
}

.xfactor-col {
    flex: 1;
    padding-top: 50px;
}

.xfactor-block {
    flex: 1;
}

/* ================================
   BULLET LISTS
================================ */
.xfactor-list {
    list-style: disc;
    padding-left: 20px;
}

.xfactor-list li {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 28px;
    color: #0a1f44;
    text-align: justify;
}

.xfactor-list strong {
    font-weight: 700;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
    .xfactor-two-col {
        flex-direction: column;
        gap: 40px;
    }

    .xfactor-heading-row {
        flex-direction: column;
    }

    .xfactor-heading {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .xfactor-heading {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .xfactor-list li {
        font-size: 16px;
        text-align: justify;
    }
}



/* ============================
   Service Info Section
============================ */
.service-info-section {
    background: #0d2a52;
    /* White bg */
    color: #000000;
    /* Black text */
    padding: 80px 0;
}

.service-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.service-info-row {
    display: flex;
    gap: 150px;
    /*align-items: center;*/
}

/* ============================
   TEXT
============================ */
.service-info-text {
    flex: 1;
    font-size: 18px;
    text-align: justify;
}

.service-info-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #ffffff;
    font-size: 20px;
}

/* ============================
   IMAGE
============================ */
.service-info-image {
    flex: 1;
}

.service-info-image img {
    width: 100%;
    height: 500px;
}

/* ============================
   RESPONSIVE — TABLET
============================ */
@media (max-width: 992px) {
    .service-info-row {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .service-info-image {
        order: -1;
        /* Show image first */
    }

    .service-info-image img {
        height: 300px;
    }

    .service-info-text {
        font-size: 16px;
        text-align: justify;
    }
}

/* ============================
   RESPONSIVE — MOBILE
============================ */
@media (max-width: 576px) {
    .service-info-image img {
        height: 220px;
    }

    .service-info-section {
        padding: 50px 0;
    }
}



/* ---------------------------
   CONTRACT VEHICLES SECTION
----------------------------*/
.contract-section {
    background: #0d2a52;
    /* deep navy like screenshot */
    padding: 120px 0;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
}

.contract-container {
    max-width: 1400px;
    width: 90%;
    margin: auto;
}

/* MAIN ROW */
.contract-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* LEFT TITLE */
.contract-left {
    flex: 1;
}

.contract-left h2 {
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 180px;
    /* pushes title downward EXACTLY like screenshot */
}

/* RIGHT CONTENT */
.contract-right {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
}

.contract-right p strong {
    font-weight: 700;
}

/* LIST */
.contract-list {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.contract-list li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.contract-list li span {
    color: #10d241;
    /* green code numbers same as screenshot */
    font-weight: 700;
}

/* ---------------------------
   RESPONSIVE
----------------------------*/
@media (max-width: 992px) {
    .contract-row {
        flex-direction: column;
        text-align: left;
    }

    .contract-left h2 {
        font-size: 36px;
        margin-top: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .contract-left h2 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .contract-right {
        font-size: 16px;
    }
}



/* --------------------------
   NAICS SECTION
---------------------------*/
.naics-section {
    background: #0ea769;
    /* Strong green like screenshot */
    padding: 120px 0;
    color: #062044;
    /* Navy text color */
    font-family: "Roboto", sans-serif;
    position: relative;
}

.naics-container {
    max-width: 1400px;
    width: 90%;
    margin: auto;
}

/* TITLE */
.naics-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #062044;
    text-transform: uppercase;
}

.naics-divider {
    width: 100%;
    max-width: 1400px;
    height: 2px;
    background: #062044;
    margin-bottom: 60px;
}

/* FLEX ROW */
.naics-row {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* COLUMNS */
.naics-col {
    width: 50%;
}

/* LIST */
.naics-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.naics-col li {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.naics-col li span {
    color: #062044;
    font-weight: 700;
}

/* --------------------------
   RESPONSIVE
---------------------------*/
@media (max-width: 992px) {
    .naics-row {
        flex-direction: column;
        gap: 40px;
    }

    .naics-col {
        width: 100%;
    }

    .naics-title {
        text-align: center;
    }

    .naics-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .naics-col li {
        font-size: 17px;
        margin-bottom: 25px;
    }
}


/* Off-canvas menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #0d2a52;
    z-index: 1001;
    transition: 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* start from top */
    padding-top: 0;
    /* remove extra spacing */
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    /* smaller padding to stick to top */
    margin: 0;
    /* remove any margin */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #fcfcfc;
    /* same as menu background */
}

.mobile-menu-header .logo img {
    max-width: 150px;
    display: block;
    /* ensures no extra spacing */
}

.mobile-menu-header .close-menu {
    font-size: 30px;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    text-align: center;
}

.mobile-menu-list li {
    margin: 15px 0;
}

.mobile-menu-list li a {
    text-decoration: none;
    font-size: 22px;
    color: white;
    transition: 0.2s;
}

.mobile-menu-list li a:hover {
    color: #ffcc00;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

#overlay.active {
    display: block;
}


/* ================================ */
/* TOP GREEN HERO SECTION */
/* ================================ */
.service-hero {
    background: #0aad5a;
    padding: 90px 0 50px;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: auto;
}

.hero-illustration {
    max-width: 350px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0c2840;
}

.hero-subtitle-2 {
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0c2840;
}

.hero-download-btn {
    margin-top: 25px;
    display: inline-block;
    background: #0c2840;
    color: #fff;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
}



/* ================================ */
/* DARK BLUE INTRO SECTION */
/* ================================ */
.service-intro {
    background: #0c2840;
    padding: 40px 0;
    text-align: center;
}

.intro-text {
    color: #fff;
    font-size: 1.25rem;
    max-width: 1150px;
    margin: auto;
    line-height: 1.8;
    text-transform: uppercase;
    font-weight: 600;
}



/* MAIN SECTION */
.service-hero-v2 {
    background: #0aad5a;
    padding: 90px 0 50px;
}

/* FLEX WRAPPER */
.hero-flex-v2 {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT IMAGE */
.hero-left-v2 {
    flex: 1;
    text-align: center;
}

.hero-img-v2 {
    max-width: 350px;
    border-radius: 6px;
}

/* RIGHT TEXT AREA */
.hero-right-v2 {
    flex: 1;
}

/* TITLE */
.hero-title-v2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0c2840;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* DOWNLOAD BUTTON */
.hero-btn-v2 {
    display: inline-block;
    background: #0c2840;
    color: #fff;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn-v2:hover {
    background: #092033;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-flex-v2 {
        flex-direction: column;
        text-align: center;
    }

    .hero-title-v2 {
        font-size: 2.3rem;
    }
}



/* ================================ */
/* FEATURES SECTION */
/* ================================ */
.service-features {
    background: #0c2840;
    padding: 70px 0;
}

/* New two-column layout */
.features-wrapper {
    display: flex;
    max-width: 1400px;
    margin: auto;
    gap: 30px;
}

/* LEFT 2/3 */
.features-left {
    flex: 2;
}

/* RIGHT 1/3 */
.features-right-placeholder-link {
    flex: 1;
    min-height: 400px;
    /* You can add background/color if needed */
}

.features-container {
    width: 100%;
}

.feature-box {
    background: #0aad5a;
    padding: 35px;
    margin-bottom: 35px;
    display: flex;
    gap: 35px;
    align-items: center;
    border-left: 6px solid #0c2840;
}


.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c2840;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-desc {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #0c2840;
}

.feature-right {
    text-align: left;
}

.feature-image {
    max-width: 100px;
    border-radius: 4px;
}


.features-right-placeholder-link {
    flex: 1;
    background: #0aad5a;
    border-left: 6px solid #0c2840;
    padding: 0;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

/* Hover effect */
.features-right-placeholder-link:hover {
    background: #09a251;
        transform: translateY(-4px);
}

/* Image wrapper */
.right-image-wrapper {
    width: 100%;
    text-align: center;
}

.right-side-image {
    max-width: 100%;
}


.right-desc-wrapper {
    padding: 20px 25px 30px;
}

/* Description text */
.right-side-desc {
    font-size: 1.1rem;
    color: #0c2840;
    font-weight: 600;
    text-align: justify;
    /* Justified text */
    line-height: 1.7;
}


/* Responsive */
@media (max-width: 1024px) {
    .features-wrapper {
        flex-direction: column;
    }

    .features-right-placeholder-link {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        text-align: left;
    }

    .feature-right {
        text-align: center;
        width: 100%;
    }
}



/* Product Hero Section */
.product-hero-section {
    background: #0d2a4a;
    /* Dark Blue */
    padding: 80px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* Flex container */
.product-hero-container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE IMAGE */
.product-hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-hero-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
}

/* RIGHT SIDE CONTENT */
.product-hero-right {
    flex: 1.2;
    text-align: left;
}

/* Title (Green) */
.product-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #02c755;
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Subtitle */
.product-hero-subtitle {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* Button */
.product-hero-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #00c853;
    color: white;
    font-weight: 700;
    border: 1px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-decoration: none;
}

.product-hero-btn:hover {
    background: #00e676;
}

/* Paragraphs */
.product-hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: #d4d9e3;
    margin-bottom: 20px;
}

/* Full-width stacked descriptions */
.product-hero-description {
    width: 100%;
    max-width: 1320px;
    /* Align with container */
    margin: 40px auto 0;
    /* Top spacing from hero */
    padding: 0 20px;
}

.product-hero-description .product-hero-text {
    font-size: 22px;
    line-height: 1.8;
    color: #d4d9e3;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .product-hero-right {
        text-align: center;
    }

    .product-hero-text-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}



/* ============================
   Product Video Section
============================ */
.product-video-section {
    background: #0ea769;
    color: #ffffff;
    padding: 60px 0;
}

.product-video-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Row flex with vertical alignment */
.product-video-row {
    display: flex;
    gap: 60px;
    align-items: center;
    /* Align title/description with video */
}

/* Text */
.product-video-text {
    flex: 1;
}

.product-video-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-video-text p {
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
}

/* Video */
.product-video-media {
    flex: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Mobile / tablet fix */
@media (max-width: 992px) {
    .product-video-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .product-video-media {
        order: 0;
        /* Remove -1, let video stay in normal flow */
        width: 100%;
        /* Ensure full width */
        max-width: 100%;
    }

    .video-wrapper {
        padding-top: 56.25%;
        /* Keep 16:9 ratio */
    }

    .product-video-text {
        text-align: center;
    }
}

/* Extra Mobile tweaks */
@media (max-width: 576px) {
    .product-video-section {
        padding: 40px 0;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
    }
}





.product-card-section {
    padding: 60px 0;
    background: #0ea769;
}

.product-card-container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

.product-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Card Styling */
.product-card {
    background: #0d2a4a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* .product-card img {
    width: 100%;
    height: auto;
} */

.product-card h4 {
    font-size: 26px;
    margin: 15px 0 10px;
    color: #ffffff;
}

.product-card p {
    font-size: 20px;
    color: #ffffff;
    padding: 0 15px 15px;
}

.product-card .btn {
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px 25px;
    background: #0ea769;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.product-card .btn:hover {
    background: #0b8a5a;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 992px) {
    .product-card-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-card-row {
        grid-template-columns: 1fr;
    }
}


/* ---------product-info-section------*/
.product-info-section {
    padding: 60px 0;
    background: #12345a;
    color: #ffffff;
}

.product-info-wrapper {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Info cards */
.product-info-card {
    background: #0ea769;
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 45%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-info-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.product-info-card ol,
.product-info-card ul {
    padding-left: 20px;
}

.product-info-card li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 20px;
    text-align: justify;
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .product-info-card {
        flex: 1 1 100%;
    }
}



/*--------product accordian section--------*/
.use-cases-section {
    background-color: #0ea769;
    color: #fff;
    padding: 60px 20px;
}

.use-cases-section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.left-content {
    flex: 1 1 40%;
    min-width: 280px;
}

.left-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.accordion-btn {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 18px;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content ul {
    margin: 10px 0 15px 20px;
    font-size: 20px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* adjust as needed */
}



.product-hero-section {
    width: 100%;
    padding: 60px 0;
}

.product-hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.product-hero-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Columns */
.product-hero-col {
    flex: 1;
}

/* Image */
.product-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Text */
.product-hero-text {
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
}

/* Centered layout */
.product-hero-description.center {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* =======================
   RESPONSIVE BREAKPOINTS
   ======================= */

/* Tablet */
@media (max-width: 992px) {
    .product-hero-row {
        gap: 30px;
    }

    .product-hero-text {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .product-hero-row {
        flex-direction: column;
        text-align: center;
    }

    .product-hero-text {
        text-align: justify;
        font-size: 15px;
    }

    .product-hero-image {
        max-height: 280px;
        object-fit: contain;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .product-hero-section {
        padding: 40px 0;
    }

    .product-hero-text {
        font-size: 14px;
        line-height: 1.6;
    }
}