* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* == Header Start == */
nav {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100vw;
  padding: 0 100px;
  position: fixed;
  top: 0;
  z-index: 999;
  box-sizing: border-box;
}

nav .site-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 20px;
}

.site-logo img {
  width: 40px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-left: 300px;
}

ul li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #001542;
  transition: width 0.3s ease;
}

ul li a:hover {
  color: #001542;
}

ul li a:hover::after {
  width: 100%;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.search-icon i {
  font-size: 20px;
  cursor: pointer;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 200px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #001542;
  padding: 50px;
  height: 25px;
  width: 500px;
  border-radius: 4px;
}

.search-bar input {
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 75%;
  height: 50px;
  font-size: 14px;
  padding: 0 10px;
  margin-right: 5px;
}

.search-bar .uil-times {
  position: absolute;
  bottom: 90px;
  left: 560px;
  font-size: 14px;
  padding: 0 3px;
}

.search-bar i {
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
}

nav .site-btn button {
  background-color: #001542;
  color: #fff;
  padding: 7px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
}

.booking-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 40px;
  width: 450px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid #e0e0e0;
  display: none;
  z-index: 200;
  transition: all 0.3s ease-in-out;
}

.booking-box i {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.booking-box i:hover {
  transform: rotate(90deg);
  color: #001542;
}

.booking-box h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.booking-box p {
  font-size: 14px;
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.booking-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.booking-box .inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.booking-box input[type="text"],
.booking-box input[type="email"],
.booking-box input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.booking-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  resize: none;
  font-size: 14px;
}

.gender-options {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  width: 100%;
}

.gender-option {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.gender-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  vertical-align: middle;
}

.booking-box .requirement-btn {
  background-color: #001542;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  nav {
    padding: 0 40px;
  }

  nav .site-logo a {
    font-size: 18px;
  }
  nav ul {
    margin-left: 100px;
  }

  nav ul li a {
    font-size: 14px;
  }

  nav .site-btn button {
    padding: 7px 15px;
  }

  .booking-box {
    top: 20%;
    left: 38%;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  nav {
    padding: 0 40px;
    width: 100%;
  }

  nav .site-logo a {
    font-size: 16px;
  }

  nav ul {
    margin-left: 50px;
    gap: 10px;
  }

  nav ul li a {
    font-size: 12px;
  }

  nav .site-btn button {
    padding: 5px 15px;
    font-size: 12px;
  }

  .booking-box {
    top: 20%;
    left: 30%;
    width: 350px;
    padding: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  nav {
    padding: 20px;
    width: 100vw;
  }

  .site-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  nav .site-logo a {
    font-size: 16px;
  }

  .site-bar {
    position: absolute;
    right: 25px;
    font-size: 18px;
  }

  nav ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background-color: #fff;
    height: 100vh;
    width: 100%;
    margin-top: 20px;
    position: absolute;
    top: 30px;
    right: 0;
    display: none;
  }

  nav ul li {
    position: relative;
    top: 20px;
    left: 20px;
    margin-bottom: 10px;
  }

  nav .site-btn button {
    position: absolute;
    top: 270px;
    left: 20px;
    display: none;
  }

  .search-bar {
    width: 315px;
    height: 40px;
    padding: 15px;
  }

  .search-bar input {
    height: 30px;
  }

  .search-bar i {
    padding: 6px;
    font-size: 14px;
  }

  .booking-box {
    top: 327px;
    left: 187px;
    width: 295px;
    padding: 20px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
  }

  .booking-box h4 {
    font-size: 20px;
  }

  .booking-box .inputs {
    width: 100%;
  }

  .booking-box input[type="text"],
  .booking-box input[type="email"],
  .booking-box input[type="tel"] {
    width: 93%;
  }

  .booking-box textarea {
    width: 93%;
  }

  .booking-box .requirement-btn {
    width: 100%;
    margin-top: -30px;
  }
}

@media (min-width: 480px) {
  .site-bar {
    display: none;
  }
}
/* == Header End == */

/* == Breadcrumb Section Start == */

.breadcrumb {
  font-size: 14px;
  padding: 20px 100px;
  margin-top: 100px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #001542;
}

.breadcrumb li:last-child {
  font-weight: bold;
  color: #333;
}

/* == Breadcrumb Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .breadcrumb {
    padding: 20px 40px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 20px 40px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .breadcrumb {
    padding: 20px;
  }
}
/* == Breadcrumb Section End == */

/* == Service Detail Section Start == */
.service-detail {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.service-left,
.service-right {
  width: 50%;
}

.service-left .main-image {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.service-left .more-images {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 30px;
  margin-top: 10px;
}

.service-left .more-images img {
  width: 100px;
  border-radius: 8px;
  cursor: pointer;
}

.service-left .more-images img.active {
  border: 2px solid #ccc;
  transform: scale(1.05);
  transition: 0.3s;
}

.service-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 30px;
}

.service-info h2 {
  font-weight: 600;
  font-size: 24px;
}

.service-info p {
  color: #444;
  margin-top: -20px;
}

.appointment-status {
  display: flex;
  justify-content: start;
  align-items: start;
}

.appointment-status i.available {
  color: green;
  font-size: 22px;
}

.appointment-status i.not-available {
  color: red;
}

.appointment-status p {
  font-weight: 500;
}

.social-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.social-share i {
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s;
}

.social-share .social-icon.fb {
  color: #1877f2;
}

.social-share .social-icon.ig {
  color: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-share .social-icon.wa {
  color: #25d366;
}

.social-share .social-icon.tw {
  color: #1da1f2;
}

.social-share .social-icon:hover {
  transform: scale(1.1);
}

.include-service ul li {
  list-style: none;
  font-size: 16px;
}

.include-service h3 {
  font-size: 16px;
  font-weight: 600;
}

li i {
  margin-right: 10px;
}

.service-price p {
  font-size: 24px;
  color: #000;
}

.service-price p b {
  color: #001542;
}

.book-appointment a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 14px;
}
/* == Service Detail Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .service-detail {
    padding: 20px 40px;
  }

  .service-left .main-image {
    width: 350px;
    height: 450px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .service-detail {
    padding: 20px 40px;
    gap: 30px;
  }

  .service-left .more-images img {
    width: 80px;
  }

  .service-left .more-images {
    gap: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .service-detail {
    padding: 20px;
    flex-direction: column;
  }

  .service-left,
  .service-right {
    width: 100%;
  }

  .service-left .main-image {
    width: 330px;
    height: 400px;
  }

  .service-left .more-images {
    gap: 20px;
  }

  .service-left .more-images img {
    width: 80px;
    border-radius: 4px;
  }

  .service-info h2 {
    font-size: 20px;
  }

  .service-info p {
    font-size: 14px;
  }

  .include-service h3 {
    font-weight: 500;
  }

  .include-service ul li {
    font-size: 14px;
  }

  .service-price p {
    font-size: 20px;
  }
}

/* == Service Detail Section End == */

/* == OverView Section Start == */
.overview-section {
  margin-top: 50px;
  padding: 20px 100px;
}

.overview-section .tab-menu button {
  background-color: transparent;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  margin-right: 20px;
  border: none;
  outline: none;
  border-bottom: 2px solid #ccc;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.description-box h3 {
  font-size: 20px;
  font-weight: 600;
}

.description-box ul {
  margin: 20px 0;
}

.description-box p {
  margin-bottom: 20px;
}

.tab-menu button.active {
  border-bottom: 2px solid #001542;
}

.description-box,
.service-reviews {
  display: none;
}

.description-box.active,
.service-reviews.active {
  display: block;
}

/* === */
.client-feedback h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.review-card {
  margin-bottom: 30px;
}

.review-card h4 {
  font-weight: 600;
}

.review-card p {
  font-size: 14px;
}

.submit-review {
  width: 50%;
}

.submit-review h3 {
  font-size: 20px;
  font-weight: 600;
}

.submit-review i {
  font-size: 20px;
  cursor: pointer;
}

.review-form-fields {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.review-form-fields input {
  width: 100%;
}

.submit-review input {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.submit-review input[type="submit"] {
  width: fit-content;
  background-color: #001542;
  color: #fff;
  border: none;
  cursor: pointer;
}
/* == OverView Section Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .overview-section {
    padding: 20px 40px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .overview-section {
    padding: 20px 40px;
  }

  .review-form-fields input {
    width: 500px;
  }

  .submit-review input[type="submit"] {
    margin-top: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .overview-section {
    padding: 20px;
  }

  .description-box h3 {
    font-size: 18px;
  }

  .description-box p {
    font-size: 14px;
  }

  .description-box ul li {
    font-size: 14px;
  }

  .client-feedback h3,
  .submit-review h3 {
    font-size: 18px;
  }

  .submit-review {
    width: 100%;
  }

  .review-form-fields input {
    width: 100%;
  }

  .submit-review input[type="submit"] {
    margin-top: 10px;
  }
}
/* == OverView Section End == */

/* === */
.footer-section {
  background-color: #001542;
  padding: 50px 100px;
  display: flex;
  justify-content: space-around;
  align-items: start;
  gap: 40px;
  height: 40vh;
}

.footer-intro,
.footer-contact,
.footer-pages {
  width: 33.3%;
}

.footer-intro a {
  text-decoration: none;
}

.footer-section h5 {
  color: #fff;
  font-size: 18px;
}

.footer-intro p {
  color: #fff;
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.footer-intro .social-icons {
  display: flex;
  gap: 5px;
}

.footer-intro .social-icons i {
  color: #001542;
  background-color: #ffb30d;
  padding: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.footer-contact i {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
}

.footer-contact a,
.time p {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: a 0.3s ease;
}

.footer-contact a:hover {
  color: #ffb30d;
}

.footer-call {
  margin-bottom: 10px;
}

.footer-pages ul li a {
  color: #fff;
  font-size: 14px;
  transition: a 0.3s ease;
}

.footer-pages ul li a:hover {
  color: #ffb30d;
  font-size: 14px;
}

.footer-pages ul,
.footer-contact .contacts {
  margin-top: 10px;
}

.copyright {
  background-color: #001542;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding-bottom: 20px;
}

/* == Footer Section Responsive == */

@media (min-width: 1024px) {
  .footer-section {
    width: 100vw;
  }
}

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .footer-section {
    height: 20vh;
  }

  .copyright {
    margin-top: -10px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .footer-section {
    height: 40vh;
  }

  .copyright {
    width: 100vw;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .footer-section {
    padding: 20px;
    flex-direction: column;
    height: auto;
  }

  .footer-intro,
  .footer-contact,
  .footer-pages {
    width: 100%;
  }
}
