/* 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: "CustomFont", Arial, Helvetica, sans-serif;
    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);
}


.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.submenu li {
    padding: 10px 20px;
}

.submenu li a {
    color: var(--dark);
    font-size: 16px;
    display: block;
}

.submenu li a:hover {
    color: var(--primary);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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;
}


@media (max-width: 1300px) {

    .nav-menu {
        gap: 18px;
        /* reduce spacing */
        font-size: 16px;
    }

    .nav-menu a {
        font-weight: 500;
        padding-bottom: 6px;
    }

    .logo img {
        height: 36px;
        /* slightly smaller logo */
    }

    .header-actions i {
        font-size: 36px !important;
        /* smaller LinkedIn icon */
    }
}

/* =========================
   SMALL DESKTOP (1366px)
========================= */

@media (max-width: 1300px) {

    .nav-menu {
        gap: 14px;
        font-size: 15px;
    }

    .submenu {
        min-width: 200px;
    }

    .submenu li {
        padding: 8px 18px;
    }
}

/* 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(21, 21, 21, 0.16);
    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: #ffffff;
    /* DARK BG */
    color: #000000;
    /* 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: #000000;
}

.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;
    font-size: larger;
}

@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: 25px 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: 5px;
    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: #ffffff;
    color: #000000;
}

.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: 30px;
    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: #ffffff;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT FORM */
.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 36px;
    color: #000000;
    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: 25px;
        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: #ffffff;
    color: #000000;
}

.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: #000000;
}

/* 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: #ffffff;
}

.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 */
/* ========================= */

.mvq-section {
    background: #f4f7fb;
    padding: 90px 0;
}

.mvq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.mvq-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    border: 2px solid transparent;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* LEFT BORDER ACCENT */
.mvq-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: #0aa250;
    transition: background 0.35s ease;
}

/* TITLE */
.mvq-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0e1a2b;
}

/* DESCRIPTION */
.mvq-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* HOVER EFFECT */
.mvq-box:hover {
    transform: translateY(-10px);
    border-color: #0aa250;
    box-shadow: 0 20px 45px rgba(10, 162, 80, 0.25);
}

.mvq-box:hover::before {
    background: #062044;
}

.mvq-box:hover h3 {
    color: #0aa250;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .mvq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mvq-grid {
        grid-template-columns: 1fr;
    }

    .mvq-box {
        text-align: center;
    }

    .mvq-box p {
        text-align: left;
    }
}


.clients-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.clients-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
}

/* 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 (≤ 1300px) → 4 columns */
@media (max-width: 1300px) {
    .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: #ffffff;
    padding: 80px 0;
    color: #000000;
}

/* 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: 1300px;
    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: #fdfdfd;
    /* White bg */
    color: #000000;
    /* Black text */
    padding: 80px 0;
}

.service-container {
    width: 90%;
    max-width: 1300px;
    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: #000000;
    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: #ffffff;
    /* deep navy like screenshot */
    padding: 120px 0;
    color: #030303;
    font-family: "Roboto", sans-serif;
}

.contract-container {
    max-width: 1300px;
    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: #000000;
    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: #ffffff;
    /* Strong green like screenshot */
    padding: 50px 0;
    color: #000000;
    /* Navy text color */
    font-family: "Roboto", sans-serif;
    position: relative;
}

.naics-container {
    max-width: 1300px;
    width: 90%;
    margin: auto;
}

/* TITLE */
.naics-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
}

.naics-divider {
    width: 100%;
    max-width: 1300px;
    height: 2px;
    background: #0aad5a; /* visible divider */
    margin: 30px 0 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: #10d241;
    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;
    }
}


/* OFFCANVAS MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #0d2a52;
    z-index: 1001;
    transition: 0.35s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu.active {
    left: 0;
}

/* HEADER */
.mobile-menu-header {
    width: 100%;
    padding: 12px 20px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.mobile-menu-header img {
    max-width: 150px;
}

.close-menu {
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

/* MENU LIST */
.mobile-menu-list {
    width: 100%;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    text-align: left;
}

.mobile-menu-list li {
    width: 100%;
}

/* MAIN LINKS */
.mobile-menu-list>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.mobile-menu-list>li>a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #0aa250;
}

/* SUBMENU */
.mobile-submenu {
    list-style: none;
    display: none;
    padding-left: 24px;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #eaeaea;
    text-decoration: none;
}

.mobile-submenu li a:hover {
    color: #0aa250;
}

/* ICON */
.mobile-has-submenu>a i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-has-submenu>a.open i {
    transform: rotate(180deg);
}

/* OVERLAY */
#overlay {
    position: fixed;
    inset: 0;
    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: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.intro-text {
    color: #000000;
    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: #ffffff;
    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;
    }
}




