/* =========================
FILE: style.css
========================= */

body{
    font-family:Arial;
    background:#f5f7fb;
    color:#222;
}
/* =========================
MODERN UI CSS
========================= */

:root{

    --primary:#0d6efd;
    --dark:#0b1f3a;
    --light:#f5f7fb;
    --green:#16c784;

}

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

body{

    font-family:Inter,sans-serif;
    background:var(--light);
    color:#222;
    overflow-x:hidden;

}

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

.hero-section{

    background:
    linear-gradient(
    135deg,
    #eef4ff,
    #ffffff
    );

    position:relative;

}

/* =========================
BACKGROUND CIRCLES
========================= */

.hero-bg-circle{

    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:0.4;

}

.circle-1{

    width:400px;
    height:400px;
    background:#0d6efd;

    top:-100px;
    left:-100px;

}

.circle-2{

    width:350px;
    height:350px;
    background:#16c784;

    bottom:-100px;
    right:-100px;

}

/* =========================
TEXT
========================= */

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    background:#dff5e8;

    color:var(--green);

    border-radius:50px;

    font-weight:700;

    font-size:14px;

}

.hero-title{

    font-size:70px;
    line-height:1.1;
    font-weight:800;

}

.hero-desc{

    margin-top:20px;
    font-size:20px;
    color:#555;
    max-width:550px;

}

/* =========================
FEATURES
========================= */

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:15px;

    margin-top:35px;

}

.feature-item{

    background:#fff;

    padding:12px 20px;

    border-radius:50px;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

}

.feature-item i{

    color:var(--primary);
    margin-right:8px;

}

/* =========================
QUOTE CARD
========================= */

.quote-card{

    padding:40px;

    border-radius:30px;

    background:rgba(255,255,255,0.7);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

}

