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

body, html {
    height: 100%;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #2c3e50;
    overflow-x: hidden;
}

.full-screen-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Panel styling */
.left-panel {
    flex: 1.1; /* slightly wider */
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.header {
    margin-bottom: auto;
    padding-bottom: 2rem;
}

.logos-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    max-height: 150px; /* control the height */
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 8px;
    background: #fff;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-divider {
    height: 120px;
    width: 2px;
    background: #0066cc;
}

.main-content {
    margin-top: auto;
    margin-bottom: auto;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 150, 136, 0.1);
    color: #00897b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline i {
    animation: heartbeat 1.5s infinite;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #0066cc;
    background: linear-gradient(120deg, #0066cc, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    color: #5c6e80;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 90%;
}

/* EKG Line Animation */
.ekg-container {
    width: 100%;
    max-width: 500px;
    height: 60px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.ekg-line {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #00bfff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawEKG 4s linear infinite;
}

/* Right Panel styling */
.right-panel {
    flex: 0.9;
    background: linear-gradient(135deg, #0052cc 0%, #003380 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: white;
    overflow: hidden;
}

.contact-card-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    z-index: 10;
    animation: fadeInRight 1s ease-out;
}

.contact-card-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.info {
    display: flex;
    flex-direction: column;
}

.info .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.info .value {
    font-size: 1.05rem;
    font-weight: 500;
}

.social-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.social-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    color: #0052cc;
    transform: translateY(-3px) scale(1.1);
}

/* Medical Themed Background Decor for right panel */
.background-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.6;
}

.shape {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.8;
}

.shape-1 {
    width: 40vw;
    height: 40vw;
    background: rgba(0, 191, 255, 0.3); /* Lighter blue */
    border-radius: 50%;
    top: -10%;
    left: -10%;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-2 {
    width: 50vw;
    height: 50vw;
    background: rgba(0, 204, 153, 0.2); /* Medical Teal */
    border-radius: 50%;
    bottom: -20%;
    right: -10%;
    animation: float 12s infinite ease-in-out alternate-reverse;
}

.cross {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.cross::before, .cross::after {
    content: '';
    position: absolute;
    background: #ffffff;
    border-radius: 10px;
}

.cross::before { width: 60px; height: 180px; left: 60px; top: 0; }
.cross::after { width: 180px; height: 60px; left: 0; top: 60px; }

.cross-1 {
    top: 20%;
    right: 15%;
    transform: scale(0.8) rotate(15deg);
}

.cross-2 {
    bottom: 20%;
    left: 10%;
    transform: scale(0.5) rotate(-15deg);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.2); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

@keyframes drawEKG {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1000; }
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(40px, 40px); }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .full-screen-wrapper {
        flex-direction: column;
    }
    .left-panel {
        padding: 3rem 2rem;
        min-height: auto;
    }
    .right-panel {
        padding: 3rem 2rem;
        min-height: auto;
    }
    .header {
        margin-bottom: 2rem;
    }
    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .logos-container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .logo {
        max-height: 100px;
    }
    .logo-divider {
        width: 2px;
        height: 90px;
    }
    .contact-card-container {
        padding: 2rem;
    }
    .contact-card-container h2 {
        font-size: 1.5rem;
    }
}
