/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Segoe UI', sans-serif;
    background:#f5f7fb;
    color:#333;
    line-height:1.6;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */
.header{
    background:#0b3d91;
    color:#fff;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    font-size:20px;
    font-weight:600;
}

/* NAV */
nav{
    display:flex;
    align-items:center;
}

nav a{
    color:#fff;
    margin-left:20px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    opacity:0.8;
}

/* MENU ICON */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ================= HERO ================= */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:60px 50px;
    border-radius:15px;
    background:linear-gradient(to right,#0b3d91,#1e5ed8);
    color:#fff;
    margin-top:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:38px;
    margin-bottom:10px;
}

.hero-text p{
    font-size:16px;
    margin-bottom:6px;
}

.hero-img{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-img img{
    width:100%;
    max-width:360px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

/* BUTTON */
.btn{
    display:inline-block;
    background:#fff;
    color:#0b3d91;
    padding:12px 22px;
    margin-top:15px;
    margin-right:10px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#e6e6e6;
}

/* ================= GRID ================= */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

/* CARD */
.card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* ================= BLOG CARD ================= */
.blog-card{
    overflow:hidden;
    padding:0;
}

.blog-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.blog-content{
    padding:18px;
}

.blog-content h3{
    font-size:18px;
    margin-bottom:10px;
    color:#0b3d91;
}

.blog-content p{
    font-size:14px;
    color:#555;
}

/* ================= SECTION ================= */
.section{
    margin-top:60px;
}

.section h2{
    font-size:24px;
    color:#0b3d91;
    margin-bottom:20px;
    border-left:5px solid #0b3d91;
    padding-left:10px;
}

/* ================= CTA ================= */
.cta{
    background:linear-gradient(135deg,#0b3d91,#1e5ed8);
    color:#fff;
    padding:50px 20px;
    text-align:center;
    border-radius:15px;
    margin-top:50px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.cta h2{
    font-size:26px;
    margin-bottom:10px;
}

/* ================= BLOG SINGLE ================= */
.blog-single h1{
    margin-bottom:10px;
    color:#0b3d91;
}

.blog-date{
    color:#888;
    font-size:14px;
    margin-bottom:15px;
}

.blog-img{
    width:100%;
    max-height:400px;
    object-fit:cover;
    border-radius:12px;
    margin:20px 0;
}

.blog-body{
    font-size:16px;
    line-height:1.8;
}

/* ================= ABOUT ================= */
.about-flex{
    display:flex;
    align-items:center;
    gap:50px;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-img img{
    width:100%;
    max-width:320px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.about-text{
    flex:1;
}

.about-text h1{
    font-size:32px;
    color:#0b3d91;
    margin-bottom:15px;
}

.about-text p{
    margin-bottom:10px;
}

.about-text ul{
    margin-top:10px;
    margin-bottom:20px;
}

.about-text li{
    margin-bottom:6px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .hero-text h1{
        font-size:28px;
    }

    .hero-img img{
        max-width:220px;
        margin-top:20px;
    }

    .about-flex{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .about-img img{
        max-width:200px;
    }

    /* NAV MOBILE */
    nav{
        display:none;
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        background:#0b3d91;
        flex-direction:column;
    }

    nav a{
        padding:15px;
        border-top:1px solid rgba(255,255,255,0.2);
        margin:0;
    }

    nav.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}

/* ================= MOBILE STICKY BAR ================= */
.mobile-bar{
    display:none;
}

@media(max-width:768px){
    .mobile-bar{
        display:flex;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        z-index:999;
    }

    .mobile-bar a{
        flex:1;
        text-align:center;
        padding:14px;
        color:#fff;
        text-decoration:none;
        font-weight:bold;
    }

    .call-btn{
        background:#0b3d91;
    }

    .wa-btn{
        background:#25D366;
    }
}
/* CONTACT PREMIUM */
.contact-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.contact-info{
    flex:1;
}

.contact-info h2{
    color:#0b3d91;
    margin-bottom:10px;
}

.contact-info p{
    margin-bottom:8px;
}

.highlight{
    margin:15px 0;
    font-weight:500;
}

.contact-buttons{
    margin-top:15px;
}

.contact-image img{
    width:100%;
    max-width:300px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* BUTTON COLORS */
.btn.call{
    background:#0b3d91;
    color:#fff;
}

.btn.call:hover{
    background:#082c6b;
}

.btn.whatsapp{
    background:#25D366;
    color:#fff;
}

.btn.whatsapp:hover{
    background:#1ebe5d;
}

/* CONTACT CARDS */
.contact-card{
    text-align:center;
}

.contact-card h3{
    margin-bottom:10px;
}

/* PREMIUM CTA */
.premium-cta{
    background:linear-gradient(135deg,#0b3d91,#1e5ed8);
}

/* MOBILE */
@media(max-width:768px){

    .contact-hero{
        flex-direction:column;
        text-align:center;
    }

    .contact-image img{
        max-width:200px;
    }
}
/* BLOG LIST */
.blog-card{
    overflow:hidden;
}

.blog-thumb{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px 10px 0 0;
}

/* BLOG PAGE */
.blog-page{
    max-width:900px;
    margin:auto;
}

.blog-title{
    font-size:32px;
    color:#0b3d91;
    margin-bottom:10px;
}

.blog-date{
    color:#777;
    margin-bottom:20px;
}

.blog-image{
    width:100%;
    border-radius:12px;
    margin-bottom:20px;
}

.blog-content{
    line-height:1.8;
    font-size:16px;
}

.blog-content h2{
    margin-top:25px;
    color:#0b3d91;
}
/* BLOG LAYOUT */
.blog-layout{
    display:flex;
    gap:30px;
    margin-top:30px;
}

.blog-main{
    flex:3;
}

.blog-sidebar{
    flex:1;
}

/* META */
.blog-meta{
    color:#777;
    margin-bottom:15px;
}

/* SIDEBAR */
.sidebar-box{
    background:#fff;
    padding:15px;
    margin-bottom:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-box h3{
    margin-bottom:10px;
    color:#0b3d91;
}

/* TAGS */
.blog-tags{
    margin-top:20px;
    font-size:14px;
}

/* RELATED */
.related-posts{
    margin-top:40px;
}

/* MOBILE */
@media(max-width:768px){
    .blog-layout{
        flex-direction:column;
    }
}
.blog-layout{
    display:flex;
    gap:30px;
}

.blog-main{ flex:3; }
.blog-sidebar{ flex:1; }

.blog-meta a{
    color:#0b3d91;
    text-decoration:none;
    font-weight:600;
}

.tag{
    display:inline-block;
    background:#eef3ff;
    padding:5px 10px;
    margin:5px;
    border-radius:5px;
    text-decoration:none;
}

.sidebar-box{
    background:#fff;
    padding:15px;
    margin-bottom:20px;
    border-radius:10px;
}

/* MOBILE */
@media(max-width:768px){
    .blog-layout{
        flex-direction:column;
    }
}
.blog-main{
    max-width:750px;
}

.blog-image{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:12px;
    margin:20px 0;
}

.blog-content{
    line-height:1.8;
    font-size:16px;
}

.cta-box{
    background:linear-gradient(to right,#0b3d91,#1e5ed8);
    color:#fff;
    padding:25px;
    border-radius:12px;
    margin:30px 0;
}

.blog-thumb{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:10px;
}
.section h1{
    font-size:32px;
    margin-bottom:15px;
}

.section h2{
    margin-top:30px;
    color:#0b3d91;
}

.section h3{
    margin-top:20px;
}

.section p{
    line-height:1.8;
}

.section ul{
    margin:15px 0;
    padding-left:20px;
}

.section li{
    margin-bottom:8px;
}
.cta h2,
.cta h3{
    color:#fff !important;
}
.cta p{
    color:#e6ecff;
}