body {
  font-family: Arial, sans-serif;
}
.bg-primary {
  background: #0b2d5b !important;
}
.btn-warning {
  background: #d89a18;
  border: none;
}
.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(11, 45, 91, 0.7), rgba(11, 45, 91, 0.7)),
    url("../images/banner-1.png") center/cover;
}

:root{

    --primary:#0B2D5B;
    --secondary:#D89A18;
    --light:#F7F9FC;

}

body{

    font-family:'Poppins',sans-serif;

}

/*========================*/

.top-header{

    background:var(--primary);
    color:#fff;
    font-size:14px;

    padding:10px 0;

}

.top-item{

    display:flex;

    align-items:center;

    gap:8px;

}

.top-item i{

    color:var(--secondary);

}

.top-item a{

    color:#fff;

    text-decoration:none;

}

.social-icons{

    display:flex;

    justify-content:end;

    gap:10px;

}

.social-icons a{

    width:34px;

    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    background:rgba(255,255,255,.12);

    transition:.3s;

}

.social-icons a:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

/*========================*/
/* Header Transition */
.main-header{
    position: relative;
    width: 100%;
    background: #fff;
    z-index: 999;
    transition: all .35s ease;
}

/* Sticky Header */
.main-header.fixed-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown .4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    z-index: 9999;
}

/* Reduce navbar height on scroll */
.fixed-header .navbar{
    padding: 8px 0;
}

.fixed-header .navbar-brand img{
    height: 58px;
    transition: .3s;
}

/* Default Logo */
.navbar-brand img{
    height: 60px;
    transition: .3s;
}

/* Slide Animation */
@keyframes slideDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}

.navbar{

    padding:10px 0;

}



.nav-link{

    font-weight:600;

    color:var(--primary);

    margin:0 12px;

    position:relative;

}

.nav-link:hover{

    color:var(--secondary);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.dropdown-menu{

    border-radius:12px;

}

.dropdown-item{

    padding:12px 20px;

}

.dropdown-item:hover{

    background:var(--primary);

    color:#fff;

}
.dropdown-toggle::after{
    display:none;
}
/* ==========================
        MEGA MENU
========================== */

.mega-dropdown {
    position: static;
}

.mega-menu{
    position:absolute;
    left:0;
    right:0;
    top:100%;

    width:100%;

    padding:30px;

    border:none;
    border-radius:0 0 15px 15px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    display:block;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.35s ease;

    z-index:999;
}

.navbar .mega-dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Title */

.mega-title{

    color:#0B2D5B;

    font-weight:600;

    margin-bottom:15px;

    border-bottom:2px solid #D89A18;

    display:inline-block;

    padding-bottom:8px;

}

/* Links */

.mega-menu ul li{

    margin-bottom:12px;

}

.mega-menu ul li a{

    color:#444;

    text-decoration:none;

    transition:.3s;

    display:block;

}

.mega-menu ul li a:hover{

    color:#D89A18;

    padding-left:10px;

}

/* Image */

.mega-image{

    text-align:center;

}

.mega-image img{

    border-radius:12px;

}

/* Mobile */

@media(max-width:991px){

    .mega-menu{

        position:static;

        opacity:1;

        visibility:visible;

        transform:none;

        width:100%;

        box-shadow:none;

        padding:0;

        display:none;

    }

}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0A2F6B;
    --bs-btn-border-color: #0A2F6B;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d89a18;
    --bs-btn-hover-border-color: #d89a18;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d89a18;
    --bs-btn-active-border-color: #d89a18;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0A2F6B;
    --bs-btn-disabled-border-color: #0A2F6B;
}

/* ==========================
   Desktop Hover Dropdown
========================== */

@media (min-width: 992px) {

    .navbar .dropdown:not(.mega-dropdown) {
    position: relative;
}

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s ease;
        margin-top: 0;
        border: 0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        min-width: 240px;
    }

    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate dropdown arrow */

    .navbar .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

}

.btn-quote{

    background:var(--secondary);

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

}

.btn-quote:hover{

    background:var(--primary);

    color:#fff;

}

.text-orange {
    color: #D89A18;
}

.hero-section{
    background:url("../images/banner-1.png") center center/cover no-repeat;
    min-height:650px;
    display:flex;
    align-items:center;
    padding: 50px 0;
}

