* {
    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(Contact.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: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  nav .fa{
      display: none;
  }


  
/* Location Section */
.location {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align elements horizontally */
    padding: 50px 0;
}

.location h1 {
    font-size: 32px;
    margin-bottom: 40px; /* Space between the heading and the map */
    text-decoration: underline;
    text-decoration-color: #E65C2D;
}

.location iframe {
    border: 0; /* Remove default border from the iframe */
}

/* Contact Section */
.contact-us1 {
    padding: 50px 20px;
    background-color: white;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; /* Center align items vertically */
}

.contact-col {
    flex: 1;
    min-width: 280px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center align content vertically */
    
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.contact-info h2 {
    font-size: 25px; /* Adjust font size */
    margin-bottom: 25px; /* Space below the heading */
    color: black; /* Heading color */
    text-decoration: underline;
    text-decoration-color: #E65C2D;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #E65C2D; /* Change icon color */
    margin-right: 15px;
}

.info-item h5 {
    margin: 0;
    font-size: 18px;
    color: black;
    font-weight: 400; /* Reduce font weight */
}

.info-item p {
    margin: 0;
    color: #777;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px; /* Increase margin between elements */
}

.form-row input, .form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #777;
    border-radius: 5px;
    font-size: 16px;
}

textarea#message {
    height: 150px; /* Increase height of the message box */
}

.submit-btn {
    background-color: white;
    color: #E65C2D;
    padding: 10px 20px;
    border: 2px solid #E65C2D; /* Add border with desired color */
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease; /* Add transition for hover effect */
}

.submit-btn:hover {
    transform: scale(1.05); /* Enlarge button on hover */
    color: white;
    background-color: #E65C2D; /* Change background and text color on hover */
}

/* Ensure overall alignment */
.contact-us1 .row {
    align-items: center; /* Center align the contact info vertically with the form */
}

#email {
  margin-top: 20px;
}
  
.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) {
    .quick-links li:first-child a:hover,
    .quick-links li:nth-child(5) 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: 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;
    }
    nav {
      padding: 20px 4%;
    }
    nav img {
      width: 140px;
      height: auto;
    }
   
  }
  

  @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;
  }

  .location {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px; /* Increased padding for larger screens */
  }
  .location h1 {
    font-size: 28px; /* Increased font size for larger screens */
    margin-bottom: 30px; /* Increased margin for larger screens */
    text-decoration: underline;
    text-decoration-color: #E65C2D;
  }
  .location iframe {
    border: 0;
    width: 80%; /* Reduced width to fit larger screens */
    height: 300px; /* Increased height for larger screens */
    margin: 0 auto; /* Centered iframe */
  }

  .contact-us1 {
    padding: 30px 20px; /* Increased padding for larger screens */
    background-color: white;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .contact-col {
    flex: 1;
    min-width: 50%; /* Reduced min-width to make it more suitable for larger screens */
    margin: 20px; /* Increased margin for larger screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px; /* Increased padding for larger screens */
    text-align: center;
  }
  .contact-info h2 {
    font-size: 24px; /* Increased font size for larger screens */
    margin-bottom: 30px; /* Increased margin for larger screens */
    color: black;
    text-decoration: underline;
    text-decoration-color: #E65C2D;
  }
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px; /* Increased margin for larger screens */
  }
  .info-item i {
    font-size: 25px; /* Increased font size for larger screens */
    color: #E65C2D;
    margin-bottom: 10px; /* Increased margin for larger screens */
  }
  .info-item h5 {
    margin: 0;
    font-size: 18px; /* Increased font size for larger screens */
    color: black;
    font-weight: 400;
  }
  .info-item p {
    margin: 0;
    color: #777;
  }
  .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px; /* Increased margin for larger screens */
  }
  .form-row input, .form-row textarea {
    width: 100%;
    padding: 15px; /* Increased padding for larger screens */
    border: 1px solid #777;
    border-radius: 5px;
    font-size: 18px; /* Increased font size for larger screens */
    box-sizing: border-box;
  }
  textarea#message {
    height: 150px; /* Increased height for larger screens */
  }
  .submit-btn {
    background-color: white;
    color: #E65C2D;
    padding: 15px 30px; /* Increased padding for larger screens */
    border: 2px solid #E65C2D;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px; /* Increased font size for larger screens */
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px; /* Increased margin for larger screens */
  }
  .submit-btn:hover {
    transform: scale(1.05);
    color: white;
    background-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;
  }
  
  }




  @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 {
      font-size: 18px;
      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 */
    
    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;
    }

    .location {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
  
    .location h1 {
      font-size: 24px;
      margin-bottom: 20px;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
    }
  
    .location iframe {
      border: 0;
      width: 80%; /* Adjusted width to fit smaller screens */
      height: 200px; /* Adjusted height to fit smaller screens */
    }

    .contact-us1 {
      padding: 20px 10px;
      background-color: white;
    }
  
    .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
  
    .contact-col {
      flex: 1;
      min-width: 100%;
      margin: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  
    .contact-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 20px;
      text-align: center;
    }
  
    .contact-info h2 {
      font-size: 20px;
      margin-bottom: 20px;
      color: black;
      text-decoration: underline;
      text-decoration-color: #E65C2D;
    }
  
    .info-item {
      display: flex;
      flex-direction: column; /* Changed to flex-direction: column */
      align-items: center; /* Added align-items to center the icon */
      margin-bottom: 15px;
    }
  
    .info-item i {
      font-size: 20px;
      color: #E65C2D;
      margin-bottom: 5px; /* Added margin to separate icon from heading */
    }
  
    .info-item h5 {
      margin: 0;
      font-size: 16px;
      color: black;
      font-weight: 400;
    }
  
    .info-item p {
      margin: 0;
      color: #777;
    }
  
    .form-row {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }
  
    .form-row input, .form-row textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #777;
      border-radius: 5px;
      font-size: 16px;
      box-sizing: border-box;
    }
  
    textarea#message {
      height: 100px;
    }
  
    .submit-btn {
      background-color: white;
      color: #E65C2D;
      padding: 10px 20px;
      border: 2px solid #E65C2D;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      width: 100%;
      box-sizing: border-box;
      margin-top: 10px;
    }
  
    .submit-btn:hover {
      transform: scale(1.05);
      color: white;
      background-color: #E65C2D;
    }
  }
  
  