.hero-section {
   background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
   min-height: 100vh;
   padding: 6.5rem 0 4rem;
   position: relative;
   overflow: hidden;
}

.nav-tabs {
   display: flex;
   gap: 0;
}

.nav-tab {
   background: rgba(255, 255, 255, 0.7);
   border: none;
   padding: 8px 16px;
   font-size: 14px;
   color: var(--dark-green);
   cursor: pointer;
   transition: all 0.3s ease;
   border-radius: 50px;
   margin-right: 4px;
   box-shadow: 0 3px 10px rgba(77, 77, 77, 0.3);
}

.nav-tab.active {
   background: rgba(255, 255, 255, 0.9);
   color: var(--light-green);
   font-weight: 500;
}

.breadcrumb {
   display: flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.6);
   padding: 8px 15px;
   border-radius: 20px;
   font-size: 14px;
   color: var(--dark-green);
   box-shadow: 0 3px 10px rgba(77, 77, 77, 0.3);
}

.breadcrumb-item a {
   color: var(--dark-green);
}


.category-title {
   font-size: 2.5rem;
   font-weight: 500;
   margin-bottom: 1.5rem;
   text-align: center;
   color: var(--dark-green);
}

/* main condition css  */
.condition-main-content {
   padding: 7em 0 0;
}

.condition-image img {
   width: 320px;
}

.condition-title {
   font-size: 3rem;
   color: var(--light-green);
   line-height: 1.1;
   margin-bottom: 20px;
}

.condition-detail-title {
   font-size: 4rem;
   color: var(--dark-green);
   line-height: 86px;
}

.rating-container {
   text-align: center;
}

.stars {
   font-size: 1.4rem;
   color: #ff8a65;
   letter-spacing: 2px;
}

.rating-number {
   font-size: 1.25rem;
   font-weight: 400;
   color: var(--dark-green);
   letter-spacing: 1px;
}

.rating-subtitle {
   color: var(--dark-green);
   font-size: 14px;
   margin-bottom: 15px;
}

.features-row {
   display: flex;
   gap: 40px;
   justify-content: center;
   margin-bottom: 30px;
}

.feature {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--dark-green);
   font-size: 14px;
}

.feature-icon {
   width: 30px;
   height: 30px;
}

.cta-button {
   background: linear-gradient(180deg, var(--dark-green), var(--light-green));
   color: #fff;
   border: none;
   padding: 15px 40px;
   font-size: 16px;
   font-weight: 500;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(77, 208, 225, 0.3);
   margin-bottom: 15px;
   max-width: 370px;
   width: 100%;
}

.cta-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(77, 208, 225, 0.4);
}

.delivery-text {
   color: var(--dark-green);
   font-size: 14px;
   text-align: center;
}

.delivery-days {
   font-weight: 600;
   color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
   .main-container {
      gap: 40px;
   }
}

@media (max-width: 768px) {
   .hero-container {
      flex-direction: column;
      gap: 20px;
   }

   .nav-tabs {
      order: 2;
   }

   .breadcrumb {
      order: 1;
      align-self: flex-start;
   }

   .main-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
   }

   .sidebar {
      order: -1;
   }

   .features-row {
      justify-content: center;
      gap: 20px;
   }
}

@media (max-width: 480px) {

   .weight-visual {
      width: 160px;
      height: 160px;
   }

   .scale-container {
      width: 120px;
      height: 120px;
   }

   .scale-platform {
      width: 80px;
      height: 60px;
   }

   .arrow-down {
      width: 50px;
      height: 50px;
      top: -35px;
      right: -25px;
      font-size: 1.2rem;
   }

   .features-row {
      flex-direction: column;
      gap: 15px;
      align-items: center;
   }

   .nav-tabs {
      flex-wrap: wrap;
      gap: 5px;
   }

   .nav-tab {
      padding: 10px 16px;
      font-size: 13px;
   }
}

/* New Section Styles */
.condition-detail-section {
   background: #f5f5f5;
   min-height: 100vh;
   padding: 5rem 0;
}

.video-sidebar {
   position: sticky;
   top: 20px;
   height: fit-content;
}