.hero-badge{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.hero-badge i{
    font-size:42px;
    color:#d89b00;
}

.hero-badge span{
    color:#1c3157;
    font-size:24px;
    line-height:1.5;
}

.hero-badge strong{
    display:block;
    font-weight:700;
}

.hero-title{
    font-size:54px;
    font-weight:700;
    color:#0A2F6B;
    line-height:1.05;
    margin-bottom:10px;
}

.hero-title span{
    display:block;
}

.hero-title strong{
    display:block;
    color:#d89b00;
}

.hero-text{
    font-size:16px;
    line-height:1.9;
    color:#555;
    max-width:650px;
    margin-bottom:20px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.btn-primary-custom{
    background:#0A2F6B;
    color:#fff;
    padding:18px 38px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#07214a;
    color:#fff;
}

.btn-warning-custom{
    background:#d89b00;
    color:#fff;
    padding:18px 38px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-warning-custom:hover{
    background:#b88400;
    color:#fff;
}

.hero-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.feature-item{
    flex:1;
    min-width:100px;
    text-align:center;
    position:relative;
}

.feature-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:-20px;
    top:10px;
    width:1px;
    height:80px;
    background:#d9d9d9;
}

.feature-icon{
    width:50px;
    height:50px;
    margin:auto;
    border:2px solid #0A2F6B;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    transition:.3s;
}

.feature-icon i{
    font-size:32px;
    color:#0A2F6B;
}

.feature-item:hover .feature-icon{
    background:#0A2F6B;
}

.feature-item:hover i{
    color:#fff;
}

.feature-item h6{
    font-size:18px;
    color:#0A2F6B;
    margin-bottom:5px;
    font-weight:600;
}

.feature-item p{
    color:#555;
    margin:0;
    font-size:14px;
}


.about-section{

    background:#f8f9fa;
    padding:90px 0;

}

.about-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #EAF4FF;
    color: #0A2F6B;
    border-radius: 50px;
    font-weight: 600;

}

.about-title{

    font-size:32px;
    font-weight:700;
    color:#1d1d1d;
    line-height:1.3;

}

.about-text{

    color:#666;
    line-height:1.9;
    font-size:16px;

}

.about-list{

    margin-top: 10px;
    display: flex;
    gap: 20px;
    flex: fit-content;
    flex-wrap: wrap;

}

.about-list div{

    margin-bottom:10px;
    font-size:17px;
    font-weight:500;

}

.about-list i{

    color:#0a2e6a;
    margin-right:10px;
    font-size:20px;

}

.about-btn{

    padding:14px 35px;
    border-radius:50px;
    font-weight:600;

}

.about-image img{

    border-radius:25px;

}

.experience-box{

    position:absolute;
    bottom:25px;
    right:-20px;

    background:#0a2e6a;
    color:#fff;

    padding:25px 35px;
    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:42px;
    margin:0;
    font-weight:700;

}

.experience-box span{

    font-size:15px;

}

/*==============================
Why Choose Us
===============================*/

.why-choose{
    position:relative;
}

.section-subtitle{
    display:inline-block;
    background:#EAF4FF;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#1b2a4e;
}

.section-title span{
    color:#0d6efd;
}

.section-description{
    color:#6c757d;
    margin-top:15px;
}

.choose-card{

    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    height:100%;
    text-align:center;
    transition:.35s;
    border:1px solid #eef1f6;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.choose-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.choose-icon{

    width:80px;
    height:80px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#0b5ed7);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:0 auto 25px;

}

.choose-card h4{

    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#1b2a4e;

}

.choose-card p{

    color:#6c757d;
    line-height:1.8;
    margin-bottom:0;

}

@media(max-width:991px){

.section-title{

    font-size:34px;

}

}

@media(max-width:767px){

.section-title{

    font-size:28px;

}

.choose-card{

    padding:30px 20px;

}

.choose-icon{

    width:70px;
    height:70px;
    font-size:28px;

}

}

/*=============================
        PRODUCTS SECTION
=============================*/
.products-section{
    background:#fff;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    background:#eaf2ff;
    color:#0B3C98;
    border-radius:50px;
    font-weight:600;
}

.section-badge i{
    color:#d89b00;
}

.section-title{
    font-size:52px;
    font-weight:800;
    color:#0B3C98;
}

.section-title span{
    display:block;
    color:#d89b00;
}

.section-text{
    width:720px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.title-divider{
    width:130px;
    height:4px;
    background:linear-gradient(to right,#0B3C98,#d89b00,#0B3C98);
    margin:25px auto;
    border-radius:20px;
}

.category-wrapper{
    background:#fff;
    border-radius:18px;
    border:1px solid #e5e5e5;
    overflow:hidden;
}

.category{
    padding:28px 10px;
    transition:.35s;
    cursor:pointer;
    border-right:1px solid #eee;
}

.category:last-child{
    border-right:none;
}

.category:hover,
.category.active{
    background:#f4f8ff;
}

.category .icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#eaf2ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#0B3C98;
    font-size:28px;
}

.category h6{
    margin-top:18px;
    color:#123b8c;
    font-weight:600;
}

.product-card{
    display:flex;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e5e5e5;
    transition:.35s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.product-card img{
    width:48%;
    object-fit:cover;
}

.product-content{
    padding:20px;
}

.product-content h3{
    color:#0B3C98;
    font-weight:700;
}

.product-content span{
    width:40px;
    height:3px;
    background:#d89b00;
    display:block;
    margin:15px 0;
}

.product-content p{
    color:#666;
    line-height:30px;
}

.product-content a{
    display:inline-flex;
    gap:10px;
    align-items:center;
    padding:12px 22px;
    border:2px solid #0B3C98;
    border-radius:40px;
    text-decoration:none;
    color:#0B3C98;
    font-weight:600;
    transition:.3s;
}

.product-content a:hover{
    background:#0B3C98;
    color:#fff;
}

.btn-products{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 42px;
    background:#0B3C98;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.btn-products:hover{
    background:#d89b00;
    color:#fff;
}

@media(max-width:768px){
    .navbar-brand img {
        height: 55px;
    }
    .hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #0A2F6B;
    line-height: 1.05;
    margin-bottom: 10px;
}
.btn-primary-custom {
    background: #0A2F6B;
    color: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}
.btn-warning-custom {
    background: #d89b00;
    color: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}
.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1d;
    line-height: 1.3;
}
.contact-form {
    background: #fff;
    padding: 20px !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}
.footer-bottom {
    padding: 20px 0;
    color: #d7e5ff;
    font-size: 12px !important;
    background: #102539;
    line-height: 20px;
}
.dnone-mobile {
    display: none;
}
.hero-badge span {
    color: #1c3157;
    font-size: 18px;
    line-height: 1.5;
}
.section-title{
    font-size:34px;
}

.section-text{
    width:100%;
}

.product-card{
    flex-direction:column;
}

.product-card img{
    width:100%;
}

.category-wrapper .row{
    overflow:auto;
    flex-wrap:nowrap;
}

.category{
    min-width:180px;
}
}


.contact-section{
    background:#f7faff;
}

.contact-info{
    background:#0B3C98;
    color:#fff;
    padding:50px;
    border-radius:25px;
    height:100%;
}

.contact-info h3{
    font-size:34px;
    font-weight:700;
}

.contact-info p{
    opacity:.9;
    margin:20px 0 35px;
}

.info-box{
    display:flex;
    gap:18px;
    margin-bottom:25px;
    align-items:flex-start;
}

.info-box .icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#d89a18;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.info-box h6{
    margin-bottom:5px;
    font-weight:600;
}

