/* =========================================
   GLOBAL RESET
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================================
   TOP BAR
========================================= */

.top-bar{
    background:#031225;
    color:#fff;
    padding:12px 0;
    font-size:14px;
}

.top-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.left-top{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.left-top span{
    display:flex;
    align-items:center;
    gap:8px;
}

.right-top{
    background:#e30613;
    color:#fff;
    padding:14px 28px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    clip-path:polygon(8% 0,100% 0,100% 100%,0 100%);
}
/* =========================================
   PAGE BANNER
========================================= */

.page-banner{
    position:relative;
    background:
    linear-gradient(rgba(2,11,35,.88),rgba(2,11,35,.88)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
    padding:130px 0;
}

.banner-content{
    text-align:center;
}

.banner-content h1{
    color:#fff;
    font-size:60px;
    font-weight:900;
    margin-bottom:15px;
    text-transform:uppercase;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:16px;
}

.breadcrumb a{
    color:#fff;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#0a63ff;
}

.breadcrumb span{
    color:#0a63ff;
}

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

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

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

/* IMAGE */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* CONTENT */

.about-content h5{
    color:#0a63ff;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    color:#06132c;
    font-weight:900;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#e30613;
}

.about-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    margin-bottom:20px;
}

/* =========================================
   ABOUT STATS
========================================= */

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.stat-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    padding:30px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.stat-box i{
    width:70px;
    height:70px;
    background:#f2f6ff;
    color:#0a63ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto auto 20px;
}

.stat-box h3{
    font-size:32px;
    color:#06132c;
    margin-bottom:10px;
    font-weight:900;
}

.stat-box p{
    margin:0;
    color:#666;
    font-size:15px;
}

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

.values-section{
    margin-top:100px;
}

.values-section h3{
    text-align:center;
    font-size:40px;
    color:#06132c;
    margin-bottom:50px;
    font-weight:900;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

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

.value-card i{
    width:80px;
    height:80px;
    background:#f2f6ff;
    color:#0a63ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    font-size:30px;
}

.value-card h4{
    color:#06132c;
    font-size:24px;
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

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

@media(max-width:991px){

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

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

}

@media(max-width:768px){

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

    .about-content h2{
        font-size:36px;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

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

}

@media(max-width:500px){

    .page-banner{
        padding:90px 0;
    }

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

    .about-content h2{
        font-size:30px;
    }

}
/* =========================================
   HEADER
========================================= */

.header{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
    position:relative;
    z-index:999;
}

.header.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    animation:slideDown .4s ease;
}

@keyframes slideDown{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.logo img{
    height:70px;
}

.navbar ul{
    display:flex;
    align-items:center;
    gap:30px;
}

.navbar ul li a{
    color:#06132c;
    font-size:14px;
    font-weight:800;
    position:relative;
    transition:.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#0a63ff;
}

.navbar ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#0a63ff;
    transition:.3s;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after{
    width:100%;
}

.quote-btn{
    background:#0a63ff;
    color:#fff;
    padding:15px 30px;
    border-radius:5px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.quote-btn:hover{
    background:#0046c7;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

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

.hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(2,11,35,.85),rgba(2,11,35,.85)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
    padding:100px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:50px;
}

.hero-text{
    max-width:700px;
}

.hero-text h5{
    color:#ff2a2a;
    font-size:18px;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:1px;
}

.hero-text h1{
    font-size:58px;
    line-height:1.1;
    font-weight:900;
    color:#fff;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero-text h1 span{
    color:#0a63ff;
    display:block;
}

.hero-text p{
    color:#d7d7d7;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.btn-red{
    background:#e30613;
    color:#fff;
    padding:16px 35px;
    border-radius:5px;
    font-weight:700;
    transition:.3s;
}

.btn-red:hover{
    background:#bb000f;
}

.btn-blue{
    background:#0a63ff;
    color:#fff;
    padding:16px 35px;
    border-radius:5px;
    font-weight:700;
    transition:.3s;
}

.btn-blue:hover{
    background:#0046c7;
}

.hero-image img{
    width:100%;
    max-width:600px;
    margin:auto;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.hero-feature{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.hero-feature i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0a63ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.hero-feature h4{
    font-size:15px;
    margin-bottom:4px;
}

.hero-feature p{
    margin:0;
    font-size:13px;
    color:#ccc;
}

/* =========================================
   SERVICES
========================================= */

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

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#e30613;
    font-weight:700;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    color:#06132c;
    font-weight:900;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

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

.service-card i{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#f2f6ff;
    color:#0a63ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    font-size:30px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:20px;
    color:#06132c;
}

.service-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.service-card a{
    color:#0a63ff;
    font-weight:700;
}

/* =========================================
   WHY US
========================================= */

.why-us{
    background:#06132c;
    color:#fff;
    padding:100px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.small-title{
    color:#ff2a2a;
    font-weight:700;
    margin-bottom:15px;
    display:block;
}

.why-us h2{
    font-size:48px;
    margin-bottom:25px;
    font-weight:900;
}

.why-us p{
    color:#d7d7d7;
    line-height:1.8;
    margin-bottom:30px;
}

.why-us ul{
    margin-bottom:35px;
}

.why-us ul li{
    margin-bottom:15px;
    padding-left:28px;
    position:relative;
}

.why-us ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#0a63ff;
    font-weight:bold;
}

.why-grid img{
    border-radius:15px;
}

/* =========================================
   PARTNERS
========================================= */

.partners{
    padding:60px 0;
    background:#fff;
}

.partners-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
    align-items:center;
}

.partners-grid img{
    max-height:50px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.7;
    transition:.3s;
}

.partners-grid img:hover{
    filter:grayscale(0);
    opacity:1;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#031225;
    color:#fff;
    padding:80px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
}

.footer h3{
    font-size:22px;
    margin-bottom:25px;
}

.footer p,
.footer li,
.footer a{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

.footer a:hover{
    color:#0a63ff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#aaa;
}

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

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#06132c;
        display:none;
        padding:25px;
    }

    .navbar.active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .navbar ul li a{
        color:#fff;
    }

    .quote-btn{
        display:none;
    }

    .hero-content,
    .why-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

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

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

    .partners-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .top-flex{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:600px){

    .hero{
        padding:80px 0;
    }

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

    .section-title h2{
        font-size:30px;
    }

    .why-us h2{
        font-size:34px;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

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

    .hero-buttons{
        flex-direction:column;
    }

}