*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Lato', sans-serif; /* Default for body text */
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f6f7fb;
    color: #333;
}

/* ================= HEADER FONT ================= */

/* Headings, titles, buttons use Montserrat for bold, modern look */
.hero-subtitle,
.hero-btn,
.desktop-menu a,
.hero-card small,
.hero-card strong {
    font-family: 'Montserrat', sans-serif;
}

.hero-text h1 {
    font-weight: 700;
    font-family: 'Playfair Display', sans-serif;
    font-style: italic;
}

.hero-btn {
    font-weight: 600;
}

/* ================= MAIN CONTENT FONTS ================= */

.hero-text p,
.service-card p,
footer {
    font-family: 'Lato', sans-serif; /* Soft, readable */
}

/* For better hierarchy and easy readability on body text */
.hero-text p, 
.service-card p, 
footer, 
.mobile-menu a, 
.desktop-menu a {
    font-weight: 400;
}

/* ================= BUTTONS ================= */

.hero-btn,
.mobile-menu a,
.desktop-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ================= MOBILE ================= */

@media(max-width:900px){
    .hero-text h1{
        font-size:32px;
    }

    .hero-btn{
        font-size:16px;
    }
}

/* ================= NAV ================= */

nav{
width:100%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
width:85%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:70px;
}

.logo-text{
display:flex;
flex-direction:column;
align-items:center;
line-height:1.1;
}

.logo-main{
display:flex;
gap:6px;
font-size:22px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
}

.logo-text1{ color:#8cc73d; }
.logo-text2{ color:#0095d7; }

.logo-text3{
font-size:11px;
letter-spacing:1px;
text-transform:uppercase;
color:#555;
}

/* DESKTOP MENU */

.desktop-menu{
display:flex;
gap:30px;
list-style:none;
}

.desktop-menu a{
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
padding-bottom:5px;
transition:0.3s;
}

.desktop-menu a:hover{
color:#0095d7;
}

.desktop-menu a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:2px;
background:#0095d7;
transition:0.3s;
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after{
width:100%;
}

/* ACTIVE */

.desktop-menu a.active,
.mobile-menu a.active{
color:#0095d7;
font-weight:600;
}

/* ICON SPACING */

.desktop-menu a i,
.mobile-menu a i{
margin-right:8px;
}

/* HAMBURGER */

.menu-toggle{
display:none;
flex-direction:column;
gap:6px;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:#333;
transition:0.3s;
}

/* HAMBURGER ANIMATION */

.menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= MOBILE MENU ================= */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100%;
background:#fff;
box-shadow:-5px 0 20px rgba(0,0,0,0.1);
transition:0.4s ease;
z-index:999;
padding-top:80px;
border-top-left-radius:20px;
border-bottom-left-radius:20px;
}

/* LIST */

.mobile-menu ul{
list-style:none;
display:flex;
flex-direction:column;
gap:10px;
padding:0 15px;
}

/* ITEMS */

.mobile-menu ul li{
width:100%;
opacity:0;
transform:translateX(40px);
}

/* LINKS */

.mobile-menu a{
display:flex;
align-items:center;
gap:12px;
padding:14px 16px;
border-radius:10px;
text-decoration:none;
color:#333;
font-size:16px;
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}

/* ICON */

.mobile-menu a i{
font-size:18px;
width:22px;
text-align:center;
}

/* HOVER */

.mobile-menu a:hover{
background:#f5f7ff;
color:#0095d7;
transform:scale(1.03);
}

/* ACTIVE */

.mobile-menu a.active{
background:#eaf2ff;
}

/* LEFT INDICATOR */

.mobile-menu a::before{
content:"";
position:absolute;
left:0;
top:0;
width:0;
height:100%;
background:#0095d7;
transition:0.3s;
}

.mobile-menu a:hover::before{
width:4px;
}

/* STAGGER ANIMATION */

.mobile-menu ul li:nth-child(1){ transition:0.3s 0.1s; }
.mobile-menu ul li:nth-child(2){ transition:0.3s 0.2s; }
.mobile-menu ul li:nth-child(3){ transition:0.3s 0.3s; }
.mobile-menu ul li:nth-child(4){ transition:0.3s 0.4s; }
.mobile-menu ul li:nth-child(5){ transition:0.3s 0.5s; }
.mobile-menu ul li:nth-child(6){ transition:0.3s 0.6s; }
.mobile-menu ul li:nth-child(7){ transition:0.3s 0.7s; }

.mobile-menu.active{
right:0;
}

.mobile-menu.active ul li{
opacity:1;
transform:translateX(0);
}

/* OVERLAY */

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:998;
}

