/* =====================================================
   GLOBAL
===================================================== */

:root {
    --navy: #071a33;
    --navy-light: #0d2d52;
    --red: #e21b23;
    --red-dark: #b90f16;
    --white: #ffffff;
    --light: #f5f7fa;
    --text: #263445;
    --border: #e5e9ef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
}



.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-title span {
    display: inline-block;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    color: var(--navy);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: #667085;
    margin: 0;
}


/* =====================================================
   TOP BAR
===================================================== */

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: #fff;
}

.topbar i {
    color: var(--red);
    margin-right: 7px;
}


/* =====================================================
   NAVBAR
===================================================== */

.main-navbar {
   background: #fff;
    border-bottom: 1px solid #eee;
     padding: 0px 0; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.navbar-brand img {
    width: 150px;
    height: auto;
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px !important;
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    color: var(--red);
}

.nav-btn {
    background: var(--red);
    color: #fff !important;
    padding: 11px 20px !important;
    border-radius: 4px;
}

.nav-btn:hover {
    background: var(--navy);
}


/* =====================================================
   HERO / IMAGE BANNER
===================================================== */

.hero-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    width: 100%;
    margin-top: 35px;
    padding: 0;
     height: 100%;
}

.hero-banner-img {
    width: 100%;
    height: auto;
   aspect-ratio: 1100 / 500;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* =====================================================
   HERO RESPONSIVE
===================================================== */

/* Laptop */

@media (min-width: 992px) and (max-width: 1199px) {

    .hero-banner-img {
        aspect-ratio: 1300 / 400;
    }

}


/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {

    .hero-banner-img {
        aspect-ratio: 1200 / 600;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .hero-banner-img {
        width: 100%;
        height: auto;
        aspect-ratio: 900 / 700;
        object-fit: cover;
        object-position: center;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .hero-banner-img {
       aspect-ratio: 563 / 266;
        object-fit: cover;
        object-position: center;
    }

}


/* =====================================================
   CAROUSEL INDICATORS
===================================================== */

.hero-slider .carousel-indicators {
    bottom: 10px;
    margin-bottom: 0;
}

.hero-slider .carousel-indicators button {
    width: 30px;
    height: 4px;
    margin: 0 4px;
    border: 0;
    border-radius: 10px;
}

.hero-slider .carousel-indicators .active {
    background: var(--red);
}


/* =====================================================
   CAROUSEL CONTROLS
===================================================== */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 55px;
    opacity: 0;
    transition: .3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider button:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767px) {

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        opacity: 1;
    }

}


/* =====================================================
   QUICK INFO
===================================================== */

.quick-info {
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.info-box {
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 17px;
    box-shadow: 0 12px 40px rgba(7, 26, 51, .10);
    height: 100%;
    border-bottom: 3px solid var(--red);
}

.info-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    background: #fcebed;
    color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 50%;
}

.info-box h5 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 3px;
}

.info-box p {
    margin: 0;
    color: #697586;
    font-size: 13px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: var(--light);
}

.about-image {
    height: 470px;
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--navy-light)
    );
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image:before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.about-image:after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(226,27,35,.5);
    border-radius: 50%;
}

/*.about-logo {
    
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}*/
.about-logo {
    display: block;
    width: 80%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}
@media (max-width: 575px) {

    .about-section .col-lg-6:first-child {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto;
        display: block;
        object-fit: contain;
        margin-top: 56px;
    }

}
.about-content {
    padding-left: 30px;
}

.about-content .small-title {
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    color: var(--navy);
    font-size: 39px;
    font-weight: 800;
    margin: 12px 0 20px;
}

.about-content p {
    color: #657184;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--navy);
}

.about-list i {
    color: var(--red);
    margin-right: 10px;
}


/* =====================================================
   BUSINESS STATS
===================================================== */

.stats-section {
    background: var(--navy);
    color: #fff;
}

.stat-box {
    text-align: center;
    padding: 15px;
}

.stat-box i {
    font-size: 30px;
    color: var(--red);
    margin-bottom: 12px;
}

.stat-box h3 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 3px;
}

