/* --- Global Header Module --- */
.site-header {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 33, 71, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000; /* Keeps header above all other content */
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    max-height: 55px; /* Adjusts perfectly to your new logo file */
    width: auto;
}

/* Desktop Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a.nav-link {
    text-decoration: none;
    color: #002147;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a.nav-link:hover {
    color: #FF9900;
}

.mobile-only-cta {
    display: none; /* Hidden on desktop */
}

/* Header Actions & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    color: #002147;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-cta-button, .cta-button {
    background: #FF9900;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.desktop-cta-button:hover, .cta-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #002147;
    transition: 0.3s ease;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .main-nav ul { gap: 15px; } /* Shrinks gap on tablets */
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex; /* Show hamburger */
    }

    .desktop-cta-button {
        display: none; /* Hide desktop CTA to save space */
    }

    .phone-text {
        display: none; /* Hide phone text, keep icon */
    }
    
    .phone-link {
        font-size: 1.5rem; /* Make phone icon larger */
    }

    /* Mobile Dropdown Styling */
    .main-nav {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px); /* Fills the rest of the screen height */
	background: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .main-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 20px 30px;
    }

    .main-nav li {
        border-bottom: 1px solid #f4f7f9;
    }

    .main-nav a.nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }

    .mobile-only-cta {
        display: block; /* Show CTA inside mobile menu */
        margin-top: 20px;
    }

    .mobile-only-cta .cta-button {
        display: block;
        width: 100%;
    }
}
/* --- Header css ends here --- */
:root {
    --navy: #002147;
    --gold: #FF9900;
    --light-bg: #f4f7f9;
    --text-dark: #333;
}

.hero-container {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1.2;
}

.hero-right {
    flex: 0.8;
    position: relative;
}

.hero-title {
    color: var(--navy);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Lead Form Styling */
.lead-form-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--navy);
}

.lead-form-box h3 {
    margin: 0 0 5px 0;
    color: var(--navy);
}

.form-sub {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: #666;
}

form input, form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

.hero-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--gold);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-submit-btn:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.trust-tag {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 10px;
    color: #888;
}

/* Image Styling */
.hero-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Responsive for Mobile */
.tech-ribbon {
    padding: 80px 20px;
    background-color: #f9fbfc; /* Very light clinical blue */
}

.tech-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    color: var(--navy);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-intro p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* The Grid Layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

/* Make the specific 'Highlight' card stand out slightly */
.tech-card.highlight {
    border-bottom: 4px solid var(--gold);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,33,71,0.1);
    border-color: var(--gold);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .section-intro h2 {
        font-size: 1.8rem;
    }
}
.specialist-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.specialist-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.specialist-image-area {
    flex: 1;
    position: relative;
}

.main-portrait-box {
    position: relative;
    z-index: 1;
}

.dr-portrait {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--light-bg); /* Design accent */
}

.credentials-floating-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gold);
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.credentials-floating-badge strong {
    display: block;
    font-size: 1.1rem;
}

.specialist-text-area {
    flex: 1.2;
}

.section-tag {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.specialist-text-area h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.specialist-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.specialist-highlights {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.specialist-highlights li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.specialist-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}

.secondary-cta {
    display: inline-block;
    padding: 18px 35px;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.secondary-cta:hover {
    background: var(--navy);
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .specialist-inner {
        flex-direction: column;
        gap: 40px;
    }
    .dr-portrait {
        box-shadow: 10px 10px 0px var(--light-bg);
    }
}