.overlay.active{
opacity:1;
visibility:visible;
}

/* ================= HERO ================= */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 20px;
background:linear-gradient(135deg,#3b4ba3,#4f63c6);
color:white;
gap:40px;
flex-wrap:wrap;
}

.hero-text{
flex:1;
min-width:280px;
}

.hero-text h1{
font-size:42px;
line-height:1.2;
}

.hero-text p{
margin:20px 0;
font-size: 22px;
font-weight: 300;
letter-spacing: 1px;
}

.hero-image{
flex:1;
min-width:280px;
max-width:500px;
height:400px;
position:relative;
overflow:hidden;
border-radius:80px 20px 80px 20px;
}

/* ================= SERVICES ================= */

.services{
padding:80px 8%;
text-align:center;
}

.services h2{
font-size:30px;
margin-bottom:40px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

/* ================= FOOTER ================= */

footer{
background:#222;
color:white;
padding:25px;
text-align:center;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.nav-container{
width:92%;
}

.desktop-menu{
display:none;
}

.menu-toggle{
display:flex;
}

.hero{
flex-direction:column;
text-align:center;
padding:60px 20px;
}

.hero-text h1{
font-size:30px;
}

.hero-image{
width:100%;
max-width:320px;
height:380px;
margin:auto;
border-radius:60px 20px 60px 20px;
}

}

/* ================= HERO PREMIUM ================= */

.hero{
background:#3b4ba3;
color:white;
padding:120px 0;
position:relative;
overflow:hidden;
padding: 100px 20px;
position: relative;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 100px 20px;
}

.hero-content{
    display: flex;
    width: 85%;
    margin: auto;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    gap: 60px;

    /* ❌ REMOVE THESE */
    /* flex: 1; */
    /* max-width: 550px; */

    position: relative;
    z-index: 1;
}

/* TEXT */

.hero-text{
flex:1;
max-width: 50%;
}

/* LEFT SIDE */
.hero-text {
    flex: 1;
    max-width: 550px;
}

/* RIGHT SIDE */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 50%;
}

/* LEFT SIDE */
.hero-text {
    flex: 1;
    max-width: 550px;
}

/* RIGHT SIDE */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-subtitle{
letter-spacing:2px;
font-size:12px;
margin-bottom:10px;
opacity:0.8;
}

.hero-text h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
}

.hero-text p{
margin-bottom:25px;
line-height:1.6;
}

.hero-btn{
display:inline-block;
padding:14px 32px;
background:#8ec644;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

.hero-btn:hover{
background:#5c8329;
}

/* IMAGE */

.hero-image{
flex:1;
min-width:300px;
max-width:550px;
height:460px;
position:relative;
z-index:1;
display: flex;
justify-content: center;

/* 🔥 IMPORTANT */
overflow:visible; /* allow card outside */

/* BETTER BLOB */
border-radius:60% 40% 55% 45% / 50% 55% 45% 50%;
}

/* SLIDER IMAGES */

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity 1s ease, transform 1.5s ease;
transform:scale(1.1);
}

.hero-image img.active{
opacity:1;
transform:scale(1);
}

.hero-image-mask{
width:100%;
height:100%;
overflow:hidden;
background:#ddd;

/* 🔥 apply blob here instead */
border-radius:60% 40% 55% 45% / 50% 55% 45% 50%;
position:relative;
}

.hero-image-mask img{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity 0.8s ease;
}

.hero-image-mask img.active{
opacity:1;
}

/* FLOATING CARD */

.hero-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 15px;

    background: linear-gradient(135deg, #0294d9, #027bb5);
    color: #fff;

    padding: 18px 30px;
    border-radius: 60px;

    box-shadow: 0 15px 40px rgba(2,148,217,0.4);
    min-width: 320px;

    z-index: 10;
    transition: 0.4s ease;

    animation: pulseGlow 3s infinite;
    text-decoration: none;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(2,148,217,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(2,148,217,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2,148,217,0);
    }
}

.hero-card div{
text-align:left;
}

.hero-card small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-card strong {
    font-size: 16px;
    letter-spacing: 0.5px;
}


.hero-card:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 20px 50px rgba(2,148,217,0.5);
}

/* ================= MOBILE ================= */