.live-badge{

    background:#16c784;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

/* =========================
FORM
========================= */

.form-group-custom{

    position:relative;
    margin-bottom:20px;

}

.form-group-custom i{

    position:absolute;
    top:18px;
    left:18px;

    color:#888;

}

.form-control{

    height:60px;

    border:none;

    border-radius:15px;

    padding-left:50px;

    background:#fff;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.04);

}

.form-control:focus{

    box-shadow:
    0 0 0 3px rgba(13,110,253,0.15);

}

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

.btn-primary{

    background:linear-gradient(
    135deg,
    #0d6efd,
    #0056d6
    );

    border:none;

    border-radius:15px;

    font-weight:700;

    transition:0.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(13,110,253,0.3);

}

.glow-btn{

    animation:glow 2s infinite;

}

@keyframes glow{

    0%{
        box-shadow:0 0 0 rgba(13,110,253,0.4);
    }

    50%{
        box-shadow:0 0 30px rgba(13,110,253,0.4);
    }

    100%{
        box-shadow:0 0 0 rgba(13,110,253,0.4);
    }

}

/* =========================
ANIMATIONS
========================= */

.animate-up{

    opacity:0;
    transform:translateY(40px);

    animation:up 1s forwards;

}

.animate-right{

    opacity:0;
    transform:translateX(40px);

    animation:right 1s forwards;

}

.animate-fade{

    opacity:0;

    animation:fade 1s forwards;

}

.delay-1{
    animation-delay:0.2s;
}

.delay-2{
    animation-delay:0.4s;
}

.delay-3{
    animation-delay:0.6s;
}

@keyframes up{

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes right{

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes fade{

    to{

        opacity:1;

    }

}

/* =========================
FAST LOADING OPTIMIZATION
========================= */

img{

    max-width:100%;
    display:block;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .hero-title{

        font-size:45px;

    }

    .hero-desc{

        font-size:17px;

    }

    .hero-features{

        flex-direction:column;

    }

    .quote-card{

        margin-top:50px;

    }

}
.section-title{
    font-size:40px;
    font-weight:700;
}

.hero-section{
    padding:100px 0;
}

.hero-title{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero-desc{
    font-size:18px;
    margin-top:20px;
}

.hero-badge{
    background:#dff5e8;
    color:#16c784;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.hero-features{
    margin-top:30px;
}

.hero-features span{
    margin-right:20px;
    color:#16c784;
    font-weight:600;
}

.quote-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
}

.logo-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    font-size:24px;
    font-weight:700;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.step-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.step-icon{
    width:60px;
    height:60px;
    line-height:60px;
    background:#0d6efd;
    color:#fff;
    margin:auto;
    border-radius:50%;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.benefit-list li{
    margin-bottom:15px;
    font-size:18px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:15px;
}

.footer{
    background:#0b1f3a;
    color:#fff;
}

.footer-links{
    list-style:none;
    padding:0;
}

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

.footer-links a{
    color:#fff;
    text-decoration:none;
}

@media(max-width:768px){

    .hero-title{
        font-size:40px;
    }

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

}
/* =========================
FOOTER CSS
========================= */

.footer{

    background:#081c36;
    color:#fff;

    position:relative;

}

.footer-top{

    position:relative;
    z-index:2;

}

.footer-logo{

    color:#fff;
    font-size:32px;
    font-weight:800;
    text-decoration:none;

}

.footer-desc{

    color:rgba(255,255,255,0.7);
    line-height:1.8;

}

.footer-title{

    font-size:20px;
    margin-bottom:25px;
    font-weight:700;

}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:rgba(255,255,255,0.7);
    text-decoration:none;
    transition:0.3s;

}

.footer-links a:hover{

    color:#fff;
    padding-left:5px;

}

.footer-contact{

    list-style:none;
    padding:0;

}

.footer-contact li{

    margin-bottom:18px;
    color:rgba(255,255,255,0.75);

}

.footer-contact i{

    color:#0d6efd;
    margin-right:10px;

}

/* =========================
SOCIAL ICONS
========================= */

.social-icons{

    display:flex;
    gap:12px;

}

.social-icons a{

    width:45px;
    height:45px;

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

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    color:#fff;

    text-decoration:none;

    transition:0.3s;

}

.social-icons a:hover{

    background:#0d6efd;

    transform:
    translateY(-5px);

}

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

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,0.08);

    padding:25px 0;

    position:relative;
    z-index:2;

}

.copyright-text{

    margin:0;
    color:rgba(255,255,255,0.6);

}

.footer-bottom-links{

    display:flex;
    justify-content:end;
    gap:20px;

}

.footer-bottom-links a{

    color:rgba(255,255,255,0.65);
    text-decoration:none;
    transition:0.3s;

}

.footer-bottom-links a:hover{

    color:#fff;

}

/* =========================
BACKGROUND SHAPE
========================= */

.footer-shape{

    position:absolute;

    width:500px;
    height:500px;

    background:#0d6efd;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

    bottom:-250px;
    right:-150px;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .footer-bottom-links{

        justify-content:start;
        margin-top:15px;
        flex-wrap:wrap;

    }

}
/* =========================
NEW SECTIONS
========================= */

.stats-card,
.insurance-card,
.blog-card{

    background:#fff;
    padding:30px;
    border-radius:20px;

    transition:0.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

}

.stats-card:hover,
.insurance-card:hover,
.blog-card:hover{

    transform:translateY(-10px);

}

.stats-card h2{

    font-size:45px;
    color:#0d6efd;
    font-weight:800;

}

.insurance-card i{

    font-size:40px;
    color:#0d6efd;
    margin-bottom:20px;

}

.blog-card img{

    height:220px;
    object-fit:cover;

}

.mobile-cta{

    display:none;

}

@media(max-width:768px){

    .mobile-cta{

        display:block;

        position:fixed;

        bottom:0;
        left:0;

        width:100%;

        background:#fff;

        padding:15px;

        z-index:999;

        box-shadow:
        0 -5px 20px rgba(0,0,0,0.08);

    }

}

/* =========================
FAQ STYLING
========================= */

.custom-faq .accordion-item{

    border:none;
    border-radius:20px;
    overflow:hidden;

    margin-bottom:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

}

.custom-faq .accordion-button{

    padding:25px;

    font-size:18px;
    font-weight:700;

    background:#fff;

    box-shadow:none;

    display:flex;
    align-items:center;
    gap:15px;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#0d6efd;
    color:#fff;

}

.custom-faq .accordion-body{

    padding:25px;

    background:#fff;

}

.faq-icon{

    width:42px;
    height:42px;

    min-width:42px;

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

    border-radius:50%;

    font-size:18px;

}

.question-icon{

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

}

.answer-icon{

    background:
    rgba(22,199,132,0.1);

    color:#16c784;

}

.answer-box{

    display:flex;
    gap:15px;
    align-items:flex-start;

}

.answer-box p{

    margin:0;
    line-height:1.8;
    color:#555;

}

.custom-faq .accordion-button::after{

    filter:brightness(0);

}

.custom-faq .accordion-button:not(.collapsed)::after{

    filter:brightness(10);

}

/* =========================
COMPARE TABLE SECTION
========================= */

.compare-table-section{

    background:
    linear-gradient(
    135deg,
    #f8fbff,
    #ffffff
    );

}

/* BACKGROUND */

.compare-bg-circle{

    position:absolute;

    width:400px;
    height:400px;

    background:#0d6efd;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

    top:-150px;
    right:-150px;

}

/* TABLE WRAPPER */

.custom-table-wrapper{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.06);

}

