/*======================================================
        GLOBAL RESPONSIVE WIDTH FIX
======================================================*/

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Main Bootstrap/container width */
.container {
    width: 100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-left:24px;
    padding-right:24px;
}

/* Prevent sections from becoming narrower than viewport */
section,
header,
main,
footer {
    width: 100%;
    max-width: 100%;
}

/*======================================================
                GOOGLE FONT VARIABLES
======================================================*/

:root{

    --primary:#1E3A8A;
    --secondary:#3B82F6;
    --accent:#F97316;

    --heading:#111827;
    --text:#4B5563;

    --white:#ffffff;
    --light:#F9FAFB;

    --shadow:0 10px 30px rgba(0,0,0,.06);

    --radius:14px;

}


/*======================================================
                    RESET
======================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'poppins',sans-serif;

    /* text-align: justify; */

    color:var(--text);

    background:#fff;

    line-height: 1.8;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section p{
    text-align: justify;
}

/* Responsive section spacing */
section{
    width:100%;
    padding:80px 0;
}

@media (max-width:1200px){
    section{
        padding:70px 0;
    }

    .container{
        padding-left:20px;
        padding-right:20px;
    }
}

@media (max-width:992px){
    section{
        padding:60px 0;
    }

    .container{
        padding-left:18px;
        padding-right:18px;
    }
}

@media (max-width:768px){
    section{
        padding:50px 0;
    }

    .container{
        padding-left:16px;
        padding-right:16px;
    }
}
/*======================================================
                NAVBAR
======================================================*/

.custom-navbar{

    background:#fff;

    padding:8px 0;

    transition:.4s ease;

    z-index:9999;

}

