/* ==========================================
   GOOGLE FONT
========================================== */

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

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#333;
    line-height:1.7;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.section-padding{
    padding:90px 0;
}

.container{
    max-width:1200px;
}

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

.header-area{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar{
    padding:18px 0;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#0057b8;
}

.logo span{
    color:#ff9800;
}

.logo i{
    margin-right:8px;
}

.navbar-nav .nav-link{
    font-size:16px;
    font-weight:600;
    color:#333;
    margin-left:25px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#0057b8;
}

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

.hero{
    padding-top:160px;
    padding-bottom:100px;
    background:linear-gradient(135deg,#edf5ff,#ffffff);
}

.hero-tag{
    display:inline-block;
    background:#0057b8;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    color:#002855;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    color:#666;
    margin-bottom:35px;
}

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

.btn-main{
    background:#0057b8;
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.btn-main:hover{
    background:#ff9800;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #0057b8;
    color:#0057b8;
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.btn-outline-custom:hover{
    background:#0057b8;
    color:#fff;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.feature-box{
    background:#fff;
    padding:12px 20px;
    border-radius:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:600;
}

.feature-box i{
    color:#ff9800;
    margin-right:8px;
}

.hero-image{
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

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

.section-subtitle{
    color:#ff9800;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    display:block;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#002855;
    margin-bottom:20px;
}

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

.about img{
    border-radius:20px;
}

.about p{
    color:#666;
    margin-bottom:18px;
}

.about-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    margin-bottom:20px;
}

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

.about-card i{
    font-size:38px;
    color:#0057b8;
    margin-bottom:15px;
}

.about-card h5{
    font-size:18px;
    font-weight:600;
}
/* ==========================================
   SERVICES
========================================== */

.services{
    background:#f8fafc;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

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

.service-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.4s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-content{
    padding:30px;
}

.service-content h4{
    font-size:22px;
    font-weight:700;
    color:#002855;
    margin-bottom:15px;
}

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

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

.why-us{
    background:#ffffff;
}

.icon-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.icon-box:hover{
    background:#0057b8;
    color:#fff;
    transform:translateY(-10px);
}

.icon-box i{
    font-size:55px;
    color:#ff9800;
    margin-bottom:20px;
}

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

.icon-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

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

.icon-box:hover p{
    color:#fff;
}

/* ==========================================
   HOW WE WORK
========================================== */

.work-process{
    background:#eef5ff;
}

.process-box{
    background:#fff;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.35s;
    height:100%;
}

.process-box:hover{
    transform:translateY(-10px);
}

.process-box .number{
    width:70px;
    height:70px;
    line-height:70px;
    background:#0057b8;
    color:#fff;
    border-radius:50%;
    font-size:28px;
    font-weight:700;
    margin:0 auto 25px;
}

.process-box h4{
    font-size:22px;
    font-weight:700;
    color:#002855;
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    margin:0;
}

/* Optional arrow between process boxes */

.process-box::after{
    content:"➜";
    position:absolute;
    right:-28px;
    top:50%;
    transform:translateY(-50%);
    font-size:32px;
    color:#0057b8;
}

.col-lg-3:last-child .process-box::after{
    display:none;
}
/*=========================================
CONTACT SECTION
=========================================*/

.contact{
    background:#ffffff;
}

.contact-info{
    margin-top:30px;
}

.contact-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#f8fafc;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-box i{
    width:60px;
    height:60px;
    line-height:60px;
    text-align:center;
    background:#0057b8;
    color:#fff;
    border-radius:50%;
    font-size:22px;
}

.contact-box h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:6px;
    color:#002855;
}

.contact-box p{
    margin:0;
    color:#666;
}

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

.contact-form .form-control{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:15px;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:160px;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:#0057b8;
    box-shadow:none;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/*=========================================
GOOGLE MAP
=========================================*/

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}

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

footer{
    background:#002855;
    color:#fff;
    padding:70px 0 20px;
}

.footer-logo{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-logo i{
    color:#ff9800;
    margin-right:8px;
}

footer p{
    color:#d8d8d8;
}

footer h4{
    margin-bottom:25px;
    font-size:22px;
    font-weight:600;
}

.footer-links{
    padding:0;
}

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

.footer-links a{
    color:#d8d8d8;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff9800;
    padding-left:6px;
}

footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.copyright{
    text-align:center;
}

.copyright p{
    margin:0;
    font-size:15px;
}

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

@media(max-width:991px){

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

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

.hero-buttons{
    justify-content:center;
}

.hero-features{
    justify-content:center;
    margin-bottom:40px;
}

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

.process-box::after{
    display:none;
}

.contact-form{
    margin-top:40px;
}

}

@media(max-width:767px){

.navbar{
    padding:15px 0;
}

.logo{
    font-size:26px;
}

.hero{
    padding-top:120px;
    padding-bottom:70px;
}

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

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

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

.btn-main,
.btn-outline-custom{
    width:100%;
    text-align:center;
}

.feature-box{
    width:100%;
    justify-content:center;
    text-align:center;
}

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

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

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

.contact-form{
    padding:25px;
}

.footer-logo{
    font-size:28px;
}

footer{
    text-align:center;
}

footer .col-lg-4{
    margin-bottom:35px;
}

}

@media(max-width:480px){

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

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

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

.contact-box i{
    margin:auto;
}

}