/* TABLE */

.compare-table{

    margin:0;

}

.compare-table thead{

    background:#0b1f3a;

    color:#fff;

}

.compare-table thead th{

    padding:22px;
    border:none;

    font-size:16px;
    font-weight:700;

}

.compare-table thead th i{

    margin-right:8px;
    color:#0d6efd;

}

/* ROW */

.compare-table tbody tr{

    transition:0.3s;

}

.compare-table tbody tr:hover{

    background:#f8fbff;

    transform:scale(1.01);

}

.compare-table tbody td{

    padding:22px;
    vertical-align:middle;

    border-color:#eef2f7;

}

/* COMPANY */

.company-info{

    display:flex;
    align-items:center;
    gap:15px;

}

.company-logo{

    width:60px;
    height:60px;

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

    border-radius:20px;

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

    font-size:24px;

}

.company-logo.green{

    background:
    rgba(22,199,132,0.1);

    color:#16c784;

}

.company-logo.orange{

    background:
    rgba(255,159,67,0.12);

    color:#ff9f43;

}

.company-logo.red{

    background:
    rgba(255,99,132,0.12);

    color:#ff6384;

}

.company-info h5{

    margin:0;
    font-size:18px;
    font-weight:700;

}

.company-info span{

    color:#777;
    font-size:14px;

}

/* PRICE */

.price-tag{

    font-size:24px;
    font-weight:800;

    color:#0d6efd;

}

/* BADGES */

.badge-custom{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

}

.badge-custom.blue{

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

}

.badge-custom.green{

    background:
    rgba(22,199,132,0.1);

    color:#16c784;

}

.badge-custom.orange{

    background:
    rgba(255,159,67,0.12);

    color:#ff9f43;

}

.badge-custom.red{

    background:
    rgba(255,99,132,0.12);

    color:#ff6384;

}

/* STARS */

.rating-stars{

    display:flex;
    align-items:center;
    gap:5px;

    color:#ffc107;

}

.rating-stars span{

    margin-left:5px;

    color:#222;
    font-weight:700;

}

/* BUTTON */

.compare-table .btn{

    padding:10px 18px;

    border-radius:12px;

    font-weight:700;

}

/* MOBILE */

@media(max-width:768px){

    .compare-table thead{

        display:none;

    }

    .compare-table,
    .compare-table tbody,
    .compare-table tr,
    .compare-table td{

        display:block;
        width:100%;

    }

    .compare-table tr{

        margin-bottom:20px;

        border-bottom:
        1px solid #eee;

    }

}
/* =========================
MODERN SECTION UI
========================= */

.stats-section,
.insurance-logos,
.insurance-types{

    position:relative;

}

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

.stats-bg-shape,
.insurance-shape{

    position:absolute;

    width:400px;
    height:400px;

    background:#0d6efd;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

}

.stats-bg-shape{

    top:-150px;
    left:-100px;

}

.insurance-shape{

    bottom:-150px;
    right:-100px;

}

/* =========================
CARDS
========================= */

.modern-card,
.modern-logo,
.premium-card{

    background:#fff;

    border-radius:30px;

    padding:35px;

    height:100%;

    transition:0.4s;

    position:relative;

    overflow:hidden;

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

}

.modern-card:hover,
.modern-logo:hover,
.premium-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.1);

}

/* =========================
ICONS
========================= */

.stats-icon,
.logo-icon,
.insurance-icon{

    width:75px;
    height:75px;

    border-radius:24px;

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

    font-size:30px;

    margin-bottom:25px;

}

.blue{

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

}

.green{

    background:
    rgba(22,199,132,0.1);

    color:#16c784;

}

.orange{

    background:
    rgba(255,159,67,0.12);

    color:#ff9f43;

}

.red{

    background:
    rgba(255,99,132,0.12);

    color:#ff6384;

}

/* =========================
TEXT
========================= */

.stats-card h2{

    font-size:52px;
    font-weight:800;

    margin-bottom:10px;

}

.stats-card h5,
.logo-box h4,
.premium-card h3{

    font-weight:700;
    margin-bottom:15px;

}

