:root {
  --color--gray-4: #f5f0f0;
  --font-family--body: Inter, sans-serif;
  --color--body: var(--color--gray-1);
  --font-family--heading: "Roboto", "Poppins", sans-serif;
  --color--heading: var(--color--primary-1);
  --color--primary-1: #1d261b;
  --border-radius--sm: 10px;
  --color--secondary-2: #f1c376;
  --color--white: #fdfcfc;
  --border-radius--form-input: 12px;
  --color--primary-2: #fabb0e;
  --color--gray-3: #ebebeb;
  --border-radius--md: 15px;
  --border-radius--button: 12px;
  --color--black\<deleted\|variable-9b64f1b3-27eb-b831-0ca1-24b3f85be6f1\>: #1d1f17;
  --color--secondary-1: #273226;
  --color--gray-2: #d1d1d1;
  --border-radius--lg: 100px;
  --color--transparent: #0000;
  --color--gray-1: #4e4d4d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--color--gray-4);
  font-family: var(--font-family--body);
}

.wrapper {
  height: 100%;
  width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Header */
.site-header {
  height: 150px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.header-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
}

.header-left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 80px;
  border-radius: var(--border-radius--md);
}

.main-navigation .nav-list {
  display: flex;
  gap: 2rem;
  margin-right: 1rem;
}

.nav-item a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color--white);
  transition: all 0.3s ease-in-out;
}

.nav-item a:hover {
  border-bottom: 2px solid var(--color--primary-2);
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  padding: 1.7rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--border-radius--md);
  transition: all 0.3s ease-in-out;
}

.btn-2 {
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--border-radius--md);
  transition: all 0.3s ease-in-out;
}

.contact-link {
  background-color: var(--color--white);
  color: var(
    --color--black\<deleted\|variable-9b64f1b3-27eb-b831-0ca1-24b3f85be6f1\>
  );
}

.contact-link i {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.8rem;
  margin-right: 0.4rem;
  background-color: var(--color--secondary-1);
  color: var(--color--primary-2);
  border-radius: var(--border-radius--lg);
}

.primary:hover {
  background-color: var(--color--primary-2);
}

/* Mobile Menu Styles */

.menu-icon {
  display: none;
  font-size: 1.8rem;
  border: none;
  background-color: var(--color--primary-2);
  padding: 0.8rem;
  border-radius: var(--border-radius--md);
}

.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;
  border-radius: var(--border-radius--md);
}

.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(--color--primary-2);
  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 */
.section-hero {
  height: 100%;
  width: 100%;
  margin-top: -150px;
  background-color: var(--color--primary-1);
}

.container-hero {
  height: 100%;
  width: 100%;
  display: flex;
}

.content-hero {
  height: 100%;
  width: 50%;
  padding-left: 4rem;
  padding-right: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  color: var(--color--white);
}

.heading-primary {
  font-size: 3.7rem;
  line-height: 5rem;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: var(--font-family--heading);
}

.text-intro {
  font-size: 1.2rem;
  line-height: 1.7rem;
  letter-spacing: 1px;
  color: var(--color--gray-2);
}

.hero-action {
  margin-top: 2rem;
}

.hero-action .primary {
  background-color: var(--color--primary-2);
  color: var(
    --color--black\<deleted\|variable-9b64f1b3-27eb-b831-0ca1-24b3f85be6f1\>
  );
}

.hero-action .primary:hover {
  background-color: var(--color--secondary-2);
}

.image-hero {
  height: 100%;
  width: 50%;
  background-image: url(./assets/hero.jpeg);
  background-position: center;
  background-size: cover;
}

/* About us section */
.section-about-us {
  height: 100%;
  width: 100%;
}

.container-about-us {
  height: 100%;
  width: 100%;
  padding: 2rem 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.heading-secondary {
  font-size: 3.1rem;
  font-weight: 600;
  font-family: var(--font-family--heading);
  color: var(--color--heading);
  line-height: 1.3em;
  letter-spacing: 2px;
  margin-top: 2rem;
}

/*========  About Us section  ========*/
.about-us-content {
  display: flex;
  height: auto;
  width: 100%;
  align-items: end;
  justify-content: space-between;
}

.about-us-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: 300px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.8rem;
}

.feature-item i {
  color: var(--color--primary-2);
  font-size: 1.6rem;
}

.feature-item span {
  font-size: 1.4rem;
  font-family: var(--font-family--heading);
  color: var(--color--primary-1);
  font-weight: 600;
}

.about-us-cta {
  margin-top: 2rem;
}

.about-us-cta .secondary {
  background-color: var(--color--primary-1);
  color: var(--color--white);
}

.about-us-cta .secondary:hover {
  background-color: var(--color--primary-2);
  color: var(--color--primary-1);
}

.about-us-image {
  width: 50%;
  height: 300px;
  background-image: url(./assets/image-5.jpeg);
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius--md);
  border: none;
}

