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;
    font-family: 'Clash Display', sans-serif;
}

.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 */

.project-container {
  position: relative;
  width: 100%;
  height: 200px;
  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: 1200px;
  padding: 20px;
  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: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out;
}

/* Optional subtitle styling */
.project-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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



.bg-container {
  position: relative;
  width: 100%;
  flex: 1;
  height: 300px;

  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: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Next */

.services-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  width: 100%;
  padding: 35px 0;
  background-color: #f1f1f1;
}

.we-offers {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.125rem;
}

.offers-main-heading {
  width: 47.5rem;
  height: 5.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.offers-main-heading h1 {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 3.375rem;
  letter-spacing: 0%;
  color: #000000;
}

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

.offers-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.offer-card {
  width: 27%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  background-color: white;
  border-radius: 0.625rem;
  padding: 1% 1%;
  height: 400px;
}

.offer-card img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 0.08625rem solid #F6B60B;
  background-color: #2A2A2A;
}

.card-content {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.625rem;
}

.card-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: start;
}

.card-content p {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2rem;
  letter-spacing: 0%;
  color: #8F8F8F;
}

/* Next */

.service-records {
  width: 100%;
  height: 18.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1D1D1D;
}

.service-records-container {
  width: 90%;
  height: 15.7203rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

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

.record-info h1 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 100%;
  letter-spacing: 0%;
}

.record-info h2 {
  color: #FFB600;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.record-info p {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3rem;
  letter-spacing: 0%;
  text-align: center;
  width: 100%;
  height: auto;
}

/* Next */
.more-services {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.more-services-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.more-services-heading {
  width: 80%;
  height: auto;
  gap: 0.8606rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.more-services-heading h1 {
  color: #222222;
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 1.85rem;
  letter-spacing: 0%;
}

.more-services-heading p {
  color: #616161;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
}

.more-services-container-content {
  width: 90%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.more-service-item {
  width: 20.4375rem;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.more-service-item img {
  width: 3.443rem;
  height: 3.1848rem;
}

.more-service-item h3 {
  color: #222222;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.more-service-item p {
  width: 100%;
  color: #616161;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8075rem;
  letter-spacing: 0%;
}

.pagination {
  width: 7.7356rem;
  height: 3.4375rem;
  gap: 0.8606rem;
  display: flex;
  align-items: center;
}

.pagination-btn {
  width: 3.4375rem;
  height: 3.4375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F6B60B;
  border-radius: 0.75rem;
  color: white;
  cursor: pointer;
  border: none;
}

.pagination-btn:hover {
  background-color: black;
}

.pagination-btn:disabled {
  background-color: black;
  cursor: not-allowed;
}


/* 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;
  }


/* Next */




  .services-container {
    width: 100%;
    gap: 10px;
    padding: 1rem 0;
  }


.we-offers {
  width: 100%;
  height: auto;
  padding: 0 1.25rem;
  gap: 1.875rem;
}

.offers-main-heading {
  width: 100%;
  height: auto;
  gap: 0;
}

.offers-main-heading h1 {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}

.offers-main-heading p {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.offers-content {
  width: 100%;
  height: auto;
  gap: 1.5625rem;
  flex-direction: column;
  align-items: center;
}

.offer-card {
  width: 100%;
  height: auto;
  padding: 1.25rem;
  gap: 1.25rem;
}

.offer-card img {
  width: 100%;
  height: 12.5rem;
}

.card-content {
  width: 100%;
  height: auto;
  gap: 0.75rem;
}

.card-content h2 {
  font-size: 1.7rem;
  text-align: left;
  white-space: nowrap;
  overflow: scroll;
   overflow: auto; /* Enable scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.card-content p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-content .active {
  font-size: inherit;
}

.service-records {
  height: auto;
  padding: 1rem 0;
}

.service-records-container {
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 0.3125rem;
  padding: 0 1.25rem;
}

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

.record-info-heading {
  width: 100%;
  height: auto;
  gap: 0.5rem;
}

.record-info h1 {
  font-size: 2rem;
}

.record-info h2 {
  font-size: 1.7rem;
}

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








  .more-services {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    gap: 0px;
  }

  .more-services-container {
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .more-services-heading {
    width: 100%;
    height: auto;
    gap: 0px;
  }

  .more-services-heading h1 {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
  }

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

  .more-services-container-content {
    width: 90%;
    height: auto;
    flex-direction: column;
    gap: 0px;
  }

  .more-service-item {
    width: 100%;
    height: auto;
    padding: 10px 0;
    gap: 12px;
  }

  .more-service-item img {
    width: 40px;
    height: 40px;
  }

  .more-service-item h3 {
    font-size: 1.7rem;
    white-space: normal;
  }

  .more-service-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .pagination {
    width: 100%;
    justify-content: center;
    padding-top: 20px;
  }

  .pagination-btn {
    width: 45px;
    height: 45px;
  }



.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;
  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;
  }





  .we-offers {
    padding: 0 5%;
    gap: 1.5rem;
  }

  .offers-main-heading {
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 1rem 0;
  }

  .offers-main-heading h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .offers-main-heading p {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .offers-content {
    gap: 2rem;
  }

  .offer-card {
    width: 45%;
    height: auto;
    min-height: 380px;
    padding: 1.5rem;
    gap: 1rem;
  }

  .offer-card img {
    height: 200px;
    max-height: 50%;
  }

  .card-content h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }




   .service-records {
    height: auto;
    padding: 2rem 0;
  }

  .service-records-container {
    width: 90%;
    height: auto;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .record-info {
    width: 45%;
    height: auto;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .record-info h1 {
    font-size: 1.5rem;
  }

  .record-info h2 {
    font-size: 1.2rem;
  }

  .record-info p {
    font-size: 0.9rem;
    line-height: 1.3;
  }


  
  .more-services-container-content {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Default 3 columns for 1300px+ */
  gap: 2rem;
  padding: 1rem 0;
  margin: 0 auto;
  
  /* Center alignment for grid items */
  justify-items: center;   /* Horizontal alignment */
  align-items: center;     /* Vertical alignment */
  
  /* OR use the shorthand: */
  place-items: center;     /* Sets both justify-items and align-items */
}


.more-services-container{
  gap: 10px;
}

}

@media (min-width: 821px) and (max-width: 1300px){


  .more-services-container-content {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default 3 columns for 1300px+ */
  padding: 1rem 0;
  margin: 0 auto;
  
  /* Center alignment for grid items */
  justify-items: center;   /* Horizontal alignment */
  align-items: center;     /* Vertical alignment */
  
  /* OR use the shorthand: */
  place-items: center;     /* Sets both justify-items and align-items */
}


}