.stats-card p,
.logo-box span,
.premium-card p{

    color:#666;
    line-height:1.8;

}

/* =========================
COVERAGE LIST
========================= */

.coverage-list{

    list-style:none;
    padding:0;
    margin-top:25px;

}

.coverage-list li{

    margin-bottom:15px;

    font-weight:500;

    color:#444;

}

.coverage-list i{

    color:#16c784;
    margin-right:10px;

}

/* =========================
BADGES
========================= */

.coverage-badge{

    position:absolute;

    top:30px;
    right:30px;

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

    padding:8px 15px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;

}

.green-badge{

    background:
    rgba(22,199,132,0.1);

    color:#16c784;

}

.orange-badge{

    background:
    rgba(255,159,67,0.12);

    color:#ff9f43;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .stats-card h2{

        font-size:40px;

    }

}

/* =========================
HOW IT WORKS SECTION
========================= */

.how-it-works-section{

    background:
    linear-gradient(
    135deg,
    #f8fbff,
    #ffffff
    );

    position:relative;

}

/* =========================
BACKGROUND SHAPE
========================= */

.work-bg-shape{

    position:absolute;

    width:450px;
    height:450px;

    background:#0d6efd;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

    top:-150px;
    right:-150px;

}

/* =========================
STEP LINE
========================= */

.step-line{

    position:absolute;

    top:110px;
    left:16%;

    width:68%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #0d6efd,
    #16c784,
    #ff9f43
    );

    z-index:1;

    border-radius:10px;

}

/* =========================
STEP CARD
========================= */

.modern-step-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    position:relative;

    z-index:2;

    overflow:hidden;

    height:100%;

    transition:0.4s;

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

}

.modern-step-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

}

/* ACTIVE CARD */

.active-card{

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #0056d6
    );

    color:#fff;

}

.active-card p,
.active-card li{

    color:
    rgba(255,255,255,0.85);

}

/* =========================
STEP NUMBER
========================= */

.step-number{

    position:absolute;

    top:25px;
    right:30px;

    font-size:70px;
    font-weight:800;

    color:
    rgba(0,0,0,0.04);

}

.active-card .step-number{

    color:
    rgba(255,255,255,0.08);

}

/* =========================
ICON BOX
========================= */

.step-icon-box{

    width:90px;
    height:90px;

    border-radius:28px;

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

    font-size:35px;

    margin-bottom:30px;

}

.step-icon-box.blue{

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

}

.step-icon-box.green{

    background:
    rgba(255,255,255,0.12);

    color:#fff;

}

.step-icon-box.orange{

    background:
    rgba(255,159,67,0.12);

    color:#ff9f43;

}

/* =========================
TEXT
========================= */

.modern-step-card h3{

    font-size:28px;
    font-weight:700;

    margin-bottom:20px;

}

.modern-step-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

/* =========================
STEP LIST
========================= */

.step-list{

    list-style:none;
    padding:0;
    margin:0;

}

.step-list li{

    margin-bottom:15px;

    color:#444;

    font-weight:500;

}

.step-list i{

    color:#16c784;
    margin-right:10px;

}

.active-card .step-list i{

    color:#fff;

}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .step-line{

        display:none;

    }

}

@media(max-width:768px){

    .modern-step-card{

        padding:30px;

    }

    .modern-step-card h3{

        font-size:24px;

    }

}
/* =========================
BENEFITS SECTION
========================= */

.benefits-section{

    background:#fff;

    position:relative;

}

.benefit-shape{

    position:absolute;

    width:450px;
    height:450px;

    background:#16c784;

    border-radius:50%;

    filter:blur(140px);

    opacity:0.08;

    top:-200px;
    left:-150px;

}

/* =========================
IMAGE
========================= */

.benefit-image-wrapper{

    position:relative;

}

.benefit-main-image{

    border-radius:35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

}

/* FLOATING CARD */

.floating-card{

    position:absolute;

    bottom:30px;
    left:30px;

    background:#fff;

    border-radius:25px;

    padding:20px 25px;

    display:flex;
    align-items:center;
    gap:20px;

    max-width:320px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.12);

}

.floating-icon{

    width:70px;
    height:70px;

    border-radius:22px;

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

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

    font-size:30px;

}

/* =========================
BENEFITS GRID
========================= */

.benefit-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

}

.benefit-item{

    display:flex;
    gap:18px;

    background:#fff;

    border-radius:25px;

    padding:25px;

    transition:0.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

}

