* {
  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 {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 20px;
}

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;
}

.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 #submitBtn {
  background-color: #001542;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* lead form Responsive */

@media (max-width: 480px) {
  .booking-box {
    width: 300px;
  }

  .booking-box .inputs {
    width: 100%;
  }
}

/* Hedaer Mobile Responsive */

@media (max-width: 480px) {
  nav {
    padding: 20px;
  }

  .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;
    /* margin-left: -10px; */
  }

  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: 250px;
    height: 40px;
    padding: 20px;
  }

  .search-bar input {
    height: 30px;
  }

  .search-bar i {
    padding: 6px;
    font-size: 14px;
  }
}

@media (min-width: 480px) {
  .site-bar {
    display: none;
  }
}

/* == Tablet Responsive ==  */

/* Header End */

/* Hero Section Start */

.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/assets/images/Salon Hero Banner Image.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  padding-bottom: 20px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero-section * {
  z-index: 1;
}

.hero-section h1 {
  font-size: 54px;
  font-weight: 800;
}

.hero-section p {
  font-size: 14px;
  margin: 0 200px;
  text-align: center;
}

.hero-section .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.buttons .primary-btn a {
  background-color: #001542;
  color: #fff;
  padding: 7px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 14px;
}

.buttons .secondary-btn a {
  background-color: #fff;
  color: #000;
  padding: 7px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.hero-section .hero-features {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 100px;
  margin-top: 80px;
}

.hero-features i {
  color: #ffb30d;
  margin-right: 5px;
  font-size: 20px;
}

.hero-features .rating div,
.client div,
.experiance div {
  font-size: 14px;
}

.arrow-icons .right-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6b6a6a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  right: 30px;
  bottom: 280px;
  cursor: pointer;
}

.arrow-icons .left-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #444;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  left: 30px;
  top: 320px;
  cursor: pointer;
}

.navigation-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  bottom: -100px;
}

.navigation-icons .first-icon,
.second-icon,
.third-icon {
  cursor: pointer;
  color: #fff;
}

/* Hero Section Responsive */

