@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  line-height: 1.6;
  color: #222222;
  background-color: #ffffff;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: rgb(227, 29, 29);
  color: #ffffff;
  padding: 1rem 2rem;
  z-index: 200;
  font-size: 1.4rem;
}
.skip-link:focus {
  top: 0;
}

.section-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
  position: relative;
  padding-bottom: 1.5rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.4rem;
  background: rgb(227, 29, 29);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

#mySidenav {
  display: none;
}

#span {
  display: none;
}

.fullView {
  width: 100vw;
  height: auto;
  padding-top: 0.5rem;
  padding-left: 2rem;
  padding-bottom: 0.5rem;
  background-color: rgb(227, 29, 29);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.contactInfo {
  width: 100vw;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
.contactInfo ul {
  width: 100%;
}
.contactInfo ul li {
  width: auto;
  list-style: none;
}
.contactInfo ul li a {
  text-decoration: none;
}

.socialMedia {
  width: 30vw;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.socialMedia ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 70%;
}
.socialMedia ul li {
  margin: 1rem;
  list-style: none;
}
.socialMedia ul li a {
  text-decoration: none;
}

#contactInfoLinks {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
#contactInfoLinks li a {
  width: auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
}

.fa {
  font-size: 1.6rem;
  width: 2.5rem;
  text-align: center;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.4rem;
  color: rgb(227, 29, 29);
  overflow: hidden;
}

.fa-facebook {
  background: #ffffff;
  color: rgb(227, 29, 29);
}

.fa-whatsapp {
  background: #ffffff;
  color: rgb(227, 29, 29);
}

.fa-instagram {
  background: #ffffff;
  color: rgb(227, 29, 29);
}

.secondaryHeader {
  width: 100vw;
  height: 10vh;
  display: flex;
  flex-direction: row;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
  z-index: 100;
}
.secondaryHeader.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.logo {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.logo img {
  height: 60%;
  width: auto;
  object-fit: contain;
}
.logo p {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: green;
}

.links {
  width: 50%;
  height: 100%;
}
.links ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.links li {
  list-style: none;
}
.links li a {
  margin: 1.5rem;
  font-size: 1.6rem;
  text-decoration: none;
  color: #ff0000;
  transition: color 0.3s ease;
}
.links li a:hover {
  color: #000000;
}

.hero {
  width: 100vw;
  min-height: 80vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 100%), url("https://images.pexels.com/photos/7166939/pexels-photo-7166939.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero h1 {
  color: rgb(80, 208, 80);
  font-size: 4.2rem;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-block;
  border: 0;
  outline: none;
  border-radius: 0.4rem;
  padding: 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgb(227, 29, 29);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.button:hover {
  background: #c41919;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 29, 29, 0.3);
}

.button--outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.button--outline:hover {
  background: #ffffff;
  color: rgb(227, 29, 29);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100vw;
  padding: 4rem 2rem;
  background: #000000;
  color: #ffffff;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3.6rem;
  font-weight: 700;
  color: rgb(227, 29, 29);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cccccc;
  margin-top: 0.5rem;
  display: block;
}

.services {
  width: 100vw;
  padding: 6rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.boxGrid {
  width: 100%;
  aspect-ratio: 16/10;
  background-color: rgb(227, 29, 29);
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.boxGrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
  transition: background 0.4s ease;
  z-index: 1;
}
.boxGrid:hover {
  transform: scale(1.02);
}
.boxGrid:hover::before {
  background: linear-gradient(to top, rgba(227, 29, 29, 0.85) 0%, rgba(0, 0, 0, 0.15) 60%);
}
.boxGrid > * {
  position: relative;
  z-index: 2;
}

#box1, #box2, #box3, #box4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#box1 {
  background-image: url("https://images.pexels.com/photos/2724749/pexels-photo-2724749.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

#box2 {
  background-image: url("https://images.pexels.com/photos/1910472/pexels-photo-1910472.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

#box3 {
  background-image: url("https://images.pexels.com/photos/4497545/pexels-photo-4497545.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

#box4 {
  background-image: url("https://www.elite-roofs.com/wp-content/uploads/residential.jpg");
}

.boxTitles {
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 150;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fefefe;
  border-radius: 1rem;
  margin: 8% auto;
  padding: 4rem;
  border: none;
  font-size: 1.6rem;
  width: 80%;
  max-width: 700px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}
.modal-content h3 {
  font-size: 2.4rem;
  color: rgb(227, 29, 29);
  margin-bottom: 1.5rem;
}
.modal-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.modal-content li {
  margin-bottom: 1rem;
}
.modal-content p {
  margin-bottom: 1rem;
}

.modal-close {
  color: rgb(227, 29, 29);
  float: right;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  background: none;
  border: none;
}
.modal-close:hover {
  color: #000000;
}

.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 90vw;
  margin: 6rem auto;
  align-items: center;
}

.about-us__content {
  font-size: 1.6rem;
}
.about-us__content .section-title {
  text-align: left;
}
.about-us__content .section-title::after {
  left: 0;
  transform: none;
}
.about-us__content p {
  margin-bottom: 1.5rem;
}

.about-us__lead {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(227, 29, 29);
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.4;
}

.about-us__highlights {
  list-style: none;
  margin-top: 2rem;
}
.about-us__highlights li {
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-weight: 600;
}
.about-us__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgb(227, 29, 29);
  font-weight: 700;
}

.about-us__image img {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonials {
  background: #f5f5f5;
  padding: 6rem 2rem;
  width: 100vw;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid rgb(227, 29, 29);
}
.testimonial-card p {
  font-size: 1.6rem;
  line-height: 1.7;
  font-style: italic;
  color: #444444;
}

.testimonial-stars {
  color: rgb(227, 29, 29);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
}

.testimonial-author {
  font-size: 1.4rem;
  color: #888888;
  margin-top: 1.5rem;
  display: block;
  font-style: italic;
}

.service-areas {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.service-areas__intro {
  font-size: 1.6rem;
  color: #666666;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-areas__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}

.area-tag {
  padding: 1rem 2.5rem;
  background: #ffffff;
  border: 2px solid rgb(227, 29, 29);
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(227, 29, 29);
  transition: all 0.3s ease;
  cursor: default;
}
.area-tag:hover {
  background: rgb(227, 29, 29);
  color: #ffffff;
}

.contactBottom {
  width: 100vw;
  min-height: 70vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

.contactBottomPic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.contactBottomPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.25);
}
.contactBottomPic #portraitPic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
  display: none;
}

.contactLeft, .contactRight {
  z-index: 5;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.contactTitle {
  width: 100%;
  color: white;
}
.contactTitle h2 {
  width: 100%;
  padding-left: 5rem;
  font-size: 3rem;
}
.contactTitle .contactTitle__cta {
  padding-left: 5rem;
  font-size: 2.4rem;
  color: rgb(227, 29, 29);
}

.contactInfo2, .contactInfo3, .contactInfo4, .contactInfo5 {
  width: 100%;
  height: auto;
  min-height: 8rem;
  display: flex;
  padding-left: 4rem;
  flex-direction: row;
  align-items: center;
}

.boxIcon {
  width: 5rem;
  flex-shrink: 0;
}
.boxIcon p {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  color: rgb(227, 29, 29);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.boxText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.5rem;
}
.boxText a {
  text-decoration: none;
}
.boxText h3 {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.boxText span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.contactRight form {
  margin: auto;
  width: 85%;
  padding: 3rem 4rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 1rem;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.6rem;
  gap: 0.3rem;
}
.contactRight form label {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 0.8rem;
}

.contactRight form input,
.contactRight form textarea {
  padding: 1rem;
  width: 100%;
  border-radius: 0.4rem;
  border: 1px solid #dddddd;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
}
.contactRight form input:focus,
.contactRight form textarea:focus {
  outline: none;
  border-color: rgb(227, 29, 29);
  box-shadow: 0 0 0 2px rgba(227, 29, 29, 0.1);
}

.contactRight form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contactRight form button {
  width: 100%;
  padding: 1.5rem;
  margin-top: 1rem;
  background: rgb(227, 29, 29);
  color: white;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contactRight form button:hover {
  background: #000000;
}

.footer {
  width: 100vw;
  background-color: #111111;
  color: #ffffff;
  padding: 4rem 2rem 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 1.4rem;
  color: #cccccc;
  font-weight: 600;
}

.footer__links h3, .footer__contact h3, .footer__social h3 {
  color: rgb(227, 29, 29);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.footer__links a, .footer__contact a, .footer__social a {
  color: #cccccc;
  text-decoration: none;
  display: block;
  margin: 0.6rem 0;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}
.footer__links a:hover, .footer__contact a:hover, .footer__social a:hover {
  color: #ffffff;
}

.footer__social-icons {
  display: flex;
  gap: 1rem;
}
.footer__social-icons a {
  display: inline-flex;
  margin: 0;
}
.footer__social-icons .fa {
  font-size: 1.8rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #333333;
  color: #ffffff;
  transition: background 0.3s ease;
}
.footer__social-icons .fa:hover {
  background: rgb(227, 29, 29);
}

.footer__bottom {
  border-top: 1px solid #333333;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.footer__bottom p {
  font-size: 1.4rem;
  color: #888888;
}

.gallery-hero {
  width: 100vw;
  background: #000000;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
.gallery-hero h1 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
}
.gallery-hero p {
  font-size: 1.8rem;
  color: #cccccc;
}

#myBtnContainer {
  height: auto;
  width: 100vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 0.8rem;
}

.btn {
  color: #333333;
  border: 2px solid #dddddd;
  outline: none;
  padding: 1rem 2rem;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.btn:hover {
  border-color: rgb(227, 29, 29);
  color: rgb(227, 29, 29);
}

.btn.active {
  background-color: rgb(227, 29, 29);
  border-color: rgb(227, 29, 29);
  color: white;
}

.galleryCont {
  width: 100vw;
  height: auto;
  padding: 0 1rem;
}

.row {
  column-count: 4;
  column-gap: 8px;
  padding: 0 4px;
}

.gallery-img-wrap {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.4rem;
  margin-top: 8px;
}

.gallery-img-wrap img {
  vertical-align: middle;
  width: 100%;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.gallery-img-wrap img:hover {
  transform: scale(1.05);
}

.columnImg, .kitchens, .bathrooms {
  display: none;
}

.show {
  display: block;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #ffffff;
  font-size: 3.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1.5rem;
  transition: color 0.3s ease;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: rgb(227, 29, 29);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 95vw;
  }
  .about-us {
    grid-template-columns: 1fr;
    width: 90vw;
  }
  .about-us__content .section-title {
    text-align: center;
  }
  .about-us__content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
  }
  .hero-subtitle {
    font-size: 1.6rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .boxGrid {
    aspect-ratio: 16/9;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    flex-wrap: wrap;
  }
  .stat {
    width: 50%;
    padding: 1.5rem;
  }
  .section-title {
    font-size: 2.6rem;
  }
  .gallery-hero h1 {
    font-size: 2.8rem;
  }
  .row {
    column-count: 2;
  }
}
@media screen and (max-width: 1290px) {
  .links {
    display: none;
  }
  .logo {
    width: 100%;
  }
  .fullView {
    padding-left: 0;
  }
  .contactBottom {
    height: auto;
  }
  .contactBottomPic img {
    display: none;
  }
  .contactBottomPic #portraitPic {
    display: block;
  }
  .contactLeft, .contactRight {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .contactTitle {
    padding-top: 2rem;
  }
  .contactTitle h2, .contactTitle .contactTitle__cta {
    padding-left: 0;
    text-align: center;
    font-size: 2rem;
  }
  .contactInfo2, .contactInfo3, .contactInfo4, .contactInfo5 {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 2rem;
    justify-content: center;
    align-items: center;
    min-height: 6rem;
  }
  .contactRight form {
    width: 100%;
    padding: 2rem;
    box-shadow: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
  }
  .contactRight form label {
    color: #ffffff;
  }
  #mySidenav {
    display: flex;
  }
  #span {
    display: block;
    position: absolute;
    right: 1.5rem;
    color: white;
  }
  .sidenav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 110;
    top: 0;
    left: 0;
    background: rgb(227, 29, 29);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
    padding-bottom: 3rem;
  }
  .sidenav a {
    padding: 1.5rem;
    width: auto;
    height: auto;
    text-align: center;
    text-decoration: none;
    font-size: 2rem;
    color: #ffffff;
    display: block;
    transition: 0.3s;
  }
  .sidenav a:hover {
    color: #f1f1f1;
  }
  .fa-facebook {
    background: #333333;
    color: #ffffff;
  }
  .fa-whatsapp {
    background: #333333;
    color: #ffffff;
  }
  .fa-instagram {
    background: #333333;
    color: #ffffff;
  }
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 36px;
    width: 0;
    font-size: 42px;
  }
  #contactInfoLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #contactInfoLinks li a {
    font-size: 1.3rem;
  }
  .socialMedia {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-tagline {
    font-size: 1.2rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .stat-number {
    font-size: 2.8rem;
  }
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__social-icons {
    justify-content: center;
  }
  .row {
    column-count: 1;
  }
  .gallery-hero h1 {
    font-size: 2.2rem;
  }
  .modal-content {
    width: 95%;
    padding: 2.5rem;
    margin: 15% auto;
  }
  .about-us__lead {
    font-size: 1.8rem;
  }
  .contactTitle h2 {
    font-size: 1.8rem;
  }
}
