html{
    scroll-behavior: smooth;
}

.main-navbar,
.sticky-navbar{
    transition: all 0.35s ease;
}

.quote-btn,
.product-quote-btn,
.product-download-btn{
    transition: all 0.3s ease;
}

.quote-btn:hover,
.product-quote-btn:hover,
.product-download-btn:hover{
    transform: translateY(-3px);
}

.product-card img,
.related-product-card img{
    transition: all 0.4s ease;
}

.product-card:hover img,
.related-product-card:hover img{
    transform: scale(1.05);
}


/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* =========================
   GLOBAL FIX
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    overflow-x: hidden;
    width: 100%;
}


/* BOOTSTRAP ROW OVERFLOW FIX */

.row{
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* IMAGE FIX */

img{
    max-width: 100%;
    height: auto;
    display: block;
}


/* SECTION FIX */

section{
    overflow-x: hidden;
}



/* TOP HEADER */

.top-header{
    background: #031B3A;
    padding: 10px 0;
}


.top-contact{
    display: flex;
    gap: 25px;
}


.top-contact a{
    color: white;
    text-decoration: none;  
    font-size: 14px;
}


.top-contact i{
    margin-right: 8px;
}


.top-right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.top-right span{
    color: white;
    font-size: 14px;
}


.social-icons{
    display: flex;
    gap: 15px;
}


.social-icons a{
    color: white;
}




/* MAIN NAVBAR */

.main-navbar{
    background: white;
    padding: 10px 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}


.navbar-brand img{
    height: 95px;
    width: auto;
    object-fit: contain;
}


.navbar-nav{
    gap: 25px;
}


.nav-link{
    color: #031B3A;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;
}


.nav-link:hover{
    color: red;
}


.nav-link.active{
    color: red;
}


.dropdown-menu{
    border-radius: 0;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}


.dropdown-item{
    padding: 12px 18px;
}


.dropdown-item:hover{
    background: red;
    color: white;
}



/* QUOTE BUTTON */

.quote-btn{
    background: red;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
      text-decoration: none;
}


.quote-btn:hover{
    background: #031B3A;
    color: white;
     text-decoration: none;
}


.quote-btn i{
    margin-left: 10px;
}


/* STICKY NAVBAR */

.sticky-navbar{
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    transition: 0.4s ease;
    padding: 14px 0;
}


/* SHOW NAVBAR */

.sticky-navbar.active{
    top: 0;
}


/* WRAPPER */

.sticky-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.sticky-logo img{
    height: 55px;
}


/* MENU */

.sticky-menu{
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.sticky-menu li a{
    text-decoration: none;
    color: #031B3A;
    font-weight: 600;
    transition: 0.3s;
}


.sticky-menu li a:hover{
    color: red;
}


/* BUTTON */

.sticky-btn{
    background: red;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* HOVER EFFECT */

.sticky-btn{
    transition: 0.4s ease;
}

.sticky-btn:hover{

    background: #001b44;

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.18);
}

/* HERO SECTION */

.hero-section{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}


/* FIXED BG */

.hero-bg{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(3,27,58,0.78),
        rgba(3,27,58,0.78)
    ),
    url('../images/hero-bg-1.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    z-index: -1;
}


/* HERO CONTENT */

.hero-content{
    color: white;
}


/* SUBTITLE */

.hero-subtitle{
    color: #D71920;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 20px;

    animation: fadeUp 1s ease;
}


/* TITLE */

.hero-title{
    font-size: 72px;
    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

    animation: fadeUp 1.2s ease;
}


.hero-title span{
    color: #D71920;
}


/* TEXT */

.hero-text{
    font-size: 18px;

    line-height: 1.9;

    color: rgba(255,255,255,0.8);

    margin-bottom: 35px;

    max-width: 620px;

    animation: fadeUp 1.4s ease;
}


/* BUTTON */

.hero-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    background: #D71920;

    color: white;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

    animation: fadeUp 1.6s ease;
}


.hero-btn:hover{
    background: white;
    color: #031B3A;
}


/* PRODUCT SLIDER */

.hero-product-slider{
    position: relative;

    width: 100%;
    height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* PRODUCT IMAGE */

.hero-product-slider img{
    position: absolute;

    width: 90%;
    max-width: 550px;

    opacity: 0;

    transform: translateX(120px) scale(0.9);

    transition: 1s ease;
}


/* ACTIVE IMAGE */

.hero-product-slider img.active{
    opacity: 1;

    transform: translateY(0) scale(1);
}


/* TEXT ANIMATION */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media(max-width:991px){

    .hero-title{
        font-size: 46px;
    }

    .hero-product-slider{
        height: 420px;
        margin-top: 40px;
    }

}

/* ABOUT SECTION */

.about-section{
    background: #fff;
    padding: 70px 0;
}


/* ABOUT IMAGE SHAPE */

.about-img-box{
    position: relative;
    width: 100%;
    max-width: 520px;
}


/* RED SHAPE */

.about-img-box::before{
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 100%;
    height: 100%;
    background: red;

    clip-path: polygon(
        0 0,
        85% 0,
        100% 50%,
        85% 100%,
        0 100%
    );

    z-index: 1;
}


/* IMAGE */

.about-img-box img{
    position: relative;
    width: 100%;
    height: 620px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);

    clip-path: polygon(
        0 0,
        85% 0,
        100% 50%,
        85% 100%,
        0 100%
    );

    z-index: 2;
}


/* ABOUT TAG */

.about-tag{
    color: red;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 50px;
}


.about-tag::before{
    content: "";
    width: 35px;
    height: 2px;
    background: red;
    position: absolute;
    left: 0;
    top: 50%;
}


/* ABOUT TITLE */

.about-title{
    font-size: 52px;
    font-weight: 800;
    color: #031B3A;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 25px;
}


/* ABOUT TEXT */

.about-text{
    color: #666;
    line-height: 1.9;
    font-size: 16px;
    max-width: 90%;
}


/* COUNTER BOX */

.about-counter-box{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px 15px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    
}


.about-counter-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


.about-counter-box i{
    font-size: 28px;
    color: red;
    margin-bottom: 15px;
}


.about-counter-box h3{
    font-size: 34px;
    font-weight: 800;
    color: #031B3A;
    margin-bottom: 8px;
}


.about-counter-box p{
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}


/* BUTTON */

.about-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #031B3A;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 35px;
    transition: 0.3s;
}


.about-btn:hover{
    background: red;
    color: white;
}


.about-btn i{
    font-size: 14px;
}


/* RESPONSIVE */

@media(max-width:991px){

    .about-title{
        font-size: 38px;
    }

}

