:root {
            --primary-green: #4a5d23;
            --primary-gold: #b8a05f;
            --dark-green: #3a4a1c;
            --light-gold: #d4b896;
            --bg-cream: #faf9f6;
            --text-black: #1a1a1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Top Bar */
        .top-bar {
            background: var(--primary-green);
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .top-bar a:hover {
            opacity: 0.8;
        }
        
        .top-bar i {
            color: var(--primary-gold);
            margin-right: 5px;
        }
        
        /* Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand img {
            height: 60px;
            width: auto;
        }
        
        .nav-link {
            color: var(--text-black) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .btn-medical {
            background: var(--primary-green);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid var(--primary-green);
        }
        
        .btn-medical:hover {
            background: transparent;
            color: var(--primary-green);
        }
        
        .btn-outline-medical {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-outline-medical:hover {
            background: var(--primary-green);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(184, 160, 95, 0.1);
            border-radius: 50%;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: rgba(184, 160, 95, 0.05);
            border-radius: 50%;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--primary-gold);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-title span {
            color: var(--primary-gold);
        }
        
        .hero-text {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .hero-buttons .btn {
            margin-right: 15px;
            margin-bottom: 10px;
        }
        
        .btn-gold {
            background: var(--primary-gold);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary-gold);
        }
        
        .btn-gold:hover {
            background: transparent;
            color: var(--primary-gold);
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .floating-card.card-1 {
            bottom: 50px;
            left: -30px;
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-card.card-2 {
            top: 50px;
            right: -20px;
            animation: float 3s ease-in-out infinite 0.5s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Services Section */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-subtitle {
            color: var(--primary-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .section-title {
            color: var(--text-black);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border-bottom: 4px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-bottom-color: var(--primary-gold);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-black);
        }
        
        .service-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* Process Section */
        .process-section {
            background: var(--bg-cream);
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--primary-gold);
            opacity: 0.3;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .process-step h4 {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Features Section */
        .feature-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .feature-icon {
            min-width: 60px;
            height: 60px;
            background: rgba(74, 93, 35, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-green);
            font-size: 1.5rem;
        }
        
        .feature-content h4 {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--primary-green);
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-gold);
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Location Section */
        .location-section {
            background: var(--bg-cream);
        }
        
        .location-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .location-card h3 {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .location-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .location-detail i {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .location-detail div strong {
            display: block;
            margin-bottom: 5px;
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            min-height: 400px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .btn-white {
            background: white;
            color: var(--primary-green);
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid white;
        }
        
        .btn-white:hover {
            background: transparent;
            color: white;
        }
        
        /* Footer */
        .footer {
            background: var(--text-black);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            height: 80px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }
        
        .footer h5 {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
			text-decoration: none;
			
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
			text-decoration: none;
        }
        
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        
        .footer-contact i {
            color: var(--primary-gold);
            margin-right: 10px;
            width: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
			text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--primary-gold);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #777;
			text-decoration: none;
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-gold);
            transform: translateY(-5px);
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s;
			text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .floating-card {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .whatsapp-float {
                bottom: 30px;
                right: 30px;
            }
            
            .back-to-top {
                bottom: 100px;
                right: 30px;
            }
        }