@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
body {
    box-sizing: border-box;
    /* background: var(--white); */
    font-family: var(--font-poppins);

    color: var(--color-secondary);
}

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background: #000000;
    /* Color of the scroll thumb */
    border-radius: 6px;
    /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color when hovering over the thumb */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the track */
}

/* ESSENTIALS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: bold;
    color: var(--color-secondary);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading-font);
    font-weight: bold;
}



.clear::after {
    display: none;
}

.clear::before {
    display: none;
}

.clear-fix {
    display: block;
}

.clear-fix::before {
    content: "";
    position: absolute;
}

.clear-fix::after {
    content: "";
    position: absolute;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
}

.prelative {
    position: relative;
    width: 100%;
    height: 100%;
}

.sticky-top {
    position: sticky !important;
}

.object-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.just-center-it {
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-left-wrap {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding: 10px 0;
}


.sec-title {
    font-weight: bolder;
    font-size: 65px;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    display: inline-block;
}

.title-container {
    text-align: center;
}

.cta-btn {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);

    transition: all 2.5s ease;
}

.cta-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}




/* Header style */

/* .header-container {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
} */
/* .header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.5s ease;
    background-color: #f0f0f0;
}

.header-hidden {
    transform: translateY(-100%);
} */

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.header-container,
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.5s ease;
    background-color: #f0f0f0;
}


.header-wrapper {
    padding: 10px 0;
    /* background-color: rgb(135, 206, 235); */
}

.logo img {
    height: 80px;
    object-fit: contain;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link::before,
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    font-weight: 500;
}

.nav-item a {
    font-weight: 500;
}

.nav-link::before {
    top: -6px;
}

.nav-link::after {
    bottom: -6px;
}

.nav-link:hover::before,
.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--color-primary);
}

.dropdown:hover .submenu {
    display: block;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    /* background: var(--color-white); */
    min-width: 220px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
    background-color: #ffffff;
}

.submenu li {
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.submenu li a {
    color: #000;
    text-decoration: none;
    display: block;
}

.submenu li:hover {
    background-color: #92cbfa;
}


/* header slider */

.main-slider {
    position: relative;

}

.main-slider .main-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;

    background-color: #333333;
}

.main-slider .main-slider-wrapper .swiper-slide {
    position: relative;
}

.main-slider .main-slider-wrapper .swiper-slide .header-img-cnt {
    position: absolute;
    top: 43%;
    left: 5%;
    font-size: 55px;
    color: white;
    font-weight: 700;
}

.swiper-pagination.hero {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    background: white;
    opacity: 0.5;
    margin: 0 5px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #00bcd4;
    /* optional: active bullet color */
}

/* header about */
.head-about {
    padding: 30px;
    padding-bottom: 0px;
}

.head-about .head-about-header h2 {
    font-weight: 800 !important;
    font-size: 2.5rem !important;
}

.head-about .head-about-cnt p {
    font-size: 20px;
}

/* .header-about-bc {
} */
/* background-color: rgb(241, 240, 232); */



/* footer  */

.footer-section {
    background: rgb(11, 30, 53);
    /* border-radius: 30px; */
    padding: 30px 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-brand {
    flex: 0 1 500px
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-brand p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

.social-dark {
    /* background-color: #000; */
    padding: 20px;
    display: flex;
    gap: 20px;
    /* justify-content: center; */
    align-items: center;
    border-radius: 10px;
}

.social-dark a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-dark a:hover {
    transform: scale(1.2);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


.footer-bottom {
    margin-top: 40px;
    /* text-align: center; */
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
}

.legal-links {
    margin-top: 8px;
    /* display: inline; */
}

.legal-links a {
    margin: 0 10px;
    color: #ffffff;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* mobile responsive */

.mobile-header {
    background: #ffffff;
    color: white;
    padding: 15px;
    position: fixed;
    z-index: 1000;
}

.mobile-logo {
    width: 125px;
    height: auto;
}

.mobile-title {
    font-size: 18px;
    font-weight: 600;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 20px;
    position: relative;
}

.mobile-menu nav ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

/* Submenu */
.has-submenu>a::after {
    content: " ▼";
    font-size: 14px;
}

.submenu {
    display: none;
    padding-left: 0px;
}

.submenu li a {
    font-size: 16px;
}

.has-submenu.open .submenu {
    display: block;
}


/* why choose us */

.hero-section {
    position: relative;
    background: linear-gradient(rgb(111 93 93 / 60%), rgb(28 44 59 / 60%)),
        url('./../image/home/why-choose.jpg') no-repeat center/cover;
    color: white;
    padding: 80px 40px;
    text-align: left;
    overflow: hidden;
    border-radius: 20px;
}

.hero-section .overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* darker overlay if needed */
}

.hero-section .content {
    position: relative;
    z-index: 1;
    /* above the overlay */
}

/* Slide-up keyframes */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation—won’t run until triggered */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.6s ease-out, transform 1.6s ease-out;
    width: 50%;
}

/* When class .visible is added */
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up li {
    font-size: 18px;
    text-align: justify;
}

ul.slide-up {
    list-style-type: none;
    padding-left: 1.2em;
}

ul.slide-up li::marker {
    content: "✦ ";
    /* Your custom symbol */
    color: #fff;
    font-size: 1.2em;
}

/* our product */

.products {
    padding: 40px;
    text-align: center;
    /* background-color:rgb(140, 188, 238); */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./../image/home/product.jpg') no-repeat center/cover;
    color: white;
}

.product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
}

@media (min-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablets: 2 columns */
    }
}