/* ================================ */
/* SERVICE FEATURES – FULL WIDTH */
/* ================================ */

.service-features {
    background: #f8fafc;
    padding: 0;
    /* Removed top and bottom padding */
}

/* Full width container */
.features-wrapper-full {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    /* Only horizontal padding */
}

/* Card layout */
.features-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* Hover effect */
.features-card:hover {
    transform: translateY(-4px);
}

/* ================= IMAGE AREA ================= */

.feature-image-area {
    width: 100%;
    /* height: 600px; */
    /* Desktop container height */
    display: flex;
    /* Center the image */
    justify-content: center;
    /* align-items: center; */
    overflow: hidden;
    background: #f1f3f5;
    padding: 0;
    /* Removed top/bottom padding */
}

/* Image reduced by ~40% */
.feature-image-area img {
    width: 60%;
    /* 40% smaller */
    height: 60%;
    /* 40% smaller */
    object-fit: contain;
    /* No crop, maintain aspect ratio */
    display: block;
    transition: 0.4s ease;
}

/* Image zoom on hover */
.features-card:hover .feature-image-area img {
    transform: scale(1.05);
}

/* ================= CONTENT AREA ================= */

.feature-content-area {
    padding: 0 50px;
    /* Removed top/bottom padding, keep horizontal padding */
}

/* Description */
.feature-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #0c2840;
    text-align: justify;
}

/* CKEditor content styling */
.feature-description h2,
.feature-description h3 {
    margin-bottom: 20px;
    color: #0c2840;
    font-weight: 700;
}

.feature-description p {
    margin-bottom: 18px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {


    .feature-image-area img {
        width: 70%;
        height: 70%;
    }

}

/* Mobile */
@media (max-width: 576px) {
    .feature-image-area {
        height: auto;
        /* Remove fixed height */
        padding: 0;
        /* No top/bottom padding */
    }

    .feature-image-area img {
        width: 90%;
        /* almost full width on mobile */
        height: auto;
        object-fit: contain;
    }

    .feature-content-area {
        padding: 0 22px;
        /* horizontal only */
    }

    .feature-description {
        font-size: 1.05rem;
    }
}





/* 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: 1300px;
    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: #ffffff;
    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: 1300px;
    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: 1300px;
    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;
    }
}




/* ================================ */
/* CULTURE FEATURES SECTION */
/* ================================ */
.culture-features {
    background: #ffffff;
    padding: 80px 0;
}

/* Container */
.culture-container {
    max-width: 1300px;
    width: 90%;
    margin: auto;
}

/* Description */
.culture-description {
    color: #000000;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.5;
}

/* Feature Grid */
.culture-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Feature Box */
.culture-box {
    background: #f5f5f5;
    padding: 25px;
    flex: 1 1 calc(33.333% - 30px);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 6px solid #12345a;
    border-radius: 6px;
    min-width: 260px;
}

/* Icon */
.culture-icon-img {
    max-width: 80px;
}

/* Content */
.culture-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.culture-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .culture-box {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .culture-description {
        font-size: 1.15rem;
        margin-bottom: 40px;
        text-align: justify;
    }

    .culture-box {
        flex: 1 1 100%;
    }
}




/* ===============================
   CAREER TITLE
================================*/
.career-title {
    color: #fff;
    font-size: 35px;
    margin-bottom: 30px;
}

/* ===============================
   FULL WIDTH DESCRIPTION
================================*/
.career-description-section {
    background: #ffffff;
    padding: 80px 0;
}

.career-description-container {
    max-width: 1300px;
    width: 90%;
    margin: auto;
}

.career-full-desc {
    color: #000000;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .career-title {
        font-size: 28px;
    }

    .career-full-desc {
        font-size: 1.05rem;
    }
}



