/* ============================================
   ROOT & VARIABLES
   ============================================ */
:root {
    --navy-dark: #2c3e5f;
    --navy-light: #3d5080;
    --slate-accent: #5b7fa8;
    --blue-primary: #4d7ba9;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --light-dark: #e9ecef;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-radius: 0.5rem;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 123, 169, 0.25);
}

.btn-primary {
    background-color: var(--blue-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #3d6a97;
    box-shadow: 0 10px 25px rgba(77, 123, 169, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-outline-light {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   NAVBAR/HEADER
   ============================================ */

.navbar {
   
    padding: 1rem 0;
    z-index: 1030;
}

.navbar.header-space {
  backdrop-filter: blur(10px);
    background: rgba(44, 62, 95, 0.95) !important;
}

/* .navbar-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
} */

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    gap: 0.5rem !important;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-icon.sm {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
}

.brand-name {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 400;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white) !important;
}

.phone-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem !important;
}

.phone-link .arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid rgba(77, 123, 169, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: url(../assets/img/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
}

.hero-section.privacy-policy {
    background: url(../assets/img/service-bg.png);
    height: 35vh;
     background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(35vh - 80px);
}


.hero-section.privacy-policy h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #5b7fa8 0%, #3d5080 100%);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(44, 62, 95, 0.4));
    z-index: 2;
}


.image-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    position: relative;
    z-index: 3;
}

.image-placeholder-dark {
    aspect-ratio: 1;
    background: linear-gradient(to bottom, #3d5080, #2c3e5f);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(44, 62, 95, 0.4));
}

.privacy-policy-main {
    padding: 80px 0px;
}

.privacy-policy-main p {
     margin-bottom: 16px;
}
/* ============================================
   SERVICE CARDS
   ============================================ */
.service-cards-container {
     background: url(../assets/img/service-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 30px 0;
    /* transform: translateY(-4rem); */
}

.service-card {
   background: rgba(255, 255, 255, 0.15); 
    
    /* 2. The core glass effect: blur the background behind the element */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px); /* For compatibility */
box-shadow: 0px 4px 4px 0px #00000040;
    /* 3. Add depth and realism */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle light border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    /* Optional styling for the card itself */
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(61, 80, 128, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   CARE SECTION
   ============================================ */
.care-section {
    background: var(--white);
}

.care-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.care-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ============================================
   NEUROLOGY CARD
   ============================================ */
.neurology-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.neurology-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.neurology-image {
    position: relative;
    overflow: hidden;
}

.neurology-image img{
    width: 100%;
    height: 100%;
}

.neurology-content {
    padding: 2.5rem;
}

.neurology-content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   TELEHEALTH CARD
   ============================================ */
.telehealth-card {
    background: var(--white);
    border: 2px solid var(--light-dark);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.telehealth-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 10px 30px rgba(77, 123, 169, 0.1);
}

.telehealth-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ============================================
   BENEFITS LIST
   ============================================ */
.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.telehealth-card .benefits-list li {
    color: var(--text-dark);
}

.neurology-card .benefits-list li {
    color: var(--text-dark);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: #60a5fa;
    stroke-width: 3;
}

.neurology-card .check-icon {
    color: #60a5fa;
}

.telehealth-card .check-icon {
    color: var(--blue-primary);
}

/* ============================================
   CONTACT CARD
   ============================================ */
.contact-card {
    background: #f9fafb;
    border: 2px solid var(--light-dark);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-control {
    background: var(--white);
    border: 1px solid var(--light-dark);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--blue-primary);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(77, 123, 169, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
   
    background: url(../assets/img/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    
}
footer {
    color: var(--white);
  background: linear-gradient(135deg, #243247, #2F3E55);
  position: relative;
}

/* footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('noise-texture.png');
  opacity: 0.08;
  pointer-events: none;
} */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--blue-primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.border-light-dark {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.g-recaptcha {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-up:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}

.section-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.grid-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar {
    backdrop-filter: blur(10px);
    background: rgba(44, 62, 95, 0.95) !important;
}

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
        height: 80vh;
        /* background-position: center; */
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 1rem;
            line-height: normal;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }

    .service-cards-container {
        transform: translateY(-2rem);
        margin-bottom: 2rem;
    }

    .neurology-image {
        height: auto;
    }

    .care-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .footer {
        padding: 2rem 0 !important;
    }

    .footer-bottom-links {
        gap: 1.5rem;
        justify-content: center;
        margin-top: 10px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .logo-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .phone-link {
        display: none;
    }

    .privacy-policy-main {
    padding: 40px 0px;
}
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 1.5rem 0;
    }

    .button-group {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .neurology-content,
    .telehealth-card,
    .contact-card {
        padding: 1.5rem;
    }

    .neurology-content h3,
    .telehealth-card h3,
    .contact-card h3 {
        font-size: 1.25rem;
    }

    .benefits-list li {
        gap: 0.75rem;
        font-size: 0.875rem;
    }

    .care-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .footer-bottom-text {
        font-size: 0.8rem;
    }

    .navbar-brand img {
        width: 200px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    body {
        background: var(--white);
    }
}
