/* =====================================================
   SHILLET.IN
   STYLE.CSS – PART 1
   BASE + HEADER + HERO
===================================================== */

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

html{
    scroll-behavior:smooth;
}

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

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

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

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

header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    box-shadow:0 3px 18px rgba(0,0,0,.10);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:12px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.logo-img{
    width:78px;
    height:78px;
    object-fit:contain;
}

.logo-text h1{
    color:#0A4D8C;
    font-size:32px;
    line-height:1.1;
    font-weight:800;
}

.logo-text p{
    color:#555;
    font-size:13px;
    margin-top:5px;
    white-space:nowrap;
}

nav{
    flex:1;
}

nav ul{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:20px;
}

nav ul li a{
    position:relative;
    color:#222;
    font-size:14px;
    font-weight:600;
    padding:8px 0;
    transition:.3s ease;
    white-space:nowrap;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#0A4D8C;
    transition:.3s ease;
}

nav ul li a:hover{
    color:#0A4D8C;
}

nav ul li a:hover::after{
    width:100%;
}

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

.hero{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    color:#fff;
    overflow:hidden;

    background:
        url("hero-bg.png")
        center center / cover
        no-repeat;
}

/* Dark overlay for readable text */

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(4,20,48,.15) 0%,
        rgba(4,20,48,.10) 30%,
        rgba(4,20,48,.06) 52%,
        rgba(4,20,48,.02) 76%,
        rgba(4,20,48,0) 100%
    );
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    align-items:center;
    min-height:700px;
}

.hero-left{
    max-width:720px;
    text-align:left;
    padding:70px 0;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;
    margin-bottom:24px;

    border-radius:40px;

    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.30);

    color:#fff;
    font-size:14px;
    font-weight:600;

    backdrop-filter:blur(8px);
}

.hero h1,
.hero-left h1{
    color:#fff !important;
    font-size:58px;
    line-height:1.12;
    font-weight:800;
    letter-spacing:-1px;

    max-width:680px;
    margin-bottom:20px;

    text-shadow:
        0 3px 12px rgba(0,0,0,.55),
        0 1px 2px rgba(0,0,0,.8);
}

.hero-tagline{
    color:#FFD54A;
    font-size:28px;
    line-height:1.35;
    font-weight:700;
    margin-bottom:18px;

    text-shadow:0 2px 8px rgba(0,0,0,.45);
}

.hero-services{
    color:#fff;
    font-size:20px;
    font-weight:500;
    margin-bottom:25px;

    text-shadow:0 2px 8px rgba(0,0,0,.5);
}

.hero-slogan{
    color:#FFD54A;
    font-size:25px;
    line-height:1.5;
    font-style:italic;
    font-weight:600;
    margin-bottom:30px;

    text-shadow:0 2px 8px rgba(0,0,0,.5);
}

.hero-slogan span{
    display:inline;
    color:#fff;
    font-size:42px;
    font-weight:800;
    font-family:'Poppins',sans-serif;

    text-shadow:0 3px 12px rgba(0,0,0,.6);
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:32px;
}

.hero-features span{
    padding:9px 15px;
    border-radius:30px;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);

    color:#fff;
    font-size:13px;
    font-weight:500;

    backdrop-filter:blur(6px);
}

.hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    padding:14px 26px;
    border-radius:12px;

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

    transition:.3s ease;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

.btn-primary{
    background:#FFD54A;
    color:#111;
}

.btn-primary:hover{
    background:#ffe47b;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#1da851;
}

.btn-call{
    background:#fff;
    color:#0A4D8C;
}

.btn-call:hover{
    background:#f1f5f9;
}

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

@media(max-width:1100px){

    header .container{
        gap:18px;
    }

    nav ul{
        gap:14px;
    }

    nav ul li a{
        font-size:13px;
    }

    .hero h1,
    .hero-left h1{
        font-size:50px;
    }

    .hero-tagline{
        font-size:25px;
    }

}

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

