@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --black-color: #383838;
  --white-color: #fff;
  --gold-color: #cf9904;
  --gold-light-color: #cf99047b;
  /* font */
  --rubik-font: "Rubik", sans-serif;
  --poppins-font: "Poppins", sans-serif;
  --lato-font: "Lato", sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* ======================================= */
.container {
  width: 80%;
  margin: auto;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  font-family: var(--lato-font);
}
h1 {
  font-size: 70px;
  font-family: var(--poppins-font);
  color: var(--black-color);
  line-height: 100%;
}
.hero-title {
  font-size: 35px;
  font-family: var(--poppins-font);
}
h2 {
  font-size: 28px;
  font-family: var(--poppins-font);
}
h3 {
  font-family: var(--poppins-font);
}
.title {
  font-size: 70px;
  font-family: var(--poppins-font);
  color: var(--black-color);
  line-height: 70%;
}
p {
  font-family: var(--lato-font);
}
.btn {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
}
.hero-title {
  color: var(--gold-color);
  font-size: 45px;
}
/* ======================================= */

.header-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}
header {
  background-color: var(--black-color);
  padding: 20px 0px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menus ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.menus ul li a,
.sub {
  padding: 20px 0px;
  color: var(--white-color);
  font-weight: 600;
  font-size: 18px;
  font-family: var(--lato-font);
  cursor: pointer;
}
.sub {
  position: relative;
}
.sub-menu {
  position: absolute;
  display: none;
  flex-direction: column;
  background-color: var(--black-color);
  border-top: 8px solid white;
}
.active {
  display: flex;
}
.sub-menu .sub-list {
  padding: 24px;
  transition: all 0.3s ease-in-out;
}
.sub-menu .sub-list:hover {
  background-color: #cf9904;
  transition: all 0.3s ease-in-out;
}
.add-cont {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.info-cont {
  display: flex;
  gap: 20px;
}
.logo img {
  width: 150px;
}
.header-info a {
  color: var(--gold-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.social a {
  color: var(--black-color);
  margin-bottom: 5px;
}
.social a i {
  color: var(--white-color);
}
.insta {
  background-color: pink;
  font-size: 20px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whats {
  background-color: green;
  font-size: 20px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line h2 {
  margin-bottom: 10px;
}
.line p {
  margin-bottom: 40px;
}
.btn-icon {
  width: 30px;
  height: 30px;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon i {
  transition: all 0.4s ease-in-out;
}
.btn:hover .btn-icon i {
  rotate: -45deg;
  transition: all 0.4s ease-in-out;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* height: 65vh; */
}
.hero-slide-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.hero {
  flex: 0 0 100%;
  padding-top: 100px;
  background: url(./imgs/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.hero-img img {
  width: 100%;
}
.prev,
.next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 100;
  border-radius: 50%;
  padding: -3px;
}
.nav-btn,
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
/*  */
.section1 {
  padding: 80px 0px;
}
.section1 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.center-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 36px;
  font-family: serif;
  letter-spacing: 4px;
}
.base-line {
  width: 45%;
  height: 4px;
  background-color: var(--gold-color);
  margin: 15px auto 30px auto;
  position: relative;
}
.center-para {
  text-align: center;
  width: 70%;
  margin: auto;
  padding: 30px;
  margin-bottom: 60px;
  font-size: 16px;
}
.section-title p {
  background-color: var(--gold-light-color);
}
.ball {
  width: 10px;
  height: 10px;
  background-color: var(--gold-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ball1 {
  left: 0;
}
.ball2 {
  right: 0;
}
.center-title span {
  color: var(--gold-color);
}
h2 span {
  color: var(--gold-color);
}

.section-text h2 {
  font-size: 26px;
  margin-bottom: 30px;
}
.section-text ul {
  margin-bottom: 30px;
}
.section-text ul li {
  margin-bottom: 15px;
}
.section-text ul li p {
  display: flex;
  align-items: start;
}
.section-text .title {
  padding-top: 20px;
  font-size: 50px;
  line-height: 10%;
}
.section-text ul li img {
  width: 40px;
}
.section-img img {
  width: 80%;
}
.statistics {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.statistics-box {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.statistics-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  padding: 20px;
  background-color: var(--gold-light-color);
  margin-bottom: 10px;
  border-radius: 50%;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-box {
  width: 200px;
  padding: 10px;
  cursor: pointer;
  border: 2px solid var(--gold-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--poppins-font);
  transition: 0.3s;
  border-radius: 10px;
}
.service-box img {
  width: 60px;
}
.service-box p {
  text-align: center;
  font-size: 16px;
}
.service-detial {
  margin-bottom: 80px;
}
.service-detial .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px auto;
  gap: 40px;
}
.ser-img {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.ser-det {
  flex: 2;
  min-width: 300px;
}
.service-box.active {
  background-color: var(--gold-color);
  font-weight: bold;
}
.ser-det h2 {
  color: var(--gold-color);
  margin-bottom: 20px;
}
.ser-det p {
  margin-bottom: 10px;
}
.ser-det h3 {
  margin-bottom: 10px;
}
.ser-det ul li {
  font-family: var(--rubik-font);
  margin-bottom: 5px;
}
.ser-det ul {
  margin-bottom: 30px;
}
.google-review-con {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 40px;
  padding: 0px 30px;
}

.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.profile-pic {
  width: 48px;
  height: 48px;
  background-color: #4285f4;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  text-transform: uppercase;
}

.review-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.stars {
  color: #fbbc05;
  font-size: 1.1rem;
}
.faq-section {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  font-family: var(--poppins-font);
  color: var(--black-color);
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--gold-color);
  font-family: var(--rubik-font);
}

.faq-item {
  border-bottom: 1px solid var(--gold-light-color);
  padding: 1rem 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black-color);
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
  font-family: var(--rubik-font);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.95rem;
  font-family: var(--lato-font);
  color: #555;
}

.faq-answer p {
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

.main-footer {
  background-color: var(--black-color);
  color: white;
  font-family: var(--poppins-font);
  padding: 2rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 1rem;
  background-color: var(--white-color);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col a {
  color: var(--white-color);
  margin-bottom: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-socials a {
  margin-right: 10px;
  color: white;
  font-size: 1.2rem;
}

.footer-socials a:hover {
  color: var(--gold-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #ffffff33;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--white-color);
  text-decoration: underline;
}
.why-choose-us {
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 60px 20px;
  font-family: var(--rubik-font);
  margin-bottom: 80px;
}
.why-choose-us .center-para {
  background-color: transparent;
  padding: 0px;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.choose-box {
  background-color: var(--gold-light-color);
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-5px);
}

.choose-box h3 {
  color: var(--gold-color);
  font-family: var(--poppins-font);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.choose-box p {
  font-family: var(--lato-font);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-container {
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  background-color: var(--gold-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--poppins-font);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b68602;
}
.sub-hero-section {
  width: 100%;
  height: 45vh;
  background: url(./imgs/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sub-hero-section .container {
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.sub-hero-section h2 {
  color: var(--gold-color);
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #666;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background-color: #d2e3fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
  color: #1a73e8;
  margin-right: 1rem;
  text-transform: uppercase;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.stars {
  color: #fbbc05;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  color: #444;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--gold-color);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: var(--black-color);
}
.test-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 0px;
}
.test-container h2 {
  margin-bottom: 10px;
}
.google-logo {
  width: 100px;
  margin: 20px auto;
}
.why-choose-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature {
  background-color: #cf99041d;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1 1 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold-color);
  margin-bottom: 0.5rem;
}

.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.bottom-text {
  text-align: center;
  margin-top: 3rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
}
.con-section {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  align-items: center;
}

.con-section .left,
.con-section .right {
  flex: 1 1 50%;
  padding: 2rem;
}

.con-section img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Section 1: Emotional Text */
.con-section .right h1 {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 1rem;
}

.con-section .right h3 {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.con-section .right p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Section 2: Contact Form & Info */
.contact-form {
  max-width: 500px;
  margin: auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
}

.form-group textarea {
  height: 120px;
}

.submit-btn {
  background-color: var(--gold-color);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: var(--black-color);
}

.contact-info {
  background: linear-gradient(135deg, #fff0f5, #ffe6ef);
  border-radius: 20px;
  padding: 2rem;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--gold-color);
  margin-bottom: 1.2rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.social-icons {
  margin-top: 1.5rem;
}

.social-icons a {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-right: 1rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--gold-light-color);
}

@media (max-width: 992px) {
  .con-section .left,
  .con-section .right {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .con-section {
    flex-direction: column;
  }

  .con-section .right h1 {
    font-size: 2rem;
  }
}
.ser-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.ser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.ser-box {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 16px #00000044;
}
.ser-box h3 {
  margin-bottom: 15px;
}
.ser-box ul {
  padding-left: 20px;
}
.ser-box ul li {
  font-family: var(--poppins-font);
  margin-bottom: 6px;
  list-style: circle;
}
.ser-img img {
  width: 100%;
}
.ser-section4 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ser-section4 {
  margin-bottom: 30px;
}
.ser-4-text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.ser-4-img {
  padding: 10px;
}
.ser-4-box {
  flex: 1 1 calc(33.333% - 20px);
  background: #cf99041e;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 250px;
}

.ser-4-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--lato-font);
}

.ser-4-box ul {
  padding-left: 20px;
  list-style-type: disc;
  font-family: var(--rubik-font);
}

/* Tablet */
@media (max-width: 768px) {
  .ser-4-box {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ser-4-text {
    flex-direction: column;
  }
  .ser-4-box {
    flex: 1 1 100%;
  }
}
.abouttog-container {
  max-width: 900px;
  margin: 50px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-family: var(--poppins-font);
}

.abouttog-tabs {
  display: flex;
  justify-content: space-around;
  background: #f1f5f9;
  border-bottom: 1px solid #ddd;
}

.abouttog-tab {
  flex: 1;
  text-align: center;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.abouttog-tab.active {
  background: var(--gold-color);
  color: #fff;
}

.abouttog-content {
  padding: 24px;
  line-height: 1.6;
  font-size: 16px;
  animation: fadeIn 0.4s ease;
}

.abouttog-content h2 {
  margin-top: 0;
  font-size: 22px;
  color: var(--gold-color);
  font-family: var(--rubik-font);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .abouttog-tabs {
    flex-direction: column;
  }
  .abouttog-tab {
    padding: 12px;
  }
}
.center-btn {
  margin: 30px auto;
}
.facility-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.facility-header {
  text-align: center;
  margin-bottom: 50px;
}

.facility-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.facility-header p {
  font-size: 18px;
  color: #555;
}

/* Timeline container */
.facility-timeline {
  position: relative;
  margin: 0;
  padding: 0;
}

.facility-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #e2e8f0;
}

.facility-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
}

.facility-item:nth-child(even) {
  flex-direction: row-reverse;
}

.facility-content {
  width: 45%;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s ease;
}

.facility-content h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--gold-color);
}

.facility-content p {
  margin: 10px 0 0;
  line-height: 1.6;
  color: #555;
}

.facility-image {
  width: 45%;
  height: 260px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Circle marker */
.facility-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--gold-color);
  border-radius: 50%;
  border: 4px solid #fff;
  z-index: 3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .facility-item {
    flex-direction: column !important;
  }
  .facility-content,
  .facility-image {
    width: 100%;
  }
  .facility-item {
    margin-bottom: 50px;
  }
  .facility-line {
    display: none;
  }
  .facility-marker {
    display: none;
  }
}
/* Section */
.skinser-services {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  text-align: center;
}
.skinser-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--gold-color);
}

/* Grid */
.skinser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Cards */
.skinser-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: left;
}
.skinser-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.skinser-card h2 {
  color: var(--gold-color);
}
.skinser-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}
.skinser-card p {
  font-size: 0.95rem;
  color: #555;
}
.skinser-btn {
  margin-top: 15px;
  background: var(--gold-color);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.skinser-btn:hover {
  background: var(--gold-color);
}

/* Modal */
.skinser-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.skinser-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  text-align: left;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.skinser-modal-content h2,
.skinser-modal-content h3 {
  color: var(--gold-color);
  margin-bottom: 10px;
}
.skinser-modal-content p {
  margin-bottom: 10px;
}
.skinser-modal-content ul li {
  font-family: var(--poppins-font);
  margin-bottom: 5px;
}
.skinser-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}
.skinser-close:hover {
  color: #333;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  .skinser-modal-content h2,
  .skinser-modal-content h3 {
    margin-bottom: 0px;
  }
  .skinser-modal-content p {
    margin-bottom: px;
  }
  .skinser-modal-conte0nt ul li {
    font-family: var(--poppins-font);
    margin-bottom: 0px;
  }
  .skinser-modal-content {
    height: 100%;
    overflow: scroll;
  }
}
.skin-cta-section {
  background: linear-gradient(135deg, #f9f9f9, #fff5f7);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.skin-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.skin-cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

.skin-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #222, #333);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(233, 176, 30, 0.3);
}

.skin-cta-btn:hover {
  background: linear-gradient(90deg, #b68602, #e8b426);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #b6860284;
}
.semimake-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.semimake-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #222;
}

.semimake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.semimake-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.semimake-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.semimake-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.semimake-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

.semimake-btn {
  padding: 10px 18px;
  background: var(--gold-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.semimake-btn:hover {
  background: var(--gold-color);
}

/* Modal */
.semimake-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.semimake-modal-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.semimake-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #666;
}

.semimake-modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.semimake-modal-content p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hairser-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.hairser-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #333;
}

.hairser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.hairser-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hairser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hairser-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.hairser-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

.hairser-btn {
  padding: 10px 18px;
  background: var(--gold-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hairser-btn:hover {
  background: var(--gold-color);
}

/* Modal */
.hairser-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.hairser-modal-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: hairserFadeIn 0.3s ease;
}

.hairser-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #666;
}

.hairser-modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
}

.hairser-modal-content p,
.hairser-modal-content ul,
.hairser-modal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

@keyframes hairserFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Section */
.dentalser-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: "Poppins", sans-serif;
}

.dentalser-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #333;
}

/* Grid */
.dentalser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Card */
.dentalser-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dentalser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.dentalser-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.dentalser-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

/* Button */
.dentalser-btn {
  padding: 10px 18px;
  background: var(--gold-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dentalser-btn:hover {
  background: var(--gold-color);
}

/* Modal */
.dentalser-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dentalser-modal-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: dentalserFadeIn 0.3s ease;
}

.dentalser-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #666;
}

.dentalser-modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
}

.dentalser-modal-content p,
.dentalser-modal-content ul,
.dentalser-modal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

@keyframes dentalserFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Mobile Overlay Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu ul li a,
.mobile-menu ul li span {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 25px;
  font-family: var(--rubik-font);
  font-weight: 600;
}

.mobile-submenu {
  display: none;
  margin-top: 10px;
}

.mobile-submenu a {
  display: block;
  font-size: 18px;
  color: #bbb;
  margin: 5px 0;
  text-decoration: none;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  cursor: pointer;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .menus {
    display: none; /* hide your original menu */
  }
  .hamburger {
    display: block;
  }
  .slider-wrapper {
    height: 100%;
  }
  header .container {
    justify-content: end;
  }
  .add-cont {
    display: none;
  }
  .section1 .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-text .title {
    line-height: 100%;
  }
  .section-img img {
    width: 100%;
  }
  .statistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .statistics-box img {
    width: 80px;
    height: 80px;
  }
  .center-para {
    width: 100%;
  }
  .google-review-con {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero {
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  .hero .container {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding-bottom: 0px;
    align-items: center;
    justify-content: space-between;
  }
  h1 {
    font-size: 50px;
    line-height: 80%;
  }
  .title {
    font-size: 50px;
    line-height: 80%;
  }
  .hero .container {
    gap: 30px;
  }
  .hero-title {
    font-size: 30px;
  }
  .service-box {
    width: 100px;
  }

  .service-detial .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .con-section {
    padding: 0px;
    flex-direction: column-reverse;
  }
  .con-section .right h1 {
    line-height: 100%;
  }
  .con-section .left,
  .con-section .right {
    padding: 30px 0;
  }
  .ser-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .ser-section4 .container {
    display: block;
  }
  .skinser-title {
    font-size: 1.5rem;
  }
  .logo img {
    width: 100px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .menus {
    display: none; /* hide your original menu */
  }
  .hamburger {
    display: block;
  }
  header .container {
    justify-content: end;
  }
  .add-cont {
    display: none;
  }
  .section1 .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-text .title {
    line-height: 100%;
  }
  .section-img img {
    width: 100%;
  }
  .statistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .statistics-box img {
    width: 130px;
    height: 130px;
  }
  .center-para {
    width: 100%;
  }
  .google-review-con {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero {
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  .hero .container {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding-bottom: 0px;
    align-items: center;
    justify-content: space-between;
  }
  h1 {
    font-size: 50px;
    line-height: 80%;
  }
  .title {
    font-size: 50px;
    line-height: 80%;
  }
  .hero .container {
    gap: 30px;
  }
  .hero-title {
    font-size: 30px;
  }
  .service-box {
    width: 100px;
  }

  .service-detial .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .con-section {
    padding: 0px;
    flex-direction: column-reverse;
  }
  .con-section .right h1 {
    line-height: 100%;
  }
  .con-section .left,
  .con-section .right {
    padding: 30px 0;
  }
  .ser-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .ser-section4 .container {
    display: block;
  }
  .skinser-title {
    font-size: 1.5rem;
  }
  .logo img {
    width: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
