/* Color Palette & Variables */
:root {
    --tranquil-blue: #e3f2fd;
    --medical-blue: #4682B4;
    --deep-slate: #2c3e50;
    --soft-white: #f8f9fa;
    --accent-glow: rgba(70, 130, 180, 0.1);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-slate);
    background-color: var(--soft-white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--tranquil-blue);
}
/* Branded Hero Watermark */
#hero-section { 
    position: relative; 
}

#hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Go up one folder (..) to find assets */
    background-image: url('../assets/logo.png'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%; 
    filter: brightness(0) invert(0); 
    opacity: 0.8; 
    pointer-events: none;
    z-index: 0;
}
.logo-placeholder {
    width: 40px; 
    height: 40px; 
    background: var(--tranquil-blue); 
    border-radius: 8px; 
    margin-right: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--medical-blue); 
    font-weight: bold;
}

.brand-text {
    font-weight: 600; 
    color: var(--medical-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--tranquil-blue) 100%);
    padding: 140px 0 100px 0;
}

.hero-subtext {
    max-width: 700px;
}

/* Buttons */
.btn-primary {
    background-color: var(--medical-blue);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--deep-slate);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

/* Benefits Grid */
.benefit-card {
    background: white;
    border: 1px solid var(--tranquil-blue);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
    box-shadow: 0 15px 40px var(--accent-glow);
    border-color: var(--medical-blue);
    transform: scale(1.02);
}

.icon-box {
    color: var(--medical-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Maternal Section */
.maternal-section {
    background-color: #f0f7ff;
    border-radius: 40px;
    padding: 80px;
}

.accent-text {
    color: var(--medical-blue);
}

.custom-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.quote-circle {
    background: white; 
    padding: 60px;
    border-radius: 50%; 
    display: inline-block; 
    border: 2px dashed var(--tranquil-blue);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic; 
    color: var(--medical-blue);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--deep-slate);
    color: white;
    padding: 60px 0;
}
/* Logo Sizing & Alignment */
.nav-logo {
    height: 50px; /* This keeps it professional and sleek */
    width: auto;
    margin-right: 15px;
    vertical-align: middle;
}
/* About Section Styles */
.about-image-container {
    position: relative;
    padding: 10px;
}

.about-image-container img {
    border: 8px solid var(--tranquil-blue);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: 20px;    /* This moves it to the bottom */
    right: 20px;     /* This moves it to the right */
    top: auto;       /* This 'un-sticks' it from the top */
    left: auto;      /* This 'un-sticks' it from the left */
}

.signature-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--medical-blue);
}

.tracking-widest {
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: 700;
}
/* Contact Section Styling */
.contact-wrapper {
    border-radius: 25px; /* Smooth, modern corners */
    overflow: hidden; /* Ensures the inner panels don't poke out */
    background: white;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--deep-slate) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sleek Form Inputs */
.form-control, .form-select {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: white;
    border-color: var(--medical-blue);
    box-shadow: 0 0 0 4px var(--accent-glow); /* Soft blue glow on click */
}

.opacity-75 { opacity: 0.75; }

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.05) !important;
}

.service-icon {
    opacity: 0.8;
}

.tracking-widest {
    letter-spacing: 0.15em;
}