@import "./head-foot.css";

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
  min-height: 100vh;
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  min-height: 80vh;
}

.hero-title {
  font-size: 4.125rem;
  color: var(--dark-green);
  line-height: 4.125rem;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.hero-search {
  position: relative;
  margin-bottom: 3rem;
  /* max-width: 500px; */
  margin: auto 3rem 30px;
}

.hero-search-input {
  width: 100%;
  padding: 1.2rem 1.8rem;
  font-size: 1.1rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-search-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.hero-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-blue);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 30px;
  justify-content: center;
}

.rating-text {
  font-weight: 600;
  color: var(--dark-green);
  font-size: 1.5rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #f0ad4e;
  font-size: 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* 
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
} */

/* 
.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.badge-icon.fda {
  background-color: #28a745;
}

.badge-icon.certified {
  background-color: #1a365d;
}

.badge-text {
  font-weight: 500;
  color: #2c3e50;
  font-size: 0.9rem;
} */

.hero-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-left: 2rem;
}

.hero-right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-left: 2rem;
}

.hero-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-card:hover {
  transform: translateY(-5px);
}

.hero-card.weight {
  background: url("../images/home-hero-3-1.png") no-repeat right / contain, linear-gradient(135deg, #ffe4d6 0%, #ffd4c4 100%);

}

.hero-card.sexual {
  background: url("../images/home-hero-1-1.png") no-repeat right / contain, linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.hero-card.hair {
  background: url("../images/home-hero-2-1.png") no-repeat right / contain, linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.hero-card.birth {
  background: url("../images/home-hero-3-1.png") no-repeat right / contain, linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

.hero_slider_main{
  /* background-color: rgba(255, 255, 255, 0.9); */
  background: linear-gradient(135deg, #ffe4d6 0%, #ffd4c4 100%);
  border-radius: 16px;
  padding: 15px;
  padding-bottom: 0px;
  position: relative;
}

.hero_slider_action{
  position: absolute;
  bottom: 18px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-green);
}

.card-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.card-btn {
  background-color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  color: #2c3e50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #2c3e50;
}

.card-image {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  opacity: 0.8;
}


/* Browse Section Styles */
.browse-section {
  padding: 7rem 0;
  background-color: #ffffff;
}

/* Left Side - Browse by Alphabet */
/* .browse-left {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */

.browse-tabs {
  display: flex;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 2rem;
}

.browse-tab {
  background: none;
  background-color: #f8f9fa;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.browse-tab.active {
  color: white;
  background-color: var(--dark-green);
  border-radius: 8px 8px 0 0;
}

.browse-tab:not(.active):hover {
  color: var(--light-green);
}

.browse-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.number-range {
  background: #fff;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
}

.number-range:hover {
  background-color: #e9ecef;
  color: var(--dark-green);
}

.browse-links {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #6c757d;
}

.browse-links a {
  color: var(--primary-blue);
  text-decoration: none;
  margin: 0 0.25rem;
}

.browse-links a:hover {
  text-decoration: underline;
}

/* Right Side - Search Section */
.browse-right {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-section-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 1rem;
}

.alphabet-circles {
  display: inline-flex;
  /* grid-template-columns: repeat(13, 1fr); */
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.circle-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle-btn:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.circle-btn.active {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  color: white;
}

.search-diseases-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.disease-search-bar {
  position: relative;
  margin-bottom: 2rem;
}

.disease-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.disease-search-input:focus {
  border-color: var(--dark-green);
}

.disease-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.1rem;
}

.popular-products {
  margin-top: 2rem;
}

.popular-products h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.products-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.product-item {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.product-item:hover {
  background-color: #e9ecef;
  color: var(--primary-blue);
  text-decoration: none;
}



@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left,
  .hero-right {
    padding: 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-right-bottom {
    grid-template-columns: 1fr;
  }

  .alphabet-circles {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-badges {
    justify-content: center;
  }

  .alphabet-circles {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-list {
    grid-template-columns: 1fr;
  }

}

.left-modal {
  width: 720px;
}

.content-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.search-title {
  font-size: 2.2rem;
}

.search-modal-content {
  padding: 1rem;
}

.search-close-btn {
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

.popular-searches {
  gap: 0.8rem;
}

.search-tag {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}


/* Category card styles  */
.category-section {
  background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
  padding: 7rem 0;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--dark-green);
}

.category-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  height: 100%;
  position: relative;
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 1rem;
  z-index: 2;
}

.category-text {
  flex-grow: 1;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  z-index: 2;
  color: var(--dark-green);
}

.category-link {
  background-color: var(--parrot-green);
  color: var(--dark-green);
  border-radius: 50px;
  font-size: .785rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  max-width: max-content;
}


/* Gradient overlay effect */
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  /* put gradient behind the content */
}

.category-card:hover::before {
  opacity: 1;
}

/* Ensure content is always above overlay */
.category-card * {
  position: relative;
  z-index: 1;
}

/* Different gradients for each card */
.card-1::before {
  background: linear-gradient(135deg, #56ccf2, #2f80ed);
}

/* Blue */
.card-2::before {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

/* Red-Pink */
.card-3::before {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

/* Green */
.card-4::before {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* Orange-Yellow */
.card-5::before {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

/* Purple */
.card-6::before {
  background: linear-gradient(135deg, #fc5c7d, #6a82fb);
}

/* Pink-Blue */

/* Ensure content stays visible over gradient */

.category-card:hover {
  color: #fff;
  /* make text/icons white on hover */
}

.category-card:hover .category-link {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--dark-green);
}

.category-card:hover .category-text {
  color: #fff;
}

.category-section .all-treatment .see-all {
  background-color: transparent;
  color: var(--dark-green);
  border-radius: 50px;
  font-size: 1.125rem;
  padding: 1rem 2.7rem;
  text-decoration: none;
  border: 1px solid var(--dark-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-section .all-treatment .see-all:hover {
  background: linear-gradient(180deg, var(--dark-green), var(--light-green));
  color: var(--parrot-green);
  text-decoration: none;
  border: 1px solid var(--dark-green);
  transition: all 0.3s ease;
}



/* Treatment styles  */
.treatment {
  background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
  padding: 7rem 0;
}

.treatment-card {
  border-radius: 16px;
  /* background: #fff; */
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 3rem 1.5rem;
  min-height: 280px;
  transition: transform 0.3s ease, background 0.4s ease;
}

/* Hover gradient variations */
.treatment-card:hover {
  transform: translateY(-5px);
}

/* .treatment-card.gradient-1:hover {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.treatment-card.gradient-2:hover {
  background: linear-gradient(135deg, #f6d365, #fda085);
}

.treatment-card.gradient-3:hover {
  background: linear-gradient(135deg, #c3cfe2, #c3e2dd);
}

.treatment-card.gradient-4:hover {
  background: linear-gradient(135deg, #84fab0, #8fd3f4);
} */

.treatment-img {
  max-height: 200px;
  object-fit: contain;
}

.productTitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.price {
  font-size: 0.9rem;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.productDescp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--dark-green);
}

.ctaBtn {
  font-size: 0.9rem;
  color: var(--dark-green);
  transition: all 0.3s;
}

.treatment-card:hover .productTitle,
.treatment-card:hover .price,
.treatment-card:hover .productDescp,
.treatment-card:hover .ctaBtn {
  color: var(--dark-green);
}

/* Swiper specific */
.mySwiper {
  padding-left: 2rem !important;
}

.swiper {
  width: 100%;
  padding-left: 2rem;
  /* initial left padding for first card */
}

.swiper-slide {
  width: 280px;
  display: flex !important;
  /* card width */
}

.swiper-wrapper {
  /* padding-bottom: 30px; */
}

.swiper-button-next,
.swiper-button-prev {
  color: #333 !important;
  font-size: 1rem;
  background-color: white;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem !important;
}



/* Trusted doctor / FDA approve section */
.doctor-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.section-title .subtitle {
  font-size: 2rem;
  color: var(--light-green);
  font-weight: 500;
}

.feature-card {
  background: transparent;
  border-radius: 20px;
  padding: 30px 25px 0px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.left-column {
  margin-bottom: 40px;
}

.right-column {
  margin-top: 60px;
}

.feature-icon {
  display: none;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.2;
}

.feature-subtitle {
  color: var(--light-green);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.feature-description {
  color: #6c757d;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.feature-btn {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  width: auto;
  text-align: center;
}

.feature-btn:hover {
  background: #34495e;
  color: white;
  transform: translateY(-2px);
}

.feature-image img {
  max-width: 520px;
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .feature-card {
    margin-bottom: 30px;
  }
}






/* Logos Carousel Section */
.logos-section {
  background: #f5f5f0;
  padding: 80px 0;
  border-top: 1px solid #e9ecef;
  overflow: hidden;
}

.logos-container {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  margin: 0 auto;
  max-width: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logos-track {
  display: flex;
  align-items: center;
}

.logoSwiper {
  width: 100%;
  height: 60px;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  min-height: 60px;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #6c757d;
  text-align: center;
}

.logo-forbes {
  /* font-family: 'Times New Roman', serif; */
  font-weight: 400;
}

.logo-gq {
  /* font-family: Arial, sans-serif; */
  font-weight: 700;
  font-size: 2.2rem;
}

.logo-newyork {
  /* font-family: 'Times New Roman', serif; */
  font-style: italic;
  font-weight: 300;
}

.logo-gear {
  /* font-family: Arial, sans-serif; */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
}

.logo-bloomberg {
  /* font-family: Arial, sans-serif; */
  font-weight: 400;
  font-size: 1.6rem;
}

/* Dots indicator */
.carousel-dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dee2e6;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: #2c3e50;
}

/* FAQ Section */
.faq-section {
  background: white;
  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) {
  .logos-container {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .logos-track {
    flex-wrap: wrap;
    gap: 20px;
  }

  .logo-item {
    flex-basis: calc(50% - 10px);
    min-height: 50px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .faq-question {
    font-size: 1.4rem;
    padding: 20px 0;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-item {
    flex-basis: 100%;
  }
}

/* Review Section CSS  */
.review-section {
  padding: 7rem 0;
}

.review-section .allReview {
  font-size: 1rem;
  color: var(--dark-green);
}

/* Blog SEction */
.blog-section {
  padding: 7rem 0;
  background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.blog-card .card {
  height: 70vh;
  /* large active card */
  position: relative;
}

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

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

.blog-card .blog-cardCta {
  max-width: max-content;
  place-self: flex-end;
}

.card-img-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.blogSwiper {
  padding: 20px 0;
}



/* Team section  */
.team-section {
  padding: 7rem 0;
  background: linear-gradient(1deg, #169F8680 -15.33%, #FFFFFF00 111.91%);
}

.teamSwiper {
  padding: 20px 0 !important;
}

.teamSwiper .swiper-slide .card .card-img-top {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.teamSwiper .swiper-slide .card .card-body {
  min-height: 145px;
}