* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Roboto", sans-serif;
}

:root {
  /* Text Colors */
  --text-dark: #000000;
  --text-light: #e6bf5a;
  --text-gray: #4a4a4a;

  /* Background Colors */
  --bg-light: #e6bf5a;
  --bg-dark: #05090c;
  --bg-gray: #f8f9fa;

  /* Hover & Accent Colors */
  --hover-primary: #ffb800;
  --hover-dark: #333333;
  --hover-light: #d4a846;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.main {
  padding-top: 5.5rem;
}

/* Navbar Styles */

.navbar {
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 11;
  top: 0;
}

.navbar-container {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
}

.logo img {
  height: 90px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: 10px;
  background-color: var(--hover-primary);
  transition: all 0.3s ease-in-out;
}

.nav-list a:hover::before {
  width: 100%;
}

.btn {
  background-color: var(--bg-light);
  color: var(--bg-dark);
  padding: 1rem 1.8rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: linear-gradient(45deg, #ffb800, #7a6026);
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

/* Mobile Menu Styles */

.menu-icon {
  display: none;
  font-size: 2.5rem;
  border: none;
  background: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  padding: 2rem 1rem;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-container {
  display: flex;
}

.mobile-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.mobile-logo img {
  height: 60px;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--text-dark);
  cursor: pointer;
  margin-top: 0.8rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 2rem 0;
}

.mobile-nav-list a {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
  color: var(--hover-primary);
  padding-left: 0.5rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero section */
.hero-section {
  height: calc(100vh - 100px);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers full section */
  z-index: 0;
}

.content {
  position: absolute;
  height: 100%;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  color: var(--bg-gray);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.content p {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 300;
}

.content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.hero-button {
  display: flex;
  gap: 1rem;
}
/*--------  about us start  --------*/
.about-us-section {
  width: 100%;
  height: 100%;
  padding: 1rem 5rem;
  margin-top: 2rem;
}

.about-us-container {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 5rem;
  padding: 2rem;
}

.about-us-image {
  width: 45%;
  /* height: 100%; */
  background-image: url(./assets/fake.jpeg);
  background-position: center;
  background-size: cover;
  border-radius: 0 5rem 0 5rem;
}

.about-us-content {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-us-content h2 {
  font-size: 3.5rem;
  font-weight: 500;
  width: 70%;
  line-height: 4rem;
}

.about-us-content p {
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: 400;
  width: 90%;
}

.about-us-content ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-us-content ul li {
  font-size: 1.2rem;
  font-weight: 300;
  list-style: none;
}

.about-us-content ul li i {
  color: var(--text-light);
  font-size: 1.5rem;
}

.about-us-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doctor-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.doctor-image {
  width: 85px;
  height: 85px;
  background-color: #c1d1ff;
  background-image: url(./assets/dr-image.jpg);
  background-position: right;
  background-size: cover;
  border-radius: 50%;
}

.doctor-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.doctor-details h5 {
  font-size: 1.4rem;
  font-weight: 600;
}

.doctor-details p {
  font-size: 1.2rem;
  width: auto;
}

.additional-image {
  width: 150px;
  height: 150px;
  background-image: url(./assets/our-highlighted-patient-avatar.png);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

/*--------  about us end  --------*/

/*--------  Service start  --------*/
.services {
  width: 100%;
  height: 100%;
  padding: 1rem 5rem;
}

.service-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 25%;
}

.services-info h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.services-info p {
  font-size: 1.1rem;
  color: var(--text-gray);
  width: 100%;
  margin-top: 1.5rem;
}

.services-parent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}

.services-parent .service-item {
  height: 400px;
  width: 300px;
  flex-basis: 200;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
  background-color: whitesmoke;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 10px 50px;
  transition: 0.5s ease-in-out;
  border: 1px solid rgba(224, 224, 224, 0.963);
}
.expara {
  opacity: 0;
}
.service-item:hover {
  transform: scale(1.05); /* Slightly scale up the card */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase the shadow */
  background: transparent; /* Light gray background on hover */
  color: rgb(0, 0, 0);
  line-height: 2;

  .service-item-butom {
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.479);
    backdrop-filter: blur(10px);
    height: 100%;
  }
  button {
    opacity: 1;
  }
  h1 {
    color: var(--text-light);
  }

  .card-paragraph {
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: none;
    white-space: wrap;
    font-weight: bold;
    color: var(--hover-primary);
  }

  .card-paragraph::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 10px;
    margin-right: 4px;
    margin-left: 4px;
  }

  .card-paragraph::after {
    content: "...";
  }
  .expara {
    opacity: 1;
  }
}

.card-paragraph {
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-paragraph::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 20px;
  margin-right: 4px;
  margin-left: 4px;
}

.card-paragraph::after {
  content: "...";
}

.service-item-child {
  height: 50%;
  width: 100%;
}
.service-item-child h1 {
  color: var(--text-light);
}
.service-item-butom {
  padding: 20px;
}
.service-item-butom p {
  width: 80%;
}

#service-item1 {
  background: url(./assets/ser1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}

#service-item2 {
  background: url(./assets/ser2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}

#service-item3 {
  background: url(./assets/ser3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item4 {
  background: url(./assets/ser4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item5 {
  background: url(./assets/ser5.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item6 {
  background: url(./assets/se6.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item7 {
  background: url(./assets/serv7.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item8 {
  background: url(./assets/se7.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item9 {
  background: url(./assets/ser9.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item10 {
  background: url(./assets/ser10.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item11 {
  background: url(./assets/dental-surgeries.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item12 {
  background: url(./assets/dental-x-rays.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item13 {
  background: url(./assets/correction-of-regular-teeth.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item14 {
  background: url(./assets/Cosmetic-dentistry.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}
#service-item15 {
  background: url(./assets/dental-veneers.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70%;
}

/*--------  Service end  --------*/

/* ---------------------------------------------------------------------------------------- */
/*------------------------- <!-- code for before after image slider -->----------------- */
/* ------------------------------------------------------------------------------------------ */

.before-after {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
  column-gap: 50px;
}
.before-after h1 {
  font-size: 4vw;
  text-align: center;
  color: var(--primary-color);
  text-decoration: none;
}
.before-after p {
  font-size: 1.5vw;
  text-align: center;
  color: var(--secondary-color);
}

.slider-container5 {
  position: relative;
  width: 400px;
  height: 300px;
  overflow: hidden;
  height: fit-content;
  background-color: rgb(244, 250, 255);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 20px;
  margin: 0 1rem;
}

.slider5 {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide5 {
  min-width: 400px;
  height: 300px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.before-after5 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 1rem;
}

.slider-container25 {
  position: relative;
  width: 80%;
  max-width: 400px;
  overflow: hidden;
  user-select: none;
}

.image-container5 {
  position: relative;
  display: flex;
  width: 100%;
}

.image-before5,
.image-after5 {
  display: block;
  width: 100%;
}

.image-after5 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}

.slider-button5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

button.prev5,
button.next5 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button.prev5 {
  left: 10px;
}

button.next5 {
  right: 10px;
}

button.prev5:hover,
button.next5:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*--------  footer start  --------*/
.footer {
  height: 55%;
  width: 100%;
  margin-top: 2rem;
  background-color: rgba(220, 220, 220, 0.292);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-container {
  height: 100%;
  width: 95%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 3rem;
  padding: 5rem 5rem 4rem;
  border-bottom: 1px solid var(--bg-dark);
}

.company {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.company .logo img {
  height: 35px;
}

.company p {
  font-size: 1.3rem;
  width: 100%;
}

.company .social-media {
  display: flex;
  gap: 1rem;
}

.company .social-media li {
  list-style: none;
}

.company .social-media li a i {
  font-size: 1.5rem;
  padding: 0.7rem;
  border: 1px solid var(--text-gray);
  border-radius: 50%;
  color: var(--text-light);
}

.pages,
.policy {
  width: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#footer-pages,
#footer-policy,
#footer-contact {
  font-size: 1.8rem;
  font-weight: 500;
}

.pages ul,
.policy ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pages ul li,
.policy ul li {
  list-style: none;
  font-size: 1.2rem;
}

.pages ul li a,
.policy ul li a {
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.pages ul li a:hover,
.policy ul li a:hover {
  color: var(--hover-light);
}

.contact {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact address {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.2rem;
}

.contact .address {
  width: 100%;
}

.footer-action {
  margin-left: 0.5rem;
  color: var(--bg-dark);
}

.footer-bottom {
  height: 20%;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.md-aftab {
  color: var(--hover-primary);
  transition: all 0.3s ease-in-out;
}

.md-aftab:hover {
  color: var(--hover-dark);
  text-decoration: underline;
}

/*--------  footer end  --------*/

@media (max-width: 767px) {
  .navbar {
    height: 90px;
  }

  .navbar-container {
    height: 90px;
    padding: 0 1.5rem;
  }

  .logo img {
    height: 70px;
  }

  .nav-menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero section */

  .hero-section {
    height: calc(100vh - 90px);
  }

  .content p {
    font-size: 2.1rem;
  }

  .content h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .hero-button {
    flex-direction: column;
  }

  .about-us-section {
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem;
  }

  .about-us-container {
    height: auto;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }

  .about-us-image {
    width: 100%;
    height: 420px;
    border-radius: 0 4rem 0 4rem;
  }

  .about-us-content {
    width: 100%;
    height: auto;
    gap: 1rem;
  }

  .about-us-content h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    width: 100%;
  }

  .about-us-content p {
    font-size: 1.1rem;
    line-height: 1.5rem;
    width: 100%;
  }

  .about-us-content ul {
    gap: 0.7rem;
  }

  .about-us-content ul li {
    font-size: 1.1rem;
  }

  .about-us-content ul li i {
    font-size: 1.4rem;
  }

  .about-us-footer {
    flex-direction: column;
  }

  .doctor-info {
    justify-content: start;
    width: 100%;
    gap: 1rem;
  }

  .doctor-image {
    width: 75px;
    height: 75px;
  }

  .doctor-details {
    gap: 0.3rem;
  }

  .doctor-details h5 {
    font-size: 1.2rem;
  }

  .doctor-details p {
    font-size: 1rem;
  }

  .additional-image {
    margin-top: 2rem;
  }

  .services {
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem;
  }

  .service-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .services-header {
    height: auto;
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }

  .services-info h2 {
    font-size: 2.2rem;
    line-height: 2.5rem;
    letter-spacing: 0;
  }

  .services-info p {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .services-list {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 2rem;
    margin-top: 2rem;
  }

  .service-item {
    height: auto;
    width: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .service-item img {
    height: 150px;
    margin-bottom: 0;
  }

  .service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .service-item p {
    font-size: 1.1rem;
  }

  .expara {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  /* before and after section */
  .before-after {
    flex-direction: column;
    gap: 2rem;
  }

  .before-after h1 {
    font-size: 1.7rem;
  }

  .before-after p {
    font-size: 0.8rem;
  }

  /* footer section */
  .footer {
    height: auto;
    width: 100%;
  }

  .footer-container {
    height: auto;
    width: 90%;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    padding: 3rem 0 1rem 0;
  }

  .company {
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .company p {
    font-size: 1.1rem;
  }

  .pages,
  .policy {
    width: 100%;
    height: auto;
  }

  .pages ul,
  .policy ul {
    gap: 0.5rem;
  }

  .contact {
    width: 100%;
    height: auto;
    gap: 0.5rem;
  }

  .contact address {
    gap: 0.5rem;
  }

  .footer-bottom {
    height: auto;
    width: 100%;
    flex-direction: column;
    margin: 1rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* navbar section */
  .navbar-container {
    padding: 0 3.5rem;
  }

  .nav-list {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* service section */
  .about-us-section {
    width: 100%;
    height: auto;
    padding: 1rem 3rem;
  }

  .about-us-container {
    height: auto;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }

  .about-us-image {
    width: 100%;
    height: 520px;
    border-radius: 0 6rem 0 6rem;
  }

  .about-us-content {
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .about-us-content h2 {
    font-size: 3.5rem;
    line-height: 4rem;
    width: 100%;
  }

  .about-us-content p {
    font-size: 1.2rem;
    line-height: 1.7rem;
    width: 100%;
  }

  .about-us-content ul {
    gap: 1rem;
  }

  .about-us-content ul li {
    font-size: 1.2rem;
  }

  .about-us-content ul li i {
    font-size: 1.5rem;
  }

  .doctor-info {
    justify-content: start;
    width: 50%;
    gap: 1rem;
  }

  .doctor-image {
    width: 85px;
    height: 85px;
  }

  .doctor-details {
    gap: 0.3rem;
  }

  .doctor-details h5 {
    font-size: 1.3rem;
  }

  .doctor-details p {
    font-size: 1rem;
  }

  .additional-image {
    margin: 0;
  }

  .services {
    width: 100%;
    height: auto;
    padding: 1rem 3.5rem;
  }

  .service-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    gap: 4rem;
  }

  .services-header {
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }

  .services-info h2 {
    font-size: 2.5rem;
    letter-spacing: 0;
  }

  .services-info p {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }

  .services-parent {
    gap: 2rem;
  }

  /* befor and after section */
  /* footer section */
  .footer {
    height: auto;
    width: 100%;
    margin-top: 2rem;
  }

  .footer-container {
    height: auto;
    width: 90%;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .company {
    width: 45%;
    height: auto;
  }

  .pages,
  .policy {
    width: 45%;
    height: auto;
  }

  #footer-pages,
  #footer-policy,
  #footer-contact {
    font-size: 2rem;
  }

  .pages ul,
  .policy ul {
    gap: 0.5rem;
  }

  .contact {
    width: 45%;
    height: auto;
  }

  .contact address {
    gap: 0.5rem;
  }

  .footer-bottom {
    margin: 2rem 0;
    height: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  /* navbar section */
  .navbar-container {
    padding: 0 3.5rem;
  }

  .nav-list {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Service section */
  .about-us-section {
    padding: 1rem 3rem;
  }

  .about-us-container {
    gap: 2rem;
    padding: 0;
  }

  .about-us-content h2 {
    width: 100%;
  }

  .about-us-content p {
    width: 100%;
  }

  .services {
    height: auto;
    padding: 1rem 3.5rem;
  }

  .service-container {
    height: auto;
    margin: 0;
    padding: 0;
  }

  /* footer section */
  .footer {
    height: 62%;
  }

  .footer-container {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .about-us-section {
    padding: 1rem 3.5rem;
  }

  .about-us-container {
    gap: 3rem;
    padding: 0 3.5rem;
  }

  .about-us-content h2 {
    width: 80%;
  }

  .about-us-content p {
    width: 90%;
  }

  .services {
    height: auto;
    padding: 1rem 3.5rem;
  }

  .service-container {
    height: auto;
    margin: 0;
    padding: 0;
  }

  .services-parent {
    justify-content: center;
  }

  .services-parent .service-item {
    width: 270px;
  }

  .footer {
    height: 50%;
  }

  .footer-container {
    padding: 3rem 2.5rem;
  }
}

/*  */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}
