h1,
h2,
h3 {
  font-family: 'Clash Display', sans-serif;
}

p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

body {
  width: 100vw;
  min-height: 100vh;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* Header Container */
.header-container {
  width: 100%;
  position: relative;
  z-index: 1000;
}

/* Top Navigation (nav1) */
.nav1 {
  width: 100%;
  height: 2.6875rem;
  background-color: #F6B60B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
}

.contact-info {
  display: flex;
  gap: 1.875rem;
  align-items: center;
}

.contact-item {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item img {
  width: 1.0625rem;
  height: 0.9375rem;
}

.contact-item span {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75rem;
}

.social-icons {
  display: flex;
  gap: 0.8125rem;
  align-items: center;
}

.icon-circle {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid white;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.icon-circle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Main Navigation (nav2) */
.nav2 {
  height: 6.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.container-nav2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.logo-image {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
  .logo-image a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }


.logo-image img {
  width: auto;
  height: auto;
}

.logo-image span {
  font-size: 1.0444rem;
  font-weight: 400;
  color: #F6B60B;
  margin-left: 0.625rem;
  font-family: "Anton", sans-serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s;
    font-family: 'Clash Display', sans-serif;
}

.nav-links a.active-link,
.nav-links a:hover {
  color: #F6B60B;
}

.hamburger div {
  display: none;
}

.mobile-menu-links {
  display: none;
  width: 100%;
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
  position: absolute;
  top: 110%;
  left: 0;
  z-index: 1000;
  border-radius: 0 0 0.5rem 0.5rem;
  animation: fadeIn 0.3s ease-out;
    font-family: 'Clash Display', sans-serif;
}

.mobile-menu-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  display: block;
}

.mobile-menu-links a:hover {
  background-color: #e0a500;
  color: white;
  transform: translateX(0.25rem);
}

.mobile-menu-links .mobile-active-link {
  background-color: #e0a500;
  color: white;
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-0.625rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-button {
  height: 2.8125rem;
  min-width: 8.5rem;
  background-color: #F6B60B;
  border-radius: 0.4375rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s;
}

.nav-button:hover {
  opacity: 0.9;
}

.nav-button a {
  text-decoration: none;
  color: white;
  display: inline-block;
}




.logo-image {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

.logo-image img {
  width: 76.5px;
  height: 64.76351165771484px;
}

.logo-image span {
  font-size: 25.71px;
  font-weight: 400;
  line-height: 40.62px;
  letter-spacing: 0%;
  color: #F6B60B;
  margin-left: 10px;
  font-family: "Anton", sans-serif;
}


/* Next Section */


.project-container {
  position: relative;
  width: 100%;
  height: 12.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.project-container:hover .project-image {
  transform: scale(1.02);
}

.project-content {
  position: absolute;
  text-align: center;
  color: white;
  width: 90%;
  max-width: 75rem;
  z-index: 2;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 0.0625rem;
  animation: fadeInUp 0.8s ease-out;
}

.project-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.5);
  max-width: 50rem;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bg-container {
  position: relative;
  width: 100%;
  flex: 1;
  height: 18.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 100%;
}

.bg-content h1 {
  font-size: 3rem;
  font-weight: 600;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.about-container {
  position: relative;
  width: 100%;
  height: 18.75rem;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.about-content h1 {
  font-size: 3rem;
  font-weight: 600;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

/* ===== COMPANY SECTION ===== */

.company-section {
  width: 100%;
  height: auto;
  gap: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F1F1F1;
  padding-top: 35px;
}

.company-section-container {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

.image-container {
  display: flex;
  gap: 1.25rem;
  width: 50%;
  height: auto;
  justify-content: center;
  overflow: hidden;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  filter: sepia(0.4);
  border: 0.08625rem;
  border-color: #F6B60B;
}

.right-images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 80%;
}

.right-images .small-img {
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 0.625rem;
}

.right-images .small-img2 {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
  filter: sepia(0.4);
}

.content {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.company-contact {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-direction: column;
}

.company-contact-info {
  display: flex;
  justify-content: start;
  align-items: left;
  flex-direction: column;
  gap: 1.0625rem;
  height: auto;
  width: 100%;
}

.title-row {
  display: flex;
  align-items: center;
  width: 110%;
  height: 4.9375rem;
  gap: 1.7206rem;
}

.icon-box {
  background: #FFB600;
  border-radius: 0.4375rem;
  font-size: 1.25rem;
  width: 5.3369rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content h2 {
  display: flex;
  align-items: center;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  width: 100%;
  height: 4.9375rem;
}

.company-desc {
  width: 100%;
  height: auto;
}

.desc {
  color: #8F8F8F;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  margin-bottom: 1.3rem;
}

.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 110%;
  height: auto;
}

.features-list1 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8606rem;
  width: 22.8956rem;
  height: 6.83rem;
}

.features-list2 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8606rem;
  width: 23.3487rem;
  height: 6.83rem;
}

.features ul {
  list-style: none;
  color: #555;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.features li {
  margin: 0.5625rem 0%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  color: #8F8F8F;
}

.buttons {
  display: flex;
  gap: 1.4375rem;
  width: 100%;
  height: 3.8125rem;
}

.company-profile-btn {
  width: 23.875rem;
  height: 3.1875rem;
  border-radius: 0.4375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  background-color: #F6B60B;
  line-height: 100%;
  letter-spacing: 0%;
  border: none;
  cursor: pointer;
}

.our-project-btn {
  width: 23.875rem;
  height: 3.1875rem;
  border-radius: 0.4375rem;
  border: 0.0625rem solid #F6B60B;
  background-color: white;
  color: #F6B60B;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  cursor: pointer;
}


/* Next */
.company-records {
  width: 100%;
  height: 12.5rem;
  background-color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-records-container {
  width: 85%;
  height: 6.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.record-info {
  gap: 0.625rem;
  width: 25%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.record-info h1 {
  color: #FDB52B;
  font-weight: 600;
  font-size: 3.375rem;
  letter-spacing: 0%;
}

.record-info p {
  color: white;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  width: 18.375rem;
  height: 1.875rem;
  text-align: center;
}

/* Next */
.company-why-choose-us {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.left {
  width: 47%;
  height: 100%;
  gap: 1.3rem;
  display: flex;
  flex-direction: column;
}

.right {
  width: 47%;
  height: 100%;
  gap: 1.875rem;
  display: flex;
  flex-direction: column;
}

.left-content-heading {
  width: 24.0625rem;
  height: 4.8125rem;
  gap: 1.25rem;
}

.left-content-main {
  height: 3.5625rem;
  width: 25rem;
}

.underline {
  border: 0.1875rem solid #F6B60B;
  width: 10.1232rem;
}

.company-why-choose-us h2 {
  font-size: 2.75rem;
  line-height: 100%;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0%;
}

.left-content-desc {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: left;
}

.left-content-desc p {
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  color: #8F8F8F;
}

.feature-list {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}



.feature-item {
  width: 100%;
  height: 2.875rem;
  background-color: white;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-left: 1.2375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  cursor: pointer;
    position: relative;
  padding-right: 2.5rem; /* Space for arrow */
}

.activeDF {
  background-color: #FFB600;
  color: white;
}

.feature-item:hover {
  background-color: #FFB600;
  color: white;
}

.feature-description {
  width: 100%;
  height: auto;
  max-height: auto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  display: flex;
  justify-content: left;
  align-items: center;
  color: #8F8F8F;
  display: none;
  padding-left: 0.9375rem;
  padding: 1rem 0%;
}

.feature-item::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.3s ease;
}
.feature-item.activeDF::after {
  transform: translateY(-50%) rotate(45deg);
}


/* Next */
.our-service {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.our-service-heading {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.our-service-heading h1 {
  width: 100%;
  font-size: 2.75rem;
  line-height: 2.375rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0%;
  text-align: center;
}

.our-service-heading p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 0.875rem;
  letter-spacing: 0%;
  color: #8F8F8F;
}

.our-service-desc {
  width: 70%;
  height: auto;
  display: flex;
  gap: 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.semicolen {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F6B60B;
  border-radius: 100%;
}

.desc-heading {
  height: auto;
  width: 100%;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0%;
  text-align: center;
  color: #8F8F8F;
  text-transform: uppercase;
}

.services-info {
  width: 18.1875rem;
  height: 3.9375rem;
  gap: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.services-info h3 {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin-top: 1rem;
}

.services-info p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #8F8F8F;
}


/* Footer */
.site-footer {
  background-color: #1D1D1D;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1.875rem 0%;
}

.footer-top {
  width: 60%;
  height: 15.7681rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

.footer-logo {
  width: 5.625rem;
  height: 4.8096rem;
}

.footer-desc {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0%;
  color: #8F8F8F;
  width: 100%;
  height: auto;
  text-align: center;
}


.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s;
}

.footer-socials a:hover {
  background-color: #555;
  transform: scale(1.1);
}

.footer-socials i {
  font-size: 20px;
}


.footer-columns {
  display: flex;
align-items: start;
  justify-content: space-between;
  height: auto;
  width: 80%;
  gap: 1.5625rem;
  padding: 1.5625rem 0%;
}

.powered {
  font-size: 0.75rem;
  padding-top: 0.3125rem;
  color: #8f8f8f;
  text-decoration: none;
}

.footer-col {
  width: 100%;
  height: 100%;
  gap: 0.625rem;
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  text-align: left;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  display: flex;
  padding-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.8rem;
  line-height: 100%;
  color: #8F8F8F;
  font-weight: 500;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.625rem;
  text-align: left;
    line-height: 0.9rem;
}

.sub-col p {
  font-size: 0.8rem;
  line-height: 100%;
  color: #8F8F8F;
  font-weight: 500;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.625rem;
  text-align: left;
}

.email-form {
  display: flex;
  margin-top: 0.625rem;
}

.email-form input {
  padding: 0.625rem;
  border: none;
  flex: 1;
  border-radius: 0.25rem 0 0 0.25rem;
  font-size: 0.8125rem;
  background-color: #FFFFFF1A;
  color: white;
}

.email-form button {
  background-color: #FFFFFF1A;
  border: none;
  padding: 0 0.9375rem;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
  font-size: 1rem;
}

.footer-bottom {
  border-top: 0.125rem solid #FFFFFF1A;
  width: 80%;
  height: 2.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8125rem;
}

.footer-nav a {
  color: white;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: 0%;
    font-family: 'Clash Display', sans-serif;
}

.footer-nav a:hover {
  color: #f9c419;
}

.copyright {
  font-size: 0.8rem;
  color: white;
}

.powered-by {
  font-size: 0.65rem;
  color: #8F8F8F;
  margin-top: 0.3rem;
}
.powered-by:hover{
  color: #f9c419;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-right a{
  text-decoration: none;
}

.footer-col i {
  font-size: 1.2rem;
  color: white;
  width: 1.2rem;
}





@media (max-width: 550px) {

  .header-container {
    height: 5rem;
  }

  .logo-image img {
    width: 2.125rem;
    height: 1.8125rem;
  }

  .logo-image span {
    font-size: 0.8125rem;
    line-height: 1.1381rem;
  }

  .nav1 {
    height: 2.1875rem;
    padding: 0 4%;
  }

  .contact-info {
    width: auto;
    height: auto;
    gap: 0.75rem;
  }

  .contact-item {
    height: auto;
    width: auto;
    gap: 0.5rem;
  }


  .fas, .fa-solid {
    font-size: 0.7rem;
  }

  .contact-item span {
    font-weight: 500;
    font-size: 0.645rem;
    line-height: 0.7738rem;
    letter-spacing: 0%;
  }

  .social-icons {
    gap: 0.25rem;
    width: auto;
    height: auto;
  }

  .icon-circle {
    width: 1.5rem;
    height: 1.5rem;
    border: 0.0175rem solid #FFFFFF;
    font-size: 0.875rem;
  }

  .nav2 {
    height: 3.4375rem;
    padding: 0 1.5625rem;
  }

  .container-nav2 {
    height: 100%;
    width: 100%;
    justify-content: space-between;
  }

  .logo {
    width: 8.4375rem;
    height: 1.8147rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content-container {
    padding-top: 3.125rem;
  }

  .hamburger button {
    display: none;
  }

  .hamburger div {
    display: block;
    color: #F6B60B;
  }

  .hamburger-menu {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 0.9375rem;
  }

  .mobile-menu-links.active {
    display: block;
  }



  
   .project-container {
    height: 150px;
  }
  
  .project-content {
    padding: 15px;
  }
  
  .project-content h1 {
    font-size: 1.8rem;
  }




 .about-container {
  height: 12.5rem;
  margin-top: 0;
}

.about-content h1 {
  font-size: 2rem;
}

.company-section-container {
  height: auto;
  padding: 1.25rem 0;
  width: 90%;
}

.company-container {
  flex-direction: column;
  height: auto;
  width: 100%;
  gap: 1.875rem;
}

.image-container {
  width: 100%;
  gap: 0%;
}

.left-image img,
.right-images .small-img,
.right-images .small-img2 {
  width: 90%;
  height: 100%;
  max-height: 100%;
}

.content {
  width: 100%;
  height: auto;
  gap: 1rem;
}

.company-contact {
  width: 100%;
  height: auto;
  gap: 0.5rem;
}

.company-contact-info {
  width: 100%;
  height: auto;
  gap: 1.25rem;
}

.company-section {
  gap: 1.5rem;
  padding-top: 0.75rem;
}

.title-row {
  width: 100%;
  height: auto;
  gap: 0.9375rem;
  justify-content: center;
  align-items: center;
}

.icon-box {
  width: 4.375rem;
  height: 3.75rem;
  font-size: 1rem;
}

.content h2 {
  font-size: 2rem;
  height: auto;
}

.company-desc {
  width: 100%;
  height: auto;
}

.desc {
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin-bottom: 0.9375rem;
}

.features {
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 1rem;
}

.features-list1,
.features-list2 {
  width: 100%;
  height: auto;
  gap: 0.625rem;
}

.features li {
  font-size: 0.9rem;
  margin: 0.6rem 0;
}

.buttons {
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 0.9375rem;
}

.company-profile-btn,
.our-project-btn {
  width: 100%;
  font-size: 0.9rem;
}

.right-images {
  gap: 0.75rem;
}

.right-images .small-img {
  width: 100%;
}

.right-images .small-img2 {
  width: 100%;
}

/* Next */

.company-records {
  height: auto;
  padding: 2.5rem 0;
}

.company-records-container {
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 0.9375rem;
  padding: 0 0.3125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.record-info {
  width: 100%;
  height: auto;
  gap: 0.625rem;
  padding: 0.9375rem 0;
}

.record-info h1 {
  font-size: 2.8125rem;
  line-height: 1;
}

.record-info p {
  font-size: 0.9rem;
  width: 100%;
  height: auto;
}

/* Next */


.why-choose-us {
  width: 100%;
  height: auto;
  gap: 1.875rem;
}

.company-why-choose-us {
  width: 90%;
  height: auto;
  flex-direction: column;
  gap: 2.5rem;
}

.left,
.right {
  width: 100%;
  height: auto;
  gap: 1.5625rem;
}

.left-content-heading {
  width: 100%;
  height: auto;
}

.left-content-main {
  width: 100%;
  height: auto;
}

.company-why-choose-us h2 {
  font-size: 2rem;
}

.underline {
  width: 10.0625rem;
  border-width: 0.125rem;
  margin-top: 0.5rem;
}

.left-content-desc {
  width: 100%;
  height: auto;
}

.left-content-desc p {
  font-size: 0.9rem;
  line-height: 1.2rem;
}

.feature-list {
  width: 100%;
  height: auto;
}

.feature-item,
.feature-description {
  width: 100%;
  height: auto;
  padding: 0.9375rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  cursor: default;
}

.feature-description {
  line-height: 1.5;
  padding-bottom: 1.5625rem;
}

.feature-item {
  height: auto;
  min-height: 3.75rem;
}




.our-service {
  height: auto;
  padding: 1.25rem 0;
  gap: 1.875rem;
  margin-bottom: 0;
}

.our-service-heading {
  width: 100%;
  height: auto;
  text-align: center;
  gap: 0%;
}

.our-service-heading h1 {
  width: 100%;
  font-size: 2rem;
  line-height: 1;
}

.our-service-heading p {
  font-size: 0.9rem;
  line-height: 1.2rem;
}

.our-service-desc {
  width: 100%;
  height: auto;
  gap: 0.9rem;
  line-height: 1.2rem;
}

.desc-heading {
  width: 90%;
  height: auto;
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.semicolen {
  width: 3.125rem;
  height: 3.125rem;
}

.semicolen img {
  width: auto;
  height: auto;
}

.services-arrows {
  width: 100%;
  height: auto;
  justify-content: center;
  padding: 0.9375rem 0;
}

.services-arrows img {
  width: 1.875rem;
  height: auto;
}

.services-info {
  width: 100%;
  height: auto;
  gap: 0.125rem;
}

.services-info h3 {
  font-size: 1.7rem;
  margin: 0;
}

.services-info p {
  font-size: 0.9rem;
  text-align: center;
}


  /* footer */
.site-footer {
  width: 100%;
  height: auto;
  gap: 1.0625rem;
  padding: 1.25rem 0%;
}

.footer-top {
  width: 85%;
  height: auto;
  gap: 0.9375rem;
}

.footer-logo {
  width: 2.04052734375rem;
  height: 1.689828872680664rem;
}

.footer-desc {
  font-size: 0.5625rem;
  line-height: 0.75rem;
  font-weight: 500;
  letter-spacing: 0%;
  width: 100%;
  height: auto;
  text-align: center;
}

.footer-socials {
  width: auto;
  height: auto;
  gap: 0.38875rem;
}

.footer-socials a {
  height: 1.5625rem;
  width: 1.5625rem;
}


.footer-socials i {
  font-size: 0.7rem;
}

.footer-columns {
    display: flex;
   align-items: start;
    justify-content: space-between;
  justify-content: center;
  gap: 0.5rem;
  height: auto;
  width: 92%;
  padding: 0;
}

.footer-col {
  width: 100%;
  height: 100%;
  gap: 0.45125rem;
}

.footer-col h4 {
  font-size: 0.5rem;
  padding-bottom: 0.625rem;
}

.footer-col p {
  font-size: 0.4375rem;
  gap: 0.241875rem;
  text-align: left;
  width: 100%;
    line-height: 0.55rem;
}

.footer-col i {
  font-size: 0.7rem;
    width: 0.6rem;
}

.email-form {
  display: flex;
  margin-top: 0.625rem;
}

.email-form input {
  padding: 0.625rem;
  width: 100%;
  font-size: 0.3125rem;
  height: 0.638671875rem;
}

.email-form button {
  background-color: #FFFFFF1A;
  border: none;
   padding: 0 0.7rem;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
  font-size: 0.625rem;
}

.footer-bottom {
  border-top: 0.125rem solid #FFFFFF1A;
  width: 90%;
  height: 0.8717105388641357rem;
}

.footer-nav {
  gap: 0.540625rem;
  padding-top: 0.625rem;
}

.footer-nav a {
  font-size: 0.375rem;
  line-height: 100%;
  letter-spacing: 0%;
}

.copyright {
  font-size: 0.375rem;
  padding-top: 0.625rem;
}

    .powered-by {
  font-size: 0.3rem;
  color: #8F8F8F;
  margin-top: 0.1rem;
}

.fa-paper-plane{
  padding-right: 3px;
  font-size: 1rem;
}


}





@media (min-width: 551px) and (max-width: 820px) {

  .header-container {
    height: 80px;
  }

  .logo-image img {
    width: 34px;
    height: 29px;
  }

  .logo-image span {
    font-size: 13px;
    line-height: 18.21px;
  }

  .nav1 {
    height: 35px;
    padding: 0 4%;

  }

  .contact-info {
    width: auto;
    height: auto;
    gap: 1rem;
  }

  .contact-item {
    height: auto;
    width: auto;
    gap: 0.5rem;
  }

  .fas {
    font-size: 9px;
  }

  .contact-item span {
    font-weight: 500;
    font-size: 9.5px;
    line-height: 12.38px;
    letter-spacing: 0%;

  }

  .social-icons {
    gap: 4px;
    width: auto;
    height: auto;
  }



  .icon-circle {
    width: 1.5rem;
    height: 1.5rem;
    border: 0.28px solid #FFFFFF;
    font-size: 14px;
  }

  .nav2 {
    height: 55px;
    padding: 0% 25px;
  }

  .container-nav2 {
    height: 100%;
    width: 100%;
    justify-content: space-between;
  }

  .logo {
    width: 135px;
    height: 29.035829544067383px;
  }

  .nav-links {
    display: none;
  }

  .hero-content-container {
    padding-top: 50px;
  }

  .hamburger button {
    display: none;
  }

  .hamburger div {
    display: block;
    color: #F6B60B;
  }



  .hamburger-menu {
    display: block;
    font-size: 24px;
    cursor: pointer;
    margin-left: 15px;
  }

  .mobile-menu-links.active {
    display: block;
  }




 .company-section-container {
    width: 90%;
    height: auto;
    padding: 2rem 0;
  }

  .company-container {
    flex-direction: column;
    gap: 2rem;
  }

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

  .left-image,
  .right-images {
    width: 100%;
  }

  .left-image img {
    height: 300px;
  }

  .right-images {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
  }

  .right-images .small-img,
  .right-images .small-img2 {
    width: 50%;
    height: 200px;
  }

  .content {
    width: 100%;
    gap: 1.5rem;
  }

  .title-row {
    width: 100%;
    height: auto;
    gap: 1rem;
  }

  .icon-box {
    width: 4rem;
    height: 3rem;
  }

  .content h2 {
    font-size: 1.8rem;
    height: auto;
  }

  .desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .features {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }

  .features-list1,
  .features-list2 {
    width: 100%;
    height: auto;
  }

  .buttons {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .company-profile-btn,
  .our-project-btn {
    width: 100%;
    height: 3rem;
  }

  .company-records {
  height: auto;
  padding: 2.5rem 0;
}

.company-records-container {
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 0.9375rem;
  padding: 0 0.3125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.record-info {
  width: 100%;
  height: auto;
  gap: 0.625rem;
  padding: 0.9375rem 0;
}

.record-info h1 {
  font-size: 2.8125rem;
  line-height: 1;
}

.record-info p {
  font-size: 0.9375rem;
  width: 100%;
  height: auto;
}


.company-why-choose-us {
    width: 90%;
    gap: 1.5rem;
  }

  .left, .right {
    width: 48%;
    gap: 1rem;
  }

  .left-content-heading {
    width: 100%;
    height: auto;
  }

  .left-content-main {
    width: 100%;
    height: auto;
  }

  .company-why-choose-us h2 {
    font-size: 1.8rem;
  }

  .underline {
    width: 8rem;
  }

  .left-content-desc p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .feature-item {
    height: auto;
    min-height: 2.875rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .feature-description {
    height: auto;
    min-height: 12.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.8rem;
  }

  .feature-list {
    gap: 0.3rem;
  }







      .site-footer {
    padding: 1.5rem 0;
  }

  .footer-top {
    width: 70%;
    height: auto;
    gap: 1.2rem;
  }

  .footer-logo {
    width: 4.5rem;
    height: 3.8rem;
  }

  .footer-desc {
    font-size: 0.9rem;
  }

  .footer-socials {
    width: 60%;
    gap: 1rem;
  }

  
.footer-socials a {
  height: 1.8rem;
  width: 1.8rem;
}


.footer-socials i {
  font-size: 0.8rem;
}

  .footer-columns {
    width: 85%;
    gap: 1rem;
    padding: 1rem 0;
  }

  .footer-col h4 {
    font-size: 0.9rem;
    padding-bottom: 1rem;
  }

  .footer-col p,
  .sub-col p {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .email-form input {
    padding: 0.5rem;
    font-size: 0.7rem;
  }

  .email-form button {
    padding: 0 0.7rem;
  }

  .footer-bottom {
    width: 85%;
    height: auto;
    padding: 0.8rem 0;
  }

  .footer-nav {
    gap: 1.2rem;
  }

  .footer-nav a,
  .copyright {
    font-size: 0.65rem;
  }
}