 .whole {
            --hospital-blue: #1a5f7a;
            --accent-teal: #00b4a0;
            --light-blue: #e3f2fd;
            --warm-yellow: #ffb74d;
            --dark-blue: #0a3d62;
            --gynecology-pink: #e91e63;
            --ophthalmology-green: #4caf50;
        }
        
        
        
        .whole {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        
       
       
        /* Hero Section */
        .hero-section {
           background: linear-gradient(135deg, var(--hospital-blue) 0%, var(--dark-blue) 100%);
 
                        
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--accent-teal);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.9s both;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: var(--warm-yellow);
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 5px;
        }
        
        /* Main Content */
        .about-content {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.5rem;
            color: var(--hospital-blue);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        
        .hospital-intro {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 40px;
        }
        
        .hospital-intro strong {
            color: var(--hospital-blue);
            font-weight: 600;
        }
        
        /* Doctors Section */
        .doctors-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #eef7ff 100%);
        }
        
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .doctor-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-top: 5px solid;
        }
        
        .doctor-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .dr-anil-card {
            border-top-color: var(--ophthalmology-green);
        }
        
        .dr-anita-card {
            border-top-color: var(--gynecology-pink);
        }
        
        .doctor-header {
            padding: 30px 30px 20px;
            text-align: center;
            position: relative;
        }
        
        .doctor-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 20px;
        }
        
        .dr-anil-icon {
            background: rgba(76, 175, 80, 0.1);
            color: var(--ophthalmology-green);
        }
        
        .dr-anita-icon {
            background: rgba(233, 30, 99, 0.1);
            color: var(--gynecology-pink);
        }
        
        .doctor-name {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .doctor-specialty {
            color: #666;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .doctor-body {
            padding: 0 30px 30px;
        }
        
        .doctor-achievements {
            list-style: none;
            padding: 0;
        }
        
        .doctor-achievements li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            color: #555;
            position: relative;
            padding-left: 30px;
        }
        
        .doctor-achievements li:last-child {
            border-bottom: none;
        }
        
        .doctor-achievements li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-teal);
            font-weight: bold;
        }
        
        .achievement-highlight {
            background: rgba(255, 183, 77, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid var(--warm-yellow);
        }
        
        /* Milestones Section */
        .milestones-section {
            padding: 80px 0;
            background: white;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--light-blue);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            width: 45%;
            padding: 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 95, 122, 0.1);
        }
        
        .timeline-year {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--hospital-blue);
            margin-bottom: 10px;
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--accent-teal);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--light-blue);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
            color: black;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border: 1px solid black;
        }
        
        .service-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-teal);
        }
        
        .service-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
      
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: row !important;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }
            
            .timeline-dot {
                left: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .about-content {
                padding: 60px 0;
            }
            
            .doctors-section, .milestones-section, .services-section {
                padding: 60px 0;
            }
            
            .doctors-grid {
                grid-template-columns: 1fr;
            }
        }