 :root {
            --hospital-blue: #1a5f7a;
            --accent-teal: #00b4a0;
            --light-blue: #e3f2fd;
            --warm-yellow: #ffb74d;
            --dark-blue: #0a3d62;
            --gynecology-pink: #e91e63;
            --ophthalmology-green: #4caf50;
            --footer-bg: #0a3d62;
        }
        
      
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 0;
    margin: 0;
        }
        
        /* Footer Container */
        .hospital-footer {
            background: linear-gradient(135deg, var(--footer-bg) 0%, #092a43 100%);
            color: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        
        .footer-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b4a0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 1;
        }
        
        /* Footer Top Section */
        .footer-top {
            padding: 60px 40px 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        /* Footer Column */
        .footer-column {
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-teal);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 180, 160, 0.3);
            position: relative;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-teal);
        }
        
        /* Quick Links */
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 8px 0;
            transition: all 0.3s ease;
            border-radius: 5px;
            padding-left: 15px;
            position: relative;
        }
        
        .footer-links a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            padding-left: 20px;
            transform: translateX(5px);
        }
        
        .footer-links a:before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: var(--accent-teal);
        }
        
        .footer-links a:hover:before {
            opacity: 1;
        }
        
        /* Specialties Sections */
        .specialty-section {
            margin-bottom: 30px;
        }
        
        .specialty-title {
            font-size: 1rem;
            color: var(--accent-teal);
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .ophthalmology-title i {
            color: var(--ophthalmology-green);
            margin-right: 10px;
        }
        
        .gynecology-title i {
            color: var(--gynecology-pink);
            margin-right: 10px;
        }
        
        .specialty-links {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        
        .specialty-links li {
            position: relative;
            padding-left: 20px;
        }
        
        .specialty-links li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-teal);
        }
        
        .specialty-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 2px 0;
        }
        
        .specialty-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        /* Contact Column */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--accent-teal);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
            width: 24px;
        }
        
        .contact-label {
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .contact-detail {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        .phone-numbers {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .phone-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .phone-link:hover {
            color: white;
            transform: translateX(5px);
        }
        
        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 10px;
            text-decoration: none;
        }
        
        .hospital-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--warm-yellow);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .hospital-brand:hover {
            color: white;
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .footer-top {
                padding: 40px 20px 30px;
            }
            
            .footer-bottom {
                padding: 20px;
            }
            
            .footer-title {
                font-size: 1.3rem;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-column {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }
   