@media (min-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Desktop: 3 columns */
    }
}

.product-card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 200px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.product-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    /* background-color:rgb(140, 188, 238); */
}

.card-back {
    /* background: ; */
    transform: rotateY(180deg);
}

/* our quality */

.head-quality {
    padding-top: 60px;
    padding-bottom: 30px;
    /* position: relative; */
}

.head-quality .head-quality-h h2 {
    padding: 15px;
    /* position:absolute; */
    font-weight: 800;
    font-size: 2rem;
}

.head-quality .head-quality-cnt {
    font-size: 18px;
    text-align: justify;
}

.head-quality .head-quality-img img {
    border-radius: 15px;
}


/* testimonial */


.testimonial {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0b1e35;
    /* background:rgb(157, 161, 167); */
    color: white;
}

.testimonial-section {
    padding: 50px 20px;
    text-align: center;
}

.testimonial-section h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.aswiper {
    padding-bottom: 40px;
}

.aswiper-slide {
    background: #08243f;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 350px;
    margin: auto;
    margin-left: 10px;
    transition: transform 0.4s ease;
}

.testimonial .swiper-slide-active {
    background: linear-gradient(135deg, #00bfff, #1a73e8);
    /* transform: scale(1.05); */
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stars {
    color: gold;
    margin-bottom: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.client-name {
    font-weight: bold;
    margin-top: 10px;
}

.client-company {
    font-size: 14px;
    color: #ccc;
}

/* whatsapp logo */


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* scroll top */


.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 26px;
    width: 50px;
    height: 50px;
    background: rgb(159 157 157 / 60%);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top-btn svg {
    stroke: white;
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover svg {
    transform: translateY(-3px);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* slide enquiry bar  */
/* Load FontAwesome for icons */

.fixed-contact-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background: #0d5eb5;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    transition: width 0.4s ease;
    width: 50px;
}

.fixed-contact-bar a {
    text-decoration: none;
    color: white;
    /* Optional: keeps icon/text color consistent */
}

.fixed-contact-bar:hover {
    width: 250px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    /* color: #0d5eb5; */
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    color: white;
    transition: background 0.3s ease, color 0.3s ease;
}

.fixed-contact-bar:hover .contact-item {
    color: #0d5eb5;
}

.fixed-contact-bar:hover .contact-item span {
    color: black;
}

.contact-info:hover span {
    color: #0d5eb5;
}

.icon {
    min-width: 30px;
    text-align: center;
    font-size: 20px;
}

.contact-info {
    opacity: 0;
    white-space: nowrap;
    padding-left: 10px;
    transition: opacity 0.4s ease;
}

.fixed-contact-bar:hover .contact-info {
    opacity: 1;
}

/* products page  */

:root {
    --primary: #004080;
    --secondary: #0073e6;
    --light: #f4f9ff;
    --dark: #1a1a1a;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: var(--light);
    color: var(--dark);
}

/* Category Intro Section */
.ia-category-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 8%;
    background: white;
    padding-top: 120px;
}

.ia-category-showcase img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatImage 5s ease-in-out infinite;
    max-height: 400px;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.ia-category-text h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ia-category-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ia-category-text a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary);
    color: white;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.ia-category-text a:hover {
    background: var(--dark);
}

/* Product Grid */
.ia-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 8%;
}

.ia-product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.ia-product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 115, 230, 0.3);
}

