.about-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: url(../assesst/hero-img.png);
}

/* container layout */
.about-hero-wrap {
  max-width: 1280px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   TITLE
================================ */

.about-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ================================
   BREADCRUMB (RIGHT SIDE)
================================ */

.about-hero-right {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}

.about-hero-right .sep {
  opacity: 0.5;
}

.about-hero-right .title {
  color: #00b4d8;
  font-weight: 600;
}
.about-hero-right a {
  color: #ffffff;
}
.about-hero-right a :hover {
  color: #1475e2;
}

/* ================================
   DECORATIVE CURVE 
================================ */

.about-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 198, 209, 0.18),
    transparent 70%
  );
}
/* =========================================
   DOCTOR SCHEDULE SECTION
========================================= */

.doctor-schedule-section {
  background: var(--bg-light);
  padding: 100px 0;
}

/* Container scaling */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BADGES
========================================= */

.schedule-badge,
.appointment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 28px;
  transition: 0.3s ease;
}

.schedule-badge:hover,
.appointment-badge:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(25, 198, 209, 0.15);
}

/* =========================================
   TITLE
========================================= */

.schedule-title {
  font-size: 38px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 40px;
  line-height: 1.25;
}

/* =========================================
   FILTER PILLS
========================================= */

.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.filter-pill {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border-gray);
  background: #fff;
  font-size: 14px;
  color: var(--gray-text);
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* =========================================
   TABLE CARD
========================================= */
.schedule-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.schedule-table thead {
  background: #f2fbfd;
}

.schedule-table th,
.schedule-table td {
  padding: 18px 16px;
  border: 1px solid #edf1f5;
  font-size: 14px;
}

.schedule-table th {
  font-weight: 600;
  color: #1a1a1a;
}

.schedule-table .doctor-cell {
  text-align: left;
  font-weight: 600;
  color: #000137;
  background-color: #f2fbfd;
}

.schedule-table tbody tr:hover {
  background: #f9fbfc;
}

/* =========================================
   APPOINTMENT SECTION
========================================= */

.appointment-section {
  background: var(--bg-pale);
  padding: 120px 0;
}

.appointment-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--dark-secondary);
  text-align: center;
}
.appointment-title span {
  color: var(--primary-color);
}

/* =========================================
   FORM LAYOUT
========================================= */

.appointment-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-control-custom,
.form-select-custom {
  width: 100%;
  height: 64px;
  padding: 0 26px;
  border-radius: 40px;
  border: 1.5px solid var(--border-light);
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  transition: 0.25s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(25, 198, 209, 0.08);
}

/* Select arrow */
.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' stroke='%2319c6d1' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 18px;
  padding-right: 50px;
}

/* =========================================
   BUTTON
========================================= */

.appointment-btn {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 50px auto 0;
  height: 64px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* 1200 ↓ */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 14px 12px;
    font-size: 13px;
  }
}

/* 992 ↓ */
@media (max-width: 992px) {
  .schedule-title {
    font-size: 32px;
  }
  .appointment-title {
    font-size: 36px;
  }
  .table-responsive {
    overflow-x: auto;
  }

  .schedule-table {
    min-width: 900px;
  }
}

/* 768 ↓ */
@media (max-width: 768px) {
  .schedule-table thead {
    display: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table tr {
    background: #ffffff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .schedule-table td {
    border: none;
    padding: 8px 0;
    padding-left: 120px;
    text-align: left;
    position: relative;
    font-size: 13px;
  }

  .schedule-table td::before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 110px;
    font-weight: 600;
    color: #000137;
    white-space: nowrap;
  }

  /* Column Labels */

  .schedule-table td:nth-child(1)::before {
    content: "Room No";
  }
  .schedule-table td:nth-child(2)::before {
    content: "Doctor";
  }
  .schedule-table td:nth-child(3)::before {
    content: "Monday";
  }
  .schedule-table td:nth-child(4)::before {
    content: "Tuesday";
  }
  .schedule-table td:nth-child(5)::before {
    content: "Wednesday";
  }
  .schedule-table td:nth-child(6)::before {
    content: "Thursday";
  }
  .schedule-table td:nth-child(7)::before {
    content: "Friday";
  }
  .schedule-table td:nth-child(8)::before {
    content: "Saturday";
  }
  .schedule-table td:nth-child(9)::before {
    content: "Sunday";
  }

  .doctor-schedule-section,
  .appointment-section {
    padding: 80px 0;
  }

  .schedule-title {
    font-size: 28px;
  }
  .appointment-title {
    font-size: 30px;
  }

  .schedule-table {
    min-width: 750px;
  }

  .form-control-custom,
  .form-select-custom {
    height: 56px;
  }

  .appointment-btn {
    height: 56px;
  }
}

/* 576 ↓ */
@media (max-width: 576px) {
  .container {
    padding: 0 18px;
  }

  .schedule-title {
    font-size: 24px;
  }
  .appointment-title {
    font-size: 26px;
  }

  .schedule-table {
    min-width: 650px;
    font-size: 12px;
  }
  .schedule-table td {
    padding-left: 100px;
    font-size: 12px;
  }

  .schedule-table td::before {
    width: 90px;
    font-size: 12px;
  }

  .form-control-custom,
  .form-select-custom {
    height: 50px;
    font-size: 14px;
  }

  .appointment-btn {
    height: 50px;
    font-size: 14px;
  }
}

/* 400 ↓ */
@media (max-width: 400px) {
  .schedule-table {
    min-width: 600px;
  }
  .schedule-table td {
    padding-left: 85px;
  }

  .schedule-table td::before {
    width: 80px;
  }
  .schedule-badge,
  .appointment-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}