@media(max-width:900px){

    .hero{
    padding:80px 0;
    text-align:center;
    }

    .hero-content{
    flex-direction:column;
    text-align:center;
    }

    .hero-text h1{
    font-size:32px;
    }

    /* SOFTER SHAPE FOR MOBILE */

    .hero-image-mask{
    border-radius:50% 50% 45% 45%;
    }

}

/* FLOATING SHAPES */

.hero::before,
.hero::after{
content:"";
position:absolute;
border-radius:50%;
background:rgba(255,255,255,0.05);
z-index:0;
animation:float 6s infinite ease-in-out;
}

.hero::before{
width:180px;
height:180px;
top:40px;
left:-60px;
}

.hero::after{
width:260px;
height:260px;
bottom:-80px;
right:-80px;
animation-delay:2s;
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-20px);}
}

/* TEXT ANIMATION */

.hero-text{
animation:fadeUp 1s ease;
}

/* IMAGE ANIMATION */

.hero-image{
animation:fadeIn 1.2s ease;
}

/* CARD ANIMATION */

.hero-card{
animation:fadeUp 1.4s ease;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

.hero-btn{
transition:all 0.3s ease;
}

.hero-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

@media(max-width:900px){

.hero-image{
display:block;            
min-width:unset;  
width:100%;
max-width:360px;
height:360px;
margin:40px auto 15px auto;
position:relative;
}

}

.hero-image-mask img{
display:block;
}

@media(max-width:900px){

.hero-image{
display:block !important;
min-width:0 !important;
width:100% !important;
max-width:420px !important;
height:420px !important;
margin:30px auto !important;
position:relative !important;
flex:none !important;
}

/* FORCE MASK */

.hero-image-mask{
display:block !important;
width:100% !important;
height:100% !important;
border-radius: 22px;
box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

/* FORCE IMAGE VISIBILITY */

.hero-image-mask img{
position:absolute;
}

/* STACK FIX */

.hero-content{
flex-direction:column !important;
align-items:center !important;
}

}

.hero-text h1,
.hero-btn,
.hero-card strong {
    letter-spacing: 1px;
}

.hero-text p,
.service-card p {
    line-height: 1.6;
}

/* ================= SERVICES ================= */
.services {
    padding: 80px 8%;
    text-align: center;
    background-color: #f7f7f7;
}

/* ================= HEADER ================= */
.services h2 {
    font-size: 48px; /* Larger font size */
    font-weight: 700; /* Bold font weight */
    font-family: 'Playfair Display', sans-serif; /* Elegant font */
    letter-spacing: 2px; /* Add space between letters */
    color: #0194da; /* Accent color (similar to your screenshot's red/orange) */
    margin-bottom: 40px;
    text-transform: capitalize; /* Ensures proper title case */
    font-weight: 700;
    font-style: italic;
}

/* Optional: Add a subtle line beneath the heading */
.services h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8cc73d;  /* Matching the accent color */
    margin: 10px auto;
}

.services h2 span {
    color: #8cc73d;
    font-size: 20px;
    font-style: normal;
    color: #666;
    letter-spacing: 1.5px;
    font-weight: normal;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 cards per row */
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 50px;
    color: #0194da;  /* Splendid Care Primary Color */
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card i:hover {
    color: #8cc73d;  /* Splendid Care Secondary Color */
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0;
}

.service-card p {
    color: #666;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* ================= BUTTON STYLES ================= */

/* "Click Here" button */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0194da;  /* Primary Color */
    color: white;
    padding: 0 28px;  /* Adjusted padding for larger button */
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 50px;
    width: 100%;  /* Ensures the button stretches fully */
    max-width: 220px;  /* Limits max width */
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;  /* Ensures no wrapping occurs */
}

/* Hover effect */
.service-btn:hover {
    background-color: #8cc73d;  /* Secondary Color */
    transform: translateX(5px);
}

/* Arrow icon */
.service-btn i {
    margin-top: 22px;
    font-size: 22px;
    color: white;  /* Arrow stays white by default */
    transition: color 0.3s ease;
}

/* Change arrow color on hover */
.service-btn:hover i {
    color: #0194da;  /* Arrow changes to blue on hover */
}

/* Add subtle shadow for better visibility */
.service-btn:active {
    background-color: #e09c2d;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-btn span {
    font-size: 16px;
    display: inline-block;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
    .service-btn {
        font-size: 14px;
        padding: 0 20px;
    }

    .service-grid {
        grid-template-columns: repeat(1, 1fr);  /* 3 cards per row */
    }
}

/* ================= PARALLAX SECTION ================= */
.parallax-section {
    position: relative;
    height: 100vh;
   background-image: url('../images/parallax.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.parallax-container {
    background: linear-gradient(
        135deg,
        rgba(2, 148, 217, 0.75),
        rgba(2, 123, 181, 0.75)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 80%;
    margin: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.parallax-container h2 {
    font-size: 2.8rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.parallax-container h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #8cc73d; /* gold accent */
    margin: 15px auto 25px;
    border-radius: 2px;
}

.parallax-container .divider {
    width: 70px;
    height: 3px;
    background: #ffffff;
    margin: 15px auto 30px;
    border-radius: 2px;
    opacity: 0.8;
}

.parallax-container p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 22px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.parallax-container p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .parallax-section {
        height: auto; /* allow it grow naturally */
        padding: 80px 15px;
        background-attachment: scroll; /* FIXES parallax issues on mobile */
    }

    .parallax-container {
        padding: 30px 20px;
        max-width: 100%;
        border-radius: 15px;
        transform: none; /* prevents overflow if you added translateY */
    }

    .parallax-container h2 {
        font-size: 1.8rem;
    }

    .parallax-container p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Section */
.cta-section {
    padding: 80px 8%;
    background: #f4f9fc;
}

/* Header */
.cta-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-left h2 {
    font-size: 3rem;
    font-style: italic;
    color: #1a1a1a;
    margin-top: 10px;
}

.divider {
    width: 2px;
    height: 70px;
    background: #0294d9;
    position: relative;
}

.divider::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #8cc63f; /* logo green */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
}

.container {
    width: 100%; /* increased width */
    margin: auto;
}

.subtitle {
    color: #0294d9; /* brand blue */
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.cta-right {
    width: 700px;
}

.cta-right p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

/* Grid */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */
.cta-card {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    transition: 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.cta-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.cta-img img {
    width: 100%;
    display: block;
    position: relative;
    transition: transform 0.5s ease;
}

.cta-card:hover img {
    transform: scale(1.08);
}

.cta-img::after {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #3f51b5;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
}
/* Text */
.cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #222;
}

.cta-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0294d9, #027bb5);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover lift */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 148, 217, 0.4);
}

/* Shine animation */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-left h2 {
        font-size: 2.2rem;
    }

    .cta-right{
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .divider {
        display: none;
    }

    .cta-section {
        padding: 70px 15px;
    }

    .cta-right{
        max-width: 500px;
    }
}

/* Icon Badge */
.icon-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(2,148,217,0.3);
    transition: 0.4s ease;
}

/* SVG styling */
.icon-badge svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 1.8;
    fill: none;
    transition: 0.4s ease;
}

.icon-badge i {
    font-size: 18px;
}

.cta-card:hover .icon-badge {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 15px 35px rgba(2,148,217,0.5);
}

.cta-card:hover .icon-badge svg {
    transform: scale(1.2);
}

.cta-card:hover .icon-badge {
    transform: scale(1.1);
}

.icon-badge {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(2,148,217,0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(2,148,217,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2,148,217,0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section */
.mvv-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f4f9fc, #ffffff);
}

/* Header */
.mvv-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.mvv-header .subtitle {
    color: #0294d9;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.mvv-header h2 {
    font-size: 2.7rem;
    margin: 15px 0;
}

.mvv-header p {
    color: #666;
    line-height: 1.7;
}

/* Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.mvv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Icon */
.mvv-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG */
.mvv-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
    transition: 0.4s ease;
}

/* Text */
.mvv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.mvv-card p {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    color: #666;
    line-height: 1.7;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mvv-card:hover svg {
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .mvv-header h2 {
        font-size: 2rem;
    }
}

.mvv-container {
    width: 85% !important;
    margin: auto;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #021b2b, #03344f);
    color: #fff;
    padding-top: 70px;
    font-size: 0.95rem;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo */
.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

/* Columns */
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #8cc63f;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #0294d9;
    padding-left: 5px;
}

/* Socials */
.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: #0294d9;
    transition: 0.3s ease;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Hover effect */
.footer-socials a:hover {
    background: #8cc63f;
    transform: translateY(-4px) scale(1.05);
}
/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 0.85rem;
    color: #aaa;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials a {
        margin: 5px;
    }
}

.footer-col {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.4s; }
.footer-col:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= ABOUT HERO ================= */

.about-hero {
    position: relative;
    height: 75vh;
    min-height: 450px;

    background: url('../images/about-banner.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* OVERLAY */
.about-overlay {
    position: absolute;
    inset: 0;

    display: flex;              /* 🔥 KEY FIX */
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.4)
    );
}

/* 🔥 CENTERED CONTAINER */
.about-container {
    width: 90%;
    max-width: 800px;
    margin: auto;

    text-align: center;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;

    padding-top: 40px;
    padding-bottom: 40px;
}

/* TEXT */
.about-container h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;

    letter-spacing: 0.5px;

    text-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

.about-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 650px;
    letter-spacing: 0.05em;
}

/* INITIAL STATE */
.about-container h1, 
.services-container h1, 
.services-container p,
.about-container p {
    opacity: 0;
    transform: translateY(30px);
}

/* ANIMATION */
.about-container h1,
.services-container h1 {
    animation: heroFadeUp 0.8s ease forwards;
}

.about-container p,
.services-container p {
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.2s;
}


/* KEYFRAME */
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= HERO CALLOUT ================= */

.about-hero-card {
    position: absolute;
    bottom: -25px; /* 👈 adjusted */
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 12px;

    background: linear-gradient(135deg, #0294d9, #027bb5);
    color: #fff;

    padding: 18px 30px;
    border-radius: 50px;

    box-shadow: 0 12px 30px rgba(2,148,217,0.4);

    text-decoration: none;
    z-index: 10;

    transition: all 0.4s ease;
}

/* ICON */
.about-hero-card i {
    width: 38px;
    height: 38px;
    background: #8cc63f;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 14px;
}


/* TEXT */
.about-hero-card small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.about-hero-card strong {
    font-size: 15px;
}

/* HOVER */
.about-hero-card:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 20px 50px rgba(2,148,217,0.5);
}

.hero-content h1 {
    font-size: 3rem;
}

/* HERO CARD */


.hero-card i {
    background: #8cc63f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ABOUT */
.about-intro {
    padding: 100px 20px 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* SERVICES */
.about-services {
    padding: 80px 20px;
    background: #f4f9fc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.service-box:hover {
    background: #0294d9;
    color: #fff;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Image upgrade */
.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.about-image img:hover {
    transform: scale(1.03);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.trust-strip {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-strip div {
    background: #f4f9fc;
    padding: 10px 15px 10px 0;
    border-radius: 20px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {

    .hero-card {
        min-width: auto;
        width: 90%;
        padding: 15px;
        font-size: 0.9rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.cert-section {
    padding: 80px 20px;
    background: #f4f9fc;
}

.cert-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.cert-header h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.cert-header p {
    color: #666;
    line-height: 1.7;
}

/* Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.cert-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Icon */
.cert-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}

/* Text */
.cert-card h4 {
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

.why-section {
    padding: 100px 20px;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Image */
.why-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Content */
.why-content h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.why-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* List */
.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-section {
    position: relative;
}

.why-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(2,148,217,0.08);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cta-btn {
    background: linear-gradient(135deg, #0294d9, #027bb5);
    border-radius: 50px;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2,148,217,0.4);
}

.final-cta {
    background: linear-gradient(135deg, #0294d9, #027bb5);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    font-size: 2.5rem;
}

.final-cta p {
    margin: 15px 0;
}

@media (max-width: 900px) {

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Image first or second? (choose one) */
    .why-image {
        order: -1; /* puts image ABOVE text */
    }

    .why-content {
        text-align: center;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .why-content p {
        font-size: 0.95rem;
    }

    /* Center list items */
    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-icon {
        margin-bottom: 8px;
    }
}
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-mask {
        width: 260px;
        height: 260px;
    }

}

@media (max-width: 768px) {

    .hero-card {
        position: relative;
        margin: 20px auto 0;
        left: auto;
        transform: none;

        width: 90%;
        justify-content: center;
        text-align: center;
        border-radius: 20px;
    }

}

@media (max-width: 768px) {

    .about-container {
        text-align: center;
    }

    .about-hero {
        height: auto;
        padding: 100px 20px 60px;
    }

    .about-container h1 {
        font-size: 2.2rem;
    }

    .about-container p {
        font-size: 1rem;
    }

}

/* SECTION */
.about-mvv-section {
    padding: 100px 20px;
    background: #fff;
}

.about-mvv-container {
    width: 85%;
    margin: auto;
}

/* ROW */
.about-mvv-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* REVERSE LAYOUT */
.about-mvv-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.about-mvv-image {
    flex: 1;
    display: flex;
}

.about-mvv-image img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    object-fit: cover; 
}

.about-mvv-image img:hover {
    transform: scale(1.03);
}

/* TEXT */
.about-mvv-text {
    flex: 1;
    object-fit: cover; 
    border-radius: 25px;
}

.about-mvv-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-mvv-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ANIMATION */
.about-mvv-row {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.about-mvv-row.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {

    .about-mvv-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-mvv-row.reverse {
        flex-direction: column;
    }

    .about-mvv-text h3 {
        font-size: 1.6rem;
    }

    .about-mvv-text p {
        font-size: 1rem;
    }

    .mvv-image img {
        height: auto;
    }

}

/* GRID */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.about-service-card {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

/* BACKGROUND IMAGE */
.about-service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
}

/* OVERLAY */
.about-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
    );
}

/* CONTENT */
.about-service-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.about-service-content h3 {
    font-size: 1.2rem;
}

/* HOVER EFFECT */
.about-service-card:hover .service-bg {
    transform: scale(1.08);
}

.about-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: 0.3s;
}

@media (max-width: 900px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= SERVICES PAGE FIX ================= */

/* HERO */
.services-hero {
    position: relative;
    height: 75vh;
    min-height: 450px;
    background: url('../images/services-hero.jpg') center/cover no-repeat;
}

.services-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.services-container {
    width: 85%;
    max-width: 100%;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.services-container h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.services-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

/* HERO CARD */
.services-hero-card {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0294d9, #027bb5);
    color: #fff;
    padding: 18px 30px;
    border-radius: 50px;
    display: flex;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(2,148,217,0.4);
}

/* INTRO FIX (avoid conflict) */
.services-intro {
    padding: 100px 20px 60px;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.services-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* TEXT */
.services-text h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.services-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* ================= SERVICES LIST (PREMIUM) ================= */

.services-list {
    padding: 20px 20px;
}

/* ROW */
.services-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* REVERSE */
.services-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.services-img {
    flex: 1;
}

.services-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: 0.5s ease;
}

/* HOVER IMAGE */
.services-row:hover .services-img img {
    transform: scale(1.05);
}

/* CONTENT */
.services-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.services-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.services-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* PREMIUM CARD FEEL */
.services-content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    padding: 40px;
}

/* ANIMATION */
.services-row {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.services-row.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .services-row.reverse {
        flex-direction: column;
    }

    .services-img img {
        height: 280px;
    }

    .services-content {
        padding: 25px;
    }

    .services-content h3 {
        font-size: 1.5rem;
    }
}
.service-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.service-list li {
    margin-bottom: 10px;
    color: #444;
    font-size: 1.05rem;
}

.service-list li::before {
    content: "✓";
    color: #8cc63f;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 600;
}

.services-text h2,
.about-text h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #0194da;
    font-weight: 700;
    font-style: italic;
}

/* ================= PREMIUM SERVICE UI ================= */

/* HEADER WITH ICON */
.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* ICON BADGE */
.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: linear-gradient(135deg, #0294d9, #8cc63f);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(2,148,217,0.3);
    transition: 0.4s ease;
}

.service-icon i {
    color: #fff;
    font-size: 22px;
}

/* HOVER EFFECT */
.services-row:hover .service-icon {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 15px 35px rgba(2,148,217,0.5);
}

/* TITLE */
.services-content h3 {
    font-size: 1.6rem;
    margin: 0;
}

/* LIST */
.service-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;

    transition: 0.3s ease;
}

/* CHECK ICON */
.service-list li i {
    color: #8cc63f;
    font-size: 14px;
}

/* HOVER EFFECT ON LIST */
.service-list li:hover {
    transform: translateX(5px);
    color: #000;
}

/* SUBTLE DIVIDER */
.services-content p:last-child {
    margin-top: 15px;
    font-weight: 500;
    color: #222;
}

/* GLASS TOUCH (optional premium) */
.services-content {
    backdrop-filter: blur(6px);
}

/* ================= LUXURY SEPARATORS ================= */

.section-divider {
    width: 100%;
    height: 1px;
    margin: 60px 0;

    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,0.08),
        transparent
    );

    position: relative;
}

/* glowing center dot */
.section-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: linear-gradient(135deg, #0294d9, #8cc63f);

    box-shadow: 0 0 15px rgba(2,148,217,0.4);
}

.services-content p {
    margin-bottom: 15px;
}

.service-list {
    margin: 20px 0 25px;
}

.services-content h3 {
    margin-bottom: 10px;
}

/* ================= COVERAGE SECTION ================= */

.coverage-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f4f9fc, #ffffff);
}

/* GRID */
.coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* MAP */
.coverage-map {
    position: relative;
    display: flex;
    justify-content: center;
}

.coverage-map::after {
    content: "";
    position: absolute;
    inset: -20px;

    background: radial-gradient(circle, rgba(2,148,217,0.15), transparent);
    z-index: -1;
    border-radius: 30px;
}

.coverage-map img {
    width: 100%;
    max-width: 520px;   /* control size */
    height: auto;

    display: block;
    margin: auto;

    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* COUNTY LIST */
.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 15px 20px;

    align-content: center;
}

/* BADGE STYLE */
.coverage-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;
    border-radius: 25px;

    background: #f1f3f6;
    font-size: 0.9rem;

    white-space: nowrap;

    transition: all 0.3s ease;
    cursor: pointer;
}

/* 🔥 PREMIUM HOVER */
.coverage-item:hover {
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    color: #fff;

    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(2,148,217,0.3);
}

.coverage-item i {
    margin-right: 8px;
    color: #0294d9;
    transition: 0.3s;
}

/* MOBILE */
@media(max-width:900px){
    .coverage-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coverage-list {
        justify-content: center;
    }
}

/* ================= INSURANCE LOGOS ================= */

.insurance-logos {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

/* GRID */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

/* LOGO ITEM */
.logo-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

/* IMAGE */
.logo-item img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-item:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width:900px){
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= COVERAGE HEADER (PREMIUM) ================= */

.coverage-header {
    padding: 100px 20px 60px;
    text-align: center;

    background: linear-gradient(
        to bottom,
        #f4f9fc 0%,
        #ffffff 100%
    );

    position: relative;
}

/* CONTENT */
.coverage-header-content {
    max-width: 750px;
    margin: auto;
}

/* SUBTITLE */
.coverage-subtitle {
    color: #0294d9;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* TITLE */
.coverage-header h2 {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Playfair Display', sans-serif;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* DIVIDER LINE */
.coverage-divider {
    width: 70px;
    height: 3px;
    margin: 15px auto 25px;

    background: linear-gradient(135deg, #0294d9, #8cc63f);
    border-radius: 2px;
}

/* TEXT */
.coverage-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* SOFT FLOATING LIGHT EFFECT */
.coverage-header::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(2,148,217,0.05);
    border-radius: 50%;
    top: -60px;
    left: -60px;
}

.coverage-header::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(140,198,63,0.05);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

.coverage-header-content {
    animation: fadeUp 1s ease;
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;

    padding: 40px;
    border-radius: 25px;
    margin: 60px auto !important;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    box-shadow: 0 25px 60px rgba(0,0,0,0.08);

    align-items: center;

    /* 🔥 ADD THESE */
    max-width: 1100px;
    margin: 60px auto; /* centers it */
}

.coverage-wrapper:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

@media (max-width: 900px) {

    .coverage-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
        margin: 40px 15px;
    }

    /* MAP */
    .coverage-map img {
        max-width: 100%;
        border-radius: 15px;
    }

    /* LIST */
    .coverage-list {
        justify-content: center;
        align-items: center;
    }

    /* COUNTY ITEMS */
    .coverage-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }

}

.coverage-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.map-glow {
    position: absolute;
    width: 80px;
    height: 80px;

    background: radial-gradient(circle, rgba(238, 217, 32, 0.6), transparent);
    border-radius: 50%;

    opacity: 0;
    transition: 0.3s ease;

    pointer-events: none;
}

/* Davidson (center) */
.map-glow.davidson { top: 30%; left: 40%; }

/* Rutherford */
.map-glow.rutherford { top: 30%; left: 54%; }

/* Williamson */
.map-glow.williamson { top: 35%; left: 30%; }

/* Wilson */
.map-glow.wilson { top: 20%; left: 63%; }

/* Maury */
.map-glow.maury { top: 42%; left: 49%; }

/* Robertson */
.map-glow.robertson { top: 15%; left: 42%; }

/* Montgomery */
.map-glow.montgomery { top: 20%; left: 28%; }

/* Franklin */
.map-glow.franklin { top: 40%; left: 60%; }

/* White */
.map-glow.white { top: 30%; left: 65%; }

.tn-map {
    width: 100%;
    max-width: 520px;
}

/* COUNTY BASE */
.county {
    fill: #e6f2f8;
    stroke: #cbd5e1;
    stroke-width: 1;

    transition: 0.3s ease;
    cursor: pointer;
}

/* HOVER */
.county:hover {
    fill: url(#grad);
    stroke: #0294d9;
}

/* ACTIVE STATE */
.county.active {
    fill: url(#grad);
    stroke: #0294d9;
    stroke-width: 2;
}

.insurance-hero {
    background: url('../images/insurance-hero.jpg') center/cover no-repeat;
}

.insurance-hero .services-overlay {
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4)
    );
}


/* HERO OVERRIDE */
.resources-hero {
    background: url('../images/resources-hero.jpg') center/cover no-repeat;
}

/* RESOURCES SECTION */
.resources-section {
    padding: 100px 20px;
    position: relative;
}

/* GRID */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.resource-card {
    display: block;
    padding: 25px;
    border-radius: 20px;

    background: #fff;
    text-decoration: none;
    color: #333;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* ICON */
.resource-card i {
    font-size: 22px;
    color: #0294d9;
    margin-bottom: 10px;
}

/* TITLE */
.resource-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* LINK TEXT */
.resource-card p {
    font-size: 0.85rem;
    color: #777;
}

/* HOVER */
.resource-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    color: #fff;
}

.resource-card:hover i,
.resource-card:hover p {
    color: #fff;
}

/* MOBILE */
@media(max-width:900px){
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO */
.compliance-hero {
    background: url('../images/compliance-hero.jpg') center/cover no-repeat;
}

/* SECTION SPACING */
.services-content {
    max-width: 800px;
    margin: auto;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

.highlight-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.highlight-card i {
    font-size: 28px;
    color: #0294d9;
    margin-bottom: 10px;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.report-section {
    padding: 100px 20px;
    background: #f9fbfd;
}

.report-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.report-left h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.report-left ul {
    margin-top: 20px;
    list-style-type: none;
}

.report-left li {
    margin-bottom: 10px;
}

/* FORM BOX */
.report-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0294d9;
}

/* CHECKBOX */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* MESSAGE */
#formMessage {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* MOBILE */
@media(max-width:900px){
    .report-wrapper {
        grid-template-columns: 1fr;
    }
}

/* CHECKBOX GROUP */
.checkbox-group {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* WRAPPER */
.checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #444;
}

/* HIDE DEFAULT CHECKBOX */
.checkbox-wrapper input {
    display: none;
}

/* CUSTOM BOX */
.custom-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid #ccc;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
}

/* CHECKED STATE */
.checkbox-wrapper input:checked + .custom-checkbox {
    background: linear-gradient(135deg, #0294d9, #8cc63f);
    border-color: transparent;
}

/* CHECK ICON */
.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    opacity: 0;
}

/* SHOW CHECK */
.checkbox-wrapper input:checked + .custom-checkbox::after {
    opacity: 1;
}

/* TEXT */
.checkbox-text {
    user-select: none;
}

/* HOVER */
.checkbox-wrapper:hover .custom-checkbox {
    border-color: #0294d9;
}

.contact-hero {
    background: url('../images/contact-hero.jpg') center/cover no-repeat;
}

/* Make contact cards more premium */
.highlight-card span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #0d6efd;
}

/* Form box enhancement */
.report-form-box {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.75);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.toast {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;

    width: auto;
    max-width: 300px;

    background: #0d6efd;
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;

    z-index: 99999;

    display: inline-block;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: #dc3545;
}

.appointment-hero {
    background: url('../images/appointment-hero.jpg') center/cover no-repeat;
}

.staff-hero {
    background: url('../images/staff-hero.jpg') center/cover no-repeat;
}

.referral-hero {
    background: url('../images/referral-hero.jpg') center/cover no-repeat;
}

.career-hero {
    background: url('../images/career-hero.jpg') center/cover no-repeat;
}

.staff-section {
    padding: 60px 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.staff-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.staff-card h4 {
    margin: 10px 0 5px;
}

.role {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
}

.desc {
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
}

.career-intro-center {
    text-align: center;
    margin-bottom: 40px;
}

.career-intro-center ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.career-form-wrapper {
    display: flex;
    justify-content: center;
}

.career-form-box {
    width: 100%;
    max-width: 700px;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    display: none;
    animation: spin 0.7s linear infinite;
}

button.loading .btn-text {
    display: none;
}

button.loading .btn-spinner {
    display: inline-block;
}

button.loading {
    pointer-events: none;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

button.loading {
    transform: scale(0.98);
}