.ia-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ia-product-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: var(--primary);
}

.ia-product-card p {
    font-size: 0.95rem;
    margin: 0 1rem 1.5rem;
    line-height: 1.5;
    color: #444;
}

.ia-product-intro {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 30px auto;
    padding: 0 20px;
}

.ia-product-intro h2 {
    font-size: 2rem;
    color: #004080;
    /* your blue theme */
    margin-bottom: 15px;
}

.ia-product-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}


/* ===================
       RESPONSIVE DESIGN
       =================== */
@media (max-width: 1024px) {
    .ia-category-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 5%;
    }

    .ia-category-text h1 {
        font-size: 2.2rem;
    }

    .ia-category-text p {
        font-size: 1rem;
    }

    .ia-category-showcase img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ia-category-showcase {
        padding: 2.5rem 5%;
    }

    .ia-category-text h1 {
        font-size: 1.9rem;
    }

    .ia-category-text a {
        padding: 0.7rem 1.6rem;
        font-size: 0.95rem;
    }

    .ia-product-card img {
        height: 180px;
    }

    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 330px;
        display: none;
        z-index: 10;
        background: rgba(15, 15, 15, 0.6);
        backdrop-filter: blur(10px);
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); */
        z-index: 999;
        transition: transform 0.5s ease;
    }
}

@media (max-width: 480px) {
    .ia-category-showcase {
        padding: 7rem 1.5rem 1rem;
    }

    .ia-category-text h1 {
        font-size: 1.6rem;
    }

    .ia-category-text p {
        font-size: 0.9rem;
    }

    .ia-category-text a {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }

    .ia-product-grid {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .ia-product-card h3 {
        font-size: 1.1rem;
    }

    .ia-product-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .mobile-menu .submenu {
        position: static;
        /* remove absolute positioning */
        display: none;
        /* hidden by default */
        background: transparent;
        box-shadow: none;
        padding-left: 15px;
        /* indent submenu items */
    }

    .mobile-menu .submenu li {
        padding: 8px 0;
    }

    .mobile-menu .has-submenu>a::after {
        content: "▼";
        /* small arrow indicator */
        float: right;
        font-size: 0.8em;
        margin-left: 5px;
    }
}

/* mobile responsive */

@media (max-width: 768px) {
    .main-slider .main-slider-wrapper {
        height: 80vh;
        /* shorter on mobile */
    }

    .main-slider .main-slider-wrapper .swiper-slide .header-img-cnt {
        top: 50%;
        left: 5%;
        font-size: 30px;
        line-height: 1.3;
        text-align: left;
    }

    .main-slider .swiper-slide img {
        object-fit: cover;
        height: 80vh;
        width: 100%;
    }

    .head-about .head-about-cnt p {
        font-size: 15px;
        text-align: justify;
    }

    .head-about .head-about-header h2 {
        font-weight: 800 !important;
        font-size: 1.5rem !important;
    }

    .slide-up {

        width: 100%;
    }

    .slide-up li {
        font-size: 13px;
        text-align: justify;
    }

    .products {
        padding: 15px;
        padding-bottom: 20px;
    }

    .card-back {
        text-align: justify;
        font-size: 13px;
    }

    .head-quality .head-quality-h h2 {
        font-weight: 800;
        font-size: 24px;
    }

    .head-quality .head-quality-cnt {
        font-size: 16px;
        text-align: justify;
    }

    .footer-bottom {
        margin-top: 40px;
        /* text-align: center; */
        border-top: 1px solid #eee;
        padding-top: 20px;
        font-size: 14px;
        flex-direction: column;
        justify-content: center;
        /* font-size: 15px; */

    }

    .aswiper-slide {
        /* margin-left: 0px; */
        background: #08243f;
        border-radius: 12px;
        padding: 30px 20px;
        max-width: 350px;
        margin: auto;
        justify-content: center;
        align-items: center;
        /* margin-left: 10px; */
    }

    .testimonial-section {
        padding: 50px 13px;
        text-align: center;
    }

    /* .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    } */

    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }


}