/* login  */
/* Login page - BRAC Healthcare */

:root {
  --primary-color: #ff7f00;
  --background-color: #1a461d;
  --card-background: #ffffff;
  --text-dark: #333333;
  --text-light: #999999;
  --border-color: #e8e8e8;
  --input-bg: #f9f9f9;
  /* --primary-color: #e91e63; */
  --primary-light: #f48fb1;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
}

.login-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  width: 100%;
  overflow: hidden;
}

/* Background with dot pattern */
.login-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(104, 155, 104);
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

/* Login card */
.login-card {
  position: relative;
  z-index: 10;
  background: var(--card-background);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  width: 100%;
  /* margin: 150px; */
}

/* Logo section */
.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.login-logo svg {
  width: 48px;
  height: 48px;
}

.logo-text {
  text-align: center;
}

.logo-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
}

/* Form styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  height: 48px;
}

.input-icon {
  font-size: 18px;
  margin-right: 12px;
  color: var(--text-light);
  flex-shrink: 0;
}

.form-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
}

/* Remove autofill blue background - more aggressive */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: black !important;
  color: black !important;
  background-color: white !important;
}

/* Firefox */
.form-input:-moz-autofill,
.form-input:-moz-autofill:hover,
.form-input:-moz-autofill:focus {
  background-color: white !important;
  color: black !important;
}

.form-input::placeholder {
  color: var(--text-light);
}

.password-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  margin-left: 8px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--text-dark);
}

/* Form options (remember and forgot) */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 12px;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-light);
  user-select: none;
}

.remember-checkbox input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.forgot-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.forgot-link:hover {
  color: var(--primary-color);
}

/* Sign in button */
.sign-in-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  height: 44px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin-top: 16px;
  font-family: inherit;
}

.sign-in-btn:hover {
  background: #c51575;
  box-shadow: 0 6px 20px rgba(227, 27, 143, 0.35);
  transform: translateY(-2px);
}

