:root{
    --primary:#0056b3;
    --secondary:#0d1b2a;
    --accent:#00bcd4;
    --light:#f8f9fa;
    --dark:#222;
    --white:#ffffff;
    --gray:#6c757d;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#555;
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

section{
    padding:90px 0;
}

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

.topbar{
    background:#0b1f3a;
    color:#fff;
    font-size:14px;
    padding:8px 0;
    text-align:center;
}

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

.navbar{
    background:#fff;
    padding:15px 0;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.4s;
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:var(--primary)!important;
}

.nav-link{
    color:#333!important;
    font-weight:600;
    margin-left:18px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary)!important;
}

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

.hero{
    min-height:100vh;
    padding-top:150px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(6,25,50,.75),rgba(6,25,50,.75)),
    url('../images/hero.jpg') center center/cover no-repeat;
    color:#fff;
}

.hero h1{
    font-size:62px;
    font-weight:700;
    line-height:1.2;
}

.hero p{
    font-size:20px;
    margin:25px 0;
    color:#eee;
}

.btn-main{
    background:var(--primary);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-main:hover{
    background:#003f82;
    color:#fff;
    transform:translateY(-2px);
}

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

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--secondary);
}

.section-subtitle{
    color:#777;
    margin-top:15px;
    margin-bottom:60px;
}

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

.about-img{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.about-content h3{
    font-size:34px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:20px;
}

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

.service-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    background:#fff;
    height:100%;
}

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

.service-card > img.card-img-top{
    height:240px;
    width:100%;
    object-fit:cover;
}

.service-card .card-body{
    padding:30px;
}

.service-card h5{
    color:var(--secondary);
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    font-size:15px;
}

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

.counter-box{
    background:linear-gradient(135deg,#0056b3,#003b78);
    color:#fff;
    padding:45px;
    border-radius:15px;
}

.counter-box h3{
    margin-bottom:20px;
    font-weight:700;
}

.counter-box p{
    margin-bottom:12px;
}

/*=========================
CERTIFICATIONS
=========================*/

.badge-box{
    background:#fff;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    font-weight:600;
    transition:.3s;
}

.badge-box:hover{
    transform:translateY(-5px);
}

/*=========================
CLIENTS
=========================*/

.client-logo{
    width:150px;
    height:80px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.3s;
    margin:auto;
}

.client-logo:hover{
    filter:none;
    transform:scale(1.08);
}

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

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box i{
    color:var(--primary);
    margin-right:10px;
}

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

footer{
    background:#08111f;
    color:#ddd;
    padding:70px 0 20px;
}

.footer-title{
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
    font-weight:600;
}

.footer-link{
    color:#ddd;
    display:block;
    margin-bottom:10px;
    transition:.3s;
}

.footer-link:hover{
    color:#fff;
    padding-left:5px;
}

footer hr{
    border-color:rgba(255,255,255,.1);
}

footer p{
    margin-bottom:8px;
}

/*=========================
BUTTONS
=========================*/

.btn-primary{
    border-radius:50px;
    padding:12px 30px;
}

.btn-outline-light{
    border-radius:50px;
    padding:12px 30px;
}

/*=========================
ANIMATION
=========================*/

.service-card,
.badge-box,
.client-logo,
.btn-main{
    transition:all .35s ease;
}

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

@media(max-width:991px){

.hero{
    text-align:center;
    padding-top:140px;
}

.hero h1{
    font-size:44px;
}

.navbar-brand{
    font-size:24px;
}

}

@media(max-width:768px){

.hero{
    min-height:auto;
    padding:150px 0 100px;
}

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

.hero p{
    font-size:17px;
}

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

.service-card img{
    height:200px;
}

.nav-link{
    margin-left:0;
    padding:10px 0;
}

.counter-box{
    margin-top:30px;
}

}

.client-logo{
    height:80px;
    width:160px;
    object-fit:contain;
    background:#fff;
    padding:15px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.client-logo:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

@media(max-width:768px){

.client-logo{
    height:70px;
    width:140px;
    margin:auto;
}

}
.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background-image:url("../images/hero-banner.png");

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center center;

}

.hero-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        rgba(3,18,44,.88) 0%,
        rgba(3,18,44,.72) 35%,
        rgba(3,18,44,.30) 65%,
        rgba(3,18,44,.08) 100%
    );

}

