/* Contact page styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */
/* Default (top of page) */
#header {
  background: transparent;
}
 
#header .nav-text,
#header #logoText,
#header #mobileToggle {
  color: white;
}
 
#header #logoBox {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
 
/* Scrolled state */
#header.scrolled {
  background: white;
  backdrop-filter: none;
}

#header.scrolled .nav-text,
#header.scrolled #logoText,
#header.scrolled #mobileToggle {
  color: #0f172a; /* slate-900 */
}
 
#header.scrolled #logoBox {
  background: #0f172a;
  color: white;
}

.contact-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
}

.contact-header {
    text-align: center;
    margin-bottom: 18px;
}

.contact-title {
    font-size: 1.6rem;
    margin: 0 0 6px;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 0.95rem;
    margin: 0;
    color: #555;
}

/* Layout */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Feature cards (keeps consistent naming with existing site styles) */
.features-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0ea5a4, #06b6d4);
    flex: 0 0 44px;
}

.feature-title {
    margin: 0;
    font-size: 1rem;
}

.feature-description {
    margin: 0;
    color: #444;
    font-size: 0.94rem;
    line-height: 1.4;
}

/* Form styles — use existing .form-input and .form-select names */
.form-section {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 1.05rem;
    margin: 0 0 10px;
    text-align: left;
}

form#contactForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.85rem;
    color: #333;
}

.required {
    color: #c53030;
}

