/* Extracted from index.php head style block 1 */
a {
      font-weight: 600;
      color: #000;
    }

    .section-wrapper {
      /* background: #ffffff; */
      border-radius: 20px;
      padding: 30px;
    }

    .tab-header {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
    }

    .tab-active {
      background: #ff8c1a;
      color: #fff;
      padding: 10px 25px;
      border-radius: 12px 12px 0 0;
      font-weight: 600;
    }

    .tab-inactive {
      color: #0d6efd;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .service-card {
      /* border: 2px solid #003a70; */
      border-radius: 15px;
      padding: 25px 15px;
      text-align: center;
      height: 100%;
      transition: 0.3s;
      background: #fff;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      background: #d9ecfb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 32px;
    }

    .service-title {
      font-weight: 600;
      font-size: 16px;
    }


    .custom-tab {
      background: #fff;
      border: none;
      border-radius: 12px 12px 0 0;
      padding: 10px 25px;
      font-weight: 600;
      color: #000;
      margin-right: 10px;
    }

    .custom-tab.active {
      background: #007d67 !important;
      color: #fff !important;
    }

/* Extracted from index.php head style block 2 */
/* APPOINTMENT SECTION STYLING */
    .appointment-section {
      position: relative;
      background: linear-gradient(135deg, rgba(245, 249, 255, 0.92) 0%, rgba(224, 242, 255, 0.92) 50%, rgba(240, 248, 255, 0.92) 100%), url("../images/bg.webp") center/cover no-repeat;
      padding: 100px 0 !important;
      overflow: hidden;
    }

    .appointment-section::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 125, 103, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .appointment-section::after {
      content: "";
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(0, 165, 140, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(20px);
      }
    }

    .content {
      position: relative;
      z-index: 2;
    }

    .appointment-section h3 {
      font-weight: 800;
      font-size: 2.5rem;
      color: #003c71;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
    }

    .appointment-section h3::after {
      content: "";
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #007d67 0%, #00a58c 100%);
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 4px;
    }

    .search-box {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
      padding: 35px !important;
      margin: 40px auto !important;
      max-width: 1200px !important;
      border: 1px solid rgba(0, 125, 103, 0.1);
      backdrop-filter: blur(10px);
    }

    .search-box .input-group {
      position: relative;
    }

    .search-box .input-group-text {
      background: linear-gradient(135deg, #f0f8ff 0%, #e0f2ff 100%) !important;
      border: 1px solid rgba(0, 125, 103, 0.15) !important;
      color: #007d67 !important;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .search-box .input-group-text:hover {
      background: linear-gradient(135deg, #e0f2ff 0%, #d0ecff 100%) !important;
      color: #005a4f !important;
    }

    .search-box .form-control,
    .search-box select.form-control {
      border: 1px solid rgba(0, 125, 103, 0.2) !important;
      border-left: none !important;
      padding: 12px 16px !important;
      font-size: 15px !important;
      transition: all 0.3s ease;
      background: #fff;
    }

    .search-box .form-control:focus,
    .search-box select.form-control:focus {
      border-color: #007d67 !important;
      box-shadow: 0 0 0 0.2rem rgba(0, 125, 103, 0.15) !important;
      background: #fff;
    }

    .search-box .form-control::placeholder {
      color: #999;
      font-weight: 500;
    }

    .appointment-section .btn-primary {
      background: linear-gradient(135deg, #007d67 0%, #00a58c 100%);
      border: none;
      padding: 14px 50px;
      font-weight: 700;
      font-size: 16px;
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 125, 103, 0.25);
      margin-top: 8px;
    }

    .appointment-section .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 125, 103, 0.35);
      background: linear-gradient(135deg, #005a4f 0%, #008075 100%);
    }

    .feature-card {
      background: #fff !important;
      border-radius: 18px !important;
      padding: 30px 20px !important;
      text-align: center;
      border: 1px solid rgba(0, 125, 103, 0.12) !important;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
      height: 100% !important;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(0, 165, 140, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      transition: all 0.5s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 14px 35px rgba(0, 125, 103, 0.18) !important;
      border-color: #007d67 !important;
    }

    .feature-card:hover::before {
      transform: scale(1.2);
    }

    .feature-card i {
      font-size: 48px !important;
      color: #007d67 !important;
      margin-bottom: 16px !important;
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .feature-card:hover i {
      transform: scale(1.15);
      color: #005a4f;
    }

    .feature-card h6 {
      font-weight: 700 !important;
      color: #003c71 !important;
      font-size: 16px !important;
      margin-bottom: 10px !important;
      transition: color 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .feature-card:hover h6 {
      color: #007d67 !important;
    }

    .feature-card a {
      text-decoration: none !important;
      color: inherit;
    }

    .feature-card small {
      color: #666 !important;
      font-size: 13px !important;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1024px) {
      .search-box {
        padding: 25px !important;
      }

      .appointment-section h3 {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .appointment-section {
        padding: 70px 0 !important;
      }

      .appointment-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
      }

      .appointment-section h3::after {
        width: 70px;
        height: 4px;
        bottom: -10px;
      }

      .search-box {
        padding: 20px !important;
        margin: 30px auto !important;
      }

      .search-box .col-md-3,
      .search-box .col-md-12 {
        margin-bottom: 12px;
      }

      .feature-card {
        padding: 20px 15px !important;
        margin-bottom: 16px;
      }

      .feature-card i {
        font-size: 36px !important;
      }

      .feature-card h6 {
        font-size: 14px !important;
      }
    }

    html {
      scroll-behavior: smooth;
    }

    .book-appointment-btn {
      position: fixed;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background: #007d67;
      color: #fff;
      padding: 14px 12px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      border-radius: 0 12px 12px 0;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      letter-spacing: 1px;
      z-index: 9999;
      transition: all 0.3s ease;
    }

    .book-appointment-btn:hover {
      background: #007d67;
      color: #fff;
    }

/* Extracted from index.php head style block 3 */
/* Doctor Card */
    .doctor-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      transition: 0.3s;
      height: 100%;
    }

    .doctor-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    /* Image */
    .doctor-img-wrap {
      /* width:100%;
  height:320px;
  overflow:hidden; */
      width: 100%;
      height: auto;
      overflow: hidden;
    }

    .doctor-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Content */
    .doctor-body {
      padding: 20px;
    }

    .doctor-heading {
      font-size: 16px;
      font-weight: 600;
      color: #000;
      line-height: 1.4;
    }

    .doctor-card:hover .doctor-heading {
      color: #007d67;
    }

    /* Badge */
    .doctor-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #007d67;
      color: #fff;
      padding: 5px 14px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 20px;
    }


    @media (max-width: 767px) {
      .hide-mobile {
        display: none !important;
      }
    }

    .hide-desktop {
      display: none;
    }

    @media (max-width: 767px) {
      .hide-desktop {
        display: block !important;
      }
    }

    @media (max-width: 767px) {
      .book-appointment-btn {
        display: none !important;
      }
    }

/* Extracted from index.php head style block 4 */
.max-updates {
      background: linear-gradient(135deg, #f5f9fb 0%, #eef6fa 100%);
    }

    .updates-header {
      background: linear-gradient(135deg, #003c71 0%, #005a9c 100%);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 60, 113, 0.15);
      transition: all 0.4s ease;
    }

    .updates-header:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 60, 113, 0.25);
    }

    .updates-header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
    }

    .updates-header-content {
      position: relative;
      z-index: 1;
    }

    .updates-header h2 {
      font-size: 28px;
      color: #fff;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .updates-header p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .updates-header .btn {
      background: #ff8c1a;
      color: #fff;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
    }

    .updates-header .btn:hover {
      background: #ff7a00;
      transform: translateX(5px);
      box-shadow: 0 8px 20px rgba(255, 140, 26, 0.3);
      color: #fff;
    }

    .update-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .update-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 35px rgba(0, 60, 113, 0.15);
    }

    .update-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .update-card:hover img {
      transform: scale(1.05);
    }

    .update-card-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .update-card h6 {
      font-size: 16px;
      color: #003c71;
      margin-bottom: 10px;
      font-weight: 700;
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .update-card a:hover h6 {
      color: #ff8c1a;
    }

    .update-card p {
      font-size: 13px;
      color: #666;
      margin-bottom: 12px;
      flex-grow: 1;
      line-height: 1.5;
    }

    .update-date {
      font-size: 12px;
      color: #999;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .update-date i {
      color: #ff8c1a;
    }

    @media (max-width: 1024px) {
      .updates-header {
        padding: 30px;
        margin-bottom: 20px;
      }

      .updates-header h2 {
        font-size: 24px;
      }
    }

    @media (max-width: 768px) {
      .updates-header {
        padding: 25px;
        border-radius: 15px;
      }

      .updates-header h2 {
        font-size: 20px;
      }

      .updates-header p {
        font-size: 14px;
      }

      .update-card {
        border-radius: 12px;
      }

      .update-card img {
        height: 160px;
      }
    }

/* Extracted from index.php head style block 5 */
.stats-section {
      background: linear-gradient(135deg, #003c71 0%, #005a9c 50%, #0d7bb0 100%);
      padding: 80px 0;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 140, 26, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .stats-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -15%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(20px);
      }
    }

    .stats-container {
      position: relative;
      z-index: 1;
    }

    .stats-section .section-title {
      color: #fff;
      margin-bottom: 50px;
      font-size: 36px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .stats-section .section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #ff8c1a, #ff6600);
      display: block;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .stat-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      padding: 40px 25px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 140, 26, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      transition: all 0.5s ease;
    }

    .stat-card:hover {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
      border-color: rgba(255, 140, 26, 0.4);
      transform: translateY(-12px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 140, 26, 0.1);
    }

    .stat-card:hover::before {
      transform: scale(1.2);
    }

    .stat-icon {
      font-size: 48px;
      margin-bottom: 15px;
      display: inline-block;
      background: linear-gradient(135deg, #ff8c1a, #ff6600);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 1;
    }

    .stat-card:hover .stat-icon {
      transform: scale(1.15) rotate(5deg);
    }

    .stat-number {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
      background: linear-gradient(90deg, #fff, #f0f0f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 2px;
    }

    .stat-label {
      font-size: 16px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    @media (max-width: 1024px) {
      .stats-section {
        padding: 60px 0;
      }

      .stats-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
      }

      .stat-card {
        padding: 30px 20px;
      }

      .stat-number {
        font-size: 40px;
      }

      .stat-icon {
        font-size: 40px;
      }
    }

    @media (max-width: 768px) {
      .stats-section {
        padding: 50px 0;
      }

      .stats-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
      }

      .stat-card {
        padding: 25px 15px;
        border-radius: 15px;
      }

      .stat-number {
        font-size: 32px;
      }

      .stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
      }

      .stat-label {
        font-size: 14px;
      }
    }

