/********** Template CSS **********/
/* ================= WELCOME SECTION ================= */

.welcome{
    width:100%;
    padding:50px 0;
    background:#f5f7fa;
    font-family:'Poppins',sans-serif;
}
.welcome p{
        max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.8;
}
.welcome .container{
    width:92%;
    margin:auto;
}
/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(42, 3, 3, 0.1) !important;
}

/* HEADING */

.welcome h5{
    text-align:center;
    color:red;
    font-size:17px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:12px;
}

.welcome h2{
    text-align:center;
    font-size:35px;
    color:#0a2342;
    font-weight:700;
    margin-bottom:18px;
}

.welcome .subtitle{
    width:60%;
    margin:auto;
    text-align:center;
    color:#666;
    font-size:16px;
    line-height:30px;
    padding-bottom: 23px;
}

/* PRODUCT GRID */

.product-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

/* CARD */

.card{
    background:#fff;
    padding:22px 18px;
    border-radius:8px;
    transition:0.4s;
    border:1px solid #e6e6e6;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

/* IMAGE */

.card img{
    /* width:120px; */
    height:120px;
    object-fit:contain;
    margin-bottom:18px;
    transition:0.4s;
}

.card:hover img{
    transform:scale(1.06);
}

/* TITLE */

.card h3{
    font-size:16px;
    color:#0a2342;
    font-weight:700;
    margin-bottom:12px;
    line-height:24px;
}

/* TEXT */

.card p{
    font-size:14px;
    color:#666;
    line-height:25px;
    margin-bottom:18px;
}

/* BUTTON */

.card a{
    display:inline-block;
    padding:11px 20px;
    background:#0a2342;
    color:#fff;
    font-size:13px;
    font-weight:600;
    border-radius:4px;
    transition:0.3s;
}

.card a:hover{
    background:red;
    color:white;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .welcome h2{
        font-size:34px;
    }

    .welcome .subtitle{
        width:100%;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

}
:root {
    --primary: #e80610;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Topbar ***/
.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/* ===== LOGO FIX START ===== */

.navbar .navbar-brand {
    position: relative;
    padding-right: 20px;
    height: 90px;
    display: flex;
    align-items: center;
    background: transparent !important;
}

.navbar .navbar-brand::after {
    display: none;
}

.navbar .navbar-brand img {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar .navbar-brand h5 {
    margin-left: 10px;
    margin-bottom: 0;
    color: var(--dark);
    font-weight: 700;
}

/* ===== LOGO FIX END ===== */

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .navbar .navbar-brand {
        height: 75px;
    }

    .navbar .navbar-brand img {
        height: 60px;
    }

    .navbar .navbar-brand h5 {
        font-size: 18px;
    }
}

@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    height: 55px;
    color: #ffffff;
    border-color: rgba(255,255,255,.3);
}

.footer .form-control::placeholder {
    color: #ffffff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright a {
    color: #ffffff;
    text-decoration: none;
}

.copyright a:hover {
    color: var(--primary);
}
/* HERO SECTION */

.hero{
    height: 600px;
    position: relative;
    background-image: url(../img/banner11.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    background-color: #02122f;
}

/* OVERLAY */

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background: linear-gradient(
        90deg,
        rgba(2,18,47,0.97) 0%,
        rgba(2,18,47,0.95) 28%,
        rgba(2,18,47,0.72) 42%,
        rgba(2,18,47,0.18) 60%,
        rgba(2,18,47,0) 75%
    );
}

/* HERO CONTENT */

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.left-content{
    width: 44%;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* HERO HEADING */

.left-content h1{
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 22px;
    color: white;
    line-height: 1.2;
}

.left-content h1 span{
    display: block;
    color: #f1b546;
    margin-top: 8px;
}

/* PARAGRAPH */

.left-content p{
    font-size: 20px;
    line-height: 1.6;
    color: #f1f1f1;
    margin-bottom: 35px;
    max-width: 580px;
}

/* FEATURES */

.features{
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.feature{
    text-align: center;
}

.feature i{
    font-size: 28px;
    color: #f1b546;
    margin-bottom: 10px;
}

.feature span{
    display: block;
    font-size: 16px;
    color: #fff;
}

/* BUTTONS */

.hero-btns{
    display: flex;
    gap: 18px;
   
}

.hero-btns .btn{
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    
}

.hero-btns .primary{
    background: #f1b546;
    color: #111;
}

.hero-btns .secondary{
    border: 2px solid #fff;
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero{
        height: auto;
        padding: 100px 0;
        background-size: cover;
    }

    .overlay{
        background: rgba(2,18,47,0.85);
    }

    .left-content{
        width: 100%;
    }

    .left-content h1{
        font-size: 42px;
    }
}

@media(max-width:600px){

    .left-content h1{
        font-size: 32px;
    }

    .hero-btns{
        flex-direction: column;
    }

    .features{
        gap: 20px;
    }

    .feature{
        width: 45%;
    }
}

/* ```css id="p4c6v9" */
/* HERO BUTTONS */

.hero-btns{
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

/* COMMON BUTTON STYLE */

.hero-btns .btn{
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s ease;
}

/* FIRST BUTTON - RED */

.quote-btn1{
    background: #e80610;
    color: #ffffff;
    border: 2px solid #e80610;
}

.quote-btn1:hover{
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* SECOND BUTTON - TRANSPARENT */

.product-btn2{
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.product-btn2:hover{
    background: #ffffff;
    color: #02122f;
}

/* quality css */
/* =========================
QUALITY SECTION
========================= */

.quality-section{
    background: linear-gradient(135deg,#f8fbff,#eef3f9);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

/* BACKGROUND EFFECT */

.quality-section::before{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,94,20,.05);
    border-radius: 50%;
    top: -150px;
    right: -120px;
}

.quality-section::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(0,0,0,.08);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
}

/* HEADING */

.quality-heading{
    position: relative;
    z-index: 2;
}

.quality-tag{
    display: inline-block;
    background: rgba(255,94,20,.1);
    color: #ff5e14;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.quality-heading h1{
    font-size: 58px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quality-heading p{
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* CARD */

.quality-card{
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: .5s;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.quality-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* IMAGE */

.quality-img{
    position: relative;
    overflow: hidden;
}

.quality-img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .7s;
}

.quality-card:hover .quality-img img{
    transform: scale(1.08);
}

/* OVERLAY */

.quality-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13,27,62,.25);
    top: 0;
    left: 0;
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.quality-card:hover .quality-img::before{
    opacity: 1;
}

/* NUMBER */

.quality-number{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 65px;
    height: 65px;
    background: #ff5e14;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(255,94,20,.4);
}

/* CONTENT */

.quality-content{
    padding: 35px;
}

.quality-content h3{
    font-size: 30px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 15px;
}

.quality-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* BUTTON */

.quality-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #0d1b3e;
    transition: .4s;
}

.quality-btn span{
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.quality-card:hover .quality-btn{
    color: #ff5e14;
}

.quality-card:hover .quality-btn span{
    background: #ff5e14;
    color: #fff;
    transform: translateX(5px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .quality-heading h1{
        font-size: 42px;
    }

    .quality-content h3{
        font-size: 24px;
    }

}

@media(max-width:768px){

    .quality-heading h1{
        font-size: 34px;
    }

    .quality-heading p{
        font-size: 15px;
    }

    .quality-content{
        padding: 25px;
    }

}