@media(max-width:992px){

    header .container{
        flex-direction:column;
        gap:12px;
        padding:12px 0 16px;
    }

    nav{
        width:100%;
    }

    nav ul{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px 18px;
    }

    nav ul li a{
        font-size:13px;
    }

    .hero{
        min-height:650px;
    }

    .hero-wrapper{
        min-height:650px;
    }

    .hero-left{
        max-width:680px;
        margin:0 auto;
        text-align:center;
        padding:60px 0;
    }

    .hero-badge{
        justify-content:center;
    }

    .hero h1,
    .hero-left h1{
        font-size:44px;
    }

    .hero-tagline{
        font-size:24px;
    }

    .hero-services{
        font-size:18px;
    }

    .hero-slogan{
        font-size:21px;
    }

    .hero-slogan span{
        font-size:36px;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
    }

}

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

@media(max-width:600px){

    .container{
        width:94%;
    }

    .logo{
        flex-direction:column;
        gap:6px;
        text-align:center;
    }

    .logo-img{
        width:62px;
        height:62px;
    }

    .logo-text h1{
        font-size:25px;
    }

    .logo-text p{
        font-size:11px;
        white-space:normal;
    }

    nav ul{
        gap:8px 14px;
    }

    nav ul li a{
        font-size:12px;
    }

    .hero{
        min-height:680px;
    }

    .hero-wrapper{
        min-height:680px;
    }

    .hero-left{
        padding:55px 0;
    }

    .hero h1,
    .hero-left h1{
        font-size:34px;
        line-height:1.2;
        letter-spacing:-.5px;
    }

    .hero-tagline{
        font-size:20px;
    }

    .hero-services{
        font-size:16px;
    }

    .hero-slogan{
        font-size:18px;
    }

    .hero-slogan span{
        font-size:29px;
    }

    .hero-features{
        flex-direction:column;
        align-items:center;
    }

    .hero-features span{
        width:100%;
        max-width:300px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn{
        width:100%;
        max-width:300px;
    }

}
/* =====================================================
   SHILLET.IN
   STYLE.CSS – PART 2
   OFFER + STATISTICS + PARTNERS
===================================================== */

/* =====================================================
   OFFER STRIP
===================================================== */

.offer-strip{
    background:#FFD54A;
    padding:14px 0;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.offer-strip .container{
    display:flex;
    align-items:center;
    gap:20px;
}

.offer-title{
    flex-shrink:0;
    color:#111;
    font-weight:800;
    font-size:15px;
    white-space:nowrap;
}

.offer-marquee{
    flex:1;
    min-width:0;
    overflow:hidden;
}

.offer-content{
    display:inline-block;
    white-space:nowrap;
    color:#111;
    font-size:14px;
    font-weight:600;
    animation:scrollOffer 24s linear infinite;
}

.offer-quote-btn{
    flex-shrink:0;
    background:#0A4D8C;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    transition:.3s ease;
}

.offer-quote-btn:hover{
    background:#083866;
    transform:translateY(-2px);
}

@keyframes scrollOffer{

    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }

}

/* =====================================================
   STATISTICS
===================================================== */

.stats{
    padding:70px 0;
    background:#fff;
}

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

.stat-box{
    position:relative;
    overflow:hidden;

    padding:32px 22px;
    border-radius:20px;

    background:linear-gradient(145deg,#ffffff,#f3f7fc);

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    border:1px solid #e8eef5;

    transition:.35s ease;
}

.stat-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#0A4D8C;
}

.stat-box:hover{
    transform:translateY(-7px);
    box-shadow:0 16px 35px rgba(0,0,0,.12);
}

.stat-box h2{
    color:#0A4D8C;
    font-size:32px;
    line-height:1.2;
    margin-bottom:9px;
    font-weight:800;
}

.stat-box p{
    color:#555;
    font-size:14px;
    font-weight:600;
}

/* =====================================================
   INSURANCE PARTNERS
===================================================== */

.partners{
    padding:80px 0;
    background:#f5f7fb;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading h2{
    color:#0A4D8C;
    font-size:38px;
    line-height:1.25;
    margin-bottom:10px;
    font-weight:800;
}

.section-heading p{
    color:#666;
    font-size:16px;
}

.partner-category{
    margin-top:38px;
}

.partner-category h3{
    color:#0A4D8C;
    font-size:23px;
    margin-bottom:20px;
    font-weight:700;
}

.partner-list{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:16px;
}

.partner-list span{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:58px;
    padding:12px;

    background:#fff;
    border:1px solid #e6edf5;
    border-radius:14px;

    color:#333;
    font-size:14px;
    font-weight:600;
    text-align:center;

    box-shadow:0 6px 18px rgba(0,0,0,.06);

    transition:.3s ease;
}

.partner-list span:hover{
    transform:translateY(-5px);
    background:#0A4D8C;
    color:#fff;
    border-color:#0A4D8C;
    box-shadow:0 12px 25px rgba(10,77,140,.20);
}

.partner-note{
    max-width:900px;
    margin:35px auto 0;

    color:#777;
    font-size:13px;
    line-height:1.7;
    text-align:center;
}

/* =====================================================
   OFFER / STATS / PARTNERS RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .partner-list{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .offer-strip{
        padding:15px 0;
    }

    .offer-strip .container{
        flex-direction:column;
        gap:10px;
    }

    .offer-title{
        text-align:center;
    }

    .offer-marquee{
        width:100%;
    }

    .offer-content{
        font-size:13px;
    }

    .offer-quote-btn{
        width:210px;
        text-align:center;
    }

    .stats{
        padding:55px 0;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .stat-box{
        padding:25px 15px;
    }

    .stat-box h2{
        font-size:25px;
    }

    .stat-box p{
        font-size:13px;
    }

    .partners{
        padding:60px 0;
    }

    .section-heading{
        margin-bottom:35px;
    }

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

    .partner-list{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .partner-list span{
        min-height:55px;
        font-size:13px;
    }

}

@media(max-width:480px){

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

    .partner-list{
        grid-template-columns:1fr 1fr;
    }

}
/* =====================================================
   SHILLET.IN
   STYLE.CSS – PART 3
   SERVICES
===================================================== */

.services{
    padding:85px 0;
    background:#fff;
}

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

.service-card{
    position:relative;
    display:flex;
    flex-direction:column;

    background:#fff;
    border-radius:22px;
    padding:30px 26px;

    min-height:650px;

    border:1px solid #e7edf4;

    box-shadow:0 8px 25px rgba(0,0,0,.07);

    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.featured-service{
    border:2px solid #0A4D8C;
}

/* Service icon */

.service-card > i{
    display:flex;
    align-items:center;
    justify-content:center;

    width:70px;
    height:70px;

    margin-bottom:18px;

    border-radius:18px;

    background:#eef6ff;

    color:#0A4D8C;
    font-size:34px;
}

/* Badge */

.service-badge{
    align-self:flex-start;

    display:inline-flex;
    align-items:center;

    padding:7px 14px;
    margin-bottom:18px;

    border-radius:30px;

    background:#FFD54A;
    color:#111;

    font-size:12px;
    font-weight:800;
}

/* Heading */

.service-card h3{
    color:#0A4D8C;
    font-size:25px;
    line-height:1.25;
    margin-bottom:12px;
    font-weight:800;
}

/* Description */

.service-desc{
    color:#555;
    font-size:14px;
    line-height:1.75;
    margin-bottom:15px;
}

/* Service list */

.service-card ul{
    margin:8px 0 20px;
}

.service-card ul li{
    padding:9px 0;

    color:#444;

    font-size:14px;
    line-height:1.5;

    border-bottom:1px solid #edf0f3;
}

.service-card ul li:last-child{
    border-bottom:0;
}

/* Buttons stay at bottom */

.service-buttons{
    margin-top:auto;

    display:flex;
    flex-direction:column;

    gap:10px;
}

.card-btn,
.callback-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    padding:13px 18px;

    border-radius:10px;

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

    transition:.3s ease;
}

.card-btn{
    background:#0A4D8C;
    color:#fff;
}

.card-btn:hover{
    background:#083866;
    transform:translateY(-2px);
}

.callback-btn{
    background:#25D366;
    color:#fff;
}

.callback-btn:hover{
    background:#1da851;
    transform:translateY(-2px);
}

/* =====================================================
   SERVICE CARD COLOUR ACCENTS
===================================================== */

.service-card:nth-child(1) > i{
    background:#eef6ff;
    color:#0A4D8C;
}

.service-card:nth-child(2) > i{
    background:#ecfdf5;
    color:#16a34a;
}

.service-card:nth-child(3) > i{
    background:#fff7ed;
    color:#ea580c;
}

.service-card:nth-child(4) > i{
    background:#fef2f2;
    color:#dc2626;
}

.service-card:nth-child(5) > i{
    background:#f0fdf4;
    color:#15803d;
}

.service-card:nth-child(6) > i{
    background:#f5f3ff;
    color:#7c3aed;
}

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

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-card{
        min-height:620px;
    }

}

