
:root{
    --primary:#014FBB;
    --secondary:#0B9CF9;
    --dark:#071C3C;
    --text:#667085;
    --light:#F7FBFF;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    color:#111827;
}

html{
    scroll-behavior:smooth;
}

section{
    padding:100px 0;
}

/* TOPBAR */

.topbar{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:12px 0;
    font-size:14px;
}

.topbar i{
    margin-right:8px;
}

.topbar a{
    color:#fff;
    text-decoration:none;
}

/* NAVBAR */

.custom-navbar{
    background:#ffffffee;
    backdrop-filter:blur(12px);
    border-bottom:1px solid #edf4ff;
    padding:10px 0;
}

.navbar-brand img{
    height:78px;
}

.nav-link{
    color:var(--dark);
    font-weight:600;
    margin-left:18px;
    transition:0.3s;
}

.nav-link:hover{
    color:var(--secondary);
}

.dropdown-menu{
    border:none;
    border-radius:20px;
    padding:18px;
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.dropdown-item{
    padding:12px 16px;
    border-radius:12px;
    font-weight:500;
}

.dropdown-item:hover{
    background:#eef6ff;
    color:var(--primary);
}

/* BUTTONS */

.main-btn{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:16px 32px;
    border-radius:16px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    box-shadow:0 15px 35px rgba(1,79,187,0.25);
    transition:0.35s;
}

.main-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

.outline-btn{
    border:1px solid #dce8ff;
    padding:16px 32px;
    border-radius:16px;
    font-weight:600;
    text-decoration:none;
    color:var(--dark);
    background:#fff;
    transition:0.3s;
}

.outline-btn:hover{
    border-color:var(--secondary);
    color:var(--secondary);
}

/* HERO */

.hero{
    padding-top:160px;
    padding-bottom:100px;
    background:linear-gradient(to right,#f8fbff,#eef7ff);
    position:relative;
    overflow:hidden;
    z-index:-1;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#0b9cf912;
    border-radius:50%;
    top:-250px;
    right:-250px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    background:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:30px;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
}

.hero h1{
    font-size:78px;
    line-height:1.02;
    font-weight:800;
    color:var(--dark);
    margin-bottom:25px;
}

.hero h1 span{
    color:var(--secondary);
}

.hero p{
    font-size:18px;
    color:var(--text);
    line-height:1.9;
    margin-bottom:35px;
    max-width:620px;
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:40px;
    box-shadow:0 30px 70px rgba(0,0,0,0.12);
}

.hero-stats{
    position:absolute;
    bottom:25px;
    left:-20px;
    background:#fff;
    border-radius:30px;
    padding:28px;
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.hero-stats h3{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
}

.hero-stats p{
    margin:0;
    font-size:15px;
}

.hero-features{
    margin-top:50px;
}

.feature-box{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
    height:100%;
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:24px;
    margin-bottom:20px;
}

.feature-box h5{
    font-weight:700;
    margin-bottom:10px;
    color:var(--dark);
}

.feature-box p{
    font-size:15px;
    margin:0;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:1px;
}

.section-title h2{
    font-size:56px;
    font-weight:800;
    color:var(--dark);
    margin:16px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--text);
    line-height:1.9;
}

/* SERVICES */

.service-card{
    background:#fff;
    border-radius:32px;
    padding:40px 35px;
    height:100%;
    border:1px solid #edf4ff;
    transition:0.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
}

.service-card::before{
    content:'';
    position:absolute;
    width:150px;
    height:150px;
    background:#0b9cf90d;
    border-radius:50%;
    top:-70px;
    right:-50px;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 65px rgba(0,0,0,0.08);
}

.service-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:28px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
    min-height: 48px;
}

.service-card p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:25px;
}

.service-card a{
    color:var(--secondary);
    font-weight:700;
    text-decoration:none;
}

/* ABOUT */

.about{
    background:var(--light);
}

.about-img img{
    width:100%;
    border-radius:40px;
    box-shadow:0 25px 55px rgba(0,0,0,0.08);
}

.about-content h2{
    font-size:46px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:25px;
}

.about-content p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:20px;
}

.about-list{
    margin-top:35px;
}

