
        /* --- 1. Global Variables & Typography --- */
        :root {
            --primary-color: #0fbcf9;
            --secondary-color: #3c40c6;
            --accent-color: #05c46b;
            --dark-text: #1e272e;
            --light-bg: #f1f7fc;
            --font-main: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-main);
            color: var(--dark-text);
            background-color: #fff;
            overflow-x: hidden;
        }

        /* --- 2. Custom Navbar Styling --- */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }

        .navbar-brand i {
            color: var(--primary-color);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            margin: 0 10px;
            position: relative;
        }

        /* Animated underline for nav links */
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(60, 64, 198, 0.3);
            transition: transform 0.3s ease;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 6px 20px rgba(60, 64, 198, 0.4);
        }

        /* --- 3. Hero Section --- */
        .hero-section {
            background: url('image/main-hero-image.avif') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        /* Blue overlay gradient */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.1) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
           
        }
        .badge{
            width: fit-content;
            border: 1px salmon;
           
           
        }

        /* --- 4. About Section --- */
        .about-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .about-img-wrapper {
            position: relative;
        }

        .about-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Floating badge on image */
        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .experience-badge h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin: 0;
        }

        /* ---  Service Section --- */
        .service-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h6 {
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .service-card {
            background: white;
            border: none;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(to bottom right, var(--secondary-color), var(--primary-color));
            transition: all 0.4s ease;
            z-index: -1;
            border-radius: 20px;
        }

        .service-card:hover::before {
            width: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            color: white;
            box-shadow: 0 20px 40px rgba(60, 64, 198, 0.2);
        }

        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            color: var(--secondary-color);
            transition: all 0.4s ease;
        }

        .service-card:hover .icon-box {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        
        .service-card p {
            color: #666;
            font-size: 0.9rem;
            transition: color 0.4s;
        }
        
        .service-card:hover p, .service-card:hover h4 {
            color: white;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--dark-text);
    
            padding: 50px 0;
            text-align: center;
            text-decoration: none;
        }
    .footer-section {
    color:var(--primary-color);
    position: relative;
    text-align: left;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color:var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}



.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact li i,
.footer-links li i {
    margin-right: 8px;
    color:var(--primary-color);
}

.footer-links li a {
    color:var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color:var(--light-bg);
    padding-left: 5px;
}


.hero-section-primaryhealthcare {
            background: url('image/primary-healthcare-hero.jpg') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }

.hero-section-dentalcare {
            background: url('image/dental-care-hero.jpg') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }
.hero-section-weightloss{
            background: url('image/weight-loss-hero.jpg') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;

}
.hero-section-fitness{
    background: url('image/fitness-hero.webp') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;

}

.hero-section-haircare{
    background: url('image/haircare-hero.jpg') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;

}
.hero-section-skincare{
    background: url('image/skincare-hero.webp') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;

}

.hero-section-healthinsurance{

    background: url('image/health-insurance-hero.webp') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;

}

.newsletter-section{
    background: linear-gradient(135deg, var(--primary-color,--secondary-color));
}

.newsletter-section .newsletter-card {
    transition: transform 0.4s, box-shadow 0.4s;
  }
.newsletter-section .newsletter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
  }

/* --- Animations --- */

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-bounce-in {
    animation: bounceIn 1.2s ease-out forwards;
    opacity: 0;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Intersection Observer Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Loading Animation */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-animated:hover::before {
    left: 100%;
}

/* Text Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    animation: revealText 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