.stat-box p {
    color: rgba(255,255,255,.65);
    margin: 0;
}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {
    background: #fff;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    height: 100%;
    padding: 30px 25px;
    border-radius: 6px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.product-card:before {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    top: 0;
    left: 0;
    background: var(--red);
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(7,26,51,.12);
    border-color: transparent;
}

.product-icon {
    width: 65px;
    height: 65px;
    background: #f3f6fa;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 27px;
    margin-bottom: 20px;
    transition: .3s;
}

.product-card:hover .product-icon {
    background: var(--red);
    color: #fff;
}

.product-card h4 {
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-card p {
    color: #707b8c;
    font-size: 14px;
    margin: 0;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery-section {
    background: #fafafa;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 14px;
    background: #eee;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.05)
    );
    opacity: 0;
    transition: .35s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.gallery-content h4 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.gallery-zoom {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: .3s ease;
}

.gallery-zoom:hover {
    transform: scale(1.1);
}


/* =====================================================
   GALLERY MODAL
===================================================== */

.gallery-modal {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.gallery-modal img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #222;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {
    background: var(--light);
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    height: 100%;
    border: 1px solid var(--border);
    transition: .3s;
}

.feature-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.feature-number {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card h4 {
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
}

.feature-card p {
    color: #707b8c;
    font-size: 14px;
    margin: 0;
}


/* =====================================================
   OPERATIONS
===================================================== */

.operations-section {
    background: #fff;
}

.operation-box {
    background: var(--navy);
    color: #fff;
    padding: 35px;
    height: 100%;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.operation-box:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    right: -30px;
    bottom: -40px;
}

.operation-box i {
    font-size: 32px;
    color: var(--red);
    margin-bottom: 18px;
}

.operation-box h4 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
}

.operation-box p {
    color: rgba(255,255,255,.7);
    margin: 0;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    background: linear-gradient(
        90deg,
        var(--navy),
        var(--navy-light)
    );
    padding: 70px 0;
    color: #fff;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255,255,255,.7);
    margin: 0;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: var(--light);
}

.contact-box {
    background: #fff;
    border-radius: 7px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 8px 35px rgba(7,26,51,.06);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background: #fcebed;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.contact-item small {
    display: block;
    color: #8993a3;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-item strong,
.contact-item a {
    color: var(--navy);
    font-weight: 700;
}

.contact-item a:hover {
    color: var(--red);
}

.address-box {
    background: var(--navy);
    color: #fff;
    padding: 35px;
    border-radius: 7px;
    height: 100%;
}

.address-box h3 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
}

.address-box p {
    color: rgba(255,255,255,.75);
}

.address-line {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.address-line i {
    color: var(--red);
    margin-top: 5px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #041224;
    color: #fff;
    padding-top: 65px;
}

.footer-logo {
    width: 185px;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255,255,255,.62);
    font-size: 14px;
}

.footer h5 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-bottom {
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 7px 20px rgba(0,0,0,.2);
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.08);
}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 991px) {

    .topbar {
        display: none;
    }

    .navbar-brand img {
        width: 155px;
    }

    .navbar-nav {
        gap: 0;
        padding-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 5px !important;
        border-bottom: 1px solid #eee;
    }

    .nav-btn {
        display: inline-block;
        margin-top: 10px;
        width: fit-content;
    }

    .quick-info {
        margin-top: 25px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 35px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery-item {
        height: 260px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {

    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .section-title h2 {
        font-size: 29px;
    }

    .section-title p {
        font-size: 14px;
    }

    .navbar-brand img {
        width: 135px;
    }

    .info-box {
        padding: 20px;
    }

    .about-image {
        height: 300px;
    }

    .about-image:before {
        width: 220px;
        height: 220px;
    }

    .about-image:after {
        width: 155px;
        height: 155px;
    }

/*    .about-logo {
        width: 180px;
    }*/

    .about-content h2 {
        font-size: 29px;
    }

    .stat-box {
        margin-bottom: 20px;
    }

    .stat-box h3 {
        font-size: 29px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .contact-box,
    .address-box {
        padding: 25px;
    }

    .gallery-item {
        height: 250px;
        border-radius: 12px;
    }

    .gallery-overlay {
        opacity: 1;
        padding: 18px;
    }

    .gallery-content h4 {
        font-size: 17px;
    }

    .gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }
}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .section-title h2 {
        font-size: 27px;
    }

    .gallery-item {
        height: 230px;
    }

}
 .product-icon img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: auto;
}
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card button {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 22px;
    background: #071a33;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-card button:hover {
    background: #e21b23;
    transform: translateY(-2px);
}

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.form-heading span {
    color: #e21b23;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-heading h3 {
    margin: 8px 0 10px;
    color: #071a33;
    font-size: 30px;
    font-weight: 700;
}

.form-heading p {
    margin: 0;
    color: #666;
}


.contact-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #071a33;
    font-size: 14px;
    font-weight: 600;
}

.contact-form-box label span {
    color: #e21b23;
}


.contact-form-box .form-control {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: none;
    transition: 0.3s ease;
}

.contact-form-box textarea.form-control {
    height: auto;
    resize: vertical;
}


.contact-form-box .form-control:focus {
    border-color: #071a33;
    box-shadow: 0 0 0 3px rgba(7, 26, 51, 0.08);
}


.contact-submit-btn {
    margin-top: 5px;
    padding: 13px 30px;
    background: #071a33;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit-btn i {
    margin-left: 8px;
}

.contact-submit-btn:hover {
    background: #e21b23;
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 767px) {

    .contact-form-box {
        padding: 25px 18px;
    }

    .form-heading h3 {
        font-size: 24px;
    }

    .contact-submit-btn {
        width: 100%;
    }

}