@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-light: #0088ff;
    --secondary-color: #00a8cc;
    --accent-color: #00c9a7;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-light: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    --bg-card: #ffffff;
    --border-color: rgba(0, 102, 204, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    position: relative;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 136, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 204, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 201, 167, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    z-index: -2;
    animation: backgroundShift 20s ease infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(0, 102, 204, 0.15), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(0, 168, 204, 0.15), transparent),
        radial-gradient(0.5px 0.5px at 50% 50%, rgba(0, 201, 167, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 80% 10%, rgba(0, 136, 255, 0.15), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%;
    animation: starfield 30s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes starfield {
    0% { background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%; }
    100% { background-position: 100% 100%, 0% 100%, 50% 50%, 100% 0%; }
}

/* Marquee Styles */
.marquee_container {
    background: linear-gradient(135deg, #0066cc 0%, #00a8cc 100%);
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.marquee_content {
    display: inline-flex;
    animation: marquee_scroll 60s linear infinite;
    align-items: center;
    gap: 30px;
}

.marquee_item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
}

.marquee_icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    opacity: 0.7;
    flex-shrink: 0;
}

.marquee_text {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes marquee_scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 40px 0 0;
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_logo img {
    height: 100px;
    width: auto;
}

/* Main Content */
.main {
    position: relative;
    z-index: 1;
    margin-top: 36px;
}

.content {
    padding: 40px 0;
}

/* Banner Section */
.banner {
    text-align: left;
    padding: 0;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

.banner_content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    text-align: center;
}

.banner_content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0066cc 0%, #00a8cc 50%, #00c9a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.02em;
}

.banner_content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.01em;
}

.banner_content p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hospitals Section */
.hospitals {
    padding: 40px 0 0;
    position: relative;
}

.hospitals_content {
    text-align: center;
}

.hospitals_content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hospitals_content h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.hospitals_list {
    display: flex;
    flex-direction: row;
    gap: 12px;
    text-align: center;
}

.hospital_item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 18px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    box-shadow: var(--shadow-md);
}

.hospital_item:nth-child(1) { animation-delay: 0.1s; }
.hospital_item:nth-child(2) { animation-delay: 0.2s; }
.hospital_item:nth-child(3) { animation-delay: 0.3s; }
.hospital_item:nth-child(4) { animation-delay: 0.4s; }

.hospital_item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 204, 0.2);
    box-shadow: var(--shadow-xl);
}

.hospital_item_image {
    margin-bottom: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital_item_image img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    opacity: 0.85;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hospital_item:hover .hospital_item_image img {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.2));
}

.hospital_item_content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.hospital_item_content > p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hospital_item_content > p a {
    color: inherit;
}

.hospital_item_content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hospitals_list {
        flex-wrap: wrap;
    }
    
    .hospital_item {
        width: calc(50% - 6px);
    }
}

@media (min-width: 768px) {
    .hospital_item_content > a {
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 20px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .marquee_container {
        position: relative;
        height: 32px;
    }
    
    .marquee_text {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .marquee_icon {
        width: 14px;
        height: 14px;
    }
    
    .marquee_item {
        gap: 10px;
    }
    
    .main {
        margin-top: 0;
        overflow: hidden;
    }
    
    .banner::before {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 136, 255, 0.08) 0%, transparent 70%);
    }
    
    .banner_content {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .banner_content p {
        max-width: 800px;
    }
    
    .hospitals {
        padding: 60px 0;
    }
    
    .hospital_item {
        padding: 30px 20px;
        width: 100%;
    }
    
    .hospital_item_image {
        margin-bottom: 25px;
        height: 80px;
    }
    
    .hospital_item_image img {
        max-height: 80px;
    }
    
    .hospital_item_content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .hospital_item_content > p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .hospital_item_content a {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .header_logo img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .banner_content h1 {
        font-size: 2rem;
    }
    
    .banner_content h2 {
        font-size: 1.25rem;
    }
    
    .banner_content p {
        font-size: 0.9rem;
    }
}