.benefit-item:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.1);

}

.benefit-icon{

    width:70px;
    height:70px;

    border-radius:22px;

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

    font-size:28px;

    flex-shrink:0;

}

.benefit-item h5{

    font-weight:700;
    margin-bottom:10px;

}

.benefit-item p{

    color:#666;
    margin:0;
    line-height:1.7;

}

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

.reviews-section{

    position:relative;

}

.review-shape{

    position:absolute;

    width:450px;
    height:450px;

    background:#0d6efd;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

    bottom:-200px;
    right:-150px;

}

/* REVIEW CARD */

.modern-review-card{

    background:#fff;

    border-radius:35px;

    padding:35px;

    height:100%;

    transition:0.4s;

    position:relative;

    overflow:hidden;

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

}

.modern-review-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

}

.active-review{

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #0056d6
    );

    color:#fff;

}

.active-review p,
.active-review span{

    color:
    rgba(255,255,255,0.85);

}

/* TOP */

.review-top{

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

}

.review-user{

    display:flex;
    align-items:center;
    gap:15px;

}

.review-user img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.review-user h5{

    margin:0;
    font-weight:700;

}

.review-user span{

    color:#777;

}

/* QUOTE */

.quote-icon{

    width:60px;
    height:60px;

    border-radius:20px;

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

    background:
    rgba(13,110,253,0.1);

    color:#0d6efd;

    font-size:24px;

}

.active-review .quote-icon{

    background:
    rgba(255,255,255,0.15);

    color:#fff;

}

/* STARS */

.stars{

    color:#ffc107;

    display:flex;
    gap:5px;

    font-size:18px;

}

/* TEXT */

.review-text{

    margin-top:25px;

    line-height:1.9;

    color:#555;

}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .benefit-grid{

        grid-template-columns:
        repeat(1,1fr);

    }

}

@media(max-width:768px){

    .floating-card{

        position:relative;

        bottom:auto;
        left:auto;

        margin-top:20px;

        max-width:100%;

    }

}
/* =========================
BLOG SECTION
========================= */

.blog-section{

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8fbff
    );

    position:relative;

}

/* =========================
BACKGROUND SHAPE
========================= */

.blog-shape{

    position:absolute;

    width:450px;
    height:450px;

    background:#0d6efd;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.08;

    top:-200px;
    right:-150px;

}

/* =========================
BLOG CARD
========================= */

.modern-blog-card{

    background:#fff;

    border-radius:35px;

    overflow:hidden;

    height:100%;

    transition:0.4s;

    position:relative;

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

}

.modern-blog-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

}

/* FEATURED */

.featured-blog{

    border:
    2px solid rgba(13,110,253,0.1);

}

/* =========================
IMAGE
========================= */

.blog-image{

    position:relative;

    overflow:hidden;

}

.blog-image img{

    width:100%;
    height:260px;

    object-fit:cover;

    transition:0.5s;

}

.modern-blog-card:hover img{

    transform:scale(1.08);

}

/* =========================
CATEGORY
========================= */

.blog-category{

    position:absolute;

    top:20px;
    left:20px;

    padding:10px 18px;

    border-radius:50px;

    font-size:13px;
    font-weight:700;

    backdrop-filter:blur(10px);

}

.blog-category i{

    margin-right:8px;

}

/* COLORS */

.blog-category.blue{

    background:
    rgba(13,110,253,0.12);

    color:#0d6efd;

}

.blog-category.green{

    background:
    rgba(22,199,132,0.12);

    color:#16c784;

}

.blog-category.orange{

    background:
    rgba(255,159,67,0.12);

    color:#ff9f43;

}

/* =========================
CONTENT
========================= */

.blog-content{

    padding:30px;

}

.blog-content h3{

    font-size:28px;
    font-weight:700;

    line-height:1.4;

    margin-bottom:18px;

}

.blog-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

/* =========================
META
========================= */

.blog-meta{

    display:flex;
    gap:20px;

    margin-bottom:20px;

    flex-wrap:wrap;

}

.blog-meta span{

    color:#777;
    font-size:14px;

}

.blog-meta i{

    color:#0d6efd;
    margin-right:6px;

}

/* =========================
BUTTON
========================= */

.blog-btn{

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

    font-weight:700;

    text-decoration:none;

    color:#0d6efd;

    transition:0.3s;

}

.blog-btn:hover{

    gap:15px;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .blog-content h3{

        font-size:24px;

    }

    .blog-image img{

        height:220px;

    }

}