/* =========================================================
   OMKAR ENGINEERING INNOVATIONS
   GLOBAL RESPONSIVE STYLESHEET
========================================================= */

/* =========================
ROOT VARIABLES
========================= */

:root {

    --primary-color: #0A2A43;
    --secondary-color: #1F4E79;
    --accent-color: #FF6B00;

    --bg-light: #F4F6F9;
    --bg-white: #ffffff;

    --text-dark: #2A2A2A;
    --text-light: #6f6f6f;

    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;

    --container-width: 1200px;

    --radius: 6px;

    --transition: 0.3s ease;

    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.12);

}


:root {

    --primary-dark: #071C3C;
    --primary: #0B2C5D;
    --primary-light: #123F7A;

    --accent: #FF6A00;

    --text: #ffffff;
    --text-muted: #b8c7d9;

    --bg: #F4F6F9;

}


/* =========================
RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

/* =========================
CONTAINER
========================= */

.container {
    max-width: var(--container-width);
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

ul {
    list-style: none;
}

/* =========================
TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
}

h1 {
    font-size: 44px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 26px;
}

p {
    color: var(--text-light);
    font-size: 16px;
}

/* =========================
BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #e05f00;
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

/* =========================
NAVBAR
========================= */

.navbar {
    background: var(--primary-color);
    background: linear-gradient(90deg,
            #071C3C,
            #0B2C5D);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    color: white;
    font-weight: 700;
    font-size: 22px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: white;
}





.navbar {

    background: linear-gradient(90deg,
            #071C3C,
            #0B2C5D);

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

.nav-flex {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {

    color: white;
    font-size: 22px;
    font-weight: 700;

}

.nav-menu {

    list-style: none;

    display: flex;
    gap: 35px;

    align-items: center;

}

.nav-menu li {

    position: relative;

}

.nav-menu a {

    color: #d6e2f1;

    font-size: 16px;

    font-weight: 500;

    transition: 0.3s;

}

/* Hover animation */

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #FF6A00;

    transition: 0.3s;

}

.nav-menu a:hover {

    color: white;

}

.nav-menu a:hover::after {

    width: 100%;

}



.menu-toggle {

    display: none;

    font-size: 22px;

    color: white;

    cursor: pointer;

}


/* =========================
HERO
========================= */

.hero {
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}



.hero {

    background:
        linear-gradient(90deg,
            rgba(7, 28, 60, 0.95),
            rgba(11, 44, 93, 0.15)),
        url("../images/hero-machine.jpg");

    background-size: cover;
    background-position: center;

    height: 620px;
    display: flex;
    align-items: center;

}

.hero::after {

    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("images/pattern.png");
    opacity: 0.05;

}



.hero-overlay {
    background: rgba(10, 42, 67, 0.85);
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



.hero h1 {

    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.2;

}

.hero p {

    color: #b8c7d9;
    font-size: 18px;

}

.topbar {

    background: linear-gradient(90deg,
            #071C3C,
            #0B2C5D);

    color: #d6e2f1;

    font-size: 14px;

    padding: 8px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

.topbar-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.topbar-left {

    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 500;

}

.topbar-right {

    display: flex;
    align-items: center;
    gap: 20px;

}

.topbar-right i {

    color: #FF6A00;

}

.topbar-btn {

    background: #FF6A00;

    color: white;

    padding: 6px 16px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;

}

.topbar-btn:hover {

    background: #e85f00;

}

@media (max-width:768px) {

    .topbar-inner {

        flex-direction: column;
        gap: 5px;

    }

    .topbar-right {

        gap: 10px;

    }

}



/* =========================
SECTION
========================= */

.section {
    padding: 80px 0;
    background: white;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* =========================
SERVICE GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 
.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
} */

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}



















.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 40px;

}


/* 
.service-card {

    background: white;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    transition: all .35s ease;

    position: relative;

} */

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);

}


.service-img {

    height: 200px;

    overflow: hidden;

}

.service-img img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}

.service-card:hover .service-img img {

    transform: scale(1.1);

}


.service-content {

    padding: 25px;

}

.service-content h3 {

    font-size: 20px;

    margin-bottom: 10px;

    color: #071C3C;

}

.service-content p {

    font-size: 14px;

    color: #6c7b8a;

    margin-bottom: 18px;

}


.service-link {

    font-weight: 600;

    color: #0B2C5D;

    font-size: 14px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: .3s;

}

.service-link i {

    transition: .3s;

}

.service-link:hover {

    color: #FF6A00;

}



.service-link:hover i {

    transform: translateX(6px);

}


@media (max-width:1000px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width:600px) {

    .services-grid {

        grid-template-columns: 1fr;

    }

}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 18px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0B2C5D;
}

.service-body p {
    font-size: 14px;
    color: #6c7b8a;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: #0B2C5D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: #ff6a00;
}


/* =========================
PRODUCT GRID
========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* =========================
GALLERY
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* =========================
FEATURES
========================= */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

/* =========================
PROJECT GRID
========================= */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

/* =========================
CONTACT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: var(--radius);
    border: 1px solid #ddd;
}

/* =========================
FOOTER
========================= */
/* 
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
} */

/* =========================================================
RESPONSIVE BREAKPOINTS
========================================================= */

/* =========================
1400px Large Desktop
========================= */

@media (max-width:1400px) {

    .container {
        max-width: 1100px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================
1200px Laptop
========================= */

@media (max-width:1200px) {

    .container {
        max-width: 1000px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
992px Tablet Landscape
========================= */

@media (max-width:992px) {

    .hero {
        height: 480px;
    }

    .hero-content {
        max-width: 500px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* =========================
768px Tablet Portrait
========================= */

@media (max-width:768px) {

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 420px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
576px Mobile
========================= */

@media (max-width:576px) {

    .hero {
        height: auto;
        padding: 80px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
400px Small Mobile
========================= */

@media (max-width:400px) {

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

}









.btn-primary {

    background: #FF6A00;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;

}

.btn-secondary {

    background: #123F7A;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;

}


@media (max-width:900px) {

    .nav-menu {

        position: absolute;

        top: 100px;
        left: 0;

        width: 100%;

        background: #071C3C;

        flex-direction: column;

        gap: 20px;

        padding: 30px 0;

        display: none;

    }

    .nav-menu.active {

        display: flex;

    }

    .menu-toggle {

        display: block;

    }

}


/* Highlights section */
.highlights {
    background: #f6f7fb;
    padding: 80px 0;
}

.highlights .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.highlights .section-title h2 {
    font-size: 34px;
    color: #0B2C5D;
    font-weight: 700;
}

/* grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* card */
.highlight-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all .35s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* icon */
.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2C5D, #163e78);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 26px;
    color: #fff;
}

/* text */
.highlight-card h3 {
    font-size: 20px;
    color: #0B2C5D;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: #6c7b8a;
    line-height: 1.6;
}

/* responsive */
@media (max-width:1000px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}





/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0B2C5D, #0F3C6E);
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta p {
    font-size: 18px;
    opacity: .85;
    margin-bottom: 35px;
}

/* Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6A00;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.btn-cta:hover {
    background: #ff7f24;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

/* Footer */

.footer {
    background: #0B2C5D;
    color: #c8d4e2;
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* Links */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #c8d4e2;
    font-size: 14px;
    transition: .3s;
}

.footer-links a:hover {
    color: #FF6A00;
    padding-left: 5px;
}

/* Bottom bar */

.footer-bottom {
    background: #072447;
    text-align: center;
    padding: 15px 10px;
    color: #9fb1c6;
    font-size: 14px;
}

.footer-bottom a {
    color: #FF6A00;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer {
    background: #0B2C5D;
    color: #c8d4e2;
    padding: 70px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer::before,
.footer::after {
    display: none;
}


.about {
    padding: 90px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Badge base */

.about-badge {
    position: absolute;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    text-align: center;
    min-width: 110px;
}

/* Badge text */

.badge-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #FF6A00;
}

.badge-text {
    font-size: 12px;
    color: #0B2C5D;
}

/* Position badges */

.badge-experience {
    bottom: -25px;
    right: 100px;
}

.badge-quality {
    bottom: -25px;
    right: -25px;
}

.about-content h2 {
    font-size: 36px;
    color: #0B2C5D;
    margin-bottom: 20px;
}

.about-content p {
    color: #6c7b8a;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 15px;
}

.btn-primary {
    display: inline-block;
    background: #FF6A00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-primary:hover {
    background: #ff7c1f;
}



.why-us {
    background: #f6f7fb;
    padding: 90px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-card i {
    font-size: 36px;
    color: #FF6A00;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0B2C5D;
}

.why-card p {
    font-size: 14px;
    color: #6c7b8a;
    line-height: 1.6;
}




/* ===== ABOUT SECTION RESPONSIVE ===== */


/* ===== ABOUT IMAGE BADGES RESPONSIVE ===== */

@media (max-width:600px) {

    .about-badge {
        padding: 10px 12px;
        min-width: 90px;
    }

    .badge-number {
        font-size: 16px;
    }

    .badge-text {
        font-size: 11px;
    }

    .badge-experience {
        bottom: -25px;
        right: 125px;
    }

    .badge-quality {
        bottom: -25px;
        right: 15px;
    }

}

/* ===== WHY CHOOSE US RESPONSIVE ===== */

@media (max-width:1000px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:600px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 28px 20px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
    }

}

/* .about-image {
    overflow: hidden;
} */


/* Animation enhancement for AOS elements */
.aos-lift {
    transition: transform .35s ease, box-shadow .35s ease;
}

.aos-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth entrance */
[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    transform: translateY(0);
}


.services-grid .service-card:nth-child(1) {
    transition-delay: .1s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: .2s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: .3s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: .4s;
}

.services-grid .service-card:nth-child(5) {
    transition-delay: .5s;
}

.services-grid .service-card:nth-child(6) {
    transition-delay: .6s;
}




.page-hero {
    /* background:
        linear-gradient(rgba(11, 44, 93, .85), rgba(11, 44, 93, .85)),
        url("../images/hero-machine.jpg"); */
    background: linear-gradient(rgba(11, 44, 93, .55), rgba(11, 44, 93, .05)), url("../images/hero-machine.jpg");

    background-size: cover;
    background-position: center;

    padding: 90px 0;

    color: #fff !important;
    text-align: center;
}

.page-hero h1 {
    color: #fff !important;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero p {
    color: #fff !important;
    font-size: 18px;
    opacity: .9;
}

.about-page {
    background: #f6f7fb;
    padding: 80px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-text h2 {
    font-size: 36px;
    color: #0B2C5D;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #6c7b8a;
    margin-bottom: 15px;
}

.expertise {
    padding: 80px 0;
    background: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.expert-card {
    background: #f6f7fb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: .3s;
}

.expert-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}


.mission-vision {
    background: #f4f6f9;
    padding: 80px 0;
}

.mission-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Mission items */

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: #0B2C5D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.mission-item h3 {
    font-size: 22px;
    color: #0B2C5D;
    margin-bottom: 6px;
}

.mission-item p {
    color: #6c7b8a;
    font-size: 15px;
    line-height: 1.6;
}

/* Stats */

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    font-size: 34px;
    color: #FF6A00;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14px;
    color: #6c7b8a;
}

.mission-vision {
    background: #f4f6f9;
    padding: 80px 0;
}

.mission-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Mission items */

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: #0B2C5D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.mission-item h3 {
    font-size: 22px;
    color: #0B2C5D;
    margin-bottom: 6px;
}

.mission-item p {
    color: #6c7b8a;
    font-size: 15px;
    line-height: 1.6;
}

/* Stats */

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
    font-size: 34px;
    color: #FF6A00;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14px;
    color: #6c7b8a;
}

/* ===== STATS SECTION ===== */
.stats {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.stat-card {
    background: #f6f7fb;
    border-radius: 10px;
    padding: 34px 20px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    position: relative;
    overflow: hidden;
}

/* Accent bar */
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00, #ff8a3d);
}

/* Number */
.stat-card h3 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 8px;
    color: #0B2C5D;
    font-weight: 700;
}

/* Label */
.stat-card p {
    font-size: 14px;
    color: #6c7b8a;
    letter-spacing: .2px;
}

/* Hover lift */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    background: #ffffff;
}

/* ===== STATS SECTION ===== */
.stats {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.stat-card {
    background: #f6f7fb;
    border-radius: 10px;
    padding: 34px 20px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    position: relative;
    overflow: hidden;
}

/* Accent bar */
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00, #ff8a3d);
}

/* Number */
.stat-card h3 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 8px;
    color: #0B2C5D;
    font-weight: 700;
}

/* Label */
.stat-card p {
    font-size: 14px;
    color: #6c7b8a;
    letter-spacing: .2px;
}

/* Hover lift */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    background: #ffffff;
}

.stat-icon {
    font-size: 22px;
    color: #FF6A00;
    margin-bottom: 10px;
    display: block;
}

.mission-vision {
    background: #f4f6f9;
    background: #f0eff3;
    padding: 90px 0;
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Mission items */

.mission-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: #0B2C5D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.mission-item h3 {
    font-size: 22px;
    color: #0B2C5D;
    margin-bottom: 6px;
}

.mission-item p {
    font-size: 15px;
    color: #6c7b8a;
    line-height: 1.6;
}


/* Right image */

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, .15); */
}

/* Floating badges */

.mission-badge {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    font-size: 14px;
    font-weight: 600;
    color: #0B2C5D;
}

.mission-badge i {
    color: #FF6A00;
}

.badge1 {
    top: 20px;
    left: 20px;
}

.badge2 {
    bottom: 20px;
    right: 20px;
}

@media (max-width:900px) {

    .mission-layout {
        grid-template-columns: 1fr;
    }

    .mission-image {
        margin-top: 40px;
    }

}

/* Container for mission items */
.mission-left {
    position: relative;
    padding-left: 70px;
}

/* Vertical connector line */
.mission-left::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(#0B2C5D, #d9e1ea);
}

/* Individual item */
.mission-item {
    position: relative;
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* Icon circle aligned to line */
.mission-icon {
    position: absolute;
    left: -70px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0B2C5D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}

/* Text styling */
.mission-item h3 {
    font-size: 22px;
    color: #0B2C5D;
    margin-bottom: 6px;
}

.mission-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c7b8a;
}

@media (max-width:900px) {

    .mission-left {
        padding-left: 60px;
    }

    .mission-icon {
        left: -60px;
    }

}



.services-hero {
    background: linear-gradient(rgba(11, 44, 93, .55), rgba(11, 44, 93, .05)), url("../images/hero-machine.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 90px 0;
}

.services-page {
    padding: 80px 0;
    background: #f6f7fb;
}

.service-points {
    margin: 10px 0 14px 16px;
    color: #6c7b8a;
    font-size: 14px;
}

.process {
    padding: 80px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    background: #f6f7fb;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B2C5D;
    color: #fff;
    font-weight: 700;
}

@media (max-width:1000px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}





.products-hero {
    background: linear-gradient(rgba(11, 44, 93, .55), rgba(11, 44, 93, .05)), url("../images/hero-machine.jpg");
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: #fff;
    text-align: center;
}

.featured-product {
    padding: 80px 0;
    background: #fff;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.products {
    padding: 80px 0;
    background: #f6f7fb;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #FF6A00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}


/* PRODUCT HERO */

.products-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.products-hero p {
    font-size: 18px;
    margin-top: 10px;
    opacity: .9;
}

@media (max-width:768px) {

    .products-hero {
        padding: 70px 20px;
    }

    .products-hero h1 {
        font-size: 34px;
    }

    .products-hero p {
        font-size: 16px;
    }

}

/* FEATURE PRODUCT */

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.feature-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* Tablet */

@media (max-width:992px) {

    .feature-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-text {
        order: 2;
    }

    .feature-image {
        order: 1;
    }

}

/* Mobile */

@media (max-width:600px) {

    .feature-text h2 {
        font-size: 26px;
    }

}

/* FEATURE PRODUCT */

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.feature-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* Tablet */

@media (max-width:992px) {

    .feature-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-text {
        order: 2;
    }

    .feature-image {
        order: 1;
    }

}

/* Mobile */

@media (max-width:600px) {

    .feature-text h2 {
        font-size: 26px;
    }

}

/* Industries Section */
/* INDUSTRIES */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.industry-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.industry-card i {
    font-size: 30px;
    color: #FF6A00;
    margin-bottom: 10px;
}

/* Tablet */

@media (max-width:992px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media (max-width:600px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }

}


/* CTA */

.cta {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #0B2C5D, #153D7A);
    color: #fff;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 25px;
    opacity: .9;
}

.btn-cta {
    display: inline-block;
    padding: 12px 26px;
    background: #FF6A00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

/* Mobile */

@media (max-width:600px) {

    .cta h2 {
        font-size: 26px;
    }

}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width:600px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}



.projects-hero {
    background: linear-gradient(rgba(11, 44, 93, .85), rgba(11, 44, 93, .85)), url("../images/projects/hero-projects.jpg");
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: #fff;
    text-align: center;
}

.projects {
    padding: 80px 0;
    background: #f6f7fb;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 14px;
    color: #6c7b8a;
}



.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}



@media (max-width: 600px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile Phones */
/* @media (max-width: 480px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
} */

@media (max-width: 768px) {
    /* .grid-4, .grid-3, .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    } */
}

@media screen and (min-width: 601px) and (max-width: 768px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media (max-width:1000px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;

    }

    .stats-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;

    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 14px;
    }

}



/* CONTACT HERO */

.contact-hero {
    background: linear-gradient(rgba(11, 44, 93, .85), rgba(11, 44, 93, .85)), url("../images/contact-hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: #fff;
    text-align: center;
}


/* CONTACT GRID */

.contact-section {
    padding: 80px 0;
    background: #f6f7fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


/* CONTACT INFO */

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}

.contact-item i {
    color: #FF6A00;
    font-size: 18px;
}


/* CONTACT FORM */

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}


/* MAP */

.map-section {
    padding: 80px 0;
}

.map-wrapper iframe {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}




/* SPECIALISTS SECTION */

.specialists {
    padding: 80px 0;
    background: #ffffff;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.specialist-card {
    background: #f6f7fb;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.specialist-card:hover {
    transform: translateY(-6px);
}

.specialist-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;
    background: #0B2C5D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

.specialist-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.specialist-card p {
    font-size: 14px;
    color: #6c7b8a;
    line-height: 1.6;
}