/* ==========================
   RESET
========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

/* ==========================
   CONTAINER
========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo h2{
    color:#d71920;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#003366;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#d71920;
}

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

.btn{
    display:inline-block;
    background:#d71920;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#b80d17;
    transform:translateY(-3px);
}

.btn2{
    display:inline-block;
    border:2px solid #25D366;
    color:#25D366;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    margin-left:15px;
    transition:.3s;
}

.btn2:hover{
    background:#25D366;
    color:#fff;
}

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

.hero{
    padding:150px 0 80px;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h4{
    color:#d71920;
    font-size:20px;
    margin-bottom:15px;
}

.hero h1{
    font-size:48px;
    color:#003366;
    margin-bottom:20px;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

.hero-buttons{
    margin-bottom:35px;
}

.hero-right img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.hero-box{
    display:flex;
    gap:20px;
}

.hero-box div{
    background:#fff;
    padding:20px;
    border-radius:15px;
    text-align:center;
    flex:1;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hero-box h2{
    color:#d71920;
    margin-bottom:8px;
}

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

@media(max-width:768px){

.hero-grid{
    grid-template-columns:1fr;
}

nav{
    display:none;
}

.hero h1{
    font-size:
/* ==========================
   ABOUT SECTION
========================== */

.about{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.about-image{
    text-align:center;
}

.about-image img{
    width:300px;
    height:300px;
    object-fit:cover;
    object-position:top;
    border-radius:50%;
    border:6px solid #d71920;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.section-tag{
    display:inline-block;
    background:#d71920;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:40px;
    color:#003366;
    margin-bottom:15px;
}

.about-content h4{
    color:#d71920;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    margin-bottom:25px;
    line-height:1.8;
}

.about-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:30px;
}

.about-list div{
    background:#f8f8f8;
    padding:15px;
    border-radius:10px;
    font-weight:500;
}

.about-list i{
    color:#d71920;
    margin-right:8px;
}

/* ==========================
   WHY CHOOSE ME
========================== */

.why{
    background:#f5f7fb;
    padding:100px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#d71920;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
    color:#003366;
}

.card p{
    color:#666;
}

/* ==========================
   PLANS
========================== */

.plans{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#003366;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.plan-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid #d71920;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card i{
    font-size:45px;
    color:#d71920;
    margin-bottom:20px;
}

.plan-card h3{
    color:#003366;
    margin-bottom:15px;
}

.plan-card p{
    color:#666;
    margin-bottom:20px;
}

.plan-card ul{
    list-style:none;
    margin-bottom:25px;
}

.plan-card ul li{
    margin-bottom:10px;
}

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

@media(max-width:992px){

.about-grid,
.plans-grid,
.why-grid{
    grid-template-columns:1fr;
}

.about-content{
    text-align:center;
}

.about-list{
    grid-template-columns:1fr;
}
}
/* ==========================
   QUOTE SECTION
========================== */

.quote-section{
    padding:100px 0;
    background:#f5f7fb;
}

.quote-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.quote-left h2{
    font-size:40px;
    color:#003366;
    margin-bottom:20px;
}

.quote-left p{
    color:#666;
    margin-bottom:25px;
}

.quote-left ul{
    list-style:none;
}

.quote-left ul li{
    margin-bottom:12px;
    font-size:17px;
}

.quote-right{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.quote-right input,
.quote-right select,
.quote-right textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.quote-right textarea{
    resize:none;
}

/* ==========================
   CLAIM SECTION
========================== */

.claim{
    padding:100px 0;
    background:#fff;
}

.claim-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.claim-card{
    background:#f8f8f8;
    padding:30px;
    border-radius:18px;
    transition:.3s;
}

.claim-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.claim-card h3{
    color:#003366;
    margin-bottom:15px;
}

.claim-card p{
    color:#666;
}

/* ==========================
   TESTIMONIAL
========================== */

.testimonial{
    padding:100px 0;
    background:#f5f7fb;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.testimonial-card h4{
    color:#ff9800;
    margin-top:15px;
}

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

.faq{
    padding:100px 0;
    background:#fff;
}

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

    padding:100px 0;
    background:#fff;
}

.faq-box{
    background:#f8f8f8;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
}

.faq-box h3{
    color:#003366;
    margin-bottom:12px;
}

.faq-box p{
    color:#666;
    line-height:1.7;
}

/* Hero Photo */

.hero-right{
    text-align:center;
}

.hero-right img{
    width:450px;
    height:450px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid #ffffff;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}