.contact-form{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.form-control{
    border-radius:12px;
    min-height:58px;
    border:1px solid #dfe6f4;
}

textarea.form-control{
    min-height:180px;
}

.form-control:focus{
    border-color:#0B3C98;
    box-shadow:none;
}

.btn-contact{
    background:#0B3C98;
    color:#fff;
    border:none;
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-contact:hover{
    background:#d89a18;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:38px;
    color:#0B3C98;
    margin-bottom:18px;
}

.feature-card h5{
    color:#0B3C98;
    margin:0;
}




.footer-section{
    background:#0B3C98;
    color:#fff;
}

.footer-top{
    padding:80px 0 50px;
}

.footer-logo img{
    height:65px;
    margin-bottom:25px;
}

.footer-about{
    color:#d7e5ff;
    line-height:30px;
}

.footer-section h5{
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
}

.footer-section ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-section ul li{
    margin-bottom:14px;
}

.footer-section ul li a{
    color:#d7e5ff;
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#d89a18;
    padding-left:6px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#184eb7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.footer-social a:hover{
    background:#d89a18;
    transform:translateY(-5px);
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:22px;
    align-items:flex-start;
}

.contact-item i{
    color:#d89a18;
    font-size:20px;
    margin-top:3px;
}

.contact-item span{
    color:#d7e5ff;
    line-height:28px;
}

.footer-features{
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:25px 0;
}

.feature{
    color:#fff;
    font-weight:600;
}

.feature i{
    color:#d89a18;
    margin-right:10px;
    font-size:22px;
}

.footer-bottom{
        padding: 20px 0;
    color: #d7e5ff;
    font-size: 15px;
    background: #102539;
}

.footer-bottom a{
    color:#d7e5ff;
    text-decoration:none;
    margin:0 10px;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#d89a18;
}