@media(max-width:700px){

    .services{
        padding:65px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        min-height:auto;
        padding:28px 24px;
    }

    .service-card h3{
        font-size:23px;
    }

}
/* =====================================================
   SHILLET.IN
   STYLE.CSS – PART 4
   WHY CHOOSE + CONTACT + FOOTER
===================================================== */

/* =====================================================
   WHY CHOOSE SHILLET.IN
===================================================== */

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

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

.why-box{
    background:#fff;
    padding:32px 25px;
    border-radius:20px;
    text-align:center;

    border:1px solid #e7edf4;

    box-shadow:0 8px 22px rgba(0,0,0,.07);

    transition:.35s ease;
}

.why-box:hover{
    transform:translateY(-7px);
    box-shadow:0 16px 35px rgba(0,0,0,.11);
}

.why-box i{
    display:flex;
    align-items:center;
    justify-content:center;

    width:68px;
    height:68px;

    margin:0 auto 18px;

    border-radius:18px;

    background:#eef6ff;
    color:#0A4D8C;

    font-size:30px;
}

.why-box h3{
    color:#0A4D8C;
    font-size:20px;
    margin-bottom:12px;
    font-weight:800;
}

.why-box p{
    color:#555;
    font-size:14px;
    line-height:1.8;
}

/* =====================================================
   CONTACT
===================================================== */