/* ABOUT IMAGE SHAPE */

.about-img-shape{
    position: relative;
    width: 100%;
    max-width: 520px;
}


/* RED SHAPE BACKGROUND */

.about-img-shape::before{
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 100%;
    height: 100%;
    background: red;
    clip-path: polygon(
        0 0,
        82% 0,
        100% 50%,
        82% 100%,
        0 100%
    );
    z-index: 1;
}


/* IMAGE */

.about-img-shape img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;

    clip-path: polygon(
        0 0,
        82% 0,
        100% 50%,
        82% 100%,
        0 100%
    );

    z-index: 2;
}

/* WHY SECTION */

.why-section{
     padding: 80px 0 40px;
    background: transparent;
}


/* MAIN BOX */

.why-grid{
    background: linear-gradient(135deg, #00152E, #032B57);
    border-radius: 22px;

    padding: 55px 30px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    position: relative;
    overflow: hidden;
}


/* HEADING */

.why-heading{
    text-align: center;
    margin-bottom: 50px;
}


.why-heading span{
    color: #E31E24;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}


.why-heading h2{
    font-size: 56px;
    font-weight: 800;
    color: #031B3A;

    margin-top: 10px;
    margin-bottom: 18px;
}


.why-heading p{
    max-width: 850px;
    margin: auto;

    font-size: 18px;
    line-height: 1.8;

    color: #5A5A5A;
}


/* CARD */

.why-card{
    text-align: center;
    padding: 0 18px;

    position: relative;
}


/* VERTICAL LINE */

.why-card:not(:last-child)::after{
    content: "";

    position: absolute;
    top: 50%;
    right: -10px;

    transform: translateY(-50%);

    width: 1px;
    height: 130px;

    background: rgba(255,255,255,0.15);
}


/* ICON */

.why-icon{
    width: 90px;
    height: 90px;

    border: 2px solid #E31E24;
    border-radius: 50%;

    margin: auto auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}


.why-icon i{
    color: #E31E24;
    font-size: 36px;
}


/* HOVER */

.why-card:hover .why-icon{
    background: #E31E24;
    transform: translateY(-6px);
}


.why-card:hover .why-icon i{
    color: #fff;
}


/* TEXT */

.why-card h4{
    color: #fff;

    font-size: 21px;
    font-weight: 700;

    margin-bottom: 15px;
}


.why-card p{
    color: rgba(255,255,255,0.82);

    font-size: 15px;
    line-height: 1.8;
}


/* RESPONSIVE */

@media(max-width: 1100px){

    .why-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .why-card::after{
        display: none;
    }

}


@media(max-width: 768px){

    .why-grid{
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .why-heading h2{
        font-size: 38px;
    }

}


/* CLIENT SECTION */

.client-section{
    padding: 100px 0;
    background: white;
    overflow: hidden;
}


.client-slider{
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.client-heading span{
    color: #E31E24;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 1px;
}


.client-track{
    display: flex;
    width: calc(250px * 10);
    animation: scrollClients 25s linear infinite;
}


.client-logo{
    width: 250px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}


.client-logo:hover{
    transform: translateY(-8px);
}


.client-logo img{
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
}


@keyframes scrollClients{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(calc(-250px * 5));
    }

}

/* FOOTER */

.footer-section{
    background: #031B3A;
    color: white;
    padding-top: 90px;
}


/* LEFT FOOTER SECTION */

.footer-about-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* FOOTER LOGO */

.footer-logo{
    width: 100%;
    text-align: left;   
}


.footer-logo img{
    width: 280px;
    margin-bottom: 25px;
}


/* FOOTER ABOUT */

.footer-about{
    width: 100%;
    max-width: 320px;
    text-align: left;
    color: #d1d1d1;
    line-height: 1.9;
    margin-bottom: 25px;
}


/* SOCIAL ICONS */

.footer-social{
    display: flex;
    gap: 15px;
    justify-content: center;
}


.footer-social a{
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}


.footer-social a:hover{
    background: red;
    transform: translateY(-5px);
}


/* FOOTER TITLES */

.footer-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}


/* FOOTER LINKS */

.footer-links{
    list-style: none;
    padding: 0;
}


.footer-links li{
    margin-bottom: 14px;
}


.footer-links li a{
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s;
}


.footer-links li a:hover{
    color: red;
    padding-left: 6px;
}


/* FOOTER CONTACT */

.footer-contact p{
    display: flex;
    gap: 12px;
    line-height: 1.8;
    color: #d1d1d1;
}


.footer-contact i{
    color: red;
    margin-top: 5px;
}


/* MAP */

.footer-map{
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
}


.footer-map iframe{
    width: 100%;
    height: 170px;
    border: none;
}


/* COPYRIGHT */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 70px;
    padding: 20px 0;
    text-align: center;
}


.footer-bottom p{
    margin: 0;
    color: #d1d1d1;
}

.footer-contact a{

    color: #d1d1d1;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-contact a:hover{

    color: red;
}



/* RESPONSIVE */

@media(max-width:991px){

    .footer-section{
        text-align: center;
    }

    .footer-about{
        text-align: center;
    }

    .footer-contact p{
        justify-content: center;
    }

    .footer-links{
        margin-bottom: 30px;
    }

}

Smooth

.hero-section::after{

    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 120px;

    background:
    linear-gradient(
        to bottom,
        transparent,
        #fff
    );

    z-index: 2;
}

extra effect hero image sliding

.hero-product-slider img{

    animation: floatProduct 15s ease-in-out infinite;
}

@keyframes floatProduct{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ===================================
   HOVER DROPDOWN
=================================== */

.navbar .dropdown-menu{

    display: block;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.35s ease;

    margin-top: 0;

    border: none;

    border-radius: 10px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);
}


/* SHOW ON HOVER */

.navbar .dropdown:hover .dropdown-menu{

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* DROPDOWN ITEM */

.navbar .dropdown-item{

    padding: 12px 22px;

    transition: 0.3s ease;
}


/* ITEM HOVER */

.navbar .dropdown-item:hover{

    background: #f5f7fb;

    color: red;

    padding-left: 28px;
}

/* ===================================
   STICKY NAVBAR DROPDOWN
=================================== */

.sticky-menu{
    display: flex;
    align-items: center;
    gap: 35px;
}


/* DROPDOWN */

.sticky-dropdown{
    position: relative;
    list-style: none;
}


/* PRODUCTS LINK */

.sticky-dropdown > a{

    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    color: #001b44;

    font-weight: 600;

    transition: 0.3s ease;
}


/* ICON */

.sticky-dropdown > a i{

    font-size: 12px;
}


/* DROPDOWN BOX */

.sticky-dropdown-menu{

    position: absolute;

    top: 130%;
    left: 0;

    min-width: 240px;

    background: #ffffff;

    border-radius: 10px;

    padding: 10px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition: all 0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

    z-index: 9999;
}


/* SHOW ON HOVER */

.sticky-dropdown:hover .sticky-dropdown-menu{

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* LIST */

.sticky-dropdown-menu li{
    list-style: none;
}


/* LINKS */

.sticky-dropdown-menu li a{

    display: block;

    padding: 12px 22px;

    color: #001b44;

    text-decoration: none;

    font-size: 15px;

    transition: 0.3s ease;
}


/* HOVER */

.sticky-dropdown-menu li a:hover{

    background: #f5f7fb;

    color: red;

    padding-left: 28px;
}




/* ===================================
   ABOUT HERO SECTION
=================================== */

.about-hero-section{

    padding: 130px 0 90px;

    background:
    linear-gradient(
        rgba(3,27,58,0.82),
        rgba(3,27,58,0.82)
    ),
    url("../images/about-img.png");

    background-size: cover;
    background-position: center;

    text-align: center;
}


.about-hero-content h1{

    color: #fff;

    font-size: 62px;

    font-weight: 800;

    margin-bottom: 18px;
}


.about-hero-content p{

    color: rgba(255,255,255,0.82);

    font-size: 18px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;
}



/* ===================================
   ABOUT MAIN SECTION
=================================== */

.about-main-section{

    padding: 110px 0;

    background: #fff;
}


/* IMAGE */

.about-main-image{

    overflow: hidden;

    border-radius: 28px;
}


.about-main-image img{

    width: 100%;

    height: 680px;

    object-fit: cover;

    border-radius: 28px;

    transition: 0.5s ease;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.12);
}


.about-main-image:hover img{

    transform: scale(1.04);
}


/* CONTENT */

.about-mini-title{

    color: #D71920;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 18px;
}


.about-main-content h2{

    color: #031B3A;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 28px;
}


.about-main-content p{

    color: #555;

    font-size: 17px;

    line-height: 1.95;

    margin-bottom: 20px;
}



/* ===================================
   COMPANY OVERVIEW SECTION
=================================== */

.company-overview-section{

    padding: 110px 0;

    background: #fff;
}


/* IMAGE */

.company-overview-image{

    overflow: hidden;

    border-radius: 28px;
}


.company-overview-image img{

    width: 100%;

    height: 680px;

    object-fit: cover;

    border-radius: 28px;

    transition: 0.5s ease;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.12);
}


.company-overview-image:hover img{

    transform: scale(1.04);
}


/* CONTENT */

.company-mini-title{

    color: #D71920;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    display: inline-block;

    margin-bottom: 18px;
}


/* TITLE */

.company-overview-content h2{

    color: #031B3A;

    font-size: 42px;

    font-weight: 800;

    line-height: 1.25;

    margin-bottom: 28px;

    max-width: 700px;
}


/* TEXT */

.company-overview-content p{

    color: #555;

    font-size: 17px;

    line-height: 1.95;

    margin-bottom: 20px;
}



/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:991px){

    .company-overview-section{

        padding: 80px 0;
    }

    .company-overview-image img{

        height: 380px;

        border-radius: 22px;
    }

    .company-overview-content h2{

        font-size: 34px;

        line-height: 1.3;
    }

    .company-overview-content p{

        font-size: 15px;

        line-height: 1.9;
    }

}