.custom-navbar.scrolled{

    padding:5px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.custom-navbar .container {
    width: 100%;
    max-width: none;
    padding-left: 10vw;
    padding-right: 10vw;
}


.custom-navbar .navbar-nav {
    margin-left: auto !important;
    margin-right: 20px !important;
    gap: 30px;
}

/*======================================================
                    LOGO
======================================================*/

.navbar-brand img{

    width:90px;

    transition:.3s;

}

.custom-navbar.scrolled .navbar-brand img{

    width:145px;

}


/*======================================================
                    NAVIGATION
======================================================*/

.navbar-nav{

    gap:30px;
    font-weight:600;

}

.nav-link{

    position:relative;

    font-size:17px;

    font-weight:600;

    color:var(--heading) !important;

    padding:8px 14px !important;

    transition:.3s;

}

.nav-link:hover{

    color:var(--secondary) !important;

}

.nav-link::after{

    /* position:absolute; */

    content:"";

    left:14px;

    bottom:3px;

    width:0;

    height:2px;

    /* background:var(--secondary); */

    transition:.35s;

}

.nav-link:hover::after{

    width:65%;

}

.nav-link.active{

    color:var(--secondary)!important;

}

.nav-link.dropdown-toggle{
    display: flex;
    align-items: center;
}

/* .dropdown-toggle::after{
    margin-left: 8px;
    vertical-align: middle;
} */

/* ===========================
   Insurance Dropdown
=========================== */

.dropdown-menu{
    border:none;
    border-radius:18px;
    padding:12px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    min-width:250px;
}

.dropdown-item{
    font-size:16px;
    font-weight:500;
    padding:12px 22px;
    transition:.3s;
}

.dropdown-item:hover{
    background:#f4f8ff;
    color:#2563eb;
    padding-left:28px;
}

.dropdown-toggle::after{
    margin-left:8px;
}

.navbar-collapse{
    /* display:flex; */
    align-items:center;
    justify-content:flex-end;
    width:100%;
}

.navbar-nav{
    display:flex;
    align-items:center;
    gap:60px;
    /* margin:0 auto; */
    margin-left:auto !important;
    margin-right:20px !important;
}

.header-buttons{
    margin-left:0 !important;
}

/*======================================================
            HEADER BUTTONS
======================================================*/

.header-buttons{

    display:flex;

    align-items:center;

    gap:12px;

}

.quote-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    padding:15px 28px;

    border-radius:40px;

    background:#ff7a00;

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.quote-btn:hover{

    background:#e8680d;

    color:#fff;

    transform:translateY(-3px);

}

.whatsapp-btn{

    background:#25D366;

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.whatsapp-btn i{

    margin-right:6px;

}

.whatsapp-btn:hover{

    background:#1db954;

    color:#fff;

    transform:translateY(-3px);

}


/*======================================================
            MOBILE TOGGLE
======================================================*/

.navbar-toggler{

    font-size:30px;

    color:var(--primary);

}


/*======================================================
                HERO SECTION
======================================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(180deg,#ffffff,#f7fbff);

    padding-top:125px;

    padding-bottom:70px;

}

.hero-section{
    width:100%;
    padding:140px 100px 80px;
    overflow:hidden;
}

.hero-content{
    padding-right:30px;
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:520px;
    height:auto;
}


/*======================================================
            DECORATIVE CIRCLES
======================================================*/

.circle{

    position:absolute;

    border-radius:50%;

    z-index:0;

}

.circle.one{

    width:320px;

    height:320px;

    background:rgba(59,130,246,.06);

    top:-120px;

    right:-120px;

}

.circle.two{

    width:220px;

    height:220px;

    background:rgba(30,58,138,.05);

    left:-70px;

    bottom:40px;

}

.circle.three{

    width:120px;

    height:120px;

    background:rgba(249,115,22,.08);

    right:25%;

    bottom:120px;

}


/*======================================================
            HERO CONTAINER
======================================================*/

.hero-section .container{

    position:relative;

    z-index:5;

}

/*======================================================
                    HERO TAG
======================================================*/

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#EAF4FF;

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

    border:1px solid rgba(59,130,246,.15);

}

.hero-tag i{

    color:var(--secondary);

    font-size:18px;

}


/*======================================================
                HERO TITLE
======================================================*/

.hero-title{

    font-family:'Poppins',sans-serif;

    color:var(--heading);

    font-size:48px;

    font-weight:800;

    line-height:1.18;

    margin-bottom:12px;

}

.hero-title .text-dark{

    color:#111827;

}

.gradient-text{
     font-size:46px;

    background:linear-gradient(90deg,#3B82F6,#60A5FA);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}


/*======================================================
                HERO SUBTITLE
======================================================*/

.hero-subtitle{

    font-family:'Poppins',sans-serif;

    font-size:20px;

    font-style:italic;

    color:#64748B;

    margin-bottom:22px;

    letter-spacing:1px;

}


/*======================================================
            HERO DESCRIPTION
======================================================*/

.hero-description{

    font-size:16px;

    line-height:1.8;

    color:var(--text);

    max-width:520px;

    margin-bottom:35px;

}


/*======================================================
                HERO BUTTONS
======================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}


/* Primary Button */

.primary-btn{

    background:linear-gradient(135deg,#F97316,#FB923C);

    color:#fff;

    padding:16px 30px;

    border-radius:60px;

    font-size:16px;

    font-weight:600;

    box-shadow:0 14px 35px rgba(249,115,22,.25);

    transition:.35s;

}

.primary-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(249,115,22,.35);

}


/* Secondary Button */

.secondary-btn{

    background:#fff;

    color:#25D366;

    border:2px solid #25D366;

    padding:16px 28px;

    border-radius:60px;

    font-weight:600;

    transition:.35s;

}

.secondary-btn i{

    margin-right:8px;

    font-size:18px;

}

.secondary-btn:hover{

    background:#25D366;

    color:#fff;

    transform:translateY(-5px);

}


/*======================================================
                TRUST WRAPPER
======================================================*/

.trust-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:22px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:8px;

    background:#fff;

    padding:10px 16px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    box-shadow:var(--shadow);

}

.trust-item i{

    color:#3B82F6;

}


/*======================================================
                PARTNER CODE
======================================================*/

.partner-code{

    display:inline-block;

    background:#F8FAFC;

    padding:14px 20px;

    border-left:4px solid var(--secondary);

    border-radius:10px;

    font-size:15px;

    color:#555;

}

.partner-code strong{

    color:var(--primary);

}


/*======================================================
                HERO IMAGE
======================================================*/

/* HERO IMAGE */

/*======================================================
                HERO IMAGE
======================================================*/

.hero-image{
    position:relative;
    width:100%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding-right:10px;
    z-index:2;
}

.hero-circle{
    width:480px;
    height:480px;

    border-radius:50%;
    overflow:hidden;

    background:#eef5ff;

    display:flex;
    justify-content:center;
    align-items:center;
    /* border:8px solid rgba(255,255,255,.8); */
    box-shadow:0 20px 60px rgba(0,0,0,.08);

    position:relative;
    z-index:2;

    flex-shrink:0;
}

.hero-circle img{
    width:100%;
    height:100%;

    object-fit:cover;
    border:8px solid rgba(255,255,255,.8);

    /* Keeps the face properly visible */
    object-position:center 15%;

    border-radius:50%;
}


/*======================================================
                IMAGE GLOW
======================================================*/

.hero-image::before{
    content:"";

    position:absolute;

    width:480px;
    height:480px;

    background:rgba(59,130,246,.08);

    border-radius:50%;

    top:50%;
    right:0;

    transform:translate(8%,-50%);

    z-index:-1;
}

/*======================================================
                FLOAT ANIMATION
======================================================*/

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}


/*======================================================
                BUTTON ANIMATION
======================================================*/

.primary-btn,
.secondary-btn{

    position:relative;

    overflow:hidden;

}

.primary-btn::before,
.secondary-btn::before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    top:0;

    left:0;

    background:rgba(255,255,255,.18);

    transition:.4s;

}

.primary-btn:hover::before,
.secondary-btn:hover::before{

    width:100%;

}

/*======================================================
            LARGE DESKTOP (1600px+)
======================================================*/

@media (min-width:1600px){

.hero-title{

font-size:68px;

}

.hero-description{

font-size:19px;

max-width:620px;

}

.hero-image{

max-width:580px;

}

}


/*======================================================
            LARGE LAPTOP (1400px)
======================================================*/

@media (max-width:1400px){

.hero-title{

font-size:54px;

}

.hero-image{

max-width:470px;

}

}


/*======================================================
                LAPTOP
======================================================*/

@media (max-width:1200px){

.custom-navbar{

padding:14px 0;

}

.navbar-brand img{

width:140px;

}

.hero-title{

font-size:48px;

}

.hero-subtitle{

font-size:22px;

}

.hero-description{

font-size:16px;

max-width:520px;

}

.hero-image{

max-width:430px;

}

.quote-btn,
.whatsapp-btn{

padding:11px 18px;

font-size:15px;

}

}


/*======================================================
                TABLET
======================================================*/