.contact{
    padding:85px 0;
    background:#fff;
}

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

.contact-card{
    background:#fff;
    padding:35px 28px;
    border-radius:20px;
    text-align:center;

    border:1px solid #e7edf4;

    box-shadow:0 8px 22px rgba(0,0,0,.07);

    transition:.35s ease;
}

.contact-card:hover{
    transform:translateY(-7px);
    box-shadow:0 16px 35px rgba(0,0,0,.11);
}

.contact-card i{
    display:flex;
    align-items:center;
    justify-content:center;

    width:68px;
    height:68px;

    margin:0 auto 18px;

    border-radius:18px;

    background:#eef6ff;
    color:#0A4D8C;

    font-size:29px;
}

.contact-card h3{
    color:#0A4D8C;
    font-size:21px;
    margin-bottom:15px;
    font-weight:800;
}

.contact-card p{
    color:#555;
    font-size:14px;
    line-height:1.8;
}

.contact-card a{
    color:#0A4D8C;
    font-weight:600;
    transition:.3s ease;
}

.contact-card a:hover{
    color:#16a34a;
}

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

footer{
    background:#073b70;
    color:#fff;
    padding:65px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:45px;
    margin-bottom:35px;
}

.footer-grid h3{
    color:#fff;
    font-size:21px;
    margin-bottom:16px;
    font-weight:800;
}