/* ===================================
   CORE VALUES SECTION
=================================== */

.core-values-section{

    position: relative;

    padding: 120px 0;

    background:
    url('../images/about-img.png');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    overflow: hidden;
}


/* OVERLAY */

.core-overlay{

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
    rgba(3, 27, 58, 0.88);

    backdrop-filter: blur(3px);
}


/* WRAPPER */

.core-values-wrapper{

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(14px);

    border-radius: 30px;

    padding: 70px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.25);
}



/* LEFT */

.core-values-left{

    width: 42%;
}


.core-values-left span{

    color: red;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    display: inline-block;

    margin-bottom: 20px;
}


.core-values-left h2{

    color: #fff;

    font-size: 56px;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 30px;
}


.core-values-left p{

    color: rgba(255,255,255,0.75);

    font-size: 17px;

    line-height: 2;
}



/* RIGHT */

.core-values-right{

    width: 58%;
}



/* ITEM */

.core-value-item{

    display: flex;

    gap: 25px;

    padding: 28px 0;

    border-bottom:
    1px solid rgba(255,255,255,0.12);

    transition: 0.4s ease;
}


.core-value-item:hover{

    transform: translateX(10px);
}


.core-value-item h3{

    color: red;

    font-size: 26px;

    font-weight: 800;

    min-width: 60px;
}


.core-value-item h4{

    color: #fff;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 10px;
}


.core-value-item p{

    color: rgba(255,255,255,0.72);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 0;
}


.border-remove{

    border-bottom: none;
}



/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:1200px){

    .core-values-left h2{

        font-size: 46px;
    }

}


@media(max-width:992px){

    .core-values-wrapper{

        flex-direction: column;

        padding: 50px;
    }

    .core-values-left,
    .core-values-right{

        width: 100%;
    }

    .core-values-left{

        margin-bottom: 20px;
    }

}


@media(max-width:768px){

    .core-values-section{

        padding: 80px 0;
    }

    .core-values-wrapper{

        padding: 35px 25px;

        border-radius: 22px;

        gap: 35px;
    }

    .core-values-left span{

        font-size: 12px;

        letter-spacing: 2px;
    }

    .core-values-left h2{

        font-size: 34px;

        line-height: 1.25;

        margin-bottom: 20px;
    }

    .core-values-left p{

        font-size: 15px;

        line-height: 1.9;
    }

    .core-value-item{

        gap: 18px;

        padding: 22px 0;
    }

    .core-value-item h3{

        font-size: 22px;

        min-width: 45px;
    }

    .core-value-item h4{

        font-size: 20px;
    }

    .core-value-item p{

        font-size: 14px;

        line-height: 1.8;
    }

}


/* ===================================
   VISION SECTION
=================================== */

.vision-section{

    padding: 100px 0;

    background: #fff;
}


.vision-box{

    background: #f8f9fc;

    padding: 50px 40px;

    border-radius: 24px;

    height: 100%;
}


.vision-box h3{

    color: #031B3A;

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 22px;
}


.vision-box p{

    color: #555;

    font-size: 17px;

    line-height: 1.9;
}



/* ===================================
   CTA SECTION
=================================== */