/* ===============================
   CAREER TABLE SECTION
================================*/
.career-table-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.career-table-container {
    max-width: 1300px;
    width: 90%;
    margin: auto;
}

.career-table-title {
    color: #000000;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Table */
.career-table-wrapper {
    overflow-x: auto;
}

.career-table {
    width: 100%;
    border-collapse: collapse;
    background: #d4d4d4;
}

.career-table th,
.career-table td {
    padding: 18px 20px;
    text-align: left;
    color: #000000;
}

.career-table thead {
    background: #062044;
}

.career-table thead th {
    color: #e0e0e0;
    font-weight: 700;
}

.career-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.career-table tbody tr:hover {
    background: #f3d497;
}

.career-table a {
    color: #0aad5a;
    font-weight: 600;
    text-decoration: none;
}

.career-table a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .career-table-title {
        font-size: 26px;
    }

    .career-table th,
    .career-table td {
        padding: 14px;
        font-size: 0.95rem;
    }
}


/*-----------------pagination----------*/
.career-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.page-link {
    padding: 8px 14px;
    background: #f1f1f1;
    border-radius: 6px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.page-link.active {
    background: #0ea769;
    color: #fff;
    pointer-events: none;
}

.page-link:hover {
    background: #0ea769;
    color: #fff;
}





/* ===============================
   JOB DETAIL SINGLE COLUMN
=================================*/
.job-detail-section {
    padding: 60px 20px;
    background: #fdfdf7;
    color: #1a1a1a;
    font-family: "Merriweather", serif;
}

.job-detail-container {
    max-width: 800px;
    margin: auto;
}

.job-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1rem;
    margin-bottom: 40px;
    background: #fafafa;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.job-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.job-apply-btn {
    text-align: center;
    margin-bottom: 60px;
}

.btn-primary {
    padding: 12px 28px;
    background: #0ea769;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0c8c5e;
}



/* =========================
   CERTIFICATIONS SECTION
========================= */

.certifications-section {
    background: #f4f7fb;
    padding: 90px 0;
}


.cert-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px auto;
}

.cert-section-header h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0e1a2b;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Decorative Divider */
.cert-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 25px;
}

.cert-divider span {
    width: 60px;
    height: 1px;
    background: #d1d7e0;
}

.cert-divider i {
    width: 10px;
    height: 10px;
    background: #d62828;
    transform: rotate(45deg);
    margin: 0 10px;
}

/* Intro Text */
.cert-section-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a4a5f;
    margin: 0;
}


/* CARD ROW */
.cert-row {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    padding: 35px 40px;
    margin-bottom: 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* LEFT ACCENT BORDER */
.cert-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: #0aa250;
    transition: background 0.35s ease;
}

/* LOGO BOX */
.cert-logo {
    flex: 0 0 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e3e8ef;
    box-shadow: inset 0 0 0 1px #f0f3f7;
}

/* SAME SIZE IMAGE */
.cert-logo img {
    max-width: 132px;
    max-height: 100px;
    object-fit: contain;
}

/* CONTENT */
.cert-content {
    flex: 1;
}

.cert-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #0e1a2b;
    margin: 0;
    text-align: justify;
}

/* =========================
   HOVER EFFECTS
========================= */

.cert-row:hover {
    transform: translateY(-10px);
    border-color: #0aa250;
    box-shadow: 0 22px 50px rgba(10, 162, 80, 0.25);
}

.cert-row:hover::before {
    background: #062044;
}

.cert-row:hover .cert-logo {
    border-color: #0aa250;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .cert-row {
        gap: 25px;
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cert-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .cert-logo {
        margin-bottom: 20px;
    }

    .cert-content p {
        text-align: left;
    }

    .cert-section-header h2 {
        font-size: 26px;
    }

    .cert-section-header p {
        font-size: 16px;
    }
}



.blog-description ul {
    list-style-type: disc !important;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.blog-description ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem;
}

.blog-description li {
    margin-bottom: 0.4rem;
}




.career-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.career-pagination .page-link {
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.career-pagination .page-link:hover {
    background-color: #f0f0f0;
}

.career-pagination .page-link.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    cursor: default;
    pointer-events: none;
}