.footer-grid p{
    color:#dbeafe;
    font-size:14px;
    line-height:1.8;
    margin:8px 0;
}

.footer-grid a{
    color:#dbeafe;
    transition:.3s ease;
}

.footer-grid a:hover{
    color:#FFD54A;
}

footer hr{
    border:0;
    height:1px;
    background:rgba(255,255,255,.18);
    margin:25px 0 20px;
}

.copyright{
    color:#dbeafe;
    text-align:center;
    font-size:13px;
}

/* =====================================================
   FLOATING WHATSAPP + CALL
===================================================== */

.floating-whatsapp,
.floating-call{
    position:fixed;
    right:20px;

    width:58px;
    height:58px;

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

    border-radius:50%;

    color:#fff;
    font-size:25px;

    z-index:9998;

    box-shadow:0 8px 22px rgba(0,0,0,.25);

    transition:.3s ease;
}

.floating-whatsapp{
    bottom:88px;
    background:#25D366;
}

.floating-call{
    bottom:18px;
    background:#0A4D8C;
}

.floating-whatsapp:hover,
.floating-call:hover{
    transform:scale(1.08);
}

/* =====================================================
   PART 4 RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

}

@media(max-width:700px){

    .why{
        padding:65px 0;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .contact{
        padding:65px 0;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    footer{
        padding:55px 0 22px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .floating-whatsapp,
    .floating-call{
        width:54px;
        height:54px;
        font-size:23px;
        right:15px;
    }

    .floating-whatsapp{
        bottom:82px;
    }

    .floating-call{
        bottom:15px;
    }

}
/* =====================================================
   SHILLET.IN
   STYLE.CSS – PART 5
   FINAL RESPONSIVE + POLISH
===================================================== */

/* =====================================================
   LARGE SCREEN SERVICE GRID
===================================================== */

@media(min-width:1101px){

    .services-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

/* =====================================================
   TABLET SERVICE GRID
===================================================== */

@media(min-width:701px) and (max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =====================================================
   MOBILE SERVICE CARDS
===================================================== */

@media(max-width:700px){

    .service-card{
        width:100%;
    }

    .service-card > i{
        width:64px;
        height:64px;
        font-size:30px;
    }

    .service-card ul li{
        font-size:14px;
    }

}

/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media(max-width:400px){

    .hero h1,
    .hero-left h1{
        font-size:30px;
    }

    .hero-tagline{
        font-size:18px;
    }

    .hero-slogan{
        font-size:17px;
    }

    .hero-slogan span{
        font-size:27px;
    }

    .section-heading h2{
        font-size:27px;
    }

    .offer-title{
        font-size:13px;
    }

}

/* =====================================================
   ACCESSIBILITY / PERFORMANCE POLISH
===================================================== */

button,
a{
    -webkit-tap-highlight-color:transparent;
}

::selection{
    background:#0A4D8C;
    color:#fff;
}

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }

}
/* ===========================
   DIGITAL & RTO SERVICE BOX FIX
=========================== */

.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3){
    background:#ffffff;
    border:1px solid #d9e2ec;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
}

.services-grid .service-card:nth-child(2)::before,
.services-grid .service-card:nth-child(3)::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:#0A4D8C;
}

.services-grid .service-card:nth-child(2):hover,
.services-grid .service-card:nth-child(3):hover{
    transform:translateY(-10px);
    border-color:#0A4D8C;
    box-shadow:0 18px 40px rgba(10,77,140,.16);
}
.motor-card {
    background-image: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)), url("motor-bg.jpg");
    background-size: cover;
    background-position: center;
}
/* =====================================================
   MOTOR INSURANCE BACKGROUND
===================================================== */

.motor-card{
    background-image:
        linear-gradient(
            rgba(255,255,255,0.88),
            rgba(255,255,255,0.88)
        ),
        url("motor-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/* =====================================================
   END OF STYLE.CSS
===================================================== */