/* ===================================
   CTA SECTION
=================================== */

.about-cta-section{

    padding: 100px 0;

    background:
    linear-gradient(
        rgba(3,27,58,0.90),
        rgba(3,27,58,0.90)
    ),
    url("../images/hero-bg-2.png");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    position: relative;

    overflow: hidden;

    text-align: center;
}


.about-cta-content{

    max-width: 900px;

    margin: auto;
}


.about-cta-content h2{

    color: #fff;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;
}


.about-cta-content p{

    color: rgba(255,255,255,0.82);

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 35px;

    max-width: 820px;

    margin-left: auto;

    margin-right: auto;
}


.about-cta-btn{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 190px;
    height: 58px;

    background: red;

    color: #fff;

    text-decoration: none;

    border-radius: 14px;

    font-weight: 600;

    transition: 0.4s ease;
}


.about-cta-btn:hover{

    background: #fff;

    color: #031B3A;
}



/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:991px){

    .about-hero-section{

        padding: 110px 0 70px;
    }

    .about-hero-content h1{

        font-size: 42px;
    }

    .about-hero-content p{

        font-size: 16px;

        padding: 0 10px;
    }


    /* ABOUT */

    .about-main-section{

        padding: 80px 0;
    }

    .about-main-image img{

        height: 380px;

        border-radius: 22px;
    }

    .about-main-content h2{

        font-size: 36px;

        line-height: 1.25;
    }

    .about-main-content p{

        font-size: 15px;

        line-height: 1.9;
    }


    /* WHY */

    .why-choose-section{

        padding: 80px 0;
    }

    .why-choose-heading h2{

        font-size: 34px;
    }


    /* VISION */

    .vision-section{

        padding: 80px 0;
    }

    .vision-box{

        padding: 35px 28px;
    }

    .vision-box h3{

        font-size: 28px;
    }


    /* CTA */

    .about-cta-section{

        padding: 80px 0;
    }

    .about-cta-content h2{

        font-size: 36px;
    }

    .about-cta-content p{

        font-size: 16px;
    }

}



/* ===================================
   ACTIVE NAV LINK
=================================== */

.nav-link{

    position: relative;

    transition: 0.3s ease;
}


/* RED LINE */

.nav-link.active-page::after{

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 2px;

    background: red;

    border-radius: 10px;
}

/* ===================================
   STICKY ACTIVE MENU
=================================== */

.sticky-menu li a{

    position: relative;
}


/* ACTIVE RED LINE */

.sticky-menu li a.sticky-active::after{

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 2px;

    background: red;

    border-radius: 10px;
}


/* ===================================
   FLOATING EXPERIENCE BOX
=================================== */

.experience-box{

    animation: expFloat 5s ease-in-out infinite;
}


@keyframes expFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }

}


/* ===================================
   MEGA MENU RESPONSIVE FIX
=================================== */

.mega-menu{
    width: 260px !important;
    min-width: 260px !important;
}

.mega-link{
    padding: 12px 18px !important;
    font-size: 15px !important;
}

.mega-dropdown{
    position: relative;
}


/* MAIN MENU */

.mega-menu{

    position: absolute;

    top: 100%;
    left: 0;

    min-width: 330px;

    background: #fff;

    padding: 0;

    border: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

    z-index: 9999;
}


/* SHOW MENU */

