/* =====================================================
   01. GLOBAL STYLES
===================================================== */

body{
    font-family:'Poppins',sans-serif;
    color:#444;
    line-height:1.8;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.py-100{
    padding:50px 0;
}

.section-badge{
    display:inline-block;
    background:#eaf3ff;
    color:#0D224D;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading{
    font-size:52px;
    color:#0D224D;
    margin-bottom:20px;
}

a{
    text-decoration:none;
}


/* =====================================================
   02. BLOG HERO SECTION
===================================================== */
/*==================================
COMMON INNER PAGE HERO
==================================*/

.inner-page-hero{

    background:linear-gradient(
        135deg,
        #0A2E6D 0%,
        #123f92 100%
    );

    padding:140px 0 120px;

    position:relative;

    overflow:hidden;
}

.inner-page-hero::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

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

    top:-180px;
    left:-180px;
}

.inner-page-hero::after{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

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

    bottom:-150px;
    right:-120px;
}

.inner-page-content{

    max-width:900px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;
}

.inner-page-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

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

    color:#fff;

    padding:12px 24px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

    font-size:15px;

    font-weight:500;
}

.inner-page-badge i{

    color:#ff7a00;
}

.inner-page-hero h1{

    font-size:72px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:20px;

    color:#fff;

    font-family:'Playfair Display', serif;
}

.inner-page-hero h1 span{

    color:#ff7a00;
}

.inner-page-hero p{

    max-width:750px;

    margin:auto;

    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:1.9;
}

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

@media(max-width:991px){

    .inner-page-hero{

        padding:120px 0 100px;
    }

    .inner-page-hero h1{

        font-size:56px;
    }

}

@media(max-width:768px){

    .inner-page-hero{

        padding:90px 0 80px;
    }

    .inner-page-hero h1{

        font-size:40px;
    }

    .inner-page-hero p{

        font-size:16px;
    }

    .inner-page-badge{

        font-size:14px;

        padding:10px 20px;
    }

}


/* =====================================================
   03. FEATURED BLOG SECTION
===================================================== */

.featured-blog{
    background:#fff;
}

.featured-blog img{
    border-radius:25px;
    transition:.4s;
}

.featured-blog img:hover{
    transform:scale(1.03);
}

.read-more-btn{
    display:inline-block;
    background:#0D224D;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    margin-top:20px;
    transition:.3s;
    text-decoration: none;
}

.read-more-btn:hover{
    background:#1E88E5;
    color:#fff;
    text-decoration: none;
}


/* =====================================================
   04. LATEST BLOGS SECTION
===================================================== */


.latest-blogs{
    background:#f8f9fc;
}

.section-desc{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
}

.blog-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;
}

.blog-card:hover{

    transform:translateY(-10px);
}

.blog-image{

    position:relative;

    overflow:hidden;
}

.blog-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;
}

.blog-card:hover img{

    transform:scale(1.08);
}

.blog-category{

    position:absolute;

    top:20px;

    left:20px;

    background:#ff7a00;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;
}

.blog-content{

    padding:30px;
}

.blog-date{

    color:#888;

    font-size:14px;

    margin-bottom:15px;
}

.blog-date i{

    color:#ff7a00;

    margin-right:6px;
}

.blog-content h4{

    color:#0A2E6D;

    font-size:24px;

    line-height:1.5;

    margin-bottom:20px;
}

.read-more-btn{

    color:#ff7a00;

    font-weight:600;

    text-decoration:none;
}

.read-more-btn i{

    margin-left:8px;

    transition:.3s;
}

.read-more-btn:hover{

    color:#0A2E6D;
}

.read-more-btn:hover i{

    transform:translateX(5px);
}




.blog-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(
    135deg,
    #F97707,
    #FFA63D
    );

    color:#fff;
    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    margin-top:15px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(249,119,7,.25);

}

.blog-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(249,119,7,.35);

}

.blog-btn i{

    transition:.4s;

}

.blog-btn:hover i{

    transform:translateX(5px);

}


/*==================================
BLOG CATEGORIES
==================================*/

.blog-categories{
    background:#f8f9fc;
}

.section-desc{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
}

.category-card{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:25px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.category-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;
}

.category-card:hover::before{

    transform:scaleX(1);
}

.category-card:hover{

    transform:translateY(-12px);

    background:#0A2E6D;
}

.category-icon{

    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#f3f7ff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s;
}

.category-icon i{

    font-size:38px;

    color:#ff7a00;
}

.category-card h5{

    color:#0A2E6D;

    font-size:22px;

    margin-bottom:15px;

    transition:.4s;
}

.category-card p{

    color:#666;

    margin:0;

    transition:.4s;
}

.category-card:hover h5,
.category-card:hover p{

    color:#fff;
}

.category-card:hover .category-icon{

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


/* =====================================================
   06. BLOG NEWSLETTER SECTION
===================================================== */

.blog-newsletter{
    padding:100px 0;
    background:#f8fbff;
}

.newsletter-box{
    background:linear-gradient(135deg,#0D224D,#1E88E5);
    padding:80px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.newsletter-box h2{
    color:#fff;
    font-size:50px;
    margin-bottom:20px;
}

.newsletter-box p{
    max-width:700px;
    margin:0 auto 30px;
}

.newsletter-box form{
    max-width:700px;
    margin:auto;
    display:flex;
    gap:15px;
}

.newsletter-box input{
    flex:1;
    border:none;
    outline:none;
    padding:18px 25px;
    border-radius:50px;
}

.newsletter-box button{
    border:none;
    background:#fff;
    color:#0D224D;
    padding:18px 35px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
}


/* =====================================================
   07. BLOG ANIMATIONS
===================================================== */

.blog-card,
.category-card,
.featured-blog img{
    transition:all .4s ease;
}


/* =====================================================
   08. TABLET RESPONSIVE
===================================================== */

@media(max-width:991px){

    .inner-page-hero{
        min-height:450px;
        text-align:center;
    }

    .inner-page-content h1{
        font-size:48px;
    }

    .section-heading{
        font-size:38px;
    }

    .newsletter-box{
        padding:50px 30px;
    }

    .newsletter-box h2{
        font-size:36px;
    }

    .newsletter-box form{
        flex-direction:column;
    }

}


/* =====================================================
   09. MOBILE RESPONSIVE
===================================================== */

@media(max-width:767px){

    .py-100{
        padding:70px 0;
    }

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

    .inner-page-content p{
        font-size:16px;
    }

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

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

    .newsletter-box h2{
        font-size:28px;
    }

    .newsletter-box{
        padding:40px 20px;
    }

}