@media (max-width:991px){

.navbar-collapse{

background:#fff;

margin-top:18px;

padding:20px;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.navbar-nav{

gap:6px;

text-align:center;

}

.header-buttons{

margin-top:18px;

justify-content:center;

flex-wrap:wrap;

}

.hero-section{

padding-top:130px;

padding-bottom:70px;

text-align:center;

}

.hero-description{

margin-left:auto;

margin-right:auto;

}

.hero-buttons{

justify-content:center;

}

.trust-wrapper{

justify-content:center;

}

.partner-code{

display:inline-block;

margin:auto;

}

.hero-image{

margin-top:45px;

max-width:420px;

}

.circle.one{

width:240px;

height:240px;

}

.circle.two{

width:170px;

height:170px;

}

.circle.three{

display:none;

}

}


/*======================================================
                TABLET SMALL
======================================================*/

@media (max-width:768px){

.hero-title{

font-size:40px;

}

.hero-subtitle{

font-size:20px;

}

.hero-description{

font-size:15px;

line-height:1.8;

}

.primary-btn,
.secondary-btn{

width:100%;

text-align:center;

justify-content:center;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-image{

max-width:360px;

}

.navbar-brand img{

width:130px;

}

}


/*======================================================
                MOBILE
======================================================*/

/*======================================================
        HERO IMAGE RESPONSIVE FIX
======================================================*/

/* Large desktop */
@media (min-width:1401px){

    .hero-image{
        justify-content:flex-end;
        padding-right:0;
    }

    .hero-circle{
        width:480px;
        height:480px;
    }

    .hero-image::before{
        width:480px;
        height:480px;
    }
}


/* Laptop */
@media (max-width:1400px) and (min-width:1201px){

    .hero-image{
        justify-content:flex-end;
        padding-right:0;
    }

    .hero-circle{
        width:440px;
        height:440px;
    }

    .hero-image::before{
        width:440px;
        height:440px;
    }
}


/* Smaller laptop */
@media (max-width:1200px) and (min-width:992px){

    .hero-image{
        justify-content:flex-end;
        padding-right:0;
    }

    .hero-circle{
        width:440px;
        height:440px;
    }

    .hero-image::before{
        width:440px;
        height:440px;
    }
}


/*======================================================
                    TABLET
======================================================*/

@media (max-width:991px){

    .hero-image{
        width:100%;
        justify-content:center;
        padding-right:0;
        margin-top:45px;
    }

    .hero-circle{
        width:380px;
        height:380px;
    }

    .hero-image::before{
        width:380px;
        height:380px;
        right:50%;
        transform:translate(50%,-50%);
    }
}


/*======================================================
                    SMALL TABLET
======================================================*/

@media (max-width:768px){

    .hero-image{
        margin-top:40px;
        justify-content:center;
    }

    .hero-circle{
        width:320px;
        height:320px;
    }

    .hero-image::before{
        width:320px;
        height:320px;
    }
}


/*======================================================
                    MOBILE
======================================================*/

@media (max-width:576px){

    .hero-image{
        margin-top:35px;
        justify-content:center;
    }

    .hero-circle{
        width:280px;
        height:280px;
    }

    .hero-image::before{
        width:280px;
        height:280px;
    }
}


/*======================================================
                EXTRA SMALL MOBILE
======================================================*/

@media (max-width:400px){

    .hero-circle{
        width:250px;
        height:250px;
    }

    .hero-image::before{
        width:250px;
        height:250px;
    }
}


/* ====================================================
   HERO IMAGE - FINAL RESPONSIVE ADJUSTMENT
==================================================== */

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

/* Main photo circle */
.hero-circle {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Photo itself */
.hero-circle img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Blue decorative circle */
.hero-circle-bg {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-43%, -50%);
    z-index: 1;
}


/* ====================================================
   LAPTOP / TABLET
==================================================== */

@media (max-width: 1199px) and (min-width: 992px) {

    .hero-image {
        padding-right: 10px;
    }

    .hero-circle,
    .hero-circle-bg {
        width: 390px;
        height: 390px;
    }

}


/* ====================================================
   MOBILE / SMALL TABLET
==================================================== */

@media (max-width: 991px) {

    .hero-image {
        justify-content: center;
        padding-right: 0;
        margin-top: 40px;
    }

    .hero-circle,
    .hero-circle-bg {
        width: 330px;
        height: 330px;
    }

    .hero-circle-bg {
        transform: translate(-50%, -50%);
    }

}


/* ====================================================
   SMALL MOBILE
==================================================== */

@media (max-width: 575px) {

    .hero-image {
        margin-top: 30px;
    }

    .hero-circle,
    .hero-circle-bg {
        width: 290px;
        height: 290px;
    }

}


/*======================================================
        CORE PROBLEM SECTION
======================================================*/

.problem-section{

    padding:140px 100px 80px;

    background:#F8FBFF;

}

.section-tag{

    display:inline-block;

    background:#EAF4FF;

    color:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.problem-title{

    font-family:'Poppins',sans-serif;

    font-size:42px;

    font-weight:700;

    color:#111827;

    line-height:1.3;

    margin-bottom:25px;

}

.problem-title span{

    color:#2563EB;

}

.problem-text{

    font-size:16px;

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

.problem-highlight{

    font-size:18px;

    font-weight:600;

    color:#0F4C81;

    margin:35px 0;

}

.problem-btn{

    display:inline-block;

    background:#F97316;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(249,115,22,.25);

}

.problem-btn:hover{

    background:#ea6b0b;

    color:#fff;

    transform:translateY(-4px);

}

.problem-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.problem-card h4{

    font-family:'Poppins',sans-serif;

    color:#0F4C81;

    margin-bottom:25px;

    text-align:center;

}

.problem-item{

    background:#F8FBFF;

    padding:15px 18px;

    margin-bottom:15px;

    border-radius:12px;

    font-weight:500;

    transition:.3s;

}

.problem-item:hover{

    transform:translateX(8px);

    background:#EAF4FF;

}

/*================ Responsive ================*/

@media(max-width:991px){

.problem-section{

text-align:center;

padding:70px 0;

}

.problem-card{

margin-top:40px;

}

.problem-title{

font-size:34px;

}

}

@media(max-width:576px){

.problem-title{

font-size:28px;

}

.problem-text{

font-size:15px;

}

.problem-btn{

width:100%;

text-align:center;

}

.problem-card{

padding:25px;

}

}
/*====================================================
            GOAL SECTION
====================================================*/

.goal-section{

    padding:140px 100px 80px;

    background:#ffffff;

}

.goal-title{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

}

.goal-title span{

    color:#2563EB;

}

.goal-subtitle{

    max-width:850px;

    margin:0 auto 60px;

    font-size:17px;

    color:#6B7280;

    line-height:1.9;

}

.goal-card{

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

    border:1px solid #eef2f7;

}

.goal-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.goal-icon{

    width:75px;

    height:75px;

    background:#EAF4FF;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

}

.goal-icon i{

    font-size:34px;

    color:#2563EB;

}

.goal-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;

    color:#111827;

}

.goal-card h6{

    color:#2563EB;

    font-weight:600;

    margin-bottom:18px;

}

.goal-card p{

    font-size:15px;

    color:#6B7280;

    line-height:1.8;

}

/*======================================================
        INSURANCE SOLUTION - READ MORE
======================================================*/

.solution-read-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #2563eb;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


/* Arrow */

.solution-read-more span {

    font-size: 20px;

    line-height: 1;

    transition: transform 0.3s ease;

}


/* Hover */

.solution-read-more:hover {

    color: #ff7a00;

}


.solution-read-more:hover span {

    transform: translateX(5px);

}

/* Responsive */

@media(max-width:991px){

.goal-title{

font-size:34px;

}

.goal-subtitle{

font-size:16px;

}

}

@media(max-width:576px){

.goal-section{

padding:70px 0;

}

.goal-title{

font-size:28px;

}

.goal-card{

padding:28px 20px;

}

.goal-icon{

width:65px;

height:65px;

}

.goal-icon i{

font-size:28px;

}

}
/*====================================================
      WHY WORK WITH CHETNA VIRANI
====================================================*/

.why-work-section{

    padding:140px 100px 80px;

    background:#F8FBFF;

}

.why-title{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:25px;

}

.why-title span{

    color:#2563EB;

}

.why-text{

    color:#6B7280;

    font-size:16px;

    line-height:1.9;

    margin-bottom:20px;

}

.value-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:22px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(37,99,235,.12);

}

.value-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#EAF4FF;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.value-icon i{

    color:#2563EB;

    font-size:28px;

}

.value-card h5{

    font-size:21px;

    font-weight:700;

    color:#111827;

    margin-bottom:10px;

}

.value-card p{

    color:#6B7280;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/* Responsive */

@media(max-width:991px){

.why-work-section{

text-align:center;

padding:80px 0;

}

.value-card{

text-align:left;

margin-top:25px;

}

.why-title{

font-size:34px;

}

}

@media(max-width:576px){

.why-title{

font-size:28px;

}

.why-text{

font-size:15px;

}

.value-card{

padding:20px;

}

.value-icon{

width:55px;

height:55px;

}

.value-icon i{

font-size:24px;

}

.value-card h5{

font-size:18px;

}

}

/*====================================================
        AFFORDABLE PROTECTION
====================================================*/

.affordable-section{

    padding:140px 100px 80px;

    background:#ffffff;

}

.affordable-title{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:25px;

}

.affordable-title span{

    color:#2563EB;

}

.affordable-text{

    font-size:16px;

    color:#6B7280;

    line-height:1.9;

    margin-bottom:18px;

}

.quote-box{

    background:#F8FBFF;

    border-left:5px solid #2563EB;

    padding:25px;

    border-radius:16px;

    margin:35px 0;

    position:relative;

}

.quote-box i{

    font-size:28px;

    color:#2563EB;

    margin-bottom:12px;

}

.quote-box p{

    margin:0;

    font-size:18px;

    line-height:1.8;

    color:#111827;

}

.affordable-btn{

    display:inline-block;

    background:#F97316;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(249,115,22,.25);

}

.affordable-btn:hover{

    background:#ea6b0b;

    color:#fff;

    transform:translateY(-4px);

}

.premium-card{

    background:linear-gradient(135deg,#0F4C81,#2563EB);

    color:#fff;

    padding:40px 35px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(37,99,235,.20);

}

.premium-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.premium-icon i{

    font-size:38px;

}

.premium-card h3{

    font-size:24px;

    margin-bottom:10px;

}

.premium-card h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:5px;

}

.premium-card p{

    color:#E5E7EB;

}

.premium-card hr{

    border-color:rgba(255,255,255,.25);

    margin:25px 0;

}

.premium-feature{

    margin-bottom:18px;

    font-size:16px;

    display:flex;

    align-items:center;

    gap:10px;

}

.premium-feature i{

    color:#FFD166;

}

/* Responsive */

@media(max-width:991px){

.affordable-section{

text-align:center;

padding:80px 0;

}

.premium-card{

margin-top:40px;

}

.affordable-title{

font-size:34px;

}

}

@media(max-width:576px){

.affordable-title{

font-size:28px;

}

.affordable-text{

font-size:15px;

}

.quote-box p{

font-size:16px;

}

.premium-card{

padding:30px 25px;

}

.premium-card h2{

font-size:34px;

}

}

/*====================================================
        CLIENT SUCCESS STORIES SECTION
====================================================*/

.testimonial-section{

    padding:140px 100px 80px;

    background:linear-gradient(to bottom,#F8FBFF,#FFFFFF);

}

.testimonial-title{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

}

.testimonial-title span{

    color:#2563EB;

}

.testimonial-subtitle{

    max-width:760px;

    margin:0 auto 60px;

    color:#6B7280;

    line-height:1.8;

    font-size:17px;

}

/* ================= CARD ================= */

.testimonial-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    padding:40px 30px 35px;

    overflow:hidden;

    height:100%;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    border:1px solid #EEF2F7;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(37,99,235,.15);

    border-color:#D7E9FF;

}

/* Featured Card */

.featured-card{

    transform:scale(1.03);

    border:2px solid #D8E8FF;

}

.featured-card:hover{

    transform:scale(1.05) translateY(-8px);

}

/* Avatar */

.client-avatar{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#0F4C81);

    color:#fff;

    font-size:28px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

    box-shadow:0 12px 30px rgba(37,99,235,.25);

}

/* Badge */

.story-badge{

    display:inline-block;

    background:#EAF4FF;

    color:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

/* Heading */

.testimonial-card h4{

    font-size:24px;

    font-weight:700;

    color:#111827;

    line-height:1.4;

    margin-bottom:20px;

}

/* Paragraph */

.testimonial-card p{

    color:#6B7280;

    font-size:15px;

    line-height:1.9;

    margin-bottom:30px;

}

/* Client Information */

.client-info{

    border-top:1px solid #E5E7EB;

    padding-top:22px;

}

.client-info h5{

    color:#0F4C81;

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

}

.client-info span{

    display:block;

    color:#6B7280;

    font-size:14px;

    margin-bottom:4px;

}

/* Hover Animation */

.testimonial-card:hover .client-avatar{

    transform:rotate(360deg);

    transition:1s;

}

/* Responsive */

@media(max-width:991px){

.testimonial-section{

padding:80px 0;

}

.testimonial-title{

font-size:34px;

}

.featured-card{

transform:none;

}

.featured-card:hover{

transform:translateY(-10px);

}

}

@media(max-width:768px){

.testimonial-card{

text-align:center;

}

.client-info{

text-align:center;

}

.quote-bg{

display:none;

}

}

@media(max-width:576px){

.testimonial-title{

font-size:28px;

}

.testimonial-subtitle{

font-size:15px;

}

.testimonial-card{

padding:30px 22px;

}

.client-avatar{

width:70px;

height:70px;

font-size:24px;

}

.testimonial-card h4{

font-size:21px;

}

}

.testimonial-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:5px;

height:0;

background:#2563EB;

transition:.4s;

}

.testimonial-card:hover::before{

height:100%;

}

/*====================================================
        CIRCULAR PROCESS SECTION
====================================================*/

.circle-process-section{

    padding:140px 100px 80px;

    background:linear-gradient(180deg,#ffffff,#f8fbff);

}

.circle-process-title{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

}

.circle-process-title span{

    color:#2563EB;

}

.circle-process-subtitle{

    max-width:720px;

    margin:auto;

    color:#6B7280;

    font-size:17px;

    line-height:1.8;

    margin-bottom:70px;

}

/*============================*/

.circle-process-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

/*============================*/

.circle-step{

    width:320px;

    text-align:center;

    position:relative;

    transition:.35s;

}

/* Highlight Middle Step */

.circle-step.active{

    transform:scale(1.08);

}

/*============================*/

.circle-icon{

    width:120px;

    height:120px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#0F4C81);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:48px;

    box-shadow:0 20px 45px rgba(37,99,235,.20);

    transition:.4s;

}

/*============================*/

.circle-number{

    margin:25px auto 18px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#EAF4FF;

    color:#2563EB;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

}

/*============================*/

.circle-step h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

    color:#111827;

}

.circle-step p{

    font-size:15px;

    color:#6B7280;

    line-height:1.9;

}

/*============================*/

.circle-arrow{

    font-size:42px;

    color:#9CC4FF;

    margin-top:-70px;

    animation:arrowMove 2s infinite;

}

@keyframes arrowMove{

0%{

transform:translateX(0);

}

50%{

transform:translateX(8px);

}

100%{

transform:translateX(0);

}

}

/*============================*/

.circle-step:hover .circle-icon{

    transform:translateY(-10px) rotate(8deg);

    box-shadow:0 30px 55px rgba(37,99,235,.28);

}

.circle-step:hover .circle-number{

    background:#2563EB;

    color:#fff;

}

.circle-step:hover h3{

    color:#2563EB;

}

/*============================*/

@media(max-width:1200px){

.circle-step{

width:290px;

}

}

@media(max-width:992px){

.circle-process-wrapper{

flex-direction:column;

gap:35px;

}

.circle-arrow{

transform:rotate(90deg);

margin:0;

}

.circle-step.active{

transform:none;

}

.circle-process-title{

font-size:34px;

}

}

@media(max-width:576px){

.circle-process-section{

padding:80px 0;

}

.circle-process-title{

font-size:28px;

}

.circle-process-subtitle{

font-size:15px;

margin-bottom:50px;

}

.circle-step{

width:100%;

}

.circle-icon{

width:95px;

height:95px;

font-size:36px;

}

.circle-number{

width:45px;

height:45px;

font-size:18px;

}

.circle-step h3{

font-size:22px;

}

.circle-step p{

font-size:14px;

}

.circle-arrow{

font-size:34px;

}

}

/*==========================================
            FAQ SECTION
==========================================*/

.faq-section{
    background:#f5f9ff;
    padding:140px 100px 80px;
}

.faq-heading{
    text-align:center;
    margin-bottom:35px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#e9f1ff;
    color:#2563eb;
    font-size:13px;
    font-weight:600;
    border-radius:30px;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.section-title span{
    color:#2563eb;
}

.section-subtitle{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
    line-height:30px;
}

/*==========================================
          FAQ + CHAT LAYOUT
==========================================*/

.faq-section .row{
    align-items:flex-start;
}

.custom-faq{
    height:100%;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.custom-faq .accordion-button{
    padding:24px 28px;
    font-size:19px;
    font-weight:600;
    color:#16213e;
    background:#fff;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#fff;
    color:#2563eb;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    padding:24px 28px;
    color:#5b6474;
    line-height:30px;
    font-size:16px;
}

/*==========================================
            CHAT PANEL
==========================================*/

.advisor-chat{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    height:100%;
}

.chat-header{

    background:linear-gradient(135deg,#2563eb,#164b92);

    color:#fff;

    padding:22px;

    display:flex;

    align-items:center;

    gap:15px;
}

.chat-avatar{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#fff;

    color:#2563eb;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;
}

.chat-info h4{

    margin:0;

    font-size:20px;
}

.chat-info span{

    font-size:13px;

    opacity:.9;
}

.online-status{

    margin-left:auto;

    font-size:13px;

    display:flex;

    align-items:center;

    gap:6px;
}

.online-status .dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22c55e;
}
/*==========================================
            CHAT BODY
==========================================*/

.chat-body{

    flex:1;

    padding:20px;

    background:#f8fbff;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.message{

    max-width:92%;

    padding:14px 18px;

    margin-bottom:15px;

    border-radius:18px;

    font-size:14px;

    line-height:1.7;

}

.advisor-message-box{

    background:#ffffff;

    color:#475569;

    border-top-left-radius:6px;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

}

.user-message-box{

    margin-left:auto;

    background:#2563eb;

    color:#ffffff;

    border-top-right-radius:6px;

}

/*==========================================
            BUTTONS
==========================================*/

.chat-actions{

    padding:18px;

    display:flex;

    flex-direction:column;

    gap:12px;

    background:#ffffff;

}

.chat-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:12px;

    text-decoration:none;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.chat-btn i{

    font-size:18px;

}

.whatsapp-btn{

    background:#25D366;

    color:#ffffff;

}

.whatsapp-btn:hover{

    background:#1EBE5D;

    color:#ffffff;

    transform:translateY(-2px);

}

.call-btn{

    background:#2563EB;

    color:#ffffff;

}

.call-btn:hover{

    background:#1D4ED8;

    color:#ffffff;

    transform:translateY(-2px);

}

.email-btn{

    background:#EEF5FF;

    color:#2563EB;

    border:1px solid #D8E6FF;

}

.email-btn:hover{

    background:#2563EB;

    color:#ffffff;

    transform:translateY(-2px);

}

/*==========================================
        EQUAL HEIGHT FIX
==========================================*/

.faq-section .row{

    display:flex;

    align-items:stretch;

}

.faq-section .col-lg-8,

.faq-section .col-lg-4{

    display:flex;

    flex-direction:column;

}

.custom-faq{

    flex:1;

}

.advisor-chat{

    height:100%;

    min-height:620px;

}

/*==========================================
        RESPONSIVE
==========================================*/

@media (max-width:991px){

    .faq-section{

        padding:70px 0;

    }

    .advisor-chat{

        margin-top:35px;

        min-height:auto;

        height:auto;

    }

}

@media (max-width:768px){

    .section-title{

        font-size:32px;

    }

    .section-subtitle{

        font-size:15px;

        line-height:26px;

    }

    .custom-faq .accordion-button{

        padding:18px;

        font-size:16px;

    }

    .custom-faq .accordion-body{

        padding:18px;

        font-size:14px;

        line-height:26px;

    }

    .chat-header{

        padding:18px;

    }

    .chat-avatar{

        width:50px;

        height:50px;

        font-size:22px;

    }

    .chat-info h4{

        font-size:18px;

    }

    .chat-actions{

        padding:16px;

    }

    .chat-btn{

        font-size:14px;

        padding:11px;

    }

}
/*=========================================================
                LEAD CAPTURE SECTION
=========================================================*/

.lead-section{

    background:linear-gradient(180deg,#F8FBFF,#EEF6FF);

    padding:90px 0;

}

.lead-heading{

    margin-bottom:45px;

}

.lead-heading .section-title{

    font-size:42px;

    font-weight:700;

    color:#0F172A;

    margin:18px 0;

}

.lead-heading .section-title span{

    color:#2563EB;

}

.lead-heading .section-subtitle{

    max-width:760px;

    margin:auto;

    font-size:17px;

    color:#64748B;

    line-height:1.9;

}

/*=========================================================
                BENEFITS
=========================================================*/

.lead-benefits{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:45px;

}

.benefit-item{

    background:#ffffff;

    padding:14px 24px;

    border-radius:50px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#334155;

}

.benefit-item i{

    color:#22C55E;

    font-size:18px;

}

/*=========================================================
                FORM CARD
=========================================================*/

.lead-form-card{

    background:#ffffff;

    max-width:900px;

    margin:auto;

    padding:45px;

    border-radius:25px;

    box-shadow:0 18px 45px rgba(37,99,235,.12);

    border:1px solid #E5E7EB;

}

.form-header{

    text-align:center;

    margin-bottom:35px;

}

.form-header h3{

    font-size:30px;

    font-weight:700;

    color:#0F172A;

    margin-bottom:12px;

}

.form-header p{

    color:#64748B;

    font-size:16px;

    margin-bottom:0;

}

/*=========================================================
                INPUTS
=========================================================*/

.form-label{

    font-weight:600;

    color:#334155;

    margin-bottom:8px;

}

.form-control,

.form-select{

    border:1px solid #D6E4FF;

    border-radius:12px;

    padding:14px 16px;

    font-size:15px;

    background:#FAFCFF;

    transition:.3s;

    box-shadow:none;

}

.form-control:focus,

.form-select:focus{

    border-color:#2563EB;

    background:#ffffff;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}
/*=========================================================
                FORM BUTTONS
=========================================================*/

.form-buttons{

    text-align:center;

    margin-top:15px;

}

.compare-btn{

    background:#2563EB;

    border:none;

    padding:15px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 25px rgba(37,99,235,.25);

}

.compare-btn i{

    margin-right:8px;

}

.compare-btn:hover{

    background:#1D4ED8;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,99,235,.35);

}

.or-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    margin:22px 0;

}

.or-divider span{

    background:#ffffff;

    color:#64748B;

    padding:0 18px;

    font-size:15px;

    font-weight:600;

    position:relative;

}

.or-divider::before{

    content:"";

    width:220px;

    height:1px;

    background:#D6E4FF;

    position:absolute;

}

.consult-btn{

    padding:14px 36px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    border:2px solid #2563EB;

    color:#2563EB;

    background:#ffffff;

    transition:.3s;

}

.consult-btn i{

    margin-right:8px;

}

.consult-btn:hover{

    background:#2563EB;

    color:#ffffff;

    transform:translateY(-3px);

}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .lead-section{

        padding:70px 0;

    }

    .lead-form-card{

        padding:35px;

    }

}

@media(max-width:768px){

    .lead-heading .section-title{

        font-size:32px;

    }

    .lead-heading .section-subtitle{

        font-size:15px;

        line-height:28px;

    }

    .lead-benefits{

        flex-direction:column;

        align-items:center;

        gap:12px;

    }

    .benefit-item{

        width:100%;

        justify-content:center;

    }

    .lead-form-card{

        padding:25px;

        border-radius:18px;

    }

    .form-header h3{

        font-size:24px;

    }

    .form-control,

    .form-select{

        padding:12px 14px;

        font-size:14px;

    }

    .compare-btn,

    .consult-btn{

        width:100%;

        font-size:15px;

        padding:14px;

    }

    .or-divider::before{

        width:160px;

    }

}
/* =====================================================
                    FOOTER
===================================================== */

.footer-section{

    background:#0F172A;

    color:#E2E8F0;

    padding:70px 0 25px;

}

/* ===========================
        Headings
=========================== */

.footer-section h3{

    font-size:28px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:20px;

}

.footer-section h4{

    font-size:20px;

    font-weight:600;

    color:#ffffff;

    margin-bottom:22px;

}

/* ===========================
        About
=========================== */

.footer-about p{

    color:#CBD5E1;

    line-height:1.9;

    font-size:15px;

}

/* ===========================
        Links
=========================== */

.footer-links ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links ul li{

    margin-bottom:14px;

    color:#CBD5E1;

    font-size:15px;

}

.footer-links ul li a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-links ul li a:hover{

    color:#3B82F6;

    padding-left:6px;

}

/* ===========================
        Contact
=========================== */

.footer-contact p{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:16px;

    color:#CBD5E1;

    font-size:15px;

}

.footer-contact p i{

    color:#3B82F6;

    font-size:18px;

}

.footer-contact a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-contact a:hover{

    color:#3B82F6;

}

/* ===========================
      Social Icons
=========================== */

.footer-social{

    margin-top:25px;

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;

    height:46px;

    background:#1E293B;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-4px);

}

/* ===========================
        Divider
=========================== */

.footer-line{

    border-color:rgba(255,255,255,.12);

    margin:45px 0 25px;

}

/* ===========================
      Bottom Footer
=========================== */

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin-bottom:8px;

    color:#94A3B8;

    font-size:14px;

}

.footer-bottom strong{

    color:#ffffff;

}

/* ===========================
      Responsive
=========================== */

@media(max-width:991px){

    .footer-section{

        text-align:center;

    }

    .footer-contact p{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

}

@media(max-width:768px){

    .footer-section{

        padding:60px 0 20px;

    }

    .footer-section h3{

        font-size:24px;

    }

    .footer-section h4{

        margin-top:20px;

        font-size:18px;

    }

    .footer-about p,

    .footer-links ul li,

    .footer-contact p{

        font-size:14px;

    }

    .footer-social a{

        width:42px;

        height:42px;

        font-size:18px;

    }

}


/*======================================================
        RESPONSIVE PAGE WIDTH
======================================================*/

@media (max-width: 1399px) {

    .container {
        max-width: 1140px;
    }

}

@media (max-width: 1199px) {

    .container {
        max-width: 960px;
    }

}

@media (max-width: 991px) {

    .container {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media (max-width: 767px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media (max-width: 575px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    section {
        width: 100%;
        max-width: 100%;
    }

}

/* =========================================
   RESPONSIVE WEBSITE
========================================= */

@media (max-width:1200px){

    h1{
        font-size:56px;
    }

    h2{
        font-size:42px;
    }

    .hero-image img{
        max-width:460px;
    }

}

@media (max-width:992px){

    .hero-section .row{
        flex-direction:column-reverse;
        text-align:center;
        row-gap:40px;
    }

    .hero-content{
        padding-right:0;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .hero-image img{
        max-width:420px;
    }

}

@media (max-width:768px){

    h1{
        font-size:42px;
        line-height:1.2;
    }

    h2{
        font-size:34px;
    }

    p{
        font-size:16px;
    }

    .hero-image img{
        max-width:340px;
    }

    .quote-btn{
        width:100%;
        justify-content:center;
    }

}

@media (max-width:576px){

    .container{
        padding-left:14px;
        padding-right:14px;
    }

    h1{
        font-size:36px;
    }

    .hero-image img{
        max-width:280px;
    }

}



/* =====================================================
   FINAL HERO IMAGE POSITION & RESPONSIVE FIX
   ===================================================== */

/* ---------- DESKTOP ---------- */

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
}

/* Main image */

.hero-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transform: translateX(35px);
}

/* Image inside circle */

.hero-circle img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 50%;
}

/* Blue background circle */

.hero-circle-bg {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 35px), -50%);
    background: rgba(59, 130, 246, 0.08);
    z-index: 1;
}


/* =====================================================
   LAPTOP
   ===================================================== */

@media (max-width: 1199px) and (min-width: 992px) {

    .hero-circle {
        width: 440px;
        height: 440px;
        transform: translateX(20px);
    }

    .hero-circle-bg {
        width: 460px;
        height: 460px;
        transform: translate(calc(-50% + 20px), -50%);
    }

}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 991px) {

    .hero-image {
        justify-content: center;
        padding-right: 0;
        margin-top: 40px;
    }

    .hero-circle {
        width: 360px;
        height: 360px;
        transform: none;
    }

    .hero-circle-bg {
        width: 380px;
        height: 380px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 575px) {

    .hero-image {
        justify-content: center;
        margin-top: 30px;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
        transform: none;
    }

    .hero-circle-bg {
        width: 320px;
        height: 320px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 400px) {

    .hero-circle {
        width: 270px;
        height: 270px;
    }

    .hero-circle-bg {
        width: 290px;
        height: 290px;
    }

}


/* ====================================================
   FINAL MOBILE NAVBAR FIX
==================================================== */

@media (max-width: 991px){

    /* Navbar container */
    .custom-navbar .container{
        width:100%;
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    /* Keep logo and hamburger on one row */
    .custom-navbar .navbar-brand{
        margin-right:0;
    }

    .custom-navbar .navbar-toggler{
        margin-left:auto;
        padding:6px 8px;
        font-size:28px;
    }

    /* Bootstrap mobile menu */
    .custom-navbar .navbar-collapse{
        display:block;
        width:100%;
        margin-top:15px;
        padding:18px;
        background:#ffffff;
        border-radius:18px;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    /* IMPORTANT:
       Hide menu when hamburger is closed */
    .custom-navbar .navbar-collapse.collapse:not(.show){
        display:none !important;
    }

    /* Show menu when hamburger is opened */
    .custom-navbar .navbar-collapse.collapse.show{
        display:block !important;
    }

    /* Navigation list */
    .custom-navbar .navbar-nav{
        width:100%;
        margin:0 !important;
        padding:0;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        text-align:left;
    }

    /* Navigation links */
    .custom-navbar .navbar-nav .nav-link{
        position:relative;
        top:auto !important;
        left:auto !important;
        right:auto !important;
        transform:none !important;

        width:100% !important;
        max-width:none !important;

        display:flex;
        align-items:center;

        padding:12px 14px !important;
        margin:0;

        font-size:16px;
        border-radius:10px;
    }

    .custom-navbar .navbar-nav .nav-link:hover{
        background:#f4f8ff;
    }

    /* Insurance dropdown */
    .custom-navbar .dropdown-menu{
        position:static !important;

        width:100% !important;
        min-width:100% !important;
        max-width:100% !important;

        margin:5px 0 5px 0 !important;
        padding:6px 0;

        border:none;
        border-radius:12px;
        box-shadow:none;
        background:#f8fbff;
    }

    .custom-navbar .dropdown-item{
        width:100%;
        padding:10px 18px;
        font-size:15px;
        white-space:normal;
    }

    /* Quote button */
    .custom-navbar .header-buttons{
        width:100%;
        margin:15px 0 0 0 !important;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .custom-navbar .quote-btn{
        width:100%;
        max-width:300px;
        justify-content:center;
        text-align:center;
    }

}


/* ====================================================
   SMALL MOBILE
==================================================== */

@media (max-width:575px){

    .custom-navbar .container{
        padding-left:12px;
        padding-right:12px;
    }

    .custom-navbar .navbar-brand img{
        width:100px;
    }

    .custom-navbar .navbar-toggler{
        font-size:27px;
    }

    .custom-navbar .navbar-collapse{
        margin-top:12px;
        padding:15px;
        border-radius:16px;
    }

    .custom-navbar .navbar-nav .nav-link{
        font-size:15px;
        padding:11px 12px !important;
    }

    .custom-navbar .quote-btn{
        max-width:100%;
        padding:12px 20px;
        font-size:14px;
    }

}