/* =====================================
   SHILLET.IN
   STYLE V5
===================================== */

/* ---------- RESET ---------- */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

line-height:1.7;

background:#f7f9fc;

color:#222;

overflow-x:hidden;

}

/* ---------- VARIABLES ---------- */

:root{

--primary:#0A4D8C;

--secondary:#FFD54A;

--success:#25D366;

--dark:#1b1b1b;

--light:#ffffff;

--text:#444;

--shadow:0 12px 35px rgba(0,0,0,.08);

--radius:18px;

}

/* ---------- COMMON ---------- */

a{

text-decoration:none;

color:inherit;

transition:.3s;

}

img{

max-width:100%;

display:block;

}

.container{

width:92%;

max-width:1280px;

margin:auto;

}

section{

padding:80px 0;

}

.section-heading{

text-align:center;

margin-bottom:55px;

}

.section-heading h2{

font-size:38px;

color:var(--primary);

margin-bottom:10px;

}

.section-heading p{

font-size:18px;

color:#666;

}

/* ---------- BUTTONS ---------- */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:8px;

padding:14px 28px;

border-radius:10px;

font-weight:600;

transition:.3s;

}

.btn:hover{

transform:translateY(-3px);

}

.btn-primary{

background:var(--primary);

color:#fff;

}

.btn-primary:hover{

background:#083765;

}

.btn-whatsapp{

background:var(--success);

color:#fff;

}

.btn-whatsapp:hover{

background:#1fa954;

}

.btn-call{

background:#111;

color:#fff;

}

.btn-call:hover{

background:#000;

}

.card-btn{

display:block;

width:100%;

padding:13px 20px;

margin-bottom:10px;

background:var(--primary);

color:#fff;

border-radius:10px;

text-align:center;

font-weight:600;

transition:.3s;

}

.card-btn:hover{

background:#083765;

}

.callback-btn{

display:block;

width:100%;

padding:13px 20px;

background:var(--success);

color:#fff;

border-radius:10px;

text-align:center;

font-weight:600;

transition:.3s;

}

.callback-btn:hover{

background:#1fa954;

}
/* =====================================
   HEADER
===================================== */

header{

position:sticky;

top:0;

left:0;

width:100%;

background:rgba(255,255,255,.96);

backdrop-filter:blur(10px);

box-shadow:0 4px 20px rgba(0,0,0,.08);

z-index:999;

}

