* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', 'Poppins', sans-serif;
}

.header {
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  animation: changeBackground 15s infinite;
}

@keyframes changeBackground {
  0% {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
  }
  33.33% {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
  }
  33.34% {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic2.png);
  }
  66.66% {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic2.png);
  }
  66.67% {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic3.png);
  }
  100% {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic3.png);
  }
}

.header {
  transition: background-image 2s ease-in-out; /* Smooth transition for background images */
}

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: 0;
}
.nav-link ul li:hover ul.dropdown{
  display: block;
}
/* Hide arrows by default */
#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);
}

.text-box p {
  margin: 10px 0 40px;
  font-size: 1.5em;
  line-height: 1.6;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.Hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  padding: 11px 35px;
  font-size: 1em;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.Hero-btn:hover {
  border-color: #E65C2D;
  background-color: #E65C2D;
}

.text-box span {
  color: #E65C2D;
  font-weight: 600;
}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;
}

.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;
}

/* About Us Section */
.about-us {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h1 {
  font-size: 2.5em;
  text-decoration: underline;
  text-decoration-color: #E65C2D;
  margin-bottom: 30px;
}

.about-us h2 {
  font-size: 2em;
  text-decoration: underline;
  text-decoration-color: #E65C2D;
  margin-bottom: 30px;
}

.about-us p {
  width: 90%;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-size: 1.4em;
  text-align: center;
  max-width: 1000px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-col {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-col:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}

.about-col img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.about-col h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.about-col button {
  background-color: white;
  color: #E65C2D;
  border: 2px solid #E65C2D;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
}

.about-col button:hover {
  color: #fff;
  background-color: #E65C2D;
  border: 2px solid #E65C2D;
}

/* Service Section */
.Service {
  padding: 60px 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.Service h1,
.Service h2 {
  text-align: center;
}
.Service h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-decoration: underline;
  text-decoration-color: #E65C2D;
  color: black;
}

.Service h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: black;
  font-weight: 500;
}

/* Service Icons */
.service-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 80px; /* Increased margin-bottom to 80px */
  max-width: 1200px;
  margin: 0 auto;
}

.service-item:hover {
  transform: scale(1.05);
}

.service-item p {
  font-size: 1.2em;
  text-align: center;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 200px;
}

.service-item i {
  font-size: 30px;
  color: #E65C2D;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Service Container */
.service-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 80px; /* Increased margin-top to 80px */
  max-width: 1200px;
  margin: 0 auto;
}

.service-container .big-para {
  color: #000000;
  font-size: 1.2em; /* Reduced font-size to 1.2em */
  font-weight: 400;
  line-height: 1.6;
  padding: 20px;
  background-color: #efebeb;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.service-container .big-para span{
 color: #E65C2D;
 font-weight: 700;
}



/* Why Us Section */
.why-us {
  width: 80%;
  margin: 40px auto;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 25px;
}

.why-us h1 {
  font-size: 2.5em;
  text-decoration: underline;
  text-decoration-color: #E65C2D;
  margin-bottom: 20px;
}

.why-us h2 {
  font-size: 1.6em;
  color: black;
  font-weight: 500;
  margin-bottom: 31px;
}

.why-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center all items */
  gap: 10px;
}

.why-item {
  width: 18%;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.why-item img {
  width: 70%;
  height: auto;
  margin-bottom: 10px;
}


/* 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.4em;
  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);
}



.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) {

  @keyframes changeBackground {
    0% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.33% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.34% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.66% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.67% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
    100% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
  }
  .contact-btn:hover {
    background-color: transparent;
    border-color: #fff;
    transform: scale(1);
  }
  .quick-links li:first-child a:hover,
  .quick-links li:nth-child(2) a:hover {
    color: black;
  }
  nav img {
    width: 170px;
    height: auto;
  }
  .nav-link ul li a {
    font-size: 16px;
  }
  #arrow1, #arrow2 {
    display: inline;
  }
  
  /* Initially, hide the up arrow */
  #arrow2 {
    display: none;
  }
  
}


@media (max-width: 970px) {
  @keyframes changeBackground {
    0% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.33% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.34% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.66% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.67% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
    100% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
  }
  
  .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;
  }
  .Hero-btn:hover {
    border-color: #fff;
    background-color: transparent;
  }
  .contact-btn:hover {
    background-color: transparent;
    border-color: #fff;
    transform: scale(1);
  }
  
}



@media (max-width: 769px) {
  @keyframes changeBackground {
    0% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.33% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.34% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.66% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.67% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
    100% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
  }
  .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;
}




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: 65%;
}

.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;
}

.why-us {
  width: 100%;
  margin: 30px auto;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
}
.why-us h1 {
  font-size: 2.5em;
  text-decoration: underline;
  text-decoration-color: #E65C2D;
  margin-bottom: 20px;
}

.why-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.why-item {
  width: 35%; /* Fits two items per row */
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.why-item img {
  width: 65px; /* Adjust image size */
  height: auto;
  margin-bottom: 15px;
}


.about-us {
  padding: 50px 30px; /* Increased padding for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
.about-us h1 {
  font-size: 2.5em; /* Increased font size for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
.about-us h2 {
  font-size: 1.6em; /* Increased font size for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
.about-us p {
  width: 100%;
  font-size: 1.2em; /* Increased font size for larger screens */
  margin-bottom: 40px; /* Increased margin for larger screens */
}
.row {
  padding: 0;
  gap: 0; /* Increased gap for larger screens */
}
.about-col {
  width: 100%;
  padding: 30px; /* Increased padding for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
.about-col img {
  width: 150px; /* Increased image width for larger screens */
  height: auto;
  margin-bottom: 20px; /* Increased margin for larger screens */
}
.about-col h3 {
  font-size: 1.2em; /* Increased font size for larger screens */
  margin-bottom: 15px; /* Increased margin for larger screens */
}
.about-col button {
  padding: 15px 25px; /* Increased padding for larger screens */
  font-size: 1.2em; /* Increased font size for larger screens */
}
/* Service Section */
.Service {
  padding: 50px 30px; /* Increased padding for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
.Service h1 {
  font-size: 2.5em; /* Increased font size for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
.Service h2 {
  font-size: 2em; /* Increased font size for larger screens */
  margin-bottom: 30px; /* Increased margin for larger screens */
}
/* Service Icons */
.service-icons {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px; /* Increased margin for larger screens */
}
.service-item {
  flex-basis: 50%; /* Increased flex-basis for larger screens */
  margin: 30px; /* Increased margin for larger screens */
}
.service-item i {
  font-size: 30px; /* Increased font size for larger screens */
}
.service-item p {
  font-size: 1.2em; /* Increased font size for larger screens */
}
/* Service Container */
.service-container {
  margin-top: 60px; /* Increased margin for larger screens */
  gap: 20px; /* Increased gap for larger screens */
}
.service-container .big-para {
  font-size: 1.2em; /* Increased font size for larger screens */
  padding: 10px; /* Increased padding for larger screens */
}

}



@media (max-width: 480px) {
  @keyframes changeBackground {
    0% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.33% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Home-pic.png);
    }
    33.34% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.66% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(phone-pic.png);
    }
    66.67% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
    100% {
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(Phone-pic2.png);
    }
  }
  /* 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 {
    padding: 40px;
    margin-top: -55px;
    margin-left: -25px; /* Add this line to move the menu links to the left */
  }
  .nav-link ul li a {
    font-size: 17px; /* Consistent font size */
  }

  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;
  }

  .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-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;
  }

  /* 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;
  }
}

