* {

    font-family: Arial, sans-serif;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent; /* remove background */
}

::-webkit-scrollbar-thumb {
    background: #0b1d4d;     /* bar color */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06143a;
}


body {
    padding-top: 0px;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}

.modal {
    padding-right: 0 !important;
}

html,
body {

    overflow-x: hidden;
}


/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #0b1d4d #f1f1f1;
}




#about,
#products,
#contact {
    scroll-margin-top: 100px;
}

html {
    scroll-behavior: smooth;
}

/* LOADING SCREEN */
#loader {
    position: fixed;
    inset: 0;
    background: #0b1d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-box {
    text-align: center;
    color: #fff;
}

.loader-box h1 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    animation: spin 0.9s linear infinite;
    margin: 0 auto;
}

.loader-box p {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Loader */



/* Hero */
.hero {
    min-height: 80vh;
            background-image:
            linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
            url("./images/bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    /* padding: 16px; */
    margin: 0px 15px;
    border-radius: 20px;
}

/* Match navbar width & margin */
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

/* Text */
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Buttons */
.hero-btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* WhatsApp */
.hero-btn.whatsapp {
    background: linear-gradient(135deg, #00c853, #25D366);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.hero-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* Call */
.hero-btn.call {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn.call:hover {
    background: #ffffff;
    color: #031652;
    transform: translateY(-3px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-inner {
        padding: 0 20px;
    }
}

/* Hero */
/* About */

.about_section {
    padding: 80px 0;
    background: #FAF6F0;
}

.about_section .heading_container {
    justify-content: center;
    margin-bottom: 60px;
}

.about_section .heading_container h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about_section .heading_container h2 span {
    color: #031652;
}

.about_section .heading_container h2::after {
    content: "";
    width: 91px;
    height: 5px;
    background: #fc0909;
    position: absolute;
    left: 5%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Align center */
.about_section .row {
    align-items: center;
}

/* Image container */
.about_section .img_container {
    position: relative;
}

.about_section .img_container .img-box img {
    width: 100%;
    border-radius: 6px;
}

/* Content box */
.about_section .detail-box {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    margin-left: -80px;
    /* 🔥 overlap effect */
    position: relative;
    z-index: 2;
    border-radius: 6px;
}

/* Text */
.about_section .detail-box h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #031652;
}

.about_section .detail-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Business Feature Cards */
.feature-section {
    padding: 60px 16px;
}

.feature-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    border-radius: 28px;
    padding: 32px 26px;
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1d4d;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #0b1d4d;
    opacity: 0.85;
    max-width: 220px;
}

.feature-icon {
    position: absolute;
    right: 24px;
    bottom: 50px;
    font-size: 90px;
    opacity: 0.25;
}

.feature-arrow {
    position: absolute;
    left: 26px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    background: #1e2a5a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-arrow {
    transform: translateX(4px);
}

/* Colors */
.feature-card.yellow {
    background: #f6e37a;
}

.feature-card.green {
    background: #aee5cc;
}

.feature-card.pink {
    background: #efc9d8;
}

.feature-card.blue {
    background: #9ac5f4;
}

.feature-icon {
    position: absolute;
    right: 24px;
    bottom: 50px;
    font-size: 90px;
    opacity: 0.25;
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Zoom emoji on hover */
.feature-card:hover .feature-icon {
    transform: scale(1.2);
    opacity: 0.35;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-wrap {
        grid-template-columns: 1fr;
    }
}

/* Business Feature Cards */
/* About */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.card button {
    margin-top: 10px;
    background: red;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

.contact form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    background: #0b1d4d;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 22px 15px;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.site-footer p {
    margin: 0;
    line-height: 1.7;
}

.site-footer a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.site-footer a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.site-footer a:hover::after {
    width: 100%;
}

.site-footer a:hover {
    color: #ffffff;
}

/* Footer */




/* map */
/* =========================
   FIND OUR STORE SECTION
========================= */

.find-content {
    padding: 70px 0;
    background: #ffffff;
}

/* Heading */
.find-content .find-our {
    margin-bottom: 40px;
}

.find-content .find-our h3 {
    font-size: 36px;
    font-weight: 700;
    color: #031652;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* underline */
.find-content .find-our h3::after {
    content: "";
    width: 77px;
    height: 5px;
    background: #fc0909;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Map row spacing */
.map {
    margin-top: 40px;
}

/* Google Map */
.map iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: none;
}

/* Address container */
.address {
    background: #ffffff;
    padding: 20px;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #ffffff00;
}

/* Scrollbar */
.address::-webkit-scrollbar {
    width: 4px;
}

.address::-webkit-scrollbar-thumb {
    background: #ffc400;
    border-radius: 10px;
}

.address::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Each address block */
.address {
    height: 100vh;
    /* any fixed height */
    overflow-y: auto;
    /* REQUIRED */
}

.address .addres {
    margin-bottom: 25px;
}

.address .addres:last-child {
    margin-bottom: 0;
}

.address .addres h4 {
    font-size: 18px;
    font-weight: 600;
    color: #031652;
    margin-bottom: 6px;
}

/* Yellow line */
.bor {
    width: 60px;
    height: 2px;
    background: #ffc400;
    margin-bottom: 12px;
}

/* Address list */
.address .addres ul {
    padding: 0;
    margin: 0;
}

.address .addres ul li {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.address .addres ul li i {
    color: #fc0909;
    margin-top: 4px;
    min-width: 16px;
}

.address .addres ul li span {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Closed / timing highlight */
.address .addres ul li span strong {
    color: #d9534f;
    font-weight: 600;
}

/* map */

.heading_container h2 {
    color: #0b1d4d !important;
    font-size: 36px;
    font-weight: 700;
}

/* Products */
.service_section {
    background: linear-gradient(180deg, #f6f8fc 0%, #eef1f8 100%);
    padding: 60px 0;
    overflow: hidden;
}

.heading_container h2 {
    color: #0b1d4d;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-swiper-wrap {
    width: 100%;
    padding: 0 20px;
}

.productSwiper {
    position: relative;
    padding-bottom: 80px;
}

.swiper-slide {
    display: flex;
    height: auto;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px;
    width: 100%;
    border: 1px solid #eef0f5;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 14px 35px rgba(11, 29, 77, 0.15); */
}

.product-card .img-box {
    border-radius: 14px;
    overflow: hidden;

}

.product-card .img-box img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .detail-box {
    padding: 16px 6px 4px;
}

.product-card .detail-box h6 {
    font-size: 15px;
    font-weight: 700;
    color: #0b1d4d;
    margin-bottom: 6px;
}

.product-card .detail-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.swiper-pagination-bullet {
    background: #c9cfdd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0b1d4d;
}

.swiper-button-next,
.swiper-button-prev {
    top: auto;
    bottom: 15px;
    left: auto;
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #0b1d4d;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, color 0.3s ease;
}

.swiper-button-prev {
    right: 68px;
}

.swiper-button-next {
    right: 15px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #0b1d4d;
    color: #ffffff;
}

@media (max-width: 768px) {
    .product-card .img-box img {
        height: 190px;
    }
}

@media (max-width: 576px) {
    .product-swiper-wrap {
        padding: 0 12px;
    }

    .productSwiper {
        padding-bottom: 70px;
    }

    .swiper-button-prev {
        right: 56px;
    }

    .swiper-button-next {
        right: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }

    .product-card .img-box img {
        height: 170px;
    }
}



/* Products */


/* scroll button */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ff9f43;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
    background: #efa660;
    ;
    transform: translateY(-4px);
}

/* scroll button */

/* Modal  */
.modal-contact-box {
    border-radius: 14px;
    overflow: hidden;
}

.modal-contact-box .modal-header {
    background: #0b1d4d;
    color: #ffffff;
}

.modal-contact-box .btn-close {
    filter: invert(1);
}

.modal-contact-box .modal-body {
    padding: 24px;
}

.modal-intro {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.modal-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.modal-contact i {
    font-size: 18px;
    color: #0b1d4d;
    width: 22px;
}

.modal-contact a {
    color: #0b1d4d;
    text-decoration: none;
    font-weight: 500;
}

/* Modal  */


/*  Navbar */
.pill-header {
    width: 100%;
    padding: 16px;
    position: relative;
    z-index: 1100;
    transition: padding 0.3s ease;
}

.pill-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    animation: pillSlideDown 0.35s ease;
}

.pill-header.sticky .pill-navbar {
    background: rgba(231, 231, 231, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.pill-navbar {
    width: 100%;
    margin: auto;
    background: #e7e7e7;
    border-radius: 20px;
    padding: 20px 19px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pill-left {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.pill-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0b1d4d;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pill-text {
    font-weight: 600;
    font-size: 16px;
    color: #0b1d4d;
    letter-spacing: 1px;
}

.pill-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.pill-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0b1d4d;
    margin: 5px 0;
    transition: 0.3s ease;
}

.pill-menu {
    list-style: none;
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pill-menu li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #0b1d4d;
    padding: 8px 16px;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
}

.pill-menu li a:hover {
    background: rgba(11, 29, 77, 0.08);
}

@media (max-width: 768px) {

    .pill-navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 18px;
        border-radius: 22px;
        position: relative;
    }

    .pill-left {
        width: 100%;
    }

    .pill-toggle {
        display: block;
        margin-left: auto;
    }

    .pill-menu {
        display: none;
        flex-direction: column;
        gap: 14px;
        margin-top: 14px;
        padding: 16px;
        border-radius: 18px;
        text-align: center;
        animation: slideDown 0.3s ease forwards;
    }

    .pill-menu.active {
        display: flex;
    }

    .pill-menu li a {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }
}

.pill-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.pill-toggle.active span:nth-child(2) {
    opacity: 0;
}

.pill-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pillSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



/*  Navbar */


/* mouse hover */
#cursorLabel {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #1e2a5a;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.6);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    z-index: 9999;
}



/* mouse hover */



/* all products */
.service_section {
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.product-swiper-wrap {
    margin-bottom: 60px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.productSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.img-box {
    height: 100%;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-box {
    padding: 15px;
    text-align: center;
}

.detail-box h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.detail-box p {
    font-size: 14px;
    color: #666;
}

.product-call-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
}

.product-call-btn:hover {
    background: #444;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper {
    padding: 10px 5px 40px;
}

@media (max-width: 768px) {
    .img-box {
        height: 180px;
    }

    .product-title {
        font-size: 20px;
    }

    .modal.show .modal-dialog {
        transform: none;
        margin-top: 80px;
    }

    .products-button {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }

    #products .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .product-swiper-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .productSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-card {
        width: 500px;
        margin-right: 62px;
    }

    .products-button {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 24px;
    }
    .products-controle{
        margin-top: 20px;
    }
    .find-content{
        padding-top:0px ;
    }
    .service_section{
        padding-bottom: 0px;
    }

}


/* all products */