/* psychiatrist pages  */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #d2bebe;
  color: #222;
}

.filter-bar {
  background: red;
  padding: 6px 16px;
  display: flex;
  gap: 12px;
}

.filter-bar select {
  padding: 5px 12px;
  font-size: 15px;
  border-radius: 4px;
  border: none;
  background:red;
  color: white;
}

.main-container {
  display: flex;
  padding: 24px;
  gap: 24px;
}

.left-section {
  flex: 3;
  background: white;
  padding: 20px;
  border-radius: 8px;
}

.right-section {
  flex: 1;
}

.subtitle {
  margin-top: 4px;
  color: #555;
  font-size: 15px;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

.doctor-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.clinic-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid #ddd;
}

.doctor-info {
  flex: 2;
}

.doctor-info h3 {
  margin: 0;
}

.doctor-info a {
  color: red;
  text-decoration: underline;
}

.rating-row {
  margin-top: 8px;
}

.rating {
  background:red;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-right: 10px;
  display: inline-block;
}

.stories {
  color: red;
  font-weight: 500;
}

.book-button {
  flex-shrink: 0;
  align-self: center;
}

.book-button button {
  background: red;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.location-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.location-box h3 {
  margin: 0 0 10px;
}

.note {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.location-tags button {
  background: #f7f7f7;
  border: 1px solid #ccc;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.location-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-link {
  color: red;
  text-decoration: underline;
  font-weight: 500;
}

.current-location {
  background:red;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* end psychiatrist list page css */

/* header css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #e0e0e0;
  background-color: red;
  flex-wrap: wrap;
}

.left,
.right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: red;
  margin-right: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
}

.blue {
  background-color: #2d2d7f;
}

/* .cyan {
  background-color: #00c3d8;
} */

.logo-text {
  font-weight: 700;
  color: #2d2d7f;
}

.menu a {
  margin-right: 24px;
  text-decoration: none;
  font-size: 15px;
  color: white;
  font-weight: 600;
}

.dropdown {
  position: relative;
  margin-right: 20px;
}

.dropdown-btn {
  background: none;
  border: none;
  font-size: 14px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0px;
}

.new-tag {
  background-color: #2d2d7f;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 4px;
  margin-right: 6px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  white-space: nowrap;
  font-size: 14px;
  z-index: 1000;
}

.login-btn {
  border: 1px solid white;
  padding: 6px 6px;
  border-radius: 6px;
  font-size: 12px;
  color: white;
  text-decoration: none;
  margin-right: 4px;
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .left,
  .right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .logo {
    margin-bottom: 10px;
  }

  .menu a,
  .dropdown,
  .login-btn {
    margin: 8px 0;
  }

  .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    background: #f9f9f9;
  }

  .dropdown-btn {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .menu a {
    font-size: 14px;
  }

  .dropdown-btn {
    font-size: 13px;
  }

  .login-btn {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* header css end */





/* search bar css start */
/*.search-ui-wrapper {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  font-family: "Segoe UI", sans-serif;*/
/*  padding: 5px;*/
/*  background-color: #fff;*/
/*}*/

/*.search-ui-box {*/
/*  display: flex;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 2px;*/
/*  overflow: hidden;*/
/*  min-width: 600px;*/
/*  height: 40px;*/
/*  align-items: center;*/
/*}*/

/*.search-location,*/
/*.search-query {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  padding: 0 15px;*/
/*  flex: 1;*/
/*}*/

/*.search-icon {*/
/*  margin-right: 10px;*/
/*  font-size: 16px;*/
/*  color: #333;*/
/*}*/

/*.search-text {*/
/*  font-size: 16px;*/
/*  color: #222;*/
/*}*/

/*.search-divider {*/
/*  width: 1px;*/
/*  height: 60%;*/
/*  background-color: #ccc;*/
/*}*/

/*.prime-info-box {*/
/*  margin-left: 30px;*/
/*}*/

/*.prime-info-text {*/
/*  font-size: 16px;*/
/*  color: #333;*/
/*  line-height: 1.4;*/
/*}*/

/*.prime-subtext {*/
/*  color: #888;*/
/*  font-size: 14px;*/
/*}*/

/*.prime-highlight {*/
/*  color: red;*/
/*  font-weight: bold;*/
/*}*/

/*.prime-icon {*/
/*  background:red;*/
/*  color: white;*/
/*  font-size: 12px;*/
/*  border-radius: 50%;*/
/*  padding: 2px 6px;*/
/*  margin-left: 4px;*/
/*}*/


/* search bar css end */


/* doctor-card css start */
.doctor-card {
  display: flex;
  border: 1px solid #ccc;
  padding: 20px;
  gap: 30px;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 10px;
}

.profile {
  width: 40%;
  display: flex;
  gap: 20px;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.profile-info {
  flex: 1;
}

.badge {
  display: inline-block;
  background-color: red;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 5px 0;
}

.book-btn {
  margin-top: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.availability {
  width: 60%;
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

.hidden {
  display: none;
}

.date-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.date-tabs button {
  padding: 6px 12px;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
}

.date-tabs button.active {
  background:red;
  color: white;
}

.slots {
  margin-top: 10px;
}

.slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-group button {
  padding: 6px 12px;
  border: 1px solid red;
  background-color: white;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

/* doctor-card css end */

/* home_Search_bar css start */

   * {
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    .search-wrapper {

     
      display: flex;
      width: 700px;
      border: 1px solid #ccc;
      border-radius: 0px;
      overflow: hidden;
    }

    .location-section,
    .input-section {
      display: flex;
      align-items: center;
      padding: 10px 15px;
    }

    .location-section {
      flex: 1;
      border-right: 1px solid #ccc;
    }

    .input-section {
      flex: 4;
    }

    .icon {
      margin-right: 8px;
      color: #666;
    }

    .input-section input {
      border: none;
      outline: none;
      width: 100%;
      font-size: 15px;
      color: #333;
    }
    /* home_Search_bar css end */


    /* card-3 box css start */
    
    
  

    .features-container {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .feature-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 260px;
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-image {
      height: 220px;
      background-size: cover;
      background-position: center;
    }

    .feature-content {
      padding: 20px;
    }

    .feature-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 6px;
      color: #222;
    }

    .feature-desc {
      color: #555;
      font-size: 14px;
    }

    /* Backgrounds for each card */
    .card-1 .feature-image {
      background-color: #dbeafe;
     background-image: url("asset/images/home/Artboard 1 20 1.png");
         height: 275px;
     
    }

    .card-2 .feature-image {
      background-color: #c2e5e5;
      background-image:  url("/asset/images/home/Artboard\ 1\ copy\ 12.png");
          height: 275px;
    }

    .card-3 .feature-image {
      background-color: #e0d4f7;
      background-image: url("/asset/images/home/Artboard\ 1\ copy\ 2\ 5.png");
          height: 275px;
    }

    /* card-3 box css end  */

    /* consult-header css start */
    .consult-header-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: auto;
      margin-bottom: 30px;
    }

    .consult-title-section h2 {
      font-size: 26px;
      color: #2f2f2f;
      margin: 0 0 8px 0;
    }

    .consult-title-section p {
      font-size: 16px;
      color: #555;
      margin: 0;
    }

    .btn-specialties-link {
      border: 2px solid red;
      color: white;
      padding: 10px 18px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 500;
      background-color: red;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .btn-specialties-link:hover {
      background-color: #e5f8ff;
    }

    @media (max-width: 768px) {
      .consult-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .btn-specialties-link {
        align-self: flex-start;
      }
    }

    /* consult-header css end */


    /* consult-section css start*/

    .consult-section {
  max-width: 1300px;
  margin: auto;
  padding: 10px;
  text-align: center;
}

.consult-section h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
}

.consult-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.consult-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.consult-card {
  width: 140px;
  text-align: center;
}

.consult-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #eef3ff;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 10px;
}

.consult-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}

.consult-link {
  font-size: 13px;
  color: red;
  text-decoration: none;
  font-weight: bold;
}

.consult-link:hover {
  text-decoration: underline;
}

.view-all-btn {
  position: absolute;
  right: 60px;
  top: 40px;
  border: 1px solid white;
  color: red;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.view-all-btn:hover {
  background: #f0faff;
}

.relative-container {
  position: relative;
}

/* ✅ Responsive Design Below */
@media (max-width: 1024px) {
  .consult-card {
    width: 120px;
  }

  .consult-card img {
    width: 80px;
    height: 80px;
  }

  .view-all-btn {
    right: 20px;
    top: 20px;
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .consult-section h2 {
    font-size: 22px;
  }

  .consult-section p {
    font-size: 14px;
  }

  .consult-card {
    width: 30%;
    min-width: 100px;
  }

  .consult-card img {
    width: 70px;
    height: 70px;
  }

  .consult-title {
    font-size: 13px;
  }

  .consult-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .consult-card {
    width: 45%;
  }

  .consult-card img {
    width: 60px;
    height: 60px;
  }

  .consult-title {
    font-size: 12px;
  }

  .view-all-btn {
    position: static;
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
}


    /* consult-section css end*/

    /* doctor-slider-section css start */
    .slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.specialist-card-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.specialist-card {
  flex: 0 0 auto;
  width: 280px;
  margin-right: 16px;
}
    
     .doctor-slider-section {
      max-width: 1300px;
      margin: auto;
      position: relative;
    }

    .slider-wrapper {
      overflow: hidden;
      position: relative;
    }

    .specialist-card-track {
      display: flex;
      gap: 24px;
      scroll-behavior: smooth;
      overflow-x: auto;
      padding-bottom: 10px;
    }

    .specialist-card-track::-webkit-scrollbar {
      display: none;
    }

    .specialist-card {
      flex: 0 0 280px;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .specialist-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .specialist-content {
      padding: 15px;
    }

    .specialist-title {
      font-weight: 600;
      font-size: 18px;
      margin: 0 0 6px 0;
      color: #2f2f2f;
    }

    .specialist-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.4;
    }

    .highlighted-text {
      color:  #2f2f2f;
      font-weight: bold;
    }

    .nav-btn {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      background-color: white;
      border: none;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
      color: red;
    }

    .nav-left {
      left: -20px;
    }

    .nav-right {
      right: -20px;
    }

    @media (max-width: 768px) {
      .specialist-card {
        flex: 0 0 80%;
      }

      .nav-btn {
        display: none;
      }
    }


    /* doctor-slider-section css end */

    /* articles-section start */

    .articles-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 40px 20px;
  margin: auto;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  gap: 30px;
}

.left-column {
  flex: 1;
  min-width: 280px;
}

.left-column h2 {
  font-size: 25px;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.left-column p {
  font-size: 16px;
  color: red;
  margin-bottom: 25px;
  line-height: 1.5;
}

.left-column a {
  display: inline-block;
  background-color: red;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.left-column a:hover {
  background-color: #0099d8;
}

.right-column {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.article-card {
  width: 300px;
  flex: 1 1 300px;
  max-width: 100%;
}

.article-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.article-category {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: red;
  margin: 12px 0 6px;
}

.article-title {
  font-size: 17px;
  font-weight: bold;
  color: #222;
  margin: 0 0 6px;
}

.article-author {
  font-size: 15px;
  color: #555;
}

/* ✅ Medium screens: Tablets */
@media (max-width: 1024px) {
  .articles-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .right-column {
    justify-content: center;
  }

  .left-column {
    text-align: center;
  }

  .left-column a {
    margin: 0 auto;
  }
}

/* ✅ Small screens: Mobiles */
@media (max-width: 600px) {
  .right-column {
    flex-direction: column;
    align-items: center;
  }

  .article-card {
    width: 90%;
  }

  .left-column h2 {
    font-size: 22px;
  }

  .left-column p {
    font-size: 15px;
  }

  .left-column a {
    padding: 10px 20px;
    font-size: 14px;
  }
}

    /* articles-section end */


    /* testimonial section css */
    .monial{
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background: #fdfdfd;
    }

 .testimonial-container {
      width: 80%;
      max-width: 800px;
      text-align: center;
      position: relative;
    }

    .testimonial-header {
      font-size: 2rem;
      color: #333;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .testimonial-slide {
      display: none;
      transition: all 0.5s ease-in-out;
    }

    .testimonial-slide.active {
      display: block;
    }

    .testimonial-text {
      font-size: 1.4rem;
      color: #111;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .testimonial-user {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1rem;
      color: red;
      font-weight: 600;
    }

    .testimonial-user-icon {
      width: 36px;
      height: 36px;
      background: #d0d3d4;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
    }

    .testimonial-user-icon::before {
      content: "👤";
      font-size: 18px;
    }
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem; /* Smaller font size */
  color: red;       /* Lighter color */
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 10;  /* Light weight */
  transition: color 0.3s ease;
}



  

    .prev-btn {
      left: -40px;
    }

    .next-btn {
      right: -40px;
    }

    .dot-container {
      margin-top: 20px;
    }

    .dot {
      height: 7px;
      width: 7px;
      margin: 0 5px;
      background-color: #ddd;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
    }

    .dot.active {
      background-color: red;
    }



    /* faq css  */

       .extra-faq {
      font-family: 'Lato', sans-serif;
      margin: 70px;
      color: #333;
      overflow-x: hidden;
    }

    .faq-container {
      display: grid;
      grid-template-columns: 1fr 1fr ;
      gap: 20px;
    }

    .faq-item {
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
    }

    .faq-question {
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      position: relative;
      padding-left: 10px;
      margin-bottom: 10px;
    }

    .faq-question::before {
      content: "▸";
      position: absolute;
      left: 0;
      top: 0;
      transition: transform 0.2s ease;
    }

    .faq-item.active .faq-question::before {
      transform: rotate(90deg);
    }

    .faq-answer {
      font-size: 16px;
      color: #555;
      display: none;
      padding-left: 10px;
    }

    .faq-short {
      font-size: 16px;
      color: #555;
      padding-left: 10px;
      white-space: wrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .read-more {
      font-size: 16px;
      color: #555;
      padding-left: 10px;
      text-decoration: underline;
      cursor: pointer;
      display: inline-block;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-short,
    .faq-item.active .read-more {
      display: none;
    }
    



    /* for responsive design */

    

   