/* Footer Container */
        .footer {
            background: linear-gradient(96deg,#1a237e 10%, #3c0145 77%);
            color: #fff;
            padding: 60px 80px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            font-size: 14px;
        }

        .footer-col-1 {
            flex: 1.2;
            min-width: 250px;
            padding-right: 20px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        
.logo-img {
    width:100%;          
    height:auto;
    object-fit: cover;     
    padding: 5px;          
}
        
        .logo-text h2 {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.2;
        }
        .logo-text span {
            font-weight: 300;
            font-size: 16px;
        }

        .footer-desc {
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 30px;
            font-size: 13px;
        }

        .copyright {
            font-size: 12px;
            color: #ccc;
            line-height: 1.5;
        }

        .copyright strong {
            color: #fff;
        }

   
        .footer-col-2 {
            flex: 1;
            min-width: 280px;
        }

        .location-card {
            color: #fff;
            border-radius: 0px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .loc-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #fff; 
        }

        .loc-header i {
            font-size: 20px;
        }

        .loc-header h3 {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .hospital-item {
            margin-bottom: 15px;
        }

        .hospital-item:last-child {
            margin-bottom: 0;
        }

        .hospital-name {
            font-size: 15px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 2px;
        }

        .hospital-time {
            font-size: 12px;
            color: #fff;
            line-height: 1.4;
        }

        .footer-col-3 {
            flex: 0.8;
            min-width: 200px;
            padding-left: 20px;
        }

        .col-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 25px;
            color: #e0e0e0;
        }

        .links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr ; 
            gap: 15px;
        }

        .links-grid a {
            text-decoration: none;
            color: #fff;
            font-size: 14px;
            transition: 0.3s;
        }

        .links-grid a:hover {
            color: #ccc;
        }

        .footer-col-4 {
            flex: 1;
            min-width: 250px;
        }

        .newsletter-box {
            position: relative;
            background: #3e0b46; 
            border-radius: 50px;
            padding: 5px;
            display: flex;
            align-items: center;
            border: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 40px;
        }

        .newsletter-box input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            padding: 10px 20px;
            width: 100%;
            font-size: 13px;
        }

        .newsletter-box input::placeholder {
            color: #bbb;
        }

        .send-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            margin-right: 5px;
        }

        .send-btn:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-link {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .social-link:hover {
            background: #fff;
            color: #4a0072;
        }

        @media (max-width: 1024px) {
            .footer {
                padding: 40px;
            }
        }

        @media (max-width: 900px) {
            .footer {
                flex-direction: column;
            }
            .footer-col-3 {
                padding-left: 0;
            }
            .links-grid {
                grid-template-columns: 1fr 1fr;
            }
        }