/*========= Why Choose Section  =========*/
.why-choose {
  height: 100%;
  width: 100%;
}

.why-choose-container {
  height: 100%;
  width: 100%;
  padding: 4rem;
}

.why-choose-heading {
  font-size: 2.5rem;
  color: var(--color--primary-1);
  text-align: center;
}

.why-choose-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 200px;
  width: 430px;
  padding: 1.5rem;
  background-color: var(--color--white);
  border-radius: var(--border-radius--md);
  transition: all 0.3s ease-in-out;
}

.why-choose-item:hover {
  background-color: var(--color--primary-2);
}

.why-choose-item:hover .why-choose-content h5,
.why-choose-item:hover .why-choose-content p {
  color: var(--color--white);
}

.why-choose-item img {
  height: 70px;
  width: 70px;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-content h5 {
  font-size: 1.3rem;
  color: var(
    --color--black\<deleted\|variable-9b64f1b3-27eb-b831-0ca1-24b3f85be6f1\>
  );
}

.why-choose-content p {
  font-size: 1.1rem;
  line-height: 1.4rem;
  color: var(--color--gray-1);
}

/*========== Gallery Section =========*/
.section-gallery {
  height: auto;
  width: 100%;
  position: relative;
}

.container-gallery {
  height: 110vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 8rem 4rem 0;
  background-color: var(--color--secondary-1);
}

.gallery-row {
  width: 100%;
  display: flex;
  gap: 3rem;
}

.gallery-image-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius--md);
  height: 450px;
  position: relative;
}

.gallery-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
}

.gallery-image-wrapper:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-image-top-left {
  background-image: url(./assets/image-4.jpeg);
}

.gallery-image-top-right {
  background-image: url(./assets/image-2.jpeg);
}

.gallery-image-bottom-left {
  background-image: url(./assets/image-1.jpeg);
}

.gallery-row-top .gallery-image-wrapper:first-child {
  width: 35%;
}

.gallery-row-top .gallery-image-wrapper:last-child {
  width: 65%;
}

.gallery-row-bottom .gallery-image-wrapper {
  width: 65%;
}

.gallery-content {
  height: 450px;
  width: 35%;
  background-color: var(--color--secondary-2);
  border-radius: var(--border-radius--md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7rem;
}

.gallery-heading {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color--text-light);
}

.gallery-action .btn-secondary {
  background-color: var(--color--white);
  color: var(
    --color--black\<deleted\|variable-9b64f1b3-27eb-b831-0ca1-24b3f85be6f1\>
  );
  transition: all 0.3s ease-in-out;
}

.gallery-action:hover .btn-secondary {
  color: var(--color--white);
  background-color: var(--color--primary-1);
}

/* Footer contact section */
.footer-contact-section {
  height: 160px;
  width: 100%;
  margin-top: 25rem;
  background-color: var(--color--secondary-1);
}

.footer-contact-container {
  height: 100%;
  width: 100%;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color--white);
}

.footer-contact-title {
  font-size: 3rem;
  font-weight: 500;
}

.footer-contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* justify-content: space-between; */
}

.contact-icon {
  height: 60px;
  padding: 0.8rem;
  background-color: var(--color--primary-2);
  border-radius: var(--border-radius--lg);
}

.contact-item .contact-link {
  background: none;
  color: var(--color--white);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Footer section */
.site-footer {
  height: 83%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 4rem 3rem;
  background-color: var(--color--primary-1);
  color: var(--color--white);
}

.footer-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--color--gray-1);
  padding-bottom: 3rem;
}

.footer-company-info {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  height: 100px;
  border-radius: var(--border-radius--md);
}

.footer-description {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: 1px;
  color: var(--color--gray-2);
}

.footer-subheading {
  color: var(--color--primary-2);
  font-size: 2rem;
  font-weight: 500;
}

.social-icons-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-top: 1.5rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  font-size: 2rem;
  border-radius: var(--border-radius--lg);
  background-color: var(--color--white);
  transition: all 0.3s ease;
}

/* Instagram */
.social-icon-link[href*="instagram"] {
  color: #e1306c;
}

.social-icon-link[href*="instagram"]:hover {
  background-color: #e1306c;
  color: #fff;
  transform: scale(1.1) translateY(-5px);
}

/* Facebook */
.social-icon-link[href*="facebook"] {
  color: #3b5998;
}

.social-icon-link[href*="facebook"]:hover {
  background-color: #3b5998;
  color: #fff;
  transform: scale(1.1) translateY(-5px);
}

/* LinkedIn */
.social-icon-link[href*="linkedin"] {
  color: #0077b5;
}

.social-icon-link[href*="linkedin"]:hover {
  background-color: #0077b5;
  color: #fff;
  transform: scale(1.1) translateY(-5px);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color--white);
  transition: all 0.3s ease-in-out;
}