.hero-content{

    position:relative;

    z-index:5;

    color:#fff;

}

.hero-tag{

    display:inline-block;

    padding:10px 24px;

    background:#0d6efd;

    border-radius:30px;

    margin-bottom:25px;

    font-size:14px;

    font-weight:500;

}

.hero h1{

    font-size:64px;

    font-weight:700;

    line-height:1.15;

}

.hero h1 span{

    color:#1dc7ff;

}

.hero p{

    margin-top:25px;

    font-size:20px;

    line-height:1.8;

    color:#f2f2f2;

    max-width:700px;

}

.hero-list{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.hero-list span{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:12px 20px;

    border-radius:8px;

}

.hero-list i{

    color:#1dc7ff;

    margin-right:8px;

}

@media(max-width:991px){

.hero{

text-align:center;

min-height:700px;

}

.hero h1{

font-size:42px;

}

.hero-list{

justify-content:center;

}

}

.footer{

    background:#06172d;

    color:#d9d9d9;

    padding:80px 0 25px;

}

.footer-title{

    color:#fff;

    font-size:22px;

    font-weight:600;

    margin-bottom:25px;

    position:relative;

}

.footer-title::after{

    content:"";

    width:55px;

    height:3px;

    background:#0d6efd;

    display:block;

    margin-top:10px;

}

.footer-text{

    line-height:1.8;

    color:#c8c8c8;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d9d9d9;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#0d6efd;

    padding-left:8px;

}

.footer-social a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:42px;

    height:42px;

    background:#102849;

    color:#fff;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

    font-size:18px;

}

.footer-social a:hover{

    background:#0d6efd;

    transform:translateY(-5px);

}

.footer i{

    color:#0d6efd;

    margin-right:8px;

}

.footer-divider{

    border-color:rgba(255,255,255,.1);

    margin:40px 0 25px;

}

.footer .small{

    line-height:1.8;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer-social{

margin-top:20px;

}

}
.about-hero{

height:500px;

background:url('../images/about-banner.jpg');

background-size:cover;

background-position:center;

position:relative;

display:flex;

align-items:center;

}

.cta-section{

background:#0d6efd;

padding:80px 0;

color:#fff;

}

.cta-section h2{

font-size:42px;

font-weight:700;

}

.cta-section p{

font-size:18px;

margin-top:15px;

}
.services-banner{

background:url('../images/services-banner.jpg');

background-size:cover;

background-position:center;

}
.clients-banner{

background:url('../images/clients-banner.jpg');

background-size:cover;

background-position:center;

}

.client-logo-box{

    height:200px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:25px;

    background:#fff;

}

.client-logo{

    width:auto !important;

    height:auto !important;

    max-width:100%;

    max-height:150px;

    object-fit:contain !important;

    display:block;

    margin:auto;

    filter:none;

    box-shadow:none;

    background:transparent;

    padding:0;

}

.client-logo:hover{

    transform:scale(1.05);

}
.contact-banner{

    background:url('../images/contact-banner.jpg');

    background-size:cover;

    background-position:center;

}

.contact-box{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.contact-box .form-control{

    border-radius:10px;

    padding:14px;

    border:1px solid #ddd;

}

.contact-box .form-control:focus{

    border-color:#0d6efd;

    box-shadow:none;

}

.contact-box textarea{

    resize:none;

}

.contact-box button{

    padding:14px 35px;

}
.contact-info-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    padding:25px;

    margin-bottom:20px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-info-box:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.contact-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#0d6efd;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.contact-icon i{

    color:#fff;

    font-size:28px;

}

.contact-info-box h5{

    margin-bottom:10px;

    font-weight:700;

    color:#0d1b2a;

}

.contact-info-box p{

    margin:0;

    color:#666;

    line-height:1.8;

}

.home-client-logo{

    height:75px;

    width:auto;

    max-width:150px;

    object-fit:contain;

    transition:.3s;

    filter:grayscale(100%);

    margin:auto;

}

.home-client-logo:hover{

    filter:none;

    transform:scale(1.08);

}