.sign-in-btn:active {
  transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
  .login-card {
    padding: 40px 24px;
    margin: 16px;
  }

  .logo-title,
  .logo-subtitle {
    font-size: 28px;
  }

  .login-logo {
    margin-bottom: 32px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .forgot-link {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .login-container {
    justify-content: flex-start;
    padding-top: 20px;
  }

  .login-card {
    padding: 32px 20px;
    margin: 12px;
    border-radius: 10px;
  }

  .logo-title,
  .logo-subtitle {
    font-size: 24px;
  }

  .logo-text {
    gap: 4px;
  }

  .login-logo {
    gap: 12px;
    margin-bottom: 28px;
  }

  .input-wrapper {
    height: 44px;
  }

  .form-input {
    font-size: 13px;
  }

  .form-options {
    font-size: 12px;
  }

  .sign-in-btn {
    font-size: 13px;
    height: 40px;
    margin-top: 12px;
  }
}


.logo-flower {
  width: 80px;
  height: 80px;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.brand-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.brand-brac {
  color: var(--primary-pink);
  display: block;
  line-height: 1.1;
}

.brand-healthcare {
  color: var(--primary-pink);
  display: block;
  line-height: 1.1;
}


/* Password Toggle Button */
.btn-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.btn-password-toggle:hover {
  color: var(--primary-pink);
}

.btn-password-toggle .icon {
  width: 20px;
  height: 20px;
  color: #999;
  stroke: currentColor;
  transition: color 0.2s ease;
}

.btn-password-toggle:hover .icon {
  color: var(--primary-pink);
}

/* Forgot Password Link */
.forgot-password-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.forgot-password-link:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 576px) {



  .brand-title {
    font-size: 2rem;
  }

  .logo-flower {
    width: 70px;
    height: 70px;
  }
}

.purpose-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


/* General Styles */
.healthcare-page {
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Decorative Large Letter */
.decorative-letter {
  font-size: 60px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 0.8;
  display: inline-block;

}

/* Mission Text */
.mission-text {
  margin-bottom: 10px;
  overflow: hidden;
}

.lead-text {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  display: block;
}

/* Team Intro */
.team-intro-text {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
}

.team-highlight {
  font-style: italic;
  font-weight: 500;
}

/* Culture Text */
.culture-text {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
}

/* CTA Text */
.cta-text {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Job Card */
.job-card {
  border: 2px solid var(--light-cyan);
  border-radius: 8px;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  min-height: 400px;
}

/* Job Details Section */
.job-details-section {
  border-right: 2px solid var(--light-cyan);
  padding-right: 30px;
}

/* Job Title Section */
.job-title-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.job-icon {
  color: var(--primary-pink);
  font-size: 24px;
  margin-right: 12px;
}

.job-title {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Job Description */
.job-description {
  overflow-y: auto;
  max-height: 320px;
  padding-right: 15px;
}

.job-description::-webkit-scrollbar {
  width: 6px;
}

.job-description::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.job-description::-webkit-scrollbar-thumb {
  background: var(--light-cyan);
  border-radius: 3px;
}

.job-description::-webkit-scrollbar-thumb:hover {
  background: #81d4fa;
}

.job-text {
  color: var(--dark-gray);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}

.job-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Location Section */
.job-location-section {
  padding-left: 30px;
}

.location-box {
  text-align: center;
}

.location-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.location-text {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .decorative-letter {
    font-size: 80px;
    margin-right: 5px;
    margin-bottom: 5px;
  }

  .job-card {
    flex-direction: column;
    min-height: auto;
    padding: 20px;
  }

  .job-details-section {
    border-right: none;
    border-bottom: 2px solid var(--light-cyan);
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .job-location-section {
    padding-left: 0;
  }

  .job-description {
    max-height: none;
    padding-right: 0;
  }

  .lead-text,
  .team-intro-text,
  .culture-text,
  .job-text {
    font-size: 14px;
    text-align: left;
  }

  .job-title-section {
    padding: 10px;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {
  .decorative-letter {
    font-size: 60px;
    margin-bottom: 10px;
  }

  .job-card {
    padding: 15px;
  }

  .job-title {
    font-size: 16px;
  }

  .job-icon {
    font-size: 20px;
  }

  .location-icon {
    font-size: 36px;
  }

  .location-text {
    font-size: 14px;
  }
}

/* Location Search Header */
.location-search-container {
  width: 100%;
  background-color: #f8f9fa;
}

.location-header {
  background: linear-gradient(135deg, #5dd9c1 0%, #4cc9b0 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.location-header::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

.location-header::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -50px;
  left: 10%;
}

.search-box-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.location-search-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: transparent;
  color: #495057;
}

.location-search-input::placeholder {
  color: #adb5bd;
}

.location-search-input:focus {
  outline: none;
  box-shadow: none;
}

.location-search-btn {
  background-color: transparent;
  border: none;
  color: #17a2b8;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.location-search-btn:hover {
  color: #138496;
}

/* Map Container */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(247, 242, 242, 0.1);
}

/* Location Details */
.location-details {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-title {
  color: #e83e8c;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.location-address {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  color: white;
  font-size: 12px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item strong {
  color: #212529;
  font-weight: 600;
}

.contact-link {
  color: #ff7f00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ff7f00;
  text-decoration: underline;
}

.location-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rating-badge {
  color: #212529;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-muted {
  color: #6c757d;
  font-size: 0.85rem;
}

.view-map-link {
  color: #ff7f00;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-map-link:hover {
  color: #ff7f00;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-header {
    padding: 1.5rem 0;
  }

  .search-box-wrapper {
    max-width: 100%;
  }

  .location-details {
    padding: 1.5rem;
  }

  .location-title {
    font-size: 1.5rem;
  }

  .location-meta {
    gap: 1rem;
  }
}

/* Doctor Consultation Page Styles */

:root {
  --primary-cyan: #20b2aa;
  --accent-magenta: #ff1493;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --border-light: #e8e8e8;
  --bg-white: #ffffff;
  --bg-light: #f9f9f9;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-cyan: rgba(32, 178, 170, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
}

.doctor-consultation-page {
  background-color: var(--bg-white);
  min-height: 100vh;
}

/* ============= Contact Header ============= */

.contact-header {
  background: linear-gradient(90deg, #a8e6e1 0%, #7dd3cc 100%);
  border-bottom: 1px solid #9dd9d0;
}

.contact-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  min-height: 48px;
}

.phone-number {
  font-weight: 600;
  color: var(--accent-magenta);
  letter-spacing: 0.5px;
}

.language {
  color: #204718;
  /* opacity: 70%; */

}

.separator {
  color: var(--text-light);
  opacity: 0.5;
}

/* ============= Header Section ============= */

.header-section {
  background-color: var(--primary-color);
  /* border-bottom: 1px solid var(--border-light); */
}

/* Search and Filter Section */
.search-filter-section {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #17a697 100%);
  padding: 2rem 0;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 1rem;
  border: none;
  border-radius: 1px;
  font-size: 1rem;
  /* color: ; */
  background-color: var(--bg-white);
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #b0b0b0;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.search-icon {
  position: absolute;
  right: 1rem;
  color: #b0b0b0;
  pointer-events: none;
}

/* Filter Dropdowns */
.filters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.filter-select {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background-color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.filter-select:hover {
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.2);
}

/* Title Section */
.title-section {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.header-accent {
  width: 4px;
  height: 32px;
  background-color: var(--accent-magenta);
  border-radius: 2px;
  flex-shrink: 0;
}

.header-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.matches-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.5rem;
}

.matches-count {
  font-weight: 700;
  color: var(--accent-magenta);
  font-size: 1rem;
}

/* ============= Bootstrap Utility Classes ============= */

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.gap-3 {
  gap: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.m-0 {
  margin: 0;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-md-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* ============= Responsive Utilities ============= */

@media (max-width: 768px) {
  .px-md-5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header-title {
    font-size: 1.5rem;
  }

  .matches-text {
    font-size: 0.9rem;
  }

  .search-input {
    font-size: 0.9rem;
    padding: 0.75rem 0.875rem;
  }

  .filters-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .filter-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-section {
    padding: 0;
  }

  .search-filter-section {
    padding: 1.5rem 0;
  }

  .title-section {
    padding: 1rem 0;
  }

  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-5 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .header-title {
    font-size: 1.25rem;
  }

  .card-left-section,
  .card-right-section {
    padding: 1rem;
  }

  .doctor-image-wrapper {
    aspect-ratio: 2.5 / 3;
  }

  .doctor-name {
    font-size: 1rem;
  }

  .specialty-badge {
    font-size: 0.75rem;
  }

  .btn-view-more,
  .btn-book-appointment {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

.vl-cta-area-bg2 .vl-cta-bg2 {
  height: 392px;
  position: relative;
  padding: 70px 48px;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .vl-cta-area-bg2 .vl-cta-bg2 {
    height: 100%;
  }

  .vl-cta-thumb2 img {
    height: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .vl-cta-area-bg2 .vl-cta-bg2 {
    padding: 15px;
  }

  .vl-cta-area-bg2 .vl-cta-content2 .title {
    font-size: var(--vkl-font-size-font-s30);
    line-height: var(--vkl-specing-height40);
  }
}

.vl-cta-thumb2 img {
  height: 450px;
  width: 544px;
  object-fit: cover;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.vl-cta-area-bg2 .vl-cta-content2 .title {
  color: var(--vkl-text-text-6);
  font-size: var(--vkl-font-size-font-s44);
  line-height: var(--vkl-specing-height52);
  font-weight: var(--vkl-weight-semibold);
}

.vl-cta-area-bg2 .vl-cta-content2 .para {
  color: var(--vkl-text-text-7);
  font-size: var(--vkl-font-size-font-s16);
  line-height: var(--vkl-specing-height26);
  font-weight: var(--vkl-weight-medium);
}


/* ============================================
   FAQ Accordion Styles
   ============================================ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: transparent;
}

.accordion-item {
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(217, 70, 239, 0.1);
}

/* Accordion Button */
.accordion-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  position: relative;
}

.accordion-button:hover {
  background-color: #faf5ff;
}

.accordion-button.active {
  background-color: #faf5ff;
  border-bottom: 2px solid #e5e7eb;
}

/* Accordion Icon */
.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.25rem;
  color: #d946ef;
  flex-shrink: 0;
}

/* Accordion Question */
.accordion-question {
  flex: 1;
  color: #374151;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Accordion Arrow */
.accordion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #d946ef;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-button.active .accordion-arrow {
  transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ffffff;
  margin-bottom: 2px;
}

.accordion-content.show {
  max-height: 1000px;
  transition: all 0.4s ease;
}

.accordion-body {
  padding: 1.5rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-body ul {
  margin-bottom: 1rem;
}

.accordion-body li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.accordion-body li:last-child {
  margin-bottom: 0;
}

/* List Styling */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Links */
.faq-link {
  color: #d946ef;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.faq-link:hover {
  color: #c026d3;
  border-bottom-color: #d946ef;
}

/* Responsive Design */
@media (max-width: 768px) {
  .accordion-button {
    padding: 1rem 1rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .accordion-icon,
  .accordion-arrow {
    width: 20px;
    height: 20px;
  }

  .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .accordion {
    gap: 0.75rem;
  }

  .accordion-button {
    padding: 0.875rem 0.75rem;
    font-size: 0.9rem;
  }

  .accordion-body {
    padding: 0.875rem;
  }
}




/* Image Banner Container */
.image-banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px grey;


}

/* Image Banner Wrapper - creates the position context */
.image-banner-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #f5f5f5;
}

/* Image styling */
.image-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Banner - positioned at bottom */
.image-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 15%;
  background: linear-gradient(to right, rgba(60, 60, 60, 0.95), rgba(80, 80, 80, 0.95), rgba(60, 60, 60, 0.95));
  padding: 1rem 1.8rem;
  z-index: 10;
  /* Create a slight pink accent bar on the left */
  border-right: 5px solid var(--primary-color);
}

/* Banner Text styling */
.image-banner-text {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-transform: capitalize;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-banner-wrapper {
    height: 300px;
  }

  .image-banner-overlay {
    padding: 1rem 1.5rem;
  }

  .image-banner-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .image-banner-wrapper {
    height: 200px;
  }

  .image-banner-overlay {
    padding: 0.75rem 1rem;
  }

  .image-banner-text {
    font-size: 1rem;
  }
}



.services-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.services-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.services-header-line {
  flex: 1;
  height: 2px;
  background-color: var(--background-color);
  display: block;
}

.services-header-title {
  font-size: 28px !important;
  font-weight: 400;
  color: var(--primary-color);
  white-space: nowrap;
  margin: 0;
  text-align: center;
  flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .services-header-title {
    font-size: 22px !important;
  }

  .services-header {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .services-header-container {
    padding: 30px 15px;
  }

  .services-header-title {
    font-size: 20px;
  }

  .services-header {
    gap: 10px;
  }
}



/* Root Colors */

/* Global Styles */
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #ffffff;
}

/* Navbar Customization */
.navbar {
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--primary-light) !important;
}

.nav-link {
  color: #355826 !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-left: 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Family Physician Section */

.fp-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.fp-description {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 10px;
}

/* Services List */
.fp-services {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2px 3px;
  transition: transform 0.2s ease;
}

.service-item:hover {
  transform: translateX(5px);
}

.service-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  display: block;
  align-items: flex-start;
  justify-content: center;
  width: 24px;
  margin-bottom: 3px;
  /* text-align: center; */
}

.service-content {
  color: var(--text-light);
  font-size: 16px;
  /* line-height: 1.6; */
  text-align: justify;
}

.service-para {
  margin-top: 4px;
}

/* Image Section */
.fp-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

.fp-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.fp-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.fp-quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* First Aid Care Section */
.fac-section {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.fac-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.fac-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.fac-card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.fac-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fp-title {
    font-size: 24px;
  }

  .fp-description {
    font-size: 16px;
  }



  .fp-image-wrapper {
    margin-top: 30px;
  }

  .fp-quote {
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-size: 0.9rem;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .fp-title {
    font-size: 24px;
  }

  .fp-description {
    font-size: 16px;
  }

  .service-content {
    font-size: 0.85rem;
  }

  .fac-card {
    padding: 15px;
  }
}

.header-topbar {
  position: relative;
  padding: 8px 0;
  background-color: #eaf6f8;
  font-size: 15px;
  z-index: 10;
}

.header-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 53px solid transparent;
  border-left: 34px solid #ffffff;
  width: 0;
  z-index: 1;
  height: 52px;
}

.header-helpnum {
  display: flex;
  align-items: center;
}

.header-helpnum a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-helpnum a:hover {
  color: var(--theme-color) !important;
}

.header-language-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
}

.header-language-switcher .nav {
  display: flex;
  gap: 8px;
}

.header-language-switcher .nav-link {
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.header-language-switcher .nav-link {
  color: #355826 !important;
}

.header-language-switcher .nav-link:hover {
  color: var(--theme-color) !important;
  background-color: rgba(236, 0, 140, 0.05);
}

.header-language-switcher .nav-link.active {
  color: var(--theme-color) !important;
  background-color: rgba(236, 0, 140, 0.1);
}

@media (max-width: 768px) {
  .header-topbar {
    padding: 4px 0;
  }

  .header-helpnum {
    font-size: 14px;
  }

  .header-language-switcher .nav-link {
    padding: 0.125rem 0.375rem;
    font-size: 14px;
  }
}