@media (max-width: 480px) {
  .hero-section {
    /* width: 100%; */
    padding: 20px;
  }

  .hero-section h1 {
    font-size: 28px;
    font-weight: 700;
  }

  .hero-section p {
    font-size: 14px;
    text-align: start;
    margin: 0;
  }

  .hero-section .buttons {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
    width: 100%;
  }

  .buttons a {
    font-size: 14px;
    padding: 5px 15px;
  }

  .hero-section .hero-features {
    gap: 20px;
    margin-top: 50px;
  }

  .hero-features i {
    font-size: 14px;
  }

  .rating,
  .client,
  .experiance {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .hero-features .rating div,
  .client div,
  .experiance div {
    font-size: 12px;
  }

  .arrow-icons .right-icon,
  .arrow-icons .left-icon {
    font-size: 16px;
    width: 25px;
    height: 25px;
  }

  .arrow-icons .right-icon {
    bottom: 450px;
    right: 50px;
  }
}

/* Hero section end */

/* Features section start */

.features {
  padding: 100px;
}

.features h3 {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
}

.features p {
  text-align: center;
  font-size: 14px;
  color: #444;
}

.features-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.feature-item h3 {
  color: #000;
}

.features-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.features-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.feature-item h3 {
  white-space: nowrap;
  font-size: 20px;
}

.features-marquee:hover .features-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Features Section Responsive */
@media (max-width: 480px) {
  .features {
    padding: 20px;
    margin: 50px 0;
  }

  .features h3 {
    font-size: 24px;
  }

  .feature-item {
    /* margin-top: 20px; */
    margin-bottom: 150px;
  }

  .feature-item h3 {
    font-size: 16px;
  }
}

/* // // // */

.make-perfect-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 20px 100px;
  height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header .title {
  font-size: 32px;
  font-weight: 600;
}

.header .description {
  color: #444;
  font-size: 14px;
}

.grid-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.card {
  gap: 20px;
  width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.card-image {
  flex: 1;
}

.card-image img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  display: block;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.card-content {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  height: 250px;
}

.card-content .card-title {
  font-size: 18px;
  font-weight: 600;
}

.card-content .card-text {
  font-size: 14px;
  color: #444;
  margin-top: 5px;
}

/* Make perfect us Responsive */
@media (max-width: 480px) {
  .make-perfect-container {
    padding: 20px;
    margin-top: 400px;
    margin-bottom: 530px;
  }
  .header .title {
    font-size: 28px;
  }

  .make-perfect-container .grid-container {
    flex-direction: column;
    /* padding: 20px; */
  }

  .grid-container .card {
    width: 90%;
  }

  .card-content {
    height: 300px;
  }
}

/* // // // */

.gallery-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  /* margin-top: 1000px; */
}

.gallery-header {
  text-align: center;
}

.gallery-header .gallery-title {
  font-size: 36px;
  font-weight: 600;
}

.gallery-container {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 100px;
}

.gallery-content {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-content p {
  font-size: 14px;
  color: #444;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.gallery-icons,
.gallery-image h4 {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  color: #fff;
}

.gallery-icons {
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}

.gallery-icons i {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-icons i:hover {
  background: rgba(54, 54, 54, 0.8);
}

.gallery-image h4 {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gallery-item:hover .gallery-icons,
.gallery-item:hover .gallery-image h4 {
  opacity: 1;
}

/* Gallery Section Responsive */
@media (max-width: 480px) {
  .gallery-container {
    padding: 20px;
  }

  .gallery-content h3 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-icons i {
    font-size: 16px;
    width: 20px;
    height: 20px;
  }

  .gallery-image h4 {
    font-size: 14px;
    font-weight: 500;
  }
}
/* // // // */

/* 
.before-after-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
}

.before-after-section .icons i {
  color: #6d6b6b;
  font-size: 20px;
}

.before-after {
  display: flex;
  justify-content: center;
  align-items: center;
}

.before-after img {
  width: 400px;
  height: 600px;
  object-fit: cover;
}

.before-after h5 {
  background-color: #444;
  color: #fff;
  font-weight: 400;
  width: fit-content;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
}

.before img {
  border-radius: 8px 0 0 0;
}

.after img {
  border-radius: 0 8px 0 0;
}

.before-after-section .service-name {
  background-color: #001542;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 288px;
  margin-top: -20px;
  border-radius: 0 0 8px 8px;
} */

.before-after-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
}

.before-after-section .icons i {
  color: #6d6b6b;
  font-size: 20px;
  cursor: pointer;
}

.before-after {
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
}

.before,
.after {
  position: relative;
}

.before-after img {
  width: 400px;
  height: 600px;
  object-fit: cover;
}

.before-after h5 {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #001542;
  color: #fff;
  font-weight: 400;
  width: fit-content;
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 50px;
}

.after h5 {
  left: auto;
  right: 10px;
}

.icons {
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.icons .uil-pause-circle {
  font-size: 80px;
  color: #ffb30d;
  display: flex;
  position: absolute;
  top: 200px;
  left: 200px;
  /* right: 00px; */
  /* z-index: 999; */
}

/* 
.icons .uil-pause-circle {
  font-size: 80px;
  color: #fff;
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
} */

.before img {
  border-radius: 8px 0 0 0;
}

.after img {
  border-radius: 0 8px 0 0;
}

.service-name {
  background-color: #001542;
  color: #fff;
  padding: 20px;
  width: 66%;
  text-align: center;
  margin-top: -7px;
  border-radius: 0 0 8px 8px;
}

/* Before after section Resonsive */

@media (max-width: 480px) {
  .before-after-section {
    padding: 20px;
  }

  .before-after-section .icons i {
    font-size: 16px;
  }

  .before-after h5 {
    font-size: 14px;
  }

  .before-after img {
    width: 160px;
    height: 400px;
  }

  .before-after-section .service-name {
    width: 83%;
  }

  .service-name h4 {
    font-weight: 600;
  }

  .service-name p {
    font-size: 14px;
    color: #f8f8f8;
  }
}

/* // // // */

.service-section {
  padding: 20px 100px;
  margin-top: 100px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.service-name-hai {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  text-align: center;
}

.service-name-hai h3 {
  font-size: 32px;
  font-weight: 600;
}

.service-name-hai p {
  font-size: 14px;
  color: #444;
}

.cta a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.service-card-content {
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 0 0 8px 8px;
}

.service-card-content h4 {
  font-size: 18px;
  font-weight: 600;
}

.service-card-content p {
  font-size: 14px;
  color: #444;
  margin: 10px 0 10px 0;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-details .fee,
.time,
.gender,
.location {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details i {
  color: #ffb30d;
  background-color: #001542;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 50px;
  padding: 5px;
}

.service-card-content a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 25px;
  border-radius: 50px;
  font-size: 14px;
  width: fit-content;
}

/* service section Responsive */
@media (max-width: 480px) {
  .service-section {
    padding: 20px;
  }

  .service-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .service-name-hai h3 {
    font-size: 28px;
  }

  .service-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-card-image img {
    height: 200px;
  }
}

/* // // // */

.benefits-section {
  padding: 50px 100px;
  margin: 100px 0;
  background-color: #e3f2fd;
}

.benefits-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.benefits-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.benefits-header p {
  font-size: 14px;
  color: #444;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.benefit-card {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  width: 300px;
}

.benefit-card i {
  background-color: #e3f2fd;
  color: #ffb30d;
  padding: 10px;
  font-size: 28px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.benefit-card h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}

.benefit-card p {
  font-size: 14px;
  color: #444;
  margin-top: 5px;
}

/* Benefits section Responsive */

@media (max-width: 480px) {
  .benefits-section {
    padding: 20px;
    padding-bottom: 60px;
    /* text-align: center; */
  }

  .benefits-header {
    text-align: center;
  }

  .benefits-header h3 {
    font-size: 28px;
  }

  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .benefit-card {
    width: 290px;
  }
}

/* // // // */

.offer-section img {
  width: 100%;
  height: 100vh;
  object-fit: fill;
}

/* // // // */

.testimonial-section {
  padding: 20px 100px;
  margin-top: 100px;
  overflow: hidden;
  position: relative;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.testimonial-header p {
  font-size: 14px;
  color: #444;
}

.testimonial-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  height: 250px;
  min-width: calc((100% - 60px) / 4);
}

.testimonial-rating i {
  color: #ffb30d;
  font-size: 18px;
}

.testimonial {
  color: #333;
  margin: 15px 0;
}

.client {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.client-info {
  margin-right: 40px;
}

.client-info h5 {
  font-size: 14px;
  font-weight: 500;
}

.client-info p {
  font-size: 12px;
}

.testimonial-icons i {
  background-color: #fff;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 28px;
  border-radius: 50%;
}

.uil-angle-left {
  position: relative;
  top: 220px;
  left: -50px;
  z-index: 999;
}

.uil-angle-right {
  position: relative;
  top: 190px;
  left: 1200px;
  z-index: 999;
}

/* testimonails section responsive */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 20px;
  }

  .testimonial-header {
    text-align: center;
  }

  .testimonial-header h3 {
    font-size: 28px;
  }

  .testimonial-card {
    min-width: 75%;
  }

  .uil-angle-left {
    left: 0;
  }

  .uil-angle-right {
    left: 310px;
  }
}

/* // // // */

.salon-infos {
  padding: 20px 100px;
  margin: 100px 0;
}

.info-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.testimonial-header P {
  font-size: 14px;
  color: #444;
}

.info-body-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.box {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
}

.hours h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #ccc;
}

.hours .days {
  color: #444;
  font-size: 14px;
}

.hours .time {
  font-weight: 500;
  font-size: 16px;
}

.address i {
  color: #001542;
  font-size: 24px;
}

.address h4 {
  font-size: 18px;
  font-weight: 600;
}

.address p {
  color: #333;
  margin-bottom: 20px;
}

.address a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
}

.calls {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
}

.calls a {
  text-decoration: none;
  color: #000;
}

.calls a h4 {
  font-weight: 400;
  font-size: 16px;
}

.calls a:hover {
  text-decoration: underline;
  color: #001542;
}

.call,
.whatsapp,
.envelope {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 4px;
}

.call h5,
.whatsapp h5,
.envelope h5 {
  font-size: 18px;
  font-weight: 500;
}

.call i,
.whatsapp i,
.envelope i {
  font-size: 22px;
}

.call i {
  color: #4caf50;
}

.whatsapp i {
  color: #25d366;
}

.envelope i {
  color: #0072c6;
}

/* salon info Responsive */
@media (max-width: 480px) {
  .salon-infos {
    padding: 20px;
  }

  .info-header {
    text-align: center;
  }

  .info-header h3 {
    font-size: 28px;
  }

  .info-header p {
    font-size: 14px;
  }

  .info-body-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .info-body-grid .box {
    width: 280px;
  }

  .hours h4,
  .address h4 {
    font-size: 16px;
  }

  .address p {
    font-size: 14px;
  }

  .call,
  .whatsapp,
  .envelope {
    width: 30%;
    height: 100px;
  }

  .call i,
  .whatsapp i,
  .envelope i {
    font-size: 16px;
  }

  .call a h4,
  .whatsapp a h4,
  .envelope a h4 {
    font-size: 14px;
  }

  .call h5,
  .whatsapp h5,
  .envelope h5 {
    font-size: 14px;
    font-weight: 500;
  }
}

/* // // // */

.newsletter-section {
  /* background-color: #5870cf; */
  background: linear-gradient(135deg, #f0f4ff, #e6ecf8);
  padding: 20px 100px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.newsletter-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.newsletter-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.newsletter-header p {
  font-size: 14px;
  color: #444;
}

.newsletter {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  width: 500px;
  height: auto;
}

.newsletter i {
  color: #001542;
  font-size: 38px;
}

.newsletter h4 {
  font-size: 24px;
  font-weight: 600;
}

.newsletter p {
  font-size: 14px;
  color: #444;
}

.newsletter-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.newsletter-form form input {
  width: 400px;
  padding: 10px;
  border-radius: 4px;
  outline: none;
  border: 1px solid #ccc;
}

form input[type="submit"] {
  background-color: #001542;
  color: #fff;
  width: 400px;
  border: none;
  outline: none;
  cursor: pointer;
}

/* newsletter section Responsive */

@media (max-width: 480px) {
  .newsletter-section {
    padding: 20px;
    text-align: center;
  }

  .newsletter-header h3 {
    font-size: 28px;
  }

  .newsletter {
    width: 250px;
  }

  .newsletter i {
    font-size: 32px;
  }

  .newsletter h4 {
    font-size: 24px;
  }

  .newsletter-form form input {
    width: 250px;
  }
}

/* === */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 45px;
  width: 45px;
  border: none;
  border-radius: 50%;
  background: #001542;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

#scrollTopBtn:hover {
  background: #0033a0;
}

/* Preloader Background */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader Animation */
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #001542;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* === */

/* // // // */

.footer-section {
  background-color: #001542;
  padding: 50px 100px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  height: 40vh;
}

.footer-intro a {
  text-decoration: none;
}

.footer-intro {
  width: 25%;
}

.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;
}

/* footer section Responsive */
@media (max-width: 480px) {
  .footer-section {
    padding: 20px;
    flex-direction: column;
    height: auto;
  }

  .footer-intro {
    width: 100%;
  }
}

/* Tablet Responsive */
/* @media (max-width: 1024px) {
  .footer-section {
    padding: 40px 30px;
  }

  .footer-section h5 {
    font-size: 16px;
  }

  .footer-intro {
    width: 100%;
    max-width: 500px;
  }
} */

/* Laptop Responsive */
/* @media (max-width: 1024px) {
  .footer-section {
    padding: 40px;
    height: 20vh;
  }

  .footer-section h5 {
    font-size: 16px;
  }

  .footer-intro {
    width: 30%;
  }

  .copyright {
    margin-top: -20px;
  }
} */

/* // // // */

.copyright {
  background-color: #001542;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding-bottom: 20px;
}