/* Consolidated input/select rules (no .custom-select duplication) */
.form-input,
.form-select {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

.submit-button {
    background: linear-gradient(90deg, #06b6d4, #0ea5a4);
    color: #fff;
    border: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.submit-button:active {
    transform: translateY(1px);
}

.disclaimer-text {
    font-size: 0.78rem;
    color: #6b7280;
    margin: 8px 0 0;
}

/* Larger screens */
@media (min-width: 820px) {
    .contact-container {
        flex-direction: row;
        gap: 28px;
        align-items: flex-start;
    }

    .features-section {
        grid-template-columns: 1fr;
        flex: 1 1 50%;
    }

    .form-section {
        flex: 1 1 50%;
        padding: 20px;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .feature-card {
        padding: 16px;
    }
}

/* Very wide screens - keep features single column unless you intentionally want 2 */
@media (min-width: 1100px) {
    .features-section {
        grid-template-columns: 1fr;
    }
}

/* End of product section page styles */

.hello-patient-section {
  background-color: #d4c9be;
  padding: 80px 20px;
  font-family: 'Georgia', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: #5a4a3a;
  font-weight: 600;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-heading {
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0;
  font-weight: 400;
}

.cta-button {
  background-color: #a89888;
  color: #2a2a2a;
  border: none;
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button:hover {
  background-color: #9a8878;
}

.right-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px dotted #b5a99a;
}

.feature-item:last-child {
  border-bottom: 1px dotted #b5a99a;
}

.icon {
  color: #5a4a3a;
  flex-shrink: 0;
}

.feature-title {
  font-size: 24px;
  color: #2a2a2a;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .main-heading {
    font-size: 36px;
  }
  
  .feature-title {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .hello-patient-section {
    padding: 50px 20px;
  }
  
  .main-heading {
    font-size: 32px;
  }
  
  .feature-item {
    padding: 20px 0;
  }
}

.cookie-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Override Tailwind's .collapse for Bootstrap accordions */
.accordion .collapse {
    visibility: visible !important;
}

.accordion .collapse:not(.show) {
    display: none;
}

.accordion .collapse.show {
    display: block;
}

/* about us  */
/* Scoped styles for About Us and Leadership */

.about-page {
    background: #fff;
    color: #202225;
}

.about-container {
    max-width: 960px;          /* readable width on wide screens */
    margin: 0 auto;            /* center horizontally */
    padding: 40px 24px;        /* consistent page padding */
}

.about-title {
    font-size: 2rem;           /* ~32px */
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    text-align: center;
}

.about-title-xl {
    font-size: 2.25rem;        /* ~36px */
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    text-align: center;
}

.about-subtitle {
    font-size: 1.375rem;       /* ~22px */
    font-weight: 600;
    line-height: 1.35;
    margin: 8px 0 8px;
    text-align: center;
    color: #3a3f46;
}

.about-intro {
    max-width: 800px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4f57;
}

.about-content p,
.about-text {
    font-size: 1rem;           /* ~16px body */
    line-height: 1.75;
    color: #2e3238;
    margin: 0 0 16px;
}

.about-content {
    display: grid;
    gap: 14px;                  /* even vertical rhythm */
}

.subpages-div {
    margin-top: 24px;
}

/* Center the leadership block to same readable width */
.subpage.about-page .subpage-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Ensure the inner content column is centered and not left-stretched */
.subpages-div {
    max-width: 800px;
    margin: 24px auto;      /* centers within the container */
    display: block;         /* override flex if needed */
}

/* If Bootstrap flex is present on parent, prevent stretching */
.subpages-div.d-flex {
    display: block;         /* disable flex to avoid left alignment */
}

/* Make the member content fill the centered column */
.member {
    width: 100%;
}

.member .about-text {
    text-align: left;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Titles remain centered */
.about-title-xl,
.about-subtitle,
.about-intro {
    text-align: center;
}

/* Utility: reduce excessive margin-top from existing mt-5 if Bootstrap is present */
.mt-5 {
    margin-top: 2rem !important;
}

/* Responsive tweaks */
@media (min-width: 1200px) {
    .about-container {
        max-width: 1040px;
    }
    .about-title {
        font-size: 2.25rem;
    }
    .about-title-xl {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-container {
        padding: 28px 16px;
    }
    .about-title {
        font-size: 1.75rem;
    }
    .about-title-xl {
        font-size: 2rem;
    }
    .about-subtitle {
        font-size: 1.125rem;
    }
}

/* comparision section */
:root {
    --cream-bg: #FDFBF7;
    --soft-teal: #50A2A7;
    --muted-grey: #94928E;
    --glass-bg: rgba(255, 255, 255, 0.4);
}

.comparison-section {
    background-color: var(--cream-bg);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.comparison-subtitle {
    color: var(--soft-teal);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section-title {
    color: #2D3132;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Glass Pillar Styling */
.glass-pillar {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.glass-pillar:hover {
    transform: translateY(-5px);
}

.pillar-header {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    text-align: center;
}

.header-with { color: var(--soft-teal); border-bottom: 2px solid rgba(80, 162, 167, 0.2); }
.header-without { color: var(--muted-grey); border-bottom: 2px solid rgba(148, 146, 142, 0.2); }

/* Row Styling */
.comparison-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 1rem;
    color: #4A4A4A;
}

.comparison-item:last-child { border-bottom: none; }

.icon-wrap {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-with { background: rgba(80, 162, 167, 0.1); color: var(--soft-teal); }
.icon-without { background: rgba(0, 0, 0, 0.05); color: var(--muted-grey); }

/* hero subpage section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Slow pulse animation for the background blob */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

/* Ensure proper text contrast */
.hero-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* CLEAN PROFESSIONAL DROPDOWN - HelloPatient Style */

/* Dropdown container - wider to accommodate clean layout */
.dropdown-menu2 {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 0.75rem;
    width: auto;
    min-width: 750px;
    max-width: 850px;
    z-index: 50;
}

/* White card styling */
.dropdown-menu2 > div {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 2.5rem;
}

/* Main flex container - two sections side by side */
.dropdown-menu2 .flex-col.md\:flex-row {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
}

/* Left section - The Product */
.dropdown-menu2 .flex-1:first-child {
    flex: 0 0 45%; /* Takes 45% of width */
    padding-right: 2rem;
    border-right: 1px solid #e5e7eb;
}

/* Right section - By Department */
.dropdown-menu2 .flex-1:last-child {
    flex: 0 0 55%; /* Takes 55% of width */
    padding-left: 2rem;
}

/* Section headers (THE PRODUCT, BY DEPARTMENT) */
.dropdown-menu2 h3 {
    font-size: 0.65rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

/* Product title */
.dropdown-menu2 h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Product description */
.dropdown-menu2 p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Learn more link */
.dropdown-menu2 .inline-flex {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: color 0.2s;
}

.dropdown-menu2 .inline-flex:hover {
    color: #2563eb;
}

/* Ensure the grid container forces two equal columns */
.dropdown-menu2 .grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Forces 2 columns */
    gap: 0.5rem 1.5rem;
    width: 100%;
}

/* Department link items */
.dropdown-menu2 .grid a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

/* Hover effect for the whole link block */
.dropdown-menu2 .grid a:hover {
    background-color: #f1f5f9;
    transform: translateX(4px);
    transition: all 0.2s ease;
}

/* Icons in department links */
.dropdown-menu2 .grid a i,
.dropdown-menu2 .grid a div {
    font-size: 1.125rem;
    color: #6b7280;
    flex-shrink: 0;
}

/* Fix for long text in columns */
.dropdown-menu2 .grid a span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    white-space: normal; /* Allows text to wrap if the menu is tight */
    line-height: 1.2;
}

.dropdown-menu2 .grid a:hover span {
    color: #1f2937;
}

/* Remove default Tailwind border styles that might conflict */
.dropdown-menu2 .md\:border-r {
    border-right: none !important;
}

/* Responsive */
@media (max-width: 968px) {
    .dropdown-menu2 {
        min-width: auto;
        width: calc(100vw - 2rem);
        max-width: none;
        left: 1rem;
        right: 1rem;
    }
    
    .dropdown-menu2 .flex-col.md\:flex-row {
        flex-direction: column;
    }
    
    .dropdown-menu2 .flex-1:first-child {
        flex: 1;
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .dropdown-menu2 .flex-1:last-child {
        flex: 1;
        padding-left: 0;
    }
    
    .dropdown-menu2 .grid {
        grid-template-columns: 1fr;
    }
}


/* logo */
/* The specific 4px edge fade CSS optimized for 675x229 logo */
.fade-merge-edge {
    /* Adjust border-radius to match your design preference */
    border-radius: 6px;
    
    /* Precise 4px edge fade using linear gradients and intersection */
    -webkit-mask-image: 
        linear-gradient(to right, transparent, black 4px, black calc(100% - 4px), transparent),
        linear-gradient(to bottom, transparent, black 4px, black calc(100% - 4px), transparent);
    mask-image: 
        linear-gradient(to right, transparent, black 4px, black calc(100% - 4px), transparent),
        linear-gradient(to bottom, transparent, black 4px, black calc(100% - 4px), transparent);
    
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.bg-brand-dark {
    background-color: #0f172a; 
}

/* Ensuring the logo maintains its 675/229 aspect ratio */
.logo-dimensions {
    height: 40px;
    width: auto;
    aspect-ratio: 675 / 229;
    object-fit: contain;
}

/* animation index html */
.animation-delay-1{
    animation-delay: 1s;
}

.animation-delay-2{
    animation-delay: 2s;
}

.animation-delay-01{
    animation-delay: 0.1s;
}

.animation-delay-02{
    animation-delay: 0.2s;
}

.animation-delay-03{
    animation-delay: 0.3s;
}
.animation-delay-04{
    animation-delay: 0.4s;
}

/*product page */
.py-62 {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.py-200 {
    padding-top: 100px;
}

.mg-bt-40{
    margin-bottom: 40px;
}

/* /* Minimal CSS required to reproduce the hero section.
   Dependencies (recommended): Bootstrap 5 CSS + Bootstrap Icons
*/

/* hero container & background */
.hero-section {
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/static/assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  animation: kenBurns 25s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* frosted-glass card used around carousel content */
.glass-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: .75rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  padding: 0;
  max-width: 950px;
  margin: 0 auto;
}

/* carousel item text animation (used on .text-anim) */
.text-anim {
  animation: zoomFadeUp .8s cubic-bezier(.165,.84,.44,1) forwards;
}
@keyframes zoomFadeUp {
  0% { opacity: 0; transform: scale(.9) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* small utilities / tweaks used in the markup */
.ls-3 { letter-spacing: 3px; }

.carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 0.3;
  border: none;
}



.bt--50 {
    bottom: -50px;
} 
