* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Poppins', sans-serif;
  }
  
  .header {
    min-height: 72vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(6.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden; /* Add this to prevent content from spilling out */
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  
nav {
  display: flex;
  padding: 20px 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 220px;
  height: auto;
}

.nav-link {
  flex: 1;
  text-align: right;
}


.nav-link ul {
  margin: 0;
  padding: 0;
}

.nav-link ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 5px 0; /* Added margin-top of 10px */
  padding: 15px 20px;
  position: relative;
}

.nav-link ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 5px;
}

.nav-link ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #E65C2D;
  display: block;
  margin: auto;
  transition: width 0.3s ease;
}

.nav-link ul li:hover::after {
  width: 100%;
}

.nav-link ul li a:hover {
  color: #fff;
  transition: color 0.3s ease;
}
.nav-link ul li ul.dropdown li{
   display: block;
   background: black;
   margin: 2px 0px;
   text-align: center;
}
.nav-link ul li ul.dropdown{
  width: auto;
  background: none;
  position: absolute;
  z-index: 999;
  display: none;
  top: 100%;
  left: 0px;
}
.nav-link ul li:hover ul.dropdown{
  display: block;
}
#arrow1, #arrow2 {
  display: none;
}
  .text-box {
    width: 80%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
  }
  
  .text-box h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  
  nav .fa{
      display: none;
  }


  
  
  /* Intro Section */
  .Intro {
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .Intro h1 {
    font-size: 2.5em;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 30px;
  }
  
  .logo-image-intro {
    max-width: 165px;
    margin-bottom: -5px;
    margin: 0 auto;
    display: block;
  }
  
  .Intro h2 {
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .company-overview-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .company-overview {
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: none;
    box-shadow: none;
  }
  
  .company-overview p {
    text-align: left;
    font-size: 1.3em;
    font-weight: 200;
  }
  
  .company-overview span {
    font-weight: 500;
    text-align: center;
    font-size: 1.8em;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
  }
  
  .company-overview-image {
    max-width: 300px;
  }
  
  

  .services {
    padding: 60px 20px;
    text-align: center;
    background: none;
}

.services h1 {
    font-size: 2.5em; /* Matching the intro h1 */
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    color: black;
    margin-bottom: 20px;
}

.services h2 {
    font-size: 1.8em; /* Slightly smaller than the intro h2 for hierarchy */
    font-weight: 500;
    color: black;
    margin-bottom: 15px;
    line-height: 1.4;
}

.services p {
    font-size: 1.4em; /* Matching the intro paragraph size */
    color: black;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.service-box {
  flex-basis: calc(30% - 20px); /* Reduced box size */
  text-align: center;
  background: #fff;
  padding: 15px; /* Reduced padding */
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease;
  border-radius: 10px; /* Added rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}

.service-box img {
  max-width: 100%;
  height: 350px; /* Fixed image height for symmetry */
  object-fit: cover; /* Ensures images are cropped to fit */
  margin-bottom: 10px;
  border-radius: 10px; /* Added rounded corners */
}

.service-box h3 {
  font-size: 1.2em; /* Slightly decreased font size */
  color: #000;
  margin-bottom: 5px;
}

.service-box p {
  font-size: 1em; /* Decreased font size for better spacing */
  color: black;
  line-height: 1.5;
}

.service-box:hover {
  transform: scale(1.02);
}
/* Gallery Section */
.gallery {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.gallery h1 {
    font-size: 2.5em;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 20px;
}

.gallery p {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 40px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex-basis: calc(33.33% - 20px);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
    position: relative;
    margin: 3% auto;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    line-height: 0;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 5px;
    right: 21px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 25px;
    margin-left: -50%;
    margin-top: -22px;
    color: white;
    font-weight: bolder;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: #E65C2D;
}
.prev, .next {
  &:hover {
    background-color: transparent; /* Reset background color on smaller screens */
  }
}

/* Customer Reviews Section */

.reviews-container{
    margin-bottom: 35px;
}

.customer-reviews {
    width: 80%;
    margin: 40px auto;
    text-align: center;
    padding-top: 40px;
}

.customer-reviews h1 {
    font-size: 2.5em;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 20px;
}

.review-intro {
    width: 90%;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 1.4em;
    text-align: center;
}

.reviews-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.review-box {
    display: flex;
    align-items: center;
    background-color: #efebeb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    flex-basis: 43%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.review-box:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.review-profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-content {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.1em;
    color: #333;
}

.reviewer-address {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

.review-stars {
    margin-top: 10px;
}

.review-stars i {
    font-size: 1.2em;
    color: #E65C2D;
}



  /* Contact Section */
  .contact {
    min-height: 30vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Contact.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden; /* Add this to prevent content from spilling out */
  }
  
  .contact-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0;
  }
  
  .contact p {
    font-size: 1.6em;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 35px;
  }
  
  .contact-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .contact-btn:hover {
    background-color: #E65C2D;
    border-color: #E65C2D;
    transform: scale(1.05);
  }
  
  
  .construction-feedback {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 5%;
    padding-top:111px;
  }
  
  .construction-feedback h1 {
    font-size: 2.5em;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 20px;
  }
  
  .feedback-intro {
    font-size: 1.4em;
    color: black;
    margin-bottom: 30px;
  }
  
  .feedback-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }
  
  .feedback-item {
    width: 20%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
  }
  
  .feedback-item i {
    font-size: 2.5em;
    color: #E65C2D;
    margin-bottom: 10px;
  }
  
  .feedback-item p {
    font-size: 1.2em;
    color: black;
    margin-bottom: 5px;
  }
  
  .feedback-item span {
    font-size: 1.8em;
    color: #000;
    font-weight: bold;
  }
  
  .feedback-item:hover {
    transform: scale(1.05);
  }
  
  
  
  
  .footer {
    padding: 20px 0;
    text-align: center;
    color: black;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    display: inline-block;
    vertical-align: top;
    margin: 0 40px;
  }
  
  .footer-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    font-size: 12px;
    margin: 0;
    margin-bottom: 9px;
  }
  
  .footer-section a {
    font-size: 18px;
    margin: 0;
    color: black;
  }
  
  .footer-section a:hover {
    color: #E65C2D;
  }
  
  .quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .quick-links li:first-child {
    display: block;
  }
  
  .quick-links li:not(:first-child) {
    display: inline-block;
    margin: 0 4px;
  }
  
  .quick-links li a {
    font-size: small;
    color: black;
    text-decoration: none;
  }
  
  .quick-links li a:hover {
    color: #E65C2D;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    color: black;
  }
  
  /* Hide the scrollbar background and set up thumb styles */
  /* Entire scrollbar */
  ::-webkit-scrollbar {
    width: 8px; /* Width for vertical scrollbar */
    height: 4px; /* Height for horizontal scrollbar */
  }
  
  /* Scrollbar track */
  ::-webkit-scrollbar-track {
    background: none; /* No background for the track */
  }
  
  /* Scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background-color: #E65C2D; /* Thumb color */
    border-radius: 0px; /* Rounded corners */
    height: 4px; /* Reduced height of the draggable thumb */
    transition: all 0.2s ease-in-out; /* Smooth transition for size changes */
  }
  
  /* Hover effect on scrollbar thumb */
  ::-webkit-scrollbar-thumb:hover {
    height: 8px; /* Thumb height increases when hovered */
    width: 12px; /* Thumb width increases when hovered */
  }
  
  /* Scrollbar buttons */
  ::-webkit-scrollbar-button {
    display: none; /* Hide scrollbar buttons */
  }
  
  /* Scrollbar resizer */
  ::-webkit-scrollbar-resizer {
    background: none; /* No background for the resizer */
  }
  
  


    @media (max-width: 1200px) {
      .contact-btn:hover {
        background-color: transparent;
        border-color: #fff;
        transform: scale(1);
      }
      .quick-links li:first-child a:hover,
      .quick-links li:nth-child(4) a:hover {
        color: black;
      }
      nav img {
        width: 170px;
        height: auto;
      }
      #arrow1, #arrow2 {
        display: inline;
      }
      
      /* Initially, hide the up arrow */
      #arrow2 {
        display: none;
      }
    }


  @media (max-width: 1041px) {
    .reviews-container {
      margin-bottom: 35px;
      justify-content: center;
    }
    .customer-reviews {
      width: 90%;
      margin: 30px auto;
      padding-top: 30px;
    }
    .customer-reviews h1 {
      font-size: 2.2em;
      margin-bottom: 15px;
    }
    .review-intro {
      width: 100%;
      margin: 0 auto 30px;
      font-size: 1.3em;
    }
    .review-box {
      flex-basis: 100%;
      padding: 15px;
    }
    .review-profile-pic {
      width: 50px;
      height: 50px;
      margin-right: 10px;
    }
    .reviewer-name {
      font-size: 1em;
    }
    .reviewer-address {
      font-size: 0.8em;
    }
  }


  @media (max-width: 970px) {
    .nav-link ul li {
      margin: 0 10px;
      padding: 10px 10px;
    }
    .nav-link ul li a {
      font-size: 15px;
    }
    .text-box h1 {
      font-size: 3.5em;
    }
    .text-box p {
      font-size: 1.2em;
    }
    .Hero-btn {
      padding: 10px 30px;
      font-size: 0.9em;
    }
    nav {
      padding: 20px 4%;
    }
    nav img {
      width: 140px;
      height: auto;
    }
    .contact p {
      font-size: 1.4em;
      margin-bottom: 25px;
      margin-left: -15px;
    }
    .contact-btn {
      padding: 10px 25px;
      font-size: 0.9em;
    }
    .contact-overlay {
      padding: 0 20px;
    }
    .reviews-container {
      justify-content: center;
    }
    .review-box {
      flex-basis: 60%;
      padding: 15px;
    }
    .review-profile-pic {
      width: 50px;
      height: 50px;
      margin-right: 10px;
    }
    .reviewer-name {
      font-size: 1em;
    }
    .reviewer-address {
      font-size: 0.8em;
    }
    .feedback {
      padding: 30px 0;
      margin-bottom: 3%;
    }
    .feedback h1 {
      font-size: 2.2em;
      margin-bottom: 15px;
    }
    .feedback-intro {
      font-size: 1.3em;
      margin-bottom: 25px;
    }
    .feedback-container {
      flex-wrap: wrap;
    }
    .feedback-item {
      width: 45%;
      margin: 0 5px;
    }
    .feedback-item i {
      font-size: 2em;
    }
    .feedback-item p {
      font-size: 1em;
    }
    .feedback-item span {
      font-size: 1.5em;
    }
    .gallery {
      padding: 40px 20px;
    }
    .gallery h1 {
      font-size: 2.2em;
    }
    .gallery p {
      font-size: 1.3em;
    }
    .gallery-item {
      flex-basis: calc(50% - 20px);
    }
    .gallery-item img {
      margin-bottom: 10px;
    }
    .lightbox-content {
      margin: 5% auto;
    }
    .lightbox-content img {
      border-radius: 5px;
    }
    .prev, .next {
      padding: 15px;
      font-size: 18px;
    }
    .lightbox .close {
      font-size: 35px;
    }
    .services {
      padding: 40px 20px;
    }
    .services h1 {
      font-size: 2.2em;
    }
    .services h2 {
      font-size: 1.6em;
    }
    .services p {
      font-size: 1.3em;
      margin-bottom: 30px;
    }
    .service-box {
      flex-basis: calc(50% - 20px);
    }
    .service-box img {
      margin-bottom: 10px;
    }
    .service-box h3 {
      font-size: 1.3em;
    }
    .service-box p {
      font-size: 1em;
    }
    .prev, .next {
      &:hover {
        background-color: transparent; /* Reset background color on smaller screens */
      }
    }
  }
  
  


  @media (max-width: 769px) {
    .nav-link {
      width: 200px;
      position: absolute;
      top: 0;
      right: -210px;
      background: #E65C2D;
      height: 100vh;
      text-align: left;
      z-index: 2;
      transition: 0.5s;
  }
  
  
  .nav-link ul li {
    display: block;
    margin: 10px 0; /* Consistent spacing between menu items */
  }
  
  .nav-link ul {
    padding: 25px;
    margin-top: -25px;
    margin-left: -25px;
  }
  
  .nav-link ul li a {
    font-size: 13px; /* Consistent font size */
    color: white; /* Consistent color */
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s ease;
  }
  
  nav .fa {
      display: block;
      color: #fff;
      font-size: 21px;
      cursor: pointer;
      padding: 15px;
  }
  
  nav img {
    width: 130px;
    height: auto;
  }
  
  .nav-link ul li ul.dropdown {
    display: none; /* Show the sub-links */
    position: relative;
    top: 30px;
    left: 32px;
    background: none;
    padding: 0;
    margin-bottom: 15px;
  }
  
  .nav-link ul li ul.dropdown li {
    margin: 2px 0; /* Increased margin to 10px */
    background: none;
    text-align: left;
  }
  
  .nav-link ul li ul.dropdown li a {
    color: white; /* Change the color to your preference */
    font-size: 12px;
  }
  

  .text-box h1 {
    font-size: 2.1em;
  }

  .construction-feedback {
    text-align: center;
    padding: 30px 0; /* Increased padding for larger screens */
    margin-bottom: 15%; /* Increased margin for larger screens */
    padding-top: 30px; /* Increased padding for larger screens */
  }
  .construction-feedback h1 {
    font-size: 2.5em; /* Increased font size for larger screens */
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 20px; /* Increased margin for larger screens */
  }
  .feedback-intro {
    font-size: 1.5em; /* Increased font size for larger screens */
    color: black;
    margin-bottom: 25px; /* Increased margin for larger screens */
  }
  .feedback-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Increased gap between items for larger screens */
  }
  .feedback-item {
    width: 80%; /* Adjusted width for larger screens */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 15px; /* Increased margin for larger screens */
  }
  .feedback-item i {
    font-size: 2.5em; /* Increased font size for larger screens */
    color: #E65C2D;
    margin-bottom: 15px; /* Increased margin for larger screens */
  }
  .feedback-item p {
    font-size: 1.2em; /* Increased font size for larger screens */
    color: black;
    margin-bottom: 10px; /* Increased margin for larger screens */
  }
  .feedback-item span {
    font-size: 1.8em; /* Increased font size for larger screens */
    color: #000;
    font-weight: bold;
  }
  .feedback-item:hover {
    transform: scale(1.1); /* Increased transform value for larger screens */
  }

  .gallery {
    text-align: center;
    padding: 40px 20px; /* Increased padding for larger screens */
    margin-bottom: 30px; /* Increased margin for larger screens */
  }
  .gallery h1 {
    font-size: 2.5em; /* Increased font size for larger screens */
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 20px; /* Increased margin for larger screens */
  }
  .gallery p {
    font-size: 1.3em; /* Increased font size for larger screens */
    color: #333;
    margin-bottom: 25px; /* Increased margin for larger screens */
  }
  .gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Increased gap between items for larger screens */
    justify-content: center;
  }
  .gallery-item {
    flex-basis: 80%; /* Adjusted width for larger screens */
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .lightbox-content {
    position: relative;
    margin: 35% auto; /* Increased margin-top to move image down */
    max-width: 90%; /* Increased max-width for larger screens */
    max-height: 90%; /* Increased max-height for larger screens */
    text-align: center;
    line-height: 0;
  }
  .lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .lightbox .close {
    position: absolute;
    top: 15px; /* Increased top margin for larger screens */
    right: 15px; /* Increased right margin for larger screens */
    color: #fff;
    font-size: 30px; /* Increased font size for larger screens */
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
  }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 15px; /* Increased padding for larger screens */
    margin-left: -50%;
    margin-top: -25px; /* Increased margin-top for larger screens */
    color: white;
    font-weight: bolder;
    font-size: 25px; /* Increased font size for larger screens */
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .prev:hover, .next:hover {
    background-color: #E65C2D;
  }
  .prev, .next {
    &:hover {
      background-color: transparent; /* Reset background color on smaller screens */
    }
  }

  .customer-reviews {
    width: 100%;
    margin: 30px auto; /* Increased margin for larger screens */
    text-align: center;
    padding-top: 30px; /* Increased padding for larger screens */
  }
  .customer-reviews h1 {
    font-size: 2.2em; /* Increased font size for larger screens */
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    margin-bottom: 20px; /* Increased margin for larger screens */
  }
  .review-intro {
    width: 100%;
    margin: 0 auto 30px; /* Increased margin for larger screens */
    line-height: 1.6;
    font-size: 1.2em; /* Increased font size for larger screens */
    text-align: center;
  }
  .reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased gap between review boxes for larger screens */
    flex-wrap: wrap;
  }
  .review-box {
    display: flex;
    align-items: center;
    background-color: #efebeb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px; /* Increased padding for larger screens */
    text-align: left;
    flex-basis: 80%; /* Adjusted width for larger screens */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: auto;
    min-height: 200px; /* Increased min-height for larger screens */
    overflow: hidden;
  }
  .review-box:hover {
    transform: scale(1.05); /* Increased transform value for larger screens */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  .review-profile-pic {
    width: 50px; /* Increased width for larger screens */
    height: 50px; /* Increased height for larger screens */
    border-radius: 50%;
    margin-right: 15px; /* Increased margin for larger screens */
    object-fit: cover;
  }
  .review-content {
    flex-grow: 1;
  }
  .reviewer-name {
    font-weight: bold;
    margin-top: 15px; /* Increased margin for larger screens */
    font-size: 1em; /* Increased font size for larger screens */
    color: #333;
  }
  .reviewer-address {
    font-size: 0.9em; /* Increased font size for larger screens */
    color: #777;
    margin-top: 10px; /* Increased margin for larger screens */
  }
  .review-stars {
    margin-top: 15px; /* Increased margin for larger screens */
  }
  .review-stars i {
    font-size: 1.1em; /* Increased font size for larger screens */
    color: #E65C2D;
  }



  div[style*="height: 35px"] {
    display: none;
  }
  .footer {
    padding: 30px 0;
  }
  .footer-container {
    padding: 0 30px;
  }
  .footer-section {
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px; /* Adjusted margin between sections */
  }
  .footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px; /* Reduced margin */
  }
  .footer-section p {
    font-size: 14px; /* Reduced font size for About Us paragraph */
    margin-bottom: 11px;
  }
  .footer-section a {
    font-size: 18px;
  }
  .quick-links {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .quick-links li:not(:first-child) {
    display: none; /* Hide all quick links except for the first one (FB icon) */
  }
  .quick-links li {
    margin: 0;
    font-size: 18px;
  }
  .footer-bottom {
    margin-bottom: -3%;
    margin-top: 1px; /* Adjusted margin */
    font-size: 11px;
    text-align: center;
  }
  .Intro {
    padding: 30px 20px; /* Reduced padding for larger screens */
    margin-bottom: 30px; /* Increased margin for larger screens */
  }
  .Intro h1 {
    font-size: 2.5em; /* Increased font size for larger screens */
    margin-bottom: 30px; /* Increased margin for larger screens */
  }
  .Intro h2 {
    font-size: 2em; /* Increased font size for larger screens */
    margin-bottom: 30px; /* Increased margin for larger screens */
  }
  .company-overview-container {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Increased gap between boxes for larger screens */
  }
  .company-overview {
    max-width: 100%;
    margin-bottom: 10px; /* Increased margin for larger screens */
  }
  .company-overview-image {
    max-width: 60%;
  }
  
  .services {
    padding: 40px 20px;
    text-align: center;
    background: none;
  }
  .services h1 {
    font-size: 2.5em;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
    color: black;
    margin-bottom: 20px;
  }
  .services h2 {
    font-size: 1.8em;
    font-weight: 500;
    color: black;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .services p {
    font-size: 1.3em;
    color: black;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .service-box {
    flex-basis: 80%;
    text-align: center;
    background: #fff;
    padding: 20px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
    border-radius: 10px; /* Added rounded corners */
    transition: transform 0.3s ease;
  }

  .service-box img {
    max-width: 80%;
    height: auto;
    margin-bottom: 15px;
    object-fit: cover;
  }

  .service-box h3 {
    font-size: 1.5em;
    color: #000;
    margin-bottom: 15px;
  }

  .service-box p {
    font-size: 1.2em;
    color: black;
    line-height: 1.5;
  }

  .service-box:hover {
    transform: scale(1.05);
  }

  .contact {
    min-height: 30vh; /* Increased min-height for larger screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  .contact-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Added padding for larger screens */
  }
  .contact p {
    font-size: 1.1em; /* Increased font size for larger screens */
    color: #fff;
    line-height: 1.5;
    margin-bottom: 30px; /* Increased margin for larger screens */
    margin-left: -11px; /* Removed margin-left for center alignment */
    text-align: center; /* Centered text */
  }
  .contact-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 26px; /* Increased padding for larger screens */
    font-size: 1em; /* Increased font size for larger screens */
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .contact-btn:hover {
    background-color: #E65C2D;
    border-color: #E65C2D;
    transform: scale(1.05);
  }
  
  }

  @media (max-width: 480px) {
    /* Menu styles you provided */
    .nav-link {
      width: 100%;
      position: fixed;
      top: 0;
      right: -100%;
      background: #E65C2D;
      height: 100vh;
      text-align: left;
      z-index: 3;
      transition: 0.5s;
    }
  
    .nav-link ul li {
      display: block;
      margin: 20px 0;
    }
  
    .nav-link ul li a {
      font-size: 17px; /* Consistent font size */
    }
  
    .nav-link ul {
      padding: 40px;
      margin-top: -55px;
      margin-left: -25px; /* Add this line to move the menu links to the left */
    }
    
  
    nav .fa {
      display: block;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      padding: 20px;
    }
  
    nav img {
      width: 110px;
      height: auto;
    }

    .nav-link ul li ul.dropdown {
      top: 60px;
      left: 35px;
      margin-bottom: 40px;
    }
  
    .nav-link ul li ul.dropdown li {
      margin: 25px 0;
    }
    
    .nav-link ul li ul.dropdown li a {
      font-size: 16px;
    }
  
    /* Intro section styles */
    .Intro {
      padding: 40px 20px;
      margin-bottom: 20px;
    }
    
    .Intro h1 {
      font-size: 2em;
      margin-bottom: 20px;
    }
    
    .Intro h2 {
      font-size: 1.8em;
      margin-bottom: 20px;
    }
    
    .company-overview-container {
      flex-direction: column;
      align-items: center;
      gap: 15px; /* Reduce the gap between the boxes */
    }
    
    .company-overview {
      max-width: 100%;
      margin-bottom: 20px;
    }
    
    .company-overview-image {
      max-width: 100%;
    }
    
    .text-box h1 {
      font-size: 1.875em;
    }
    
    .text-box p {
      font-size: 1.5em;
    }
    
    .Hero-btn {
      padding: 0.5em 1.25em;
      font-size: 1em;
    }
  
    .contact {
      min-height: 20vh;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden;
    }
  
    .contact-overlay {
      background-color: rgba(0, 0, 0, 0.7);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0;
    }
  
    .contact p {
      font-size: 1.1em;
      color: #fff;
      line-height: 1.5;
      margin-bottom: 20px;
      margin-left: 21px;
    }
  
    .contact-btn {
      display: inline-block;
      text-decoration: none;
      color: #fff;
      border: 2px solid #fff;
      padding: 10px 20px;
      font-size: 1em;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      position: relative;
      z-index: 2;
    }
  
    .contact-btn:hover {
      background-color: #E65C2D;
      border-color: #E65C2D;
      transform: scale(1.05);
    }
  
    /* About us section styles */
    .about-us {
      padding: 40px 20px;
      margin-bottom: 20px;
    }
  
    .about-us h1 {
      font-size: 2em;
      margin-bottom: 20px;
    }
  
    .about-us h2 {
      font-size: 1.8em;
      margin-bottom: 20px;
    }
  
    .about-us p {
      width: 100%;
      font-size: 1.2em;
      margin-bottom: 30px;
    }
  
    .row {
      padding: 0;
      gap: 30px;
    }
  
    .about-col {
      width: 100%;
      padding: 20px;
      margin-bottom: 0px;
    }
  
    .about-col img {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
    }
  
    .about-col h3 {
      font-size: 1em;
      margin-bottom: 10px;
    }
  
    .about-col button {
      padding: 10px 15px;
      font-size: 1em;
    }
    /* Service Section */
    .Service {
      padding: 40px 20px;
      margin-bottom: 20px;
    }
  
    .Service h1 {
      font-size: 2em;
      margin-bottom: 20px;
    }
  
    .Service h2 {
      font-size: 1.8em;
      margin-bottom: 20px;
    }
  
    /* Service Icons */
    .service-icons {
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
    }
  
    .service-item {
      flex-basis: 45%;
      margin: 20px;
    }
  
    .service-item i {
      font-size: 25px;
    }
  
    .service-item p {
      font-size: 1em;
    }
  
    /* Service Container */
    .service-container {
      margin-top: 40px;
      gap: 20px;
    }
  
    .service-container .big-para {
      font-size: 1em;
      padding: 15px;
    }
    div[style*="height: 35px"] {
      display: none;
    }
    .footer {
      padding: 15px 0;
    }
  
    .footer-container {
      padding: 0 20px;
    }
  
    .footer-section {
      display: block;
      margin: 0 auto;
      text-align: center;
    }
  
    .footer-section h2 {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    .footer-section p {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    .footer-section a {
      font-size: 16px;
    }
  
    .quick-links {
      margin: 0;
      padding: 0;
    }
  
    .quick-links li {
      display: block;
      margin: 10px 0;
    }
  
    .quick-links li a {
      font-size: 16px;
    }
    
    .quick-links li:not(:first-child) {
      display: none;
    }
  
    .footer-bottom {
      margin-bottom: 0%;
      margin-top: 0px;
      font-size: 10px;
    }
    .why-us {
      width: 100%;
      margin: 20px auto;
      text-align: center;
      padding-top: 20px;
      margin-bottom: 20px;
    }
  
    .why-us h1 {
      font-size: 2em;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
      margin-bottom: 15px;
    }
  
    .why-us h2 {
      font-size: 1.4em;
      color: black;
      font-weight: 500;
      margin-bottom: 20px;
    }
  
    .why-us-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
  
    .why-item {
      width: 45%;
      padding: 10px;
      text-align: center;
      transition: transform 0.3s ease-in-out;
    }
  
    .why-item img {
      width: 80%;
      height: auto;
      margin-bottom: 10px;
    }
  
    .why-item h3 {
      font-size: 1em;
      margin-bottom: 8px;
      color: black;
    }
  
    .why-item p {
      font-size: 0.9em;
      color: black;
      line-height: 1.5;
    }
  
    .why-item:hover {
      transform: scale(1.05);
    }
  
    .customer-reviews {
      width: 100%;
      margin: 20px auto;
      text-align: center;
      padding-top: 20px;
    }
  
    .customer-reviews h1 {
      font-size: 1.8em;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
      margin-bottom: 15px;
    }
  
    .review-intro {
      width: 100%;
      margin: 0 auto 20px;
      line-height: 1.6;
      font-size: 1em;
      text-align: center;
    }
  
    .reviews-container {
      display: flex;
      justify-content: center;
      gap: 20px; /* added gap between review boxes */
      flex-wrap: wrap;
    }
  
    .review-box {
      display: flex;
      align-items: center;
      background-color: #efebeb;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 10px;
      text-align: left;
      flex-basis: 90%;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      height: auto;
      min-height: 150px;
      overflow: hidden;
    }
  
    .review-box:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
  
    .review-profile-pic {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }
  
    .review-content {
      flex-grow: 1;
    }
  
    .reviewer-name {
      font-weight: bold;
      margin-top: 10px;
      font-size: 0.8em;
      color: #333;
    }
  
    .reviewer-address {
      font-size: 0.7em;
      color: #777;
      margin-top: 5px;
    }
  
    .review-stars {
      margin-top: 10px;
    }
  
    .review-stars i {
      font-size: 0.9em;
      color: #E65C2D;
    }
  
    .feedback {
      text-align: center;
      padding: 20px 0;
      margin-bottom: 10%;
      padding-top: 15px;
    }
  
    .feedback h1 {
      font-size: 2em;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
      margin-bottom: 15px;
    }
  
    .feedback-intro {
      font-size: 1.2em;
      color: black;
      margin-bottom: 20px;
    }
  
    .feedback-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .feedback-item {
      width: 45%; /* Adjusted width for smaller screens */
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin: 0 5px; /* Reduced margin between items */
    }
  
    .feedback-item i {
      font-size: 2em;
      color: #E65C2D;
      margin-bottom: 10px;
    }
  
    .feedback-item p {
      font-size: 1em;
      color: black;
      margin-bottom: 5px;
    }
  
    .feedback-item span {
      font-size: 1.5em;
      color: #000;
      font-weight: bold;
    }
  
    .feedback-item:hover {
      transform: scale(1.05);
    }
    .services {
      padding: 30px 10px;
      text-align: center;
      background: none;
    }
  
    .services h1 {
      font-size: 2em;
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
      color: black;
      margin-bottom: 15px;
    }
  
    .services h2 {
      font-size: 1.5em;
      font-weight: 500;
      color: black;
      margin-bottom: 10px;
      line-height: 1.4;
    }
  
    .services p {
      font-size: 1.1em;
      color: black;
      margin-bottom: 20px;
      line-height: 1.6;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.service-box {
  flex-basis: 90%; /* Adjusted width for smaller screens */
  text-align: center;
  background: #fff;
  padding: 15px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
  border-radius: 10px; /* Added rounded corners */
  transition: transform 0.3s ease;
}

.service-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px; /* Added rounded corners */
}

.service-box h3 {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 1em;
  color: black;
  line-height: 1.5;
}
  
    .service-box:hover {
      transform: scale(1.02);
    }
    .gallery {
      text-align: center;
      padding: 30px 10px;
      margin-bottom: 20px;
    }
  
    .gallery h1 {
      font-size: 2em;
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
      margin-bottom: 15px;
    }
  
    .gallery p {
      font-size: 1.1em;
      color: #333;
      margin-bottom: 20px;
    }
  
    .gallery-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
  
    .gallery-item {
      flex-basis: 90%; /* Adjusted width for smaller screens */
      cursor: pointer;
      transition: transform 0.3s ease;
    }
  
    .gallery-item img {
      width: 100%;
      height: auto;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
  
    .gallery-item:hover img {
      transform: scale(1.05);
    }
  
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.8);
    }
    
    .lightbox-content {
      position: relative;
      margin: 30% auto; /* Increased margin-top to move image down */
      max-width: 80%;
      max-height: 80%;
      text-align: center;
      line-height: 0;
    }
  
    .lightbox-content img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }
  
    .lightbox .close {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
      font-size: 25px; /* Reduced font size */
      font-weight: bold;
      cursor: pointer;
      z-index: 1;
    }
  
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 10px; /* Reduced padding */
      margin-left: -50%;
      margin-top: -20px;
      color: white;
      font-weight: bolder;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
    }
  
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
  
    .prev:hover, .next:hover {
      background-color: #E65C2D;
    }

    .prev, .next {
      &:hover {
        background-color: transparent; /* Reset background color on smaller screens */
      }
    }

    

    .construction-feedback {
      text-align: center;
      padding: 20px 0;
      margin-bottom: 10%;
      padding-top: 20px;
    }
  
    .construction-feedback h1 {
      font-size: 2em;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
      margin-bottom: 15px;
    }
  
    .feedback-intro {
      font-size: 1.2em;
      color: black;
      margin-bottom: 20px;
    }
  
    .feedback-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap; /* Changed to wrap to fit smaller screens */
      gap: 10px;
    }
  
    .feedback-item {
      width: 90%; /* Adjusted width to fit smaller screens */
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin: 0 10px;
    }
  
    .feedback-item i {
      font-size: 2em;
      color: #E65C2D;
      margin-bottom: 10px;
    }
  
    .feedback-item p {
      font-size: 1em;
      color: black;
      margin-bottom: 5px;
    }
  
    .feedback-item span {
      font-size: 1.5em;
      color: #000;
      font-weight: bold;
    }
  
    .feedback-item:hover {
      transform: scale(1.05);
    }
    
    ::-webkit-scrollbar {
      width: 4px; /* Reduced width for vertical scrollbar on very small screens */
      height: 2px; /* Reduced height for horizontal scrollbar on very small screens */
    }
  
    ::-webkit-scrollbar-thumb {
      height: 2px; /* Reduced height of the draggable thumb on very small screens */
      transition: all 0.2s ease-in-out; /* Smooth transition for size changes */
    }
  
    ::-webkit-scrollbar-thumb:hover {
      height: 4px; /* Thumb height increases when hovered on very small screens */
      width: 8px; /* Thumb width increases when hovered on very small screens */
    }
  }