.footer-link:hover {
  color: var(--color--primary-2);
}

.footer-google-map .footer-subheading {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-google-map iframe {
  text-align: center;
  border-radius: var(--border-radius--md);
}

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

.md-aftab {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color--primary-2);
  transition: all 0.3s ease-in-out;
}

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

/* background-section */
.background-section {
  height: 60%;
  width: 100%;
  margin-top: -150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color--primary-1);
}

.background-section h1 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-top: 4rem;
  color: var(--color--white);
  font-family: var(--font-family--heading);
}

@media (max-width: 767px) {
  /* Header */
  .site-header {
    height: 100px;
  }

  .header-container {
    padding: 1rem 1.5rem;
  }

  .brand-logo img {
    height: 70px;
  }

  .main-navigation .nav-list {
    display: none;
  }

  .contact-info .primary {
    display: none;
  }

  .contact-info .secondary {
    padding: 1.5rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: var(--color--primary-2);
    border-radius: var(--border-radius--md);
    transition: all 0.3s ease-in-out;
  }

  .menu-icon {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero section */
  .section-hero {
    height: auto;
    width: 100%;
    margin-top: -100px;
  }

  .container-hero {
    height: auto;
    width: 100%;
    flex-direction: column;
  }

  .content-hero {
    height: auto;
    width: 100%;
    padding: 1.5rem;
    margin-top: 7rem;
    gap: 1.5rem;
  }

  .heading-primary {
    font-size: 2.7rem;
    line-height: 3.5rem;
  }

  .text-intro {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  .image-hero {
    height: 400px;
    width: 100%;
    margin-top: 2rem;
  }

  /* About us section */
  .section-about-us {
    height: auto;
    width: 100%;
    margin-top: 0;
  }

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

  .heading-secondary {
    font-size: 1.4rem;
    letter-spacing: 0;
  }

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

  .about-us-features {
    flex-direction: column;
    gap: 0.7rem;
    height: auto;
    margin-top: 2rem;
  }

  .feature-item {
    gap: 1rem;
  }

  .feature-item span {
    font-size: 1rem;
  }

  .about-us-cta {
    margin-top: 3rem;
  }

  .about-us-image {
    width: 100%;
    height: 300px;
    margin-top: 3rem;
  }

  /* Why Choose Section */
  .why-choose {
    height: auto;
    width: 100%;
  }

  .why-choose-container {
    height: auto;
    width: 100%;
    padding: 1.5rem;
  }

  .why-choose-items {
    margin: 2rem 0;
  }

  .why-choose-item {
    justify-content: center;
    text-align: center;
    gap: 2rem;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 2.5rem 1.5rem;
  }

  .why-choose-item img {
    height: 80px;
    width: 80px;
  }

  /* Gallery Section */
  .section-gallery {
    height: auto;
    width: 100%;
    position: relative;
  }

  .container-gallery {
    height: auto;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 1.5rem;
  }

  .gallery-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .gallery-image-wrapper {
    height: 180px;
  }

  .gallery-row-top .gallery-image-wrapper:first-child {
    height: 400px;
    width: 100%;
  }

  .gallery-row-top .gallery-image-wrapper:last-child {
    width: 100%;
  }

  .gallery-row-bottom .gallery-image-wrapper {
    width: 100%;
  }

  .gallery-content {
    height: 400px;
    width: 100%;
    gap: 7rem;
  }

  .gallery-heading {
    font-size: 2rem;
    letter-spacing: 0;
  }

  /* Footer contact section */
  .footer-contact-section {
    height: auto;
    width: 100%;
    margin-top: 10rem;
  }

  .footer-contact-container {
    padding: 3rem 1.5rem;
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }

  .footer-contact-title {
    font-size: 2.5rem;
  }

  .footer-contact-details {
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }

  .contact-icon {
    height: 50px;
  }

  /* Footer section */
  .site-footer {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .footer-wrapper {
    height: auto;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 0;
  }

  .footer-company-info {
    width: 100%;
  }

  .footer-navigation,
  .footer-social-media {
    width: 100%;
    text-align: left;
  }

  .footer-links-list {
    align-items: start;
  }

  .footer-google-map .footer-subheading {
    text-align: start;
  }

  .footer-google-map {
    width: 100%;
  }

  .footer-google-map iframe {
    height: 250px;
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }

  /* Background section */
  .background-section {
    height: 40%;
    margin-top: -100px;
  }

  .background-section h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Header */
  .header-container {
    padding: 2rem 3rem;
  }

  /* Hero section */
  .hero-action {
    height: auto;
  }

  .container-hero {
    height: auto;
    flex-direction: column;
  }

  .content-hero {
    height: 60vh;
    width: 100%;
    padding: 0 3.5rem;
  }

  .image-hero {
    height: 60vh;
    width: 100%;
  }

  /* About us section */
  .section-about-us {
    height: auto;
    width: 100%;
    margin-top: 15rem;
  }

  .container-about-us {
    height: auto;
    width: 100%;
    padding: 3rem 3.5rem 0;
  }

  .heading-secondary {
    font-size: 2.5rem;
    line-height: 1.3em;
    letter-spacing: 1px;
  }

  .about-us-content {
    height: auto;
    flex-direction: column-reverse;
    align-items: start;
    margin-top: 3rem;
  }

  .about-us-image {
    width: 100%;
    height: 500px;
  }

  /* Why Choose Section */
  .why-choose {
    height: auto;
  }

  .why-choose-container {
    height: auto;
    padding: 3.5rem;
  }

  .why-choose-item {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width: 310px;
    height: auto;
    padding: 2rem;
  }

  /* Gallery Section */
  .section-gallery {
    height: auto;
    width: 100%;
    position: relative;
  }

  .container-gallery {
    height: auto;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 3.5rem;
  }

  .gallery-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .gallery-image-wrapper {
    height: 300px;
  }

  .gallery-row-top .gallery-image-wrapper:first-child {
    height: 500px;
    width: 100%;
  }

  .gallery-row-top .gallery-image-wrapper:last-child {
    width: 100%;
  }

  .gallery-row-bottom .gallery-image-wrapper {
    width: 100%;
  }

  .gallery-content {
    height: 500px;
    width: 100%;
    gap: 7rem;
  }

  .gallery-heading {
    font-size: 2rem;
    letter-spacing: 0;
  }

  /* Footer contact section */
  .footer-contact-section {
    height: auto;
    margin-top: 10rem;
  }

  .footer-contact-container {
    height: auto;
    padding: 3.5rem;
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }

  .footer-contact-title {
    font-size: 3.5rem;
  }

  .footer-contact-details {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1.5rem;
  }

  .contact-item {
    gap: 1rem;
  }

  .contact-icon {
    height: 80px;
    padding: 1rem;
  }

  .contact-item .contact-link {
    font-size: 1.5rem;
  }

  /* Footer section */
  .site-footer {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 3.5rem;
  }

  .footer-wrapper {
    height: auto;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 0;
  }

  .footer-company-info {
    width: 100%;
  }

  .footer-navigation,
  .footer-social-media {
    width: 100%;
    text-align: left;
  }

  .footer-links-list {
    align-items: start;
  }

  .footer-google-map .footer-subheading {
    text-align: start;
  }

  .footer-google-map {
    width: 100%;
  }

  .footer-google-map iframe {
    height: 400px;
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
  /* Background section */
  .background-section {
    height: 40%;
  }

  .background-section h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  /* About us section */
  .section-about-us {
    height: auto;
  }

  .container-about-us {
    height: auto;
    padding: 2rem 3.5rem 0;
  }

  .heading-secondary {
    font-size: 3rem;
  }

  .about-us-content {
    margin-top: 5rem;
  }

  /* Why Choose Section */
  .why-choose {
    height: auto;
  }

  .why-choose-container {
    height: auto;
    padding: 3.5rem;
  }

  .why-choose-items {
    gap: 4rem;
  }

  /* Gallery Section */
  .container-gallery {
    height: 150vh;
  }

  .gallery-content {
    padding: 2rem 1.5rem;
    gap: 5rem;
  }

  .gallery-heading {
    font-size: 2rem;
  }

  /* Footer contact section */
  .footer-contact-section {
    margin-top: 17rem;
  }

  .footer-contact-container {
    padding: 3.5rem;
  }

  .footer-contact-title {
    font-size: 2rem;
  }

  .footer-contact-details {
    gap: 1.5rem;
  }

  .contact-item {
    gap: 0.5rem;
  }

  .contact-icon {
    height: 40px;
    padding: 0.5rem;
  }

  .contact-item .contact-link {
    font-size: 1rem;
  }

  /* Footer section */
  .site-footer {
    height: 100%;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  /* About us section */
  .about-us-content {
    margin-top: 4rem;
  }

  /* Why Choose Section */
  .why-choose {
    height: auto;
  }

  .why-choose-container {
    height: auto;
  }

  /* Gallery Section */
  .gallery-heading {
    font-size: 2rem;
  }

  /* Footer contact section */
  .footer-contact-section {
    margin-top: 22rem;
  }

  .footer-contact-container {
    padding: 3.5rem;
  }

  .footer-contact-title {
    font-size: 2rem;
  }

  .footer-contact-details {
    gap: 1rem;
  }

  .contact-item {
    gap: 0.8rem;
  }

  .contact-icon {
    height: 40px;
    padding: 0.5rem;
  }

  .contact-item .contact-link {
    font-size: 1.1rem;
  }
}

/* whatsapp button */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

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

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