header .container{

display:flex;

align-items:center;

justify-content:space-between;

padding:16px 0;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo-img{

width:60px;

height:60px;

object-fit:contain;

}

.logo-text h1{

font-size:30px;

font-weight:700;

color:var(--primary);

line-height:1;

}

.logo-text p{

font-size:13px;

color:#666;

margin-top:4px;

}

nav ul{

display:flex;

align-items:center;

gap:28px;

list-style:none;

}

nav ul li a{

font-size:16px;

font-weight:600;

color:#333;

position:relative;

padding-bottom:5px;

}

nav ul li a:hover{

color:var(--primary);

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:0;

height:3px;

background:var(--secondary);

border-radius:10px;

transition:.3s;

}

nav ul li a:hover::after{

width:100%;

}

/* =====================================
   HERO
===================================== */

.hero{

background:linear-gradient(135deg,#0A4D8C,#0F74B5);

padding:90px 0;

color:#fff;

text-align:center;

position:relative;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:radial-gradient(circle at top right,
rgba(255,255,255,.12),
transparent 45%);

}

.hero-wrapper{

position:relative;

z-index:2;

}

.hero-content{

max-width:900px;

margin:auto;

}

.hero-logo{

width:130px;

margin:0 auto 25px;

}

.hero h1{

font-size:58px;

font-weight:700;

margin-bottom:10px;

}

.hero h2{

font-size:28px;

font-weight:500;

color:var(--secondary);

margin-bottom:20px;

}

.hero-subtitle{

font-size:22px;

margin-bottom:22px;

opacity:.95;

}

.hero-slogan{

font-size:24px;

font-weight:700;

font-style:italic;

color:var(--secondary);

max-width:760px;

margin:0 auto 35px;

text-shadow:0 2px 12px rgba(255,213,74,.45);

}

.hero-features{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

margin-bottom:35px;

}

.hero-features span{

background:rgba(255,255,255,.12);

padding:10px 18px;

border-radius:30px;

font-size:15px;

backdrop-filter:blur(6px);

}

.hero-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}
/* =====================================
   OFFER STRIP
===================================== */

.offer-strip{

background:#FFD54A;

padding:14px 0;

overflow:hidden;

}

.offer-strip .container{

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;

}

.offer-title{

font-size:18px;

font-weight:700;

color:#111;

white-space:nowrap;

}

.offer-marquee{

flex:1;

overflow:hidden;

}

.offer-content{

display:inline-block;

white-space:nowrap;

font-weight:600;

color:#222;

animation:offerScroll 22s linear infinite;

}

.offer-quote-btn{

background:var(--primary);

color:#fff;

padding:12px 24px;

border-radius:8px;

font-weight:600;

white-space:nowrap;

transition:.3s;

}

.offer-quote-btn:hover{

background:#083765;

}

@keyframes offerScroll{

0%{

transform:translateX(100%);

}

100%{

transform:translateX(-100%);

}

}

/* =====================================
   STATS
===================================== */

.stats{

background:#fff;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.stat-box{

background:#fff;

padding:30px;

border-radius:18px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.stat-box:hover{

transform:translateY(-8px);

}

.stat-box h2{

font-size:32px;

color:var(--primary);

margin-bottom:8px;

}

.stat-box p{

color:#666;

font-size:16px;

}

/* =====================================
   PARTNERS
===================================== */

.partners{

background:#f7f9fc;

}

.partner-category{

background:#fff;

padding:28px;

border-radius:18px;

box-shadow:var(--shadow);

margin-bottom:25px;

}

.partner-category h3{

color:var(--primary);

margin-bottom:18px;

}

.partner-list{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.partner-list span{

background:#eef5fb;

color:var(--primary);

padding:10px 16px;

border-radius:30px;

font-size:14px;

font-weight:600;

transition:.3s;

}

.partner-list span:hover{

background:var(--primary);

color:#fff;

}

.partner-note{

margin-top:25px;

text-align:center;

font-size:14px;

color:#666;

font-style:italic;

}
/* =====================================
   SERVICES
===================================== */

.services{

background:#f7f9fc;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.service-card{

background:#fff;

border-radius:20px;

padding:32px;

border:1px solid #e8edf5;

box-shadow:var(--shadow);

transition:.35s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 40px rgba(10,77,140,.18);

}

.featured-service{

border:2px solid var(--secondary);

}

.service-badge{

display:inline-block;

background:var(--secondary);

color:#111;

padding:6px 14px;

border-radius:30px;

font-size:13px;

font-weight:700;

margin-bottom:18px;

}

.service-card i{

font-size:46px;

color:var(--primary);

margin-bottom:18px;

}

.service-card h3{

font-size:24px;

color:var(--primary);

margin-bottom:15px;

}

.service-desc{

color:#666;

margin-bottom:20px;

min-height:70px;

}

.service-card ul{

list-style:none;

margin-bottom:25px;

}

.service-card ul li{

padding:10px 0;

border-bottom:1px solid #eef2f7;

color:#555;

font-size:15px;

}

.service-card ul li:last-child{

border-bottom:none;

}

.service-buttons{

margin-top:20px;

}
/* =====================================
   WHY CHOOSE
===================================== */

.why{

background:#ffffff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:28px;

}

.why-box{

background:#fff;

padding:32px;

border-radius:18px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.why-box:hover{

transform:translateY(-8px);

}

.why-box i{

font-size:46px;

color:var(--primary);

margin-bottom:18px;

}

.why-box h3{

font-size:22px;

color:var(--primary);

margin-bottom:14px;

}

.why-box p{

color:#666;

line-height:1.8;

}

/* =====================================
   CONTACT
===================================== */

.contact{

background:linear-gradient(135deg,#0A4D8C,#0F74B5);

color:#fff;

}

.contact .section-heading h2,
.contact .section-heading p{

color:#fff;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.contact-card{

background:rgba(255,255,255,.10);

padding:30px;

border-radius:18px;

backdrop-filter:blur(8px);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.15);

}

.contact-card i{

font-size:42px;

color:var(--secondary);

margin-bottom:18px;

}

.contact-card h3{

font-size:22px;

margin-bottom:16px;

}

.contact-card p{

line-height:1.8;

margin-bottom:10px;

}

.contact-card a:hover{

color:var(--secondary);

}
/* =====================================
   FOOTER
===================================== */

footer{

background:#111;

color:#ddd;

padding:50px 0 20px;

}

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:35px;

margin-bottom:30px;

}

.footer-grid h3{

color:#fff;

margin-bottom:16px;

}

.footer-grid p{

margin-bottom:10px;

}

.footer-grid a{

transition:.3s;

}

.footer-grid a:hover{

color:var(--secondary);

}

footer hr{

border:none;

height:1px;

background:#333;

margin:25px 0;

}

.copyright{

text-align:center;

font-size:14px;

color:#aaa;

}

/* =====================================
   FLOATING BUTTONS
===================================== */

.floating-whatsapp,
.floating-call{

position:fixed;

right:20px;

width:58px;

height:58px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:24px;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.3s;

z-index:999;

}

.floating-whatsapp{

background:#25D366;

bottom:95px;

}

.floating-call{

background:var(--primary);

bottom:25px;

}

.floating-whatsapp:hover,
.floating-call:hover{

transform:scale(1.08);

}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

header .container{

flex-direction:column;

gap:15px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.hero{

padding:70px 0;

}

.hero h1{

font-size:38px;

}

.hero h2{

font-size:22px;

}

.hero-subtitle{

font-size:18px;

}

.hero-slogan{

font-size:18px;

line-height:1.8;

}

.hero-features{

flex-direction:column;

gap:12px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

.section-heading h2{

font-size:30px;

}

.services-grid,
.stats-grid,
.why-grid,
.contact-grid,
.footer-grid{

grid-template-columns:1fr;

}

.offer-strip .container{

flex-direction:column;

}

.offer-title{

text-align:center;

}

.offer-quote-btn{

width:100%;

text-align:center;

}

.floating-whatsapp,
.floating-call{

right:15px;

width:54px;

height:54px;

font-size:22px;

}

.floating-whatsapp{

bottom:85px;

}

.floating-call{

bottom:18px;

}

}
/* =====================================================
   MOTOR INSURANCE BACKGROUND
===================================================== */

.motor-card{
    background:
        linear-gradient(
            rgba(228, 213, 213, 0.65),
            rgba(0,0,0,.65)
        ),
        url("motor-bg.jpg")
        center center / cover
        no-repeat;
        color:#fff;
}
.motor-card h3{
    color:#ffffff !important;
}

.motor-card .service-desc{
    color:#ffffff;
}

.motor-card ul li{
    color:#ffffff;
    border-bottom-color:rgba(255,255,255,.35);
}

.motor-card ul li:last-child{
    border-bottom:0;
}

/* =====================================================
   HEALTH INSURANCE CARD – BACKGROUND
===================================================== */

.health-card{
    background:
        linear-gradient(
            rgba(255,255,255,.71),
            rgba(255,255,255,.71)
        ),
        url("health-bg.jpg") center center / cover no-repeat;
}

/* Text colours for readability */
.health-card h3{
    color:#0A4D8C;
}

.health-card .service-desc,
.health-card ul li{
    color:#333;
}

/* =====================================================
   LIFE INSURANCE CARD – BACKGROUND
===================================================== */
.life-card{
    background :
        linear-gradient(
            rgba(255,255,255,.78),
            rgba(255,255,255,.78)
        ),
        url("life-bg.jpg") center center / cover no-repeat;}

/* Text colours for readability */
.life-card h3{
    color:#0A4D8C;
}

.life-card .service-desc,
.life-card ul li{
    color:#333;
}
/* LIFE CARD – ALIGNMENT FIX */

.life-card{
    border:1px solid #e8edf5;
    border-radius:20px;
    padding:32px;
    position:relative;
    overflow:hidden;
    height:100%;
    box-shadow:var(--shadow);
}

.life-card h3{
    color:var(--primary);
}

.life-card .service-desc,
.life-card ul li{
    color:#333;
}
/* =====================================================
   TRAVEL INSURANCE CARD – BACKGROUND
===================================================== */

.travel-card{
    background:
        linear-gradient(
            rgba(255,255,255,.65),
            rgba(255,255,255,.65)
        ),
        url("travel-bg.jpg") center center / cover no-repeat;
}

/* Text colours for readability */

.travel-card h3{
    color:#0A4D8C;
}

.travel-card .service-desc,
.travel-card ul li{
    color:#333;
}
/* =====================================================
   PROPERTY INSURANCE CARD – BACKGROUND
===================================================== */

.property-card{
    background:
        linear-gradient(
            rgba(255,255,255,.78),
            rgba(255,255,255,.78)
        ),
        url("property-bg.jpg") center center / cover no-repeat;
}

/* Text colours for readability */

.property-card h3{
    color:#0A4D8C;
}

.property-card .service-desc,
.property-card ul li{
    color:#333;
}
/* =====================================================
   BUSINESS INSURANCE CARD – BACKGROUND
===================================================== */

.business-card{
    background:
        linear-gradient(
            rgba(255,255,255,.78),
            rgba(255,255,255,.78)
        ),
        url("business-bg.jpg") center center / cover no-repeat;
}

/* Text colours for readability */

.business-card h3{
    color:#0A4D8C;
}

.business-card .service-desc,
.business-card ul li{
    color:#333;
}
/* =====================================================
   BUSINESS INSURANCE CARD – BACKGROUND
===================================================== */

.business-card{
    background:
        linear-gradient(
            rgba(255,255,255,.58),
            rgba(255,255,255,.58)
        ),
        url("business-bg.jpg") center center / cover no-repeat;
}

/* Text colours for readability */

.business-card h3{
    color:#0A4D8C;
}

.business-card .service-desc,
.business-card ul li{
    color:#333;
}
/* HERO IMAGE LIGHT OVERRIDE */
.hero::before {
    background: rgba(4, 20, 48, 0.08) !important;
}
