* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #e8f5e8 0%, #f0fdf4 100%);
        }
        
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.15) 50%, rgba(5, 150, 105, 0.1) 100%);
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('Logos/profile and facebook cover-02.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }
        
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.6;
            animation: floatIcon 8s ease-in-out infinite;
            color: #22c55e;
        }
        
        .floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
        .floating-icon:nth-child(3) { top: 60%; left: 8%; animation-delay: 2s; }
        .floating-icon:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 3s; }
        .floating-icon:nth-child(5) { top: 40%; left: 20%; animation-delay: 4s; }
        .floating-icon:nth-child(6) { bottom: 20%; left: 25%; animation-delay: 5s; }
        .floating-icon:nth-child(7) { top: 70%; right: 25%; animation-delay: 6s; }
        .floating-icon:nth-child(8) { top: 30%; right: 30%; animation-delay: 7s; }
        
        @keyframes floatIcon {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 0.4;
            }
            25% { 
                transform: translateY(-20px) rotate(5deg); 
                opacity: 0.7;
            }
            50% { 
                transform: translateY(-40px) rotate(-5deg); 
                opacity: 0.9;
            }
            75% { 
                transform: translateY(-20px) rotate(3deg); 
                opacity: 0.6;
            }
        }
        
        .green-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .particle {
            position: absolute;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 70%, transparent 100%);
            border-radius: 50%;
            animation: particleFloat 10s linear infinite;
        }
        
        .particle:nth-child(1) { width: 20px; height: 20px; left: 5%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 15px; height: 15px; left: 15%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 25px; height: 25px; left: 25%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 18px; height: 18px; left: 35%; animation-delay: 6s; }
        .particle:nth-child(5) { width: 22px; height: 22px; left: 45%; animation-delay: 8s; }
        .particle:nth-child(6) { width: 16px; height: 16px; left: 55%; animation-delay: 1s; }
        .particle:nth-child(7) { width: 20px; height: 20px; left: 65%; animation-delay: 3s; }
        .particle:nth-child(8) { width: 24px; height: 24px; left: 75%; animation-delay: 5s; }
        .particle:nth-child(9) { width: 19px; height: 19px; left: 85%; animation-delay: 7s; }
        .particle:nth-child(10) { width: 21px; height: 21px; left: 95%; animation-delay: 9s; }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        .about-section {
    position: relative;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 185, 129, 0.08) 50%, rgba(5, 150, 105, 0.05) 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Logos/profile and facebook cover-02.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    z-index: 1;
}

.about-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Changed from higher z-index */
    pointer-events: none; /* This prevents the animation from blocking clicks */
}

.pulse-circle {
    position: absolute;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite;
    pointer-events: none; /* This prevents circles from blocking clicks */
}

.pulse-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.pulse-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes pulseCircle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.about-content {
    position: relative;
    z-index: 10; /* Higher z-index to ensure content is on top */
}

.social-links {
    position: relative;
    z-index: 15; /* Even higher z-index for the buttons */
}

.social-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 20; /* Highest z-index for clickable elements */
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Fix for any other potential z-index issues */
.btn {
    position: relative;
    z-index: 20;
}

/* Also fix the same issue in hero section if needed */
.animated-bg {
    pointer-events: none;
}

.floating-icon {
    pointer-events: none;
}

.green-particles {
    pointer-events: none;
}

.particle {
    pointer-events: none;
}
        
        .hero-content {
            z-index: 2;
            position: relative;
        }
        
        .clinic-logo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #22c55e;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #166534;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: #22c55e;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: #374151;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .btn-primary-custom {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
            color: white;
        }
        
        .features-section {
            padding: 80px 0;
            background: white;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid #22c55e;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #22c55e, #16a34a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #166534;
            margin-bottom: 15px;
        }
        
        .feature-description {
            color: #6b7280;
            line-height: 1.6;
        }
        
        .stats-section {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .social-links a {
            
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-2px);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .about-content {
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .btn-primary-custom {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .floating-icon {
                font-size: 1.5rem;
            }
        }

        .social-links .btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-section ul li {
    font-size: 1rem;
    color: #6c757d;
}

.about-section .btn-lg {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 24px;
}

@media (max-width: 768px) {
    .d-flex.gap-3 {
        flex-direction: column;
    }
    
    .about-section .row > div {
        margin-bottom: 30px;
    }
}