* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  /* background-color: #f1da95; */
  /* color: #1fb141; */
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #fff;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #1fb141;
  font-weight: 600;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.book-btn,
.call-btn {
  background: #1fb141;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.call-btn {
  background: #1fb141;
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px;
  background-color: rgba(30, 143, 255, 0.097);
  flex-wrap: wrap;
  gap: 30px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.locations {
  background: whitesmoke;
  color: #252525;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 25px;
  border: 2px solid black;
}

.before-after {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.image-box {
  position: relative;
  width: 280px;
  height: 280px;
  border: 4px solid #252525;
  border-radius: 50%;
  /* overflow: hidden; */
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.label {
  position: absolute;
  top: 0;
  left: 0;
  background: #1fb141;
  color: #fff;
  padding: 5px 15px;
  font-weight: 700;
  border-radius: 10px;
}

.stats {
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

/* ===== Form Section ===== */
.form-container {
  flex: 1;
  width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-container h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: dodgerblue;
}

.form-container p {
  font-size: 14px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select {
  padding: 12px;
  border: 1px solid #d1c5a3;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.enquire-btn {
  background: #1FB141;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #b98626;
}

.r-card{
  text-align: center;
  margin-bottom: 30px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .before-after {
    justify-content: center;
  }

  .form-container {
    margin-top: 30px;
    width: 100%;
  }

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }



  .r-card{
    text-align: left;
    margin-bottom: 30px;
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }

  .book-btn,
  .call-btn {
    width: 100%;
    text-align: center;
  }



  .hero-content h1 {
    font-size: 22px;
  }

  .image-box {
    width: 140px;
    height: 140px;
  }

  .subtitle{
    margin-bottom: 30px !important;
  }
}


/* ====== Info Section ====== */
.info-section {
  max-width: 950px;
  margin: 80px auto 60px;
  text-align: center;
  padding: 0 20px;
  background-color: #fff;
}

.info-section p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #252525;
}

/* ====== Results Section ====== */
.results-section {
  text-align: center;
  padding: 0 20px 30px;
  background: #fff;
}

.results-section h2 {
  font-size: 32px;
  color: dodgerblue;
  font-weight: 700;
  margin-bottom: 5px;
}

.results-section .subtitle {
  color: #7b6d60;
  font-size: 15px;
  margin-bottom: 50px;
}

/* ====== Gallery ====== */
.results-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.result-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0 100px;
}

.circle-img {
  position: relative;
  width: 170px;
  height: 170px;
  border: 4px solid #252525;
  border-radius: 50%;
  /* overflow: hidden; */
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.label {
  position: absolute;
  /* top: 110px;
  left: 24px; */
  background: dodgerblue;
  color: #fff;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 10px;
}

.result-card{
 border: 1px solid #1FB141;
 padding: 30px;
 border-radius: 8px;
 width: 45%;
 text-align: left;
}

.result-main{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 50px;
}

.r-card{
  text-align: left;
}

.r-card > p{
  margin-bottom: 9px;
}

/* ====== Responsive Design ====== */
@media (max-width: 900px) {
  .results-gallery {
    flex-direction: column;
    align-items: center;
  }

  .result-pair {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .circle-img {
    width: 130px;
    height: 130px;
  }

  .result-main{
    flex-direction: column;
  }

  .r-card > p{
    font-size: 14px;
  }

  .result-card{
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
  }

  .label{
    top: 109px;
    left: 23px;
  }

  .results-section h2 {
    font-size: 24px;
  }

  .results-section .subtitle {
    font-size: 14px;
  }
}

/* ====== Top Buttons ====== */
.top-buttons {
  margin: 40px auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: dodgerblue;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.btn:hover {
  background: #7b5b3b;
}

/* ====== Experts Section ====== */
.experts-section {
  padding: 30px 20px 80px;
  background-color: rgba(30, 143, 255, 0.211);
}

.experts-section h2 {
  font-size: 32px;
  color: #252525;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  color: #252525;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}

.expert-card{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.e-card1{
  flex-basis: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.e-card2{
  flex-basis: 65%;
}

@media screen and (min-width:320px) and (max-width:768px){
  .expert-card{
    flex-direction: column;
  }
  .e-card1{
    flex-basis: 100%;
  }
  .e-card2{
    flex-basis: 100%;
  }

  .subtitle{
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
  }

  .e-card2 p{
    text-align: center;
  }

  .e-card2 .subtitle{
    padding: 10px 1px; border: 1px solid black; border-radius:12px;
  }
}

/* Section styling */
.section {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #6b3e0a;
}

/* Video container */
.video-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-box {
  flex: 1 1 45%;
  max-width: 560px;
}

.video-box iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Why TamiraLife section */
.why-section {
  background-color: #fff;
  padding-top: 40px;
}

.why-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  /* max-width: 1000px; */
  margin: 0 90px;
}

.why-card {
  background-color: #1fb14125;
  border: 1px solid #f0e2cc;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #252525;
}

/* Responsive */
@media (max-width: 768px) {
  .video-box {
    flex: 1 1 100%;
  }

  .why-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

    .why-container{
    margin: 0 10px;
  }

  .about1{
    flex-basis: 100%;
  }

  .about2{
    flex-basis: 100%;
  }

  .about{
    flex-direction: column;
  }

}
  /* Hidden class for the “Others” input */
  #otherInput {
    display: none;
  }
/* about */
.about{
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: rgba(30, 143, 255, 0.097);
}

.about1{
  flex-basis: 20%;
}
.about1 img{
  width: 400px;
}
.about2{
  flex-basis: 60%;
}

.about-1{
  font-size: 26px;
  color: #252525;
  font-weight: 700;
  margin-bottom:10px ;
}

.about-2{
  font-size: 20px;
  margin-bottom: 20px;
}

.about2 > a{
  text-decoration: none;
  background-color: #1FB141;
  color: white;
  padding: 10px 20px;
  border-radius:8px;
}

/* Section styling */
.reviews-section {
  padding: 30px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #6b3e0a;
}

.section-subtitle a {
  text-decoration: none;
  color: #5b3b0c;
  font-weight: 600;
}

/* Container and cards */
.reviews-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background-color: #fff;
  border: 1px solid #f0e2cc;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0e0e0;
}

.reviewer-info h3 {
  margin: 0;
  font-size: 1.1rem;
  color: dodgerblue;
}

.stars {
  color: #f1c40f;
  margin: 3px 0 0 0;
}

.review-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .about-2{
    font-size: 18px;
  }

  .about-3{
    font-size: 15px;
  }

  .about-1{
    font-size: 22px;
  }
  
  .about1 img{
    width: 100%;
  }
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 1.8rem;
  color: #252525;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: dodgerblue;
  margin-bottom: 10px;
}

.faq-item p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}

/* Membership Section */
.membership-section {
  background-color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.membership-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #6b3e0a;
  margin-bottom: 30px;
}

.membership-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.membership-logos img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.membership-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-title, .membership-title {
    font-size: 1.4rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }

  .membership-logos img {
    width: 90px;
  }
}

/* Footer Section */
.tamira-footer {
  background-color: #3c3c3c;
  color: #dcdcdc;
  padding: 40px 20px 20px;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-logo .f-logo {
  width: 160px;
  height: auto;
  border-radius: 8px;
}

.footer-actions a{
  text-decoration: none;
  color: #fff;
  margin-bottom: 5px;
}

.f-head{
  font-size: 20px;
  font-weight: 600;
  color: dodgerblue;
}

/* Buttons */
.footer-actions {
  text-align: right;
}

.book-btn {
  display: inline-block;
  background-color: dodgerblue;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.phone-btn {
  display: inline-block;
  background-color: #1FB141;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: white;
  border: 1px solid dodgerblue;
  color: dodgerblue;
}

.phone-btn:hover {
  background-color: white;
  border: 1px solid #1FB141;
  color: #1FB141;
}

.phone-btn i {
  margin-right: 8px;
}

.emi-note {
  font-size: 0.85rem;
  color: #bfbfbf;
  margin-top: 8px;
}

/* Disclaimer */
.footer-disclaimer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #c4c4c4;
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 25px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.highlight {
  color: #1FB141;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #c19d68;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-actions {
    text-align: center;
  }

  .book-btn, .phone-btn {
    display: block;
    margin: 10px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


.container{width:100%;position:relative;background:#fff;padding:25px;border-radius:16px;overflow:hidden}
.slider{display:flex;transition:transform 0.6s ease-in-out}
.review-card{flex:0 0 100%;text-align:center;padding:30px 250px;}
.review-card img{width:120px;height:50px; object-fit:contain;margin-top:10px}
.name{font-weight:600;font-size:1rem;margin-bottom:5px}
.star{color:#fbbf24;margin-bottom:10px}
.text{font-size:.9rem;color:#555;line-height:1.4}
.dots{display:flex;justify-content:center;margin-top:15px;gap:8px}
.dot{width:10px;height:10px;border-radius:50%;background:#ccc;transition:all .3s;cursor:pointer}
.dot.active{background:#1e88e5;width:22px;border-radius:8px}

/* Responsive */
@media(max-width:600px){
  .container{max-width:100%;padding:20px}
  .review-card{padding: 30px 10px;}
  .section-subtitle{
    margin-bottom: 20px;
  }
}