.video-container {
   background: white;
   border-radius: 15px;
   overflow: hidden;
   margin-bottom: 30px;
   cursor: pointer;
   transition: transform 0.3s ease;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-container:hover {
   transform: translateY(-2px);
}

.video-thumbnail {
   position: relative;
   background: transparent;
   height: 200px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: #333;
}


.carousel-container {
   background: white;
   border-radius: 15px;
   padding: 25px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-header {
   font-size: 16px;
   color: #666;
   margin-bottom: 20px;
   text-align: center;
}

.carousel-content {
   position: relative;
   height: 180px;
   overflow: hidden;
}

.carousel-item {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   opacity: 0;
   transform: translateX(100px);
   transition: all 0.5s ease;
   text-align: center;
}

.carousel-item.active {
   opacity: 1;
   transform: translateX(0);
}

.carousel-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(45deg, #4dd0e1, #26c6da);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: white;
   margin: 0 auto 15px;
}

.carousel-title {
   font-size: 1.1rem;
   font-weight: 600;
   color: #333;
   margin-bottom: 10px;
}

.carousel-description {
   font-size: 14px;
   color: #666;
   line-height: 1.5;
   max-width: 280px;
   margin: 0 auto;
}

.carousel-dots {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-top: 20px;
}

.dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: #ddd;
   cursor: pointer;
   transition: all 0.3s ease;
}

.dot.active {
   background: #4dd0e1;
   transform: scale(1.2);
}

.summary-section {
   background: white;
   border-radius: 15px;
   padding: 40px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.summary-title {
   font-size: 3rem;
   font-weight: 300;
   color: var(--dark-green);
   margin-bottom: 30px;
   font-family: "Simula", Simula-Book-fallback;
}

.summary-list {
   list-style: none;
   margin-bottom: 40px;
   padding-left: 0 0 0 20px;
}

.summary-list li {
   padding: 6px 0;
   color: var(--dark-green);
   font-size: 20px;
   line-height: 26px;
   position: relative;
   padding-left: 20px;
}

.summary-list li::before {
   content: "•";
   position: absolute;
   left: 0;
   color: #666;
   font-weight: bold;
}

.info-links {
   margin-bottom: 40px;
}

.info-link {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
   border-bottom: 1px solid #eee;
   cursor: pointer;
   transition: all 0.3s ease;
}

.info-link:hover {
   background: var(--parrot-green);
   padding-left: 10px;
   padding-right: 10px;
   border-radius: 10px;
}

.link-content {
   display: flex;
   align-items: center;
   gap: 15px;
}

.link-icon {
   font-size: 1.2rem;
}

.link-text {
   font-size: 20px;
   font-weight: 700;
   color: var(--dark-green);
   font-family: "Aeonik", Aeonik-Regular-fallback;
}

.arrow {
   font-size: 1.2rem;
   color: #666;
}

.reviewer-info {
   font-size: 16px;
   color: var(--dark-green);
   line-height: 1.6;
   margin-bottom: 15px;
}

.last-updated {
   font-size: 16px;
   color: #333;
   margin-bottom: 20px;
}

.review-history {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
   color: #666;
   font-size: 16px;
}

.review-history:hover {
   color: var(--light-green);
}

.review-history .history-link {
   text-decoration: underline;
}

/* Modal Styles */
.modal {
   display: none;
   position: fixed;
   z-index: 1000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(5px);
}

.modal-content {
   background-color: white;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   position: relative;
}

.video-modal-content {
   margin: 5% auto;
   width: 80%;
   max-width: 800px;
   padding: 30px;
}

.info-modal-content {
   position: fixed;
   right: 0;
   top: 0;
   width: 60%;
   height: 100%;
   border-radius: 15px 0 0 15px;
   overflow-y: auto;
}

.review-modal-content {
   margin: 10% auto;
   width: 60%;
   max-width: 600px;
   padding: 30px;
}

.close {
   color: #aaa;
   float: right;
   font-size: 28px;
   font-weight: bold;
   cursor: pointer;
   position: absolute;
   right: 20px;
   top: 15px;
}

.close:hover {
   color: #333;
}

.modal-body {
   padding: 40px 30px 30px;
}

.modal-body h3 {
   font-size: 1.5rem;
   margin-bottom: 20px;
   color: #333;
}

.video-wrapper {
   margin-top: 20px;
}

.review-timeline {
   margin-top: 20px;
}

.review-entry {
   padding: 15px 0;
   border-bottom: 1px solid #eee;
}

.review-date {
   font-weight: 600;
   color: #333;
   margin-bottom: 5px;
}

.review-author {
   color: #666;
   margin-bottom: 5px;
}

.review-status {
   font-size: 12px;
   color: #4CAF50;
   font-weight: 500;
}

/* Responsive for new section */

@media (max-width: 768px) {

   .video-sidebar {
      position: static;
      order: 2;
   }

   .summary-section {
      order: 1;
   }

   .info-modal-content {
      width: 90%;
      right: 5%;
   }

   .summary-title {
      font-size: 2rem;
   }
}

@media (max-width: 480px) {
   .content-section {
      padding: 20px 0;
   }

   .video-sidebar,
   .summary-section {
      padding: 20px;
   }

   .summary-title {
      font-size: 1.8rem;
   }

   .info-modal-content {
      width: 95%;
      right: 2.5%;
   }

   .video-modal-content {
      width: 95%;
      padding: 20px;
   }
}

/* Treatment section  */
.treatments-section {
   background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
   padding: 7rem 0;
}

.search-container {
   max-width: 600px;
   margin: 0 auto 60px;
   position: relative;
}

.search-input {
   border-radius: 50px;
   border: 2px solid #e9ecef;
   padding: 15px 60px 15px 25px;
   font-size: 16px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.search-input:focus {
   border-color: #007bff;
   box-shadow: 0 4px 20px rgba(0, 123, 255, 0.15);
   outline: none;
}

.search-btn1 {
   position: absolute;
   right: 8px;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   padding: 10px 15px;
   color: #6c757d;
   font-size: 18px;
   cursor: pointer;
   transition: color 0.3s ease;
}

.search-btn1:hover {
   color: var(--parrot-green);
   background: var(--dark-green);
   border-radius: 50px;
}

.treatment-card {
   background: white;
   border-radius: 20px;
   border: none;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   height: 100%;
   overflow: hidden;
}

.treatment-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.treatment-card .treatment-image {
   min-height: 130px;
   max-height: 130px;
   background-color: #ffffff;
   margin: 0 -20px;
   position: relative;
   overflow: hidden;
   text-align: center;
   -moz-border-radius: 10px 10px 0 0;
   -webkit-border-radius: 10px 10px 0 0;
   border-radius: 10px 10px 0 0;
}

.treatment-card .treatment-image:before {
   content: "";
   width: 133px;
   height: 133px;
   -moz-border-radius: 100px;
   -webkit-border-radius: 100px;
   border-radius: 100px;
   background-color: var(--parrot-green);
   position: absolute;
   top: 35%;
   left: 50%;
   -moz-transform: translateX(-50%);
   -o-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   -webkit-transform: translateX(-50%);
   transform: translateX(-50%);
}

.treatment-card .treatment-image img {
   position: relative;
   margin: 0 auto;
   max-width: 150px;
   margin-top: 10px;
}

.treatment-card .treatment-medicine-title {
   margin: 18px 0 10px;
   font-weight: 400;
   font-size: 24px;
   line-height: 1;
}

.card-body {
   padding: 30px 25px;
}

.treatment-title {
   font-size: 28px;
   font-weight: 700;
   color: #2d3436;
   margin-bottom: 8px;
}

.treatment-subtitle {
   color: #636e72;
   font-size: 14px;
   font-weight: 500;
   margin-bottom: 15px;
   display: block;
}

.treatment-description {
   color: #636e72;
   line-height: 1.6;
   margin-bottom: 25px;
   font-size: 15px;
   display: -webkit-box;
   line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.price-tag {
   font-size: 24px;
   font-weight: 700;
   color: #2d3436;
   margin-bottom: 20px;
}

.price-label {
   font-size: 14px;
   color: #636e72;
   font-weight: 500;
}

.btn-get-treatment {
   background: linear-gradient(180deg, var(--dark-green), var(--light-green));
   border: none;
   border-radius: 50px;
   padding: 12px 0;
   font-weight: 600;
   transition: all 0.3s ease;
   text-decoration: none;
   color: white;
   text-align: center;
   display: block;
}

.btn-get-treatment:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
   color: white;
   text-decoration: none;
}

.btn-read-more {
   border: 2px solid #e9ecef;
   background: transparent;
   border-radius: 50px;
   padding: 10px 0;
   font-weight: 600;
   color: #636e72;
   transition: all 0.3s ease;
   text-decoration: none;
   text-align: center;
   display: block;
}

.btn-read-more:hover {
   border-color: #667eea;
   color: #667eea;
   text-decoration: none;
   background: rgba(102, 126, 234, 0.05);
}

.treatment-section-title {
   text-align: center;
   margin-bottom: 50px;
}


@media (max-width: 768px) {
   .treatments-section {
      padding: 50px 0;
   }

   .treatment-section-title h2 {
      font-size: 28px;
   }

   .search-input {
      padding: 12px 50px 12px 20px;
      font-size: 14px;
   }

   .treatment-title {
      font-size: 24px;
   }

   .card-body {
      padding: 25px 20px;
   }
}

/* Health Partners Section */
.health-partners-section {
   background-color: #f8f9fa;
   padding: 80px 0;
}

.partner-card {
   background: #e9ecef;
   border-radius: 15px;
   padding: 25px;
   transition: all 0.3s ease;
   height: 100%;
   border: none;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.partner-header {
   margin-bottom: 20px;
}

.partner-name {
   font-size: 18px;
   font-weight: 600;
   color: #2d3436;
   margin-bottom: 3px;
}

.partner-designation {
   color: #6c757d;
   font-size: 14px;
   font-weight: 400;
   display: block;
}

.partner-image-container {
   margin-bottom: 20px;
   text-align: center;
}

.partner-image {
   width: 100%;
   max-width: 250px;
   height: 280px;
   border-radius: 10px;
   object-fit: cover;
   object-position: center;
}

.partner-info {
   text-align: center;
}

.registration-info {
   color: #6c757d;
   font-size: 14px;
   margin-bottom: 15px;
   font-weight: 400;
}

.meet-link {
   color: #495057;
   font-weight: 500;
   font-size: 14px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   transition: all 0.3s ease;
}

.meet-link:hover {
   color: #2d3436;
   text-decoration: none;
}

.meet-link i {
   font-size: 12px;
   transition: transform 0.3s ease;
}

.meet-link:hover i {
   transform: translateX(3px);
}

@media (max-width: 768px) {
   .health-partners-section {
      padding: 50px 0;
   }

   .partner-card {
      padding: 20px;
      margin-bottom: 20px;
   }

   .partner-name {
      font-size: 16px;
   }

   .partner-image {
      height: 220px;
   }
}


/* warning-sideEffect  */

.warning-sideEffect {
   background: #e9ecef;
   color: #000;
   padding: 5rem 3rem;
   border-radius: 15px;
   font-size: 14px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.warning-sideEffect .warning-title h4 {
   font-size: 36px;
   font-weight: 400;
   margin: 50px 0 20px;
   line-height: 1;
   color: var(--dark-green);
}

.warning-sideEffect p {
   font-size: 18px;
}

/* Healthcare process */
.healthcare-process-section {
   background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
   padding: 80px 0;
   position: relative;
   overflow: hidden;
}

.hero-subtitle {
   font-size: 1.3rem;
   color: #6c757d;
   margin-bottom: 3rem;
   line-height: 1.5;
}

.process-slider {
   overflow: hidden;
}

.process-card {
   background: white;
   border-radius: 20px;
   padding: 30px 20px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   position: relative;
   min-height: 300px;
   transition: all 0.3s ease;
}

.process-card {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.phone-container {
   position: relative;
   height: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: white;
   overflow: hidden;
   border-radius: 20px 20px 0 0;

}

/* .card-content {
   padding: 10px 30px 25px;
   text-align: center;
   background: white;
} */

.card-title {
   font-size: 22px;
   font-weight: 600;
   color: #2d3436;
   margin-bottom: 15px;
   line-height: 1.3;
}

.card-description {
   font-size: 15px;
   color: #6c757d;
   line-height: 1.5;
}

/* Condition list item section  */
.more-condition-health-section {
   background: transparent;
   padding: 7rem 0;
}

.condition-card {
   background: linear-gradient(135deg, #a8edea, #fed6e3);
   padding: 25px 20px;
   transition: all .3s ease-in-out;
   border-radius: 10px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   position: relative;
   align-self: stretch;
   height: 100%;
   min-height: 370px;
}

.condition-card .condition-card-image img {
   width: 94px;
   margin-bottom: 20px;
}

.condition-card .condition-card-title h3 {
   font-size: 22px;
   font-weight: 600;
   color: var(--dark-green);
   margin-bottom: 25px;
   line-height: 1.2;
}

.condition-card .condition-card-details {
   display: flex;
   flex-grow: 1;
   flex-flow: column wrap;
}

.condition-card .condition-card-details p {
   color: rgba(40, 40, 50, .6);
   margin: 0 0 20px;
}

.condition-card .condition-read-more a {
   font-size: 16px;
   padding: 11px 30px;
   font-weight: 400;
   margin-top: 10px;
   height: 40px;
   width: 100%;
   max-width: 240px;
   background-color: transparent;
   border: 1px solid transparent;
   border-color: var(--dark-green);
   color: var(--dark-green);
   border-radius: 50px;
}




/* FAQ Section */
.faq-section {
   background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
   padding: 100px 0;
}

.faq-item {
   border-bottom: 1px solid #e9ecef;
   margin-bottom: 0;
}

.faq-question {
   background: transparent;
   border: none;
   width: 100%;
   text-align: left;
   padding: 1rem 0;
   font-size: 1.2rem;
   font-weight: 600;
   color: #2c3e50;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: color 0.3s ease;
}

.faq-question:hover {
   color: #34495e;
}

.faq-question:focus {
   outline: none;
}

.faq-icon {
   font-size: 1.2rem;
   color: #2c3e50;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: #f8f6f0;
   display: flex !important;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   flex-shrink: 0;
}

.faq-question:hover .faq-icon {
   background: #2c3e50;
   color: white;
}

.faq-answer {
   padding: 0;
   font-size: 1.1rem;
   line-height: 1.6;
   color: #6c757d;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
   max-height: 300px;
   padding: 0 0 30px 0;
}

.faq-item.active .faq-icon {
   transform: rotate(45deg);
   background: #2c3e50;
   color: white;
}

/* Responsive Design */
@media (max-width: 768px) {

   .faq-question {
      font-size: 1.4rem;
      padding: 20px 0;
   }

   .faq-answer {
      font-size: 1rem;
   }
}