.mega-dropdown:hover .mega-menu{

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* MAIN ITEMS */

.mega-item{

    position: relative;

    list-style: none;
}


/* MAIN LINKS */

.mega-link{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 22px;

    color: #031B3A;

    font-size: 17px;

    font-weight: 500;

    text-decoration: none;

    background: #fff;

    transition: 0.3s ease;
}


/* ARROW */

.mega-link::after{

    content: "\f105";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 13px;

    color: #031B3A;
}


/* HOVER */

.mega-link:hover{

    background: #f5f5f5;

    color: red;
}


.mega-link:hover::after{

    color: red;
}



/* ===================================
   SUBMENU
=================================== */

.mega-submenu{
    min-width: 240px !important;
}

.mega-submenu li a{
    padding: 12px 18px !important;
    font-size: 15px !important;
}

.mega-submenu{

    position: absolute;

    top: 0;

    left: 100%;

    min-width: 240px;

    background: #fff;

    padding: 0;

    opacity: 0;

    visibility: hidden;

    transform: translateX(15px);

    transition: 0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

    z-index: 9999;
}


/* SHOW */

.mega-item:hover > .mega-submenu{

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* LINKS */

.mega-submenu li{

    position: relative;

    list-style: none;
}


.mega-submenu li a{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 22px;

    color: #444;

    text-decoration: none;

    font-size: 16px;

    background: #fff;

    transition: 0.3s ease;
}


/* THIRD LEVEL ARROW */

.mega-inner-item > a::after{

    content: "\f105";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 13px;

    color: #031B3A;
}


/* HOVER */

.mega-submenu li a:hover{

    background: #f5f5f5;

    color: red;

    padding-left: 28px;
}


.mega-inner-item > a:hover::after{

    color: red;
}



/* ===================================
   THIRD LEVEL MENU
=================================== */

.mega-inner-item{

    position: relative;
}


/* INNER MENU */

.mega-inner-submenu{

    position: absolute;

    top: 0;

    left: 100%;

    min-width: 280px;

    background: #fff;

    padding: 0;

    opacity: 0;

    visibility: hidden;

    transform: translateX(15px);

    transition: 0.35s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

    z-index: 99999;
}


/* SHOW */

.mega-inner-item:hover > .mega-inner-submenu{

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* INNER LINKS */

.mega-inner-submenu li{

    list-style: none;
}


.mega-inner-submenu li a{

    display: block;

    padding: 16px 22px;

    color: #444;

    text-decoration: none;

    font-size: 16px;

    background: #fff;

    transition: 0.3s ease;
}


/* HOVER */

.mega-inner-submenu li a:hover{

    background: #f5f5f5;

    color: red;

    padding-left: 28px;
}





/* ===================================
   RESPONSIVE SCREEN FIX
=================================== */

@media(max-width:1400px){

    .mega-submenu{

        left: 95%;
    }

    .mega-inner-submenu{

        left: 95%;
    }

}


@media(max-width:1200px){

    .mega-submenu{

        min-width: 260px;
    }

    .mega-inner-submenu{

        min-width: 260px;
    }

}


/* MOBILE */

@media(max-width:991px){

    .mega-menu,
    .mega-submenu,
    .mega-inner-submenu{

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        width: 100%;

        min-width: 100%;

        box-shadow: none;

        display: none;
    }

    .mega-dropdown:hover .mega-menu,
    .mega-item:hover .mega-submenu,
    .mega-inner-item:hover .mega-inner-submenu{

        display: block;
    }

}

/* ===================================
   DESKTOP MEGA MENU FIX
=================================== */

@media (min-width: 992px){

    .mega-menu{
        min-width: 330px;
        border-radius: 12px;
        overflow: visible;
    }

    .mega-submenu{
        min-width: 330px;
        left: 100%;
    }

    .mega-inner-submenu{
        min-width: 300px;
        left: 100%;
    }

    /* Valves submenu */

    .valve-item .mega-submenu{
        min-width: 330px;
    }

    /* Ball valve third menu */

    .mega-inner-item .mega-inner-submenu{
        min-width: 300px;
    }

}

/* ===================================
   PREVENT THIRD MENU OVERFLOW
=================================== */

.valve-item .mega-inner-submenu{

    left: auto;
    right: -300px;

}

.valve-item .mega-inner-submenu{

    left: auto;
    right: 100%;

}   


/* ===================================
   STICKY MEGA MENU
=================================== */

.sticky-dropdown{
    position: relative;
}

.sticky-dropdown-menu,
.sticky-sub-menu,
.sticky-third-menu{

    position: absolute;

    background: #fff;

    min-width: 280px;

    padding: 10px 0;

    list-style: none;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;

    z-index: 9999;
}


/* LEVEL 1 */

.sticky-dropdown-menu{

    top: 120%;
    left: 0;
}


/* LEVEL 2 */

.sticky-sub-menu{

    top: 0;
    left: 100%;
}


/* LEVEL 3 */

.sticky-third-menu{

    top: 0;
    left: 100%;
    right: auto;
}


/* SHOW */

.sticky-dropdown:hover > .sticky-dropdown-menu{
    opacity: 1;
    visibility: visible;
}

.sticky-sub-dropdown:hover > .sticky-sub-menu{
    opacity: 1;
    visibility: visible;
}

.sticky-third-dropdown:hover > .sticky-third-menu{
    opacity: 1;
    visibility: visible;
}


/* LINKS */

.sticky-dropdown-menu li a,
.sticky-sub-menu li a,
.sticky-third-menu li a{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 14px 22px;

    color: #031B3A;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: 0.3s ease;
}


/* HOVER */

.sticky-dropdown-menu li a:hover,
.sticky-sub-menu li a:hover,
.sticky-third-menu li a:hover{

    background: #f7f7f7;

    color: red;
}


/* ICON */

.sticky-dropdown-menu li a i,
.sticky-sub-menu li a i{

    font-size: 12px;
}


/* REMOVE BIG EMPTY SPACE */

.sticky-dropdown-menu,
.sticky-sub-menu,
.sticky-third-menu{

    width: max-content;

    min-width: 260px;
}


/* RESPONSIVE */

@media(max-width:991px){

    .sticky-menu{

        gap: 18px;
    }

    .sticky-dropdown-menu,
    .sticky-sub-menu,
    .sticky-third-menu{

        min-width: 220px;
    }

    /* THIRD MENU MOBILE FIX */

    .sticky-third-menu{ 

    right: auto;
    left: 100%;
}

}



/* ===================================
   PRODUCT DETAILS PAGE
=================================== */

.product-details-section{

    padding: 80px 0;

    background: #f8f9fc;
}



/* BREADCRUMB */

.product-breadcrumb{

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 50px;
}

.product-breadcrumb a{

    color: #666;

    text-decoration: none;

    font-size: 15px;

    transition: 0.3s;
}

.product-breadcrumb a:hover{

    color: red;
}

.product-breadcrumb span{

    color: #999;
}

.product-breadcrumb p{

    margin: 0;

    color: red;

    font-weight: 600;
}



/* PRODUCT IMAGE */

.product-gallery{

    position: sticky;

    top: 120px;
}

.main-product-image{

    background: #fff;

    border-radius: 20px;

    padding: 40px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.06);

    margin-bottom: 20px;

    overflow: hidden;

    cursor: zoom-in;
}

/* PRODUCT DETAILS PAGE IMAGE */

.product-gallery .main-product-image{
    height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery .main-product-image img{

    width: 100%;
    height: 100%;
    max-width: 520px;

    object-fit: contain;
}



/* PRODUCTS PAGE CARD IMAGE */

.main-product-card .main-product-image{

    height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}

.main-product-card .main-product-image img{

    width: 100%;
    max-width: 240px;
    max-height: 240px;

    object-fit: contain;
}

.main-product-image:hover img{

    transform: scale(1.12);
}



/* THUMBNAILS */

.product-thumbnails{

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.thumb-item{

    width: 90px;
    height: 90px;

    background: #fff;

    border-radius: 14px;

    padding: 10px;

    cursor: pointer;

    border: 2px solid transparent;

    transition: 0.3s;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.05);
}

.thumb-item img{

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.thumb-item:hover{

    border-color: red;
}

.active-thumb{

    border-color: red;
}



/* PRODUCT CONTENT */

.product-content{

    padding-left: 30px;
}

.product-content h1{

    font-size: 52px;

    font-weight: 800;

    color: #031B3A;

    margin-bottom: 20px;
}

.product-short-desc{

    font-size: 17px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 35px;
}



/* PRODUCT INFO */

.product-info-list{

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 40px;
}

.product-info-item{

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 15px;

    border-bottom:
    1px solid rgba(0,0,0,0.08);
}

.product-info-item span{

    font-weight: 700;

    color: #031B3A;

    min-width: 160px;
}

.product-info-item p{

    margin: 0;

    color: #555;

    text-align: right;
}



/* BUTTONS */

.product-btns{

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.product-quote-btn,
.product-download-btn{

    height: 58px;

    padding: 0 35px;

    border-radius: 12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-weight: 600;

    transition: 0.4s ease;
}

.product-quote-btn{

    background: red;

    color: #fff;
}

.product-quote-btn:hover{

    background: #031B3A;

    color: #fff;
}

.product-download-btn{

    background: #fff;

    color: #031B3A;

    border: 1px solid rgba(0,0,0,0.08);
}

.product-download-btn:hover{

    background: #031B3A;

    color: #fff;
}



/* TAB CONTENT */

.product-tab-content{

    margin-top: 80px;

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow:
    0 5px 25px rgba(0,0,0,0.05);
}

.product-tab-content p{

    margin: 0;

    color: #555;

    line-height: 2;

    font-size: 16px;
}



/* RELATED PRODUCTS */

.related-products-section{

    margin-top: 80px;
}

.section-title{

    margin-bottom: 35px;
}

.section-title h2{

    font-size: 40px;

    font-weight: 800;

    color: #031B3A;
}



/* PRODUCT CARD */

.related-product-card{

    background: #fff;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    transition: 0.4s ease;

    height: 100%;

    box-shadow:
    0 5px 25px rgba(0,0,0,0.05);
}

.related-product-card:hover{

    transform: translateY(-8px);
}

.related-product-card img{

    width: 100%;

    height: 180px;

    object-fit: contain;

    margin-bottom: 20px;
}

.related-product-card h4{

    font-size: 18px;

    font-weight: 700;

    color: #031B3A;

    margin-bottom: 15px;
}

.related-product-card a{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 140px;
    height: 45px;

    background: red;

    color: #fff;

    text-decoration: none;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;
}

.related-product-card a:hover{

    background: #031B3A;
}

.active-breadcrumb{
    color: red !important;
    font-weight: 600;
}

/* =========================
PRODUCT DESCRIPTION
========================= */

.product-description-box{
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.product-description-box p{
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    margin: 0;
}



/* =========================
INFO WRAPPER
========================= */

.product-info-wrapper{
    margin-bottom: 40px;
}



/* =========================
SPEC CARD
========================= */

.spec-card,
.feature-card{
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}

.spec-card h3,
.feature-card h3,
.application-main-box h3{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111;
    line-height: 1.3;
}



/* =========================
SPEC TABLE
========================= */

.spec-table{
    width: 100%;
}

.spec-table tr{
    border-bottom: 1px solid #e5e5e5;
}

.spec-table td{
    padding: 16px 0;
    font-size: 17px;
    color: #222;
}

.spec-table td:last-child{
    text-align: right;
    font-weight: 500;
}



/* =========================
FEATURE LIST
========================= */

.feature-card ul{
    padding-left: 20px;
    margin: 0;
}

.feature-card ul li{
    font-size: 17px;
    margin-bottom: 16px;
    color: #222;
    line-height: 1.7;
}



/* =========================
APPLICATION BOX
========================= */

.application-main-box{
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
}



/* =========================
APPLICATION GRID
========================= */

.application-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 30px;
}

.application-item{
    text-align: center;
    border-right: 1px solid #e5e5e5;
    padding: 20px;
}

.application-item:last-child{
    border-right: none;
}

.application-item i{
    font-size: 40px;
    color: red;
    margin-bottom: 14px;
}

.application-item span{
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .application-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .application-item{
        border: 1px solid #eee;
        border-radius: 18px;
    }

    .spec-card h3,
    .feature-card h3,
    .application-main-box h3{
        font-size: 34px;
    }

}

@media(max-width:576px){

    .product-description-box,
    .spec-card,
.feature-card{
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    }

    .application-grid{
        grid-template-columns: 1fr;
    }

    .spec-table td{
        font-size: 16px;
    }

    .feature-card ul li{
        font-size: 17px;
    }

    .application-item span{
        font-size: 18px;
    }

}



/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .product-details-section{

        padding: 60px 0;
    }

    .product-gallery{

        position: relative;

        top: 0;

        margin-bottom: 50px;
    }

    .product-content{

        padding-left: 0;
    }

    .product-content h1{

        font-size: 38px;
    }

    .section-title h2{

        font-size: 32px;
    }

    .product-tab-content{

        padding: 30px;
    }
}



@media(max-width:767px){

    .product-content h1{

        font-size: 30px;
    }

    .product-short-desc{

        font-size: 15px;
    }

    .main-product-image{

        padding: 20px;
    }

    .thumb-item{

        width: 70px;
        height: 70px;
    }

    .product-info-item{

        flex-direction: column;

        gap: 8px;
    }

    .product-info-item p{

        text-align: left;
    }

    .product-btns{

        flex-direction: column;
    }

    .product-quote-btn,
    .product-download-btn{

        width: 100%;
    }

    .product-tab-content{

        padding: 25px;
    }

    .section-title h2{

        font-size: 28px;
    }

    .related-product-card{

        padding: 18px;
    }

    .related-product-card img{

        height: 140px;
    }
}



/* WHY CHOOSE TEXT */

.why-choose-text{

    font-size: 17px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 22px;
}



/* PRODUCT TAGS */

.product-tags{

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}

.product-tags span{

    background: #f3f5f9;

    color: #031B3A;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s;
}

.product-tags span:hover{

    background: red;

    color: #fff;
}   


.related-product-card{

    background: #fff;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.4s ease;
}

.related-product-card:hover{

    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.related-product-image{

    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.related-product-image img{

    max-width: 100%;
    max-height: 180px;

    object-fit: contain;
}

.related-product-card h4{

    font-size: 24px;
    font-weight: 700;
    color: #001B4E;

    line-height: 1.3;

    min-height: 70px;

    margin-bottom: 25px;
}

.related-product-card a{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #ff1200;
    color: #fff;

    text-decoration: none;

    width: 180px;
    height: 55px;

    border-radius: 14px;

    font-weight: 600;

    margin: 0 auto;

    transition: 0.3s ease;
}

.related-product-card a:hover{

    background: #001B4E;
    color: #fff;
}


/* ===================================
   CONTACT HERO
=================================== */

.contact-hero-section{
    padding:120px 0 80px;
    background:#f5f7fa;
    text-align:center;
}

.contact-hero-content h1{
    font-size:60px;
    font-weight:700;
    color:#001b49;
    margin-bottom:20px;
}

.contact-hero-content p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#555;
}




/* ===================================
   CONTACT SECTION
=================================== */

.main-contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-form-box,
.contact-details-box{
    background:#f8f8f8;
    padding:50px;
    border-radius:25px;
    height:100%;
}

.contact-form-box h2,
.contact-details-box h2{
    font-size:38px;
    font-weight:700;
    color:#001b49;
    margin-bottom:35px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:none;
    background:#fff;
    padding:18px 20px;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.contact-form-box textarea{
    resize:none;
}

.contact-submit-btn{
    background:red;
    color:#fff;
    border:none;
    padding:18px 45px;
    border-radius:12px;
    font-weight:600;
    transition:0.4s;
}

.contact-submit-btn:hover{
    background:#001b49;
}

.contact-detail-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.contact-detail-item i{
    width:60px;
    height:60px;
    background:red;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-detail-item h4{
    font-size:22px;
    color:#001b49;
    margin-bottom:10px;
}

.contact-detail-item p,
.contact-detail-item a{
    color:#555;
    line-height:1.8;
    text-decoration:none;
}





/* ===================================
   WHY CONNECT
=================================== */

.why-connect-section{
    padding:100px 0;
    background:#f5f7fa;
}

.connect-card{
    background:#fff;
    padding:50px 35px;
    border-radius:25px;
    text-align:center;
    height:100%;
    transition:0.4s;
}

.connect-card:hover{
    transform:translateY(-10px);
}

.connect-card i{
    font-size:45px;
    color:red;
    margin-bottom:25px;
}

.connect-card h4{
    font-size:28px;
    color:#001b49;
    margin-bottom:20px;
    font-weight:700;
}

.connect-card p{
    color:#555;
    line-height:1.8;
}





/* ===================================
   INDUSTRIES
=================================== */

.contact-industries-section{
    padding:100px 0;
    background:#fff;
}

.industry-tags-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:50px;
}

.industry-tags-wrapper span{
    background:#f5f7fa;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    color:#001b49;
}





/* ===================================
   CTA SECTION
=================================== */

.contact-cta-section{
    padding:100px 0;
    background:#f5f7fa;
}

.contact-cta-box{
    background:#001b49;
    padding:70px;
    border-radius:30px;
    text-align:center;
}

.contact-cta-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.contact-cta-box p{
    color:#ddd;
    max-width:850px;
    margin:auto;
    line-height:1.9;
    font-size:18px;
}

.contact-cta-btns{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-call-btn,
.cta-mail-btn{
    padding:18px 40px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.cta-call-btn{
    background:red;
    color:#fff;
}

.cta-mail-btn{
    background:#fff;
    color:#001b49;
}

.cta-call-btn:hover,
.cta-mail-btn:hover{
    transform:translateY(-5px);
}





/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:991px){

.contact-hero-content h1{
    font-size:42px;
}

.contact-form-box,
.contact-details-box{
    padding:35px;
}

.contact-cta-box{
    padding:50px 30px;
}

.contact-cta-box h2{
    font-size:36px;
}

}




@media(max-width:767px){

.contact-hero-section{
    padding:90px 0 60px;
}

.contact-hero-content h1{
    font-size:34px;
}

.contact-form-box h2,
.contact-details-box h2{
    font-size:30px;
}

.connect-card{
    padding:40px 25px;
}

.contact-cta-box h2{
    font-size:30px;
}

.contact-cta-box{
    padding:40px 25px;
}

}


/* =========================================
   SIMPLE PRODUCT PAGE CSS
========================================= */

.simple-products-section{
    padding: 80px 0;
    background: #f7f8fc;
}

/* =========================
   SIDEBAR
========================= */

.product-sidebar{
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    position: sticky;
    top: 120px;
}

.product-sidebar h3{
    font-size: 38px;
    color: #001f4d;
    font-weight: 800;
    margin-bottom: 35px;
}

.main-category-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-category-list li{
    margin-bottom: 18px;
}

.main-category-list li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.main-category-list li a:hover{
    color: red;
    padding-left: 6px;
}

.main-category-list li a.active-category{
    color: red;
    font-weight: 800;
}

/* =========================
   HEADING
========================= */

.products-page-heading{
    margin-bottom: 45px;
}

.products-page-heading h1{
    font-size: 58px;
    color: #001f4d;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
}

.products-page-heading p{
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 750px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card{
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    border: 1px solid #ececec;
}

.product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.product-image{
    background: #f5f3ee;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image img{
    width: 100%;
    max-height: 210px;
    object-fit: contain;
}

.product-content{
    padding: 28px;
}

.product-content span{
    color: red;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-content h4{
    font-size: 30px;
    color: #001f4d;
    font-weight: 800;
    margin: 14px 0 22px;
    line-height: 1.3;
}

.product-content a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #001f4d;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.product-content a:hover{
    color: red;
    gap: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .simple-products-section{
        padding: 60px 0;
    }

    .product-sidebar{
        margin-bottom: 35px;
        position: relative;
        top: 0;
    }

    .products-page-heading h1{
        font-size: 42px;
    }

    .product-content h4{
        font-size: 26px;
    }

}

@media(max-width:767px){

    .product-sidebar{
        padding: 25px;
    }

    .product-sidebar h3{
        font-size: 30px;
    }

    .main-category-list li a{
        font-size: 18px;
    }

    .products-page-heading h1{
        font-size: 34px;
    }

    .products-page-heading p{
        font-size: 16px;
    }

    .product-image{
        height: 220px;
    }

    .product-content{
        padding: 22px;
    }

    .product-content h4{
        font-size: 24px;
    }

}


/* =========================================
   MAIN PRODUCTS PAGE
========================================= */

.main-products-section{
    padding: 90px 0;
    background: #f8f9fc;
}

.products-heading{
    margin-bottom: 60px;
}

.products-heading h1{
    font-size: 56px;
    font-weight: 800;
    color: #0b1c39;
    margin-bottom: 18px;
}

.products-heading p{
    max-width: 750px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.main-product-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid #eee;
}

.main-product-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.main-product-image{
       background: #fff;

    border-radius: 20px;

    padding: 20px;

    height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 5px 25px rgba(0,0,0,0.06);

    margin-bottom: 20px;

    overflow: hidden;

    cursor: zoom-in;
}

.main-product-image img{
    width: 100%;
    max-width: 500px;

    height: 450px;

    object-fit: contain;

    display: block;

    margin: auto;

    transition: transform 0.5s ease;
}

.main-product-content{
    padding: 28px;
    text-align: center;
}

.main-product-content h3{
    font-size: 28px;
    color: #0b1c39;
    font-weight: 700;
    margin-bottom: 18px;
}

.main-product-content a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d62828;
    font-weight: 600;
    transition: 0.3s;
}

.main-product-content a:hover{
    color: #0b1c39;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .main-products-section{
        padding: 70px 0;
    }

    .products-heading h1{
        font-size: 42px;
    }

}

@media(max-width:767px){

    .products-heading{
        margin-bottom: 40px;
    }

    .products-heading h1{
        font-size: 34px;
    }

    .products-heading p{
        font-size: 15px;
    }

    .main-product-image{
        height: 220px;
    }

    .main-product-content h3{
        font-size: 24px;
    }

}


/* =========================================
   PRODUCT CTA BOX
========================================= */

.product-contact-box{
    margin-top: 70px;
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-box-content h5{
    font-size: 34px;
    font-weight: 700;
    color: #001f4d;
    margin-bottom: 15px;
}

.contact-box-content p{
    font-size: 17px;
    color: #666;
    margin: 0;
    line-height: 1.8;
}

.contact-box-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e10600;
    color: #fff !important;
    padding: 16px 34px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.contact-box-btn:hover{
    background: #001f4d;
    color: #fff !important;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .product-contact-box{
        text-align: center;
        padding: 35px 25px;
    }

    .contact-box-btn{
        margin-top: 25px;
    }

}

@media(max-width:767px){

    .contact-box-content h5{
        font-size: 28px;
    }

    .contact-box-content p{
        font-size: 15px;
    }

    .contact-box-btn{
        width: 100%;
    }

}

/* =========================================
PRODUCT PAGE FIX
========================================= */

.products-page-section {
    padding: 80px 0;
    background: #f5f6fa;
}

.product-sidebar {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

.product-sidebar h3 {
    font-size: 42px;
    font-weight: 700;
    color: #002868;
    margin-bottom: 35px;
}

.product-category-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-category-list li {
    margin-bottom: 18px;
}

.product-category-list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.product-category-list li a:hover,
.product-category-list li a.active-category {
    color: red;
}

.products-page-heading h1 {
    font-size: 60px;
    font-weight: 800;
    color: #002868;
    margin-bottom: 20px;
}

.products-page-heading p {
    font-size: 18px;
    line-height: 32px;
    color: #555;
    max-width: 850px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    border: 1px solid #ececec;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    background: #f3f1ec;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image img {
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
}

.product-card-content {
    padding: 30px;
}

.product-card-content h4 {
    font-size: 34px;
    font-weight: 700;
    color: #002868;
    margin-bottom: 18px;
}

.product-card-content a {
    text-decoration: none;
    color: #002868;
    font-weight: 600;
    font-size: 20px;
    transition: 0.3s;
}

.product-card-content a:hover {
    color: red;
}

.product-contact-box {
    margin-top: 70px;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
}

.contact-box-content h5 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #002868;
}

.contact-box-content p {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.contact-box-btn {
    background: red;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.contact-box-btn:hover {
    background: #002868;
}


.main-product-content a{
    text-decoration: none !important;
    border: none !important;
}

.main-product-content a:hover{
    text-decoration: none !important;
}

.main-product-content a::after{
    display: none !important;
    content: none !important;
}

/* =========================================
   TERMS & CONDITIONS PAGE
========================================= */

.terms-section{
    padding: 100px 0;
    background: #f5f7fa;
}

/* BREADCRUMB */

.terms-breadcrumb{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.terms-breadcrumb a{
    text-decoration: none;
    color: #001b49;
    font-weight: 500;
}

.terms-breadcrumb span{
    color: #999;
}

.terms-breadcrumb p{
    margin: 0;
    color: red;
    font-weight: 600;
}

/* MAIN BOX */

.terms-box{
    background: #fff;
    border-radius: 28px;
    padding: 70px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
}

/* HEADING */

.terms-heading{
    margin-bottom: 50px;
}

.terms-heading h1{
    font-size: 64px;
    font-weight: 800;
    color: #001b49;
    margin-bottom: 18px;
}

.terms-line{
    width: 90px;
    height: 4px;
    background: red;
    border-radius: 20px;
    margin: 0 auto 25px;
}

.terms-heading p{
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* CONTENT */

.terms-content h3{
    font-size: 32px;
    color: #001b49;
    margin-top: 45px;
    margin-bottom: 18px;
    font-weight: 700;
}

.terms-content p{
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

/* EFFECTIVE DATE */

.effective-date{
    margin-top: 50px;
    background: #f8f8f8;
    padding: 20px 25px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.effective-date span{
    color: red;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .terms-section{
        padding: 70px 0;
    }

    .terms-box{
        padding: 45px;
    }

    .terms-heading h1{
        font-size: 48px;
    }

    .terms-content h3{
        font-size: 28px;
    }

}

@media(max-width:767px){

    .terms-box{
        padding: 30px 22px;
        border-radius: 20px;
    }

    .terms-heading h1{
        font-size: 36px;
    }

    .terms-heading p{
        font-size: 16px;
    }

    .terms-content h3{
        font-size: 24px;
    }

    .terms-content p{
        font-size: 16px;
        line-height: 1.9;
    }

    .effective-date{
        font-size: 16px;
    }

}


/* =========================================
   COPYRIGHT POLICY PAGE
========================================= */

.copyright-section{
    padding: 100px 0;
    background: #f5f7fa;
}

/* BREADCRUMB */

.copyright-breadcrumb{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.copyright-breadcrumb a{
    text-decoration: none;
    color: #001b49;
    font-weight: 500;
}

.copyright-breadcrumb span{
    color: #999;
}

.copyright-breadcrumb p{
    margin: 0;
    color: red;
    font-weight: 600;
}

/* MAIN BOX */

.copyright-box{
    background: #fff;
    border-radius: 28px;
    padding: 70px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
}

/* HEADING */

.copyright-heading{
    margin-bottom: 50px;
}

.copyright-heading h1{
    font-size: 64px;
    font-weight: 800;
    color: #001b49;
    margin-bottom: 18px;
}

.copyright-line{
    width: 90px;
    height: 4px;
    background: red;
    border-radius: 20px;
    margin: 0 auto 25px;
}

.copyright-heading p{
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* CONTENT */

.copyright-content h3{
    font-size: 32px;
    color: #001b49;
    margin-top: 45px;
    margin-bottom: 18px;
    font-weight: 700;
}

.copyright-content p{
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

/* DATE */

.copyright-date{
    margin-top: 50px;
    background: #f8f8f8;
    padding: 20px 25px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.copyright-date span{
    color: red;
}

/* RESPONSIVE */

@media(max-width:991px){

    .copyright-section{
        padding: 70px 0;
    }

    .copyright-box{
        padding: 45px;
    }

    .copyright-heading h1{
        font-size: 48px;
    }

    .copyright-content h3{
        font-size: 28px;
    }

}

@media(max-width:767px){

    .copyright-box{
        padding: 30px 22px;
        border-radius: 20px;
    }

    .copyright-heading h1{
        font-size: 36px;
    }

    .copyright-heading p{
        font-size: 16px;
    }

    .copyright-content h3{
        font-size: 24px;
    }

    .copyright-content p{
        font-size: 16px;
        line-height: 1.9;
    }

    .copyright-date{
        font-size: 16px;
    }

}

/* =========================================
   MOBILE MENU DEFAULT HIDE
========================================= */

.mobile-header,
.mobile-sidebar,
.mobile-overlay{
    display: none;
}


.application-main-box{
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
    clear: both;
    width: 100%;
}

.related-products-section{
    margin-top: 0;
    clear: both;
    width: 100%;
}


.sticky-sub-dropdown{
    position: relative;
}

.sticky-sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 99999;
}