.about-list .item{
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    margin-bottom:15px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.about-list i{
    color:var(--secondary);
    margin-right:10px;
}

/* STATS */

.stats{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius:45px;
    padding:80px 40px;
    color:#fff;
}

.stats h3{
    font-size:60px;
    font-weight:800;
}

.stats p{
    margin-top:12px;
    opacity:0.9;
}

/* TESTIMONIALS */

.testimonial-card{
    background:#fff;
    border-radius:32px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    border:1px solid #edf4ff;
    height:100%;
}

.testimonial-stars{
    color:#FFB800;
    margin-bottom:20px;
}

.testimonial-card p{
    color:var(--text);
    line-height:1.9;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:25px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

/* CTA */

.cta{
    background:linear-gradient(135deg,#071C3C,#014FBB);
    border-radius:45px;
    padding:90px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#ffffff0f;
    border-radius:50%;
    top:-250px;
    right:-150px;
}

.cta h2{
    font-size:58px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.cta p{
    max-width:720px;
    margin:auto;
    color:#d7e5ff;
    line-height:1.9;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

/* FOOTER */

footer{
    background:#05152E;
    color:#C9D6EA;
    padding:100px 0 30px;
    margin-top:100px;
}

.footer-logo img{
    max-width:260px;
    margin-bottom:25px;
}

.footer-links a{
    display:block;
    color:#B7C5DA;
    text-decoration:none;
    margin-bottom:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#0B9CF9;
}

footer h5{
    color:#fff;
    margin-bottom:25px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
    color:#90A4BF;
}

/* MOBILE */

@media(max-width:991px){

    .hero{
        text-align:center;
        padding-top:200px;
    }

    .hero h1{
        font-size:50px;
    }

    .section-title h2,
    .about-content h2,
    .cta h2{
        font-size:38px;
    }

    .hero-stats{
        left:20px;
        bottom:20px;
    }

    .navbar-brand img{
        height:62px;
    }

}

@media(max-width:576px){

    section{
        padding:70px 0;
    }

    .hero{
        padding-top:180px;
    }

    .hero h1{
        font-size:42px;
    }

    .section-title h2,
    .about-content h2,
    .cta h2{
        font-size:32px;
    }

    .stats,
    .cta{
        padding:50px 25px;
    }

}


/* ===========================
ABOUT PAGE
=========================== */

.about-banner{
    padding-top:220px;
    padding-bottom:120px;
    background:linear-gradient(to right,#f8fbff,#eef7ff);
    position:relative;
    overflow:hidden;
}

.about-banner::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#0B9CF910;
    border-radius:50%;
    top:-250px;
    right:-250px;
}

.about-banner-content{
    position:relative;
    z-index:2;
}

.page-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 20px;
    border-radius:50px;
    color:#014FBB;
    font-weight:700;
    font-size:13px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.about-banner h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#071C3C;
    margin-bottom:25px;
}

.about-banner h1 span{
    color:#0B9CF9;
}

.about-banner p{
    color:#667085;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.about-banner-image{
    position:relative;
}

.about-banner-image img{
    width:100%;
    border-radius:40px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.about-floating-card{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:#fff;
    border-radius:30px;
    padding:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.about-floating-card h3{
    font-size:46px;
    font-weight:800;
    color:#014FBB;
    margin-bottom:5px;
}

/* ===========================
ABOUT INTRO
=========================== */

.about-company{
    padding:120px 0;
}

.about-company-image{
    position:relative;
}

.about-company-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 25px 55px rgba(0,0,0,0.08);
}

.experience-box{
    position:absolute;
    right:-20px;
    bottom:30px;
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    color:#fff;
    padding:30px;
    border-radius:28px;
    width:220px;
    box-shadow:0 25px 45px rgba(1,79,187,0.25);
}

.experience-box h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:8px;
}

.section-mini-title{
    color:#0B9CF9;
    font-weight:700;
    letter-spacing:1px;
}

.about-company-content h2{
    font-size:56px;
    font-weight:800;
    color:#071C3C;
    margin:20px 0;
    line-height:1.1;
}

.about-company-content p{
    color:#667085;
    line-height:1.9;
    margin-bottom:20px;
}

/* ===========================
ABOUT FEATURES
=========================== */

.about-feature-box{
    background:#fff;
    border-radius:26px;
    padding:28px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    border:1px solid #edf4ff;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    height:100%;
    transition:0.3s;
}

.about-feature-box:hover{
    transform:translateY(-6px);
}

.about-feature-icon{
    min-width:65px;
    height:65px;
    border-radius:20px;
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
}

.about-feature-box h5{
    font-weight:700;
    color:#071C3C;
    margin-bottom:10px;
}

.about-feature-box p{
    color:#667085;
    margin:0;
    line-height:1.7;
}

/* ===========================
OUR JOURNEY
=========================== */

.company-journey{
    padding:120px 0;
    background:#F7FBFF;
}

.journey-wrapper{
    background:#fff;
    border-radius:40px;
    padding:70px;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

.journey-step{
    background:#F8FBFF;
    border-radius:28px;
    padding:40px;
    height:100%;
    transition:0.3s;
}

.journey-step:hover{
    transform:translateY(-8px);
}

.journey-step.active{
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    color:#fff;
}

.journey-step.active p{
    color:#fff;
}

.journey-number{
    width:80px;
    height:80px;
    border-radius:24px;
    background:#fff;
    color:#014FBB;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:800;
    margin-bottom:25px;
}

.journey-step h4{
    font-weight:700;
    margin-bottom:18px;
}

.journey-step p{
    color:#667085;
    line-height:1.8;
}

/* ===========================
WHY CHOOSE
=========================== */

.why-choose{
    padding:120px 0;
}

.why-choose-content h2{
    font-size:54px;
    font-weight:800;
    color:#071C3C;
    margin:20px 0;
}

.why-choose-content p{
    color:#667085;
    line-height:1.9;
}

.why-item{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.why-icon{
    min-width:60px;
    height:60px;
    border-radius:18px;
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.why-item h5{
    font-weight:700;
    color:#071C3C;
}

.why-item p{
    margin:0;
}

.image-grid img{
    width:100%;
    border-radius:28px;
    object-fit:cover;
    height:100%;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.wide-image{
    height:260px !important;
}

/* ===========================
TEAM SECTION
=========================== */

.team-section{
    padding:120px 0;
    background:#F7FBFF;
}

.team-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.team-content{
    padding:30px;
}

.team-content h4{
    font-weight:700;
    color:#071C3C;
}

.team-content p{
    color:#0B9CF9;
    font-weight:600;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

    .about-banner h1,
    .about-company-content h2,
    .why-choose-content h2{
        font-size:42px;
    }

    .journey-wrapper{
        padding:40px 25px;
    }

    .experience-box{
        right:20px;
    }

}

@media(max-width:576px){

    .about-banner{
        padding-top:180px;
    }

    .about-banner h1,
    .about-company-content h2,
    .why-choose-content h2{
        font-size:34px;
    }

    .about-floating-card,
    .experience-box{
        position:relative;
        left:0;
        right:0;
        bottom:0;
        margin-top:20px;
        width:100%;
    }

}


/* =========================
SERVICES DETAILS
========================= */

.services-details-section{
    padding:120px 0;
    background:#fff;
}

.service-zigzag{
    margin-bottom:140px;
}

.service-image{
    position:relative;
}

.service-image img{
    width:100%;
    border-radius:36px;
    box-shadow:0 25px 55px rgba(0,0,0,0.08);
}

.service-content{
    padding:10px 20px;
}

.service-badge{
    display:inline-block;
    background:#EEF6FF;
    color:#014FBB;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.service-content h2{
    font-size:40px;
    font-weight:800;
    line-height:1.1;
    color:#071C3C;
    margin-bottom:25px;
}

.service-content p{
    color:#667085;
    line-height:1.9;
    margin-bottom:30px;
}

.service-list{
    list-style:none;
    padding:0;
    margin-bottom:35px;
}

.service-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    color:#071C3C;
    font-weight:600;
}

.service-list i{
    width:34px;
    height:34px;
    border-radius:12px;
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .service-zigzag{
        margin-bottom:90px;
    }

    .service-content h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .service-content{
        padding:0;
    }

    .service-content h2{
        font-size:32px;
    }

}


/* =========================
CONTACT HERO
========================= */

.contact-hero{
    padding-top:220px;
    padding-bottom:120px;
    background:linear-gradient(to right,#f8fbff,#eef7ff);
    position:relative;
    overflow:hidden;
}

.contact-hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#0B9CF910;
    border-radius:50%;
    top:-250px;
    right:-250px;
}

.contact-hero-content{
    position:relative;
    z-index:2;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 20px;
    border-radius:50px;
    color:#014FBB;
    font-weight:700;
    font-size:13px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#071C3C;
    margin-bottom:25px;
}

.contact-hero h1 span{
    color:#0B9CF9;
}

.contact-hero p{
    color:#667085;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.contact-hero-image img{
    width:100%;
    border-radius:40px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* =========================
CONTACT INFO
========================= */

.contact-info-section{
    padding:120px 0;
}

.contact-info-card{
    background:#fff;
    border-radius:32px;
    padding:40px;
    text-align:center;
    height:100%;
    border:1px solid #edf4ff;
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
    transition:0.3s;
}

.contact-info-card:hover{
    transform:translateY(-8px);
}

.contact-icon{
    width:85px;
    height:85px;
    border-radius:24px;
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    margin:0 auto 25px;
}

.contact-info-card h4{
    font-weight:700;
    color:#071C3C;
    margin-bottom:18px;
}

.contact-info-card p,
.contact-info-card a{
    color:#667085;
    line-height:1.8;
    text-decoration:none;
}

/* =========================
CONTACT FORM
========================= */

.contact-form-section{
    padding-bottom:120px;
}

.contact-form-wrapper{
    background:#fff;
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.06);
}

.contact-left{
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    padding:70px 50px;
    color:#fff;
    height:100%;
    position:relative;
    overflow:hidden;
}

.contact-left::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#ffffff10;
    right:-150px;
    bottom:-150px;
}

.contact-left h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.contact-left p{
    line-height:1.9;
    opacity:0.95;
    position:relative;
    z-index:2;
}

.contact-left-list{
    margin-top:40px;
    position:relative;
    z-index:2;
}

.contact-left-item{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.contact-left-icon{
    min-width:55px;
    height:55px;
    border-radius:18px;
    background:#ffffff20;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.contact-left-item h5{
    font-weight:700;
    margin-bottom:8px;
}

.contact-right{
    padding:70px 50px;
}

.contact-right h3{
    font-size:42px;
    font-weight:800;
    color:#071C3C;
    margin-bottom:15px;
}

.contact-right p{
    color:#667085;
    margin-bottom:35px;
}

.custom-form-control{
    height:60px;
    border-radius:16px;
    border:1px solid #e3ebff;
    padding:0 20px;
    box-shadow:none !important;
}

.custom-form-control:focus{
    border-color:#0B9CF9;
}

.custom-textarea{
    border-radius:16px;
    border:1px solid #e3ebff;
    padding:20px;
    box-shadow:none !important;
}

.custom-textarea:focus{
    border-color:#0B9CF9;
}

/* =========================
MAP SECTION
========================= */

.map-section{
    padding-bottom:120px;
}

.map-wrapper{
    border-radius:36px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.map-wrapper iframe{
    width:100%;
    height:550px;
    border:0;
}

/* =========================
FAQ SECTION
========================= */

.faq-section{
    padding-bottom:120px;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.accordion-item{
    border:none;
    border-radius:24px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
}

.accordion-button{
    padding:24px 28px;
    font-weight:700;
    color:#071C3C;
    background:#fff;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#014FBB,#0B9CF9);
    color:#fff;
}

.accordion-body{
    padding:28px;
    color:#667085;
    line-height:1.9;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .contact-hero h1{
        font-size:46px;
    }

    .contact-left,
    .contact-right{
        padding:50px 30px;
    }

}

@media(max-width:576px){

    .contact-hero{
        padding-top:180px;
    }

    .contact-hero h1{
        font-size:36px;
    }

    .contact-left h2,
    .contact-right h3{
        font-size:32px;
    }

}


