* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: rgb(82 82 38);
}
header {
    background-color: whitesmoke;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}
.logo {
    margin-left: 40px;
    font-size: 25px;
}
.nav-links {
    display: flex;
    gap: 20px;
    margin-right: 80px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: rgb(82 82 38);
    padding: 5px 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.nav-links a:hover {
    background-color: #f4f4f4;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}
.menu-toggle .close-icon {
    font-size: 40px;
    color: rgb(82 82 38);
    cursor: pointer;
    display: none;
    font-weight: semibold;
}
.menu-toggle .menu-icon {
    font-size: 35px;
    color: rgb(82 82 38);
    cursor: pointer;
}
/* Show or hide dropdown */
.dropdown-content {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1002;
    left: 0;
    top: 100%;
}
.dropdown.open .dropdown-content {
    display: flex;
}
.dropdown {
    position: relative;  
}
.dropdown-toggle {
    cursor: pointer;
    padding: 5px 5px;
    border-radius: 5px;
    color: rgb(82 82 38);
    transition: background-color 0.5s;
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
    text-align: left;
}
.dropdown-toggle:hover {
    background-color: #f4f4f4;
}

/* Show dropdown on hover/focus for desktop */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: flex;
}
.hero {
    display: flex;
    flex-direction: row;
    height: auto;
    color: #ffffff;
    gap: 250px;
    margin-bottom: 50px;
}
.Bigfour3 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image {
    max-width: 110%;          
    height: auto;
    border-radius: none;
    margin-left: 180px; 
    opacity: 0.8;    
    filter: brightness(0.8) contrast(0.8);
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
}
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgba(255, 255, 255, 0.8);
    z-index: -1; /* Place behind the image */
}
.overlay {
    flex: 1;
    padding: 5px 5px;
    color: rgb(82 82 38);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
     margin-top: 30px;
     text-align: center;
      margin-left: -60px;
}
.overlay .Arle {
    font-size: 50px;
    align-items: center;
}
.overlay .description {
    font-size: 15px;
    margin-top: 10px;
}
.overlay .btn {
    margin-top: 40px;
    align-self: center;
    background-color: rgb(70, 70, 26);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}
.overlay .btn:hover {
    background-color: #ffffff;
    color: rgb(82, 82, 38);
    outline: 1px solid rgb(82, 82, 38);
}
.wrapper {
    background-color: #f4f4f4;
      padding-bottom: 50px;
}
.About {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    height: auto;
    justify-content: flex-end; /* Push content to the right */
    align-items: center;
}
.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 30px;
    margin-left: 40px;
    margin-top: -100px;
}
.About .about1 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}
.about-image {
    max-width: 230px;
    width: 100%;
    height: 240px;
    border-radius: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    align-self: flex-end;
}
.about2 {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.about2 .about3 {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.about2 .about4 {
   width: 100%;
   max-width: 300px;
    height: 250px;
    border-radius: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    margin-left: 40px;
}
.about3 .about4 {
    height: 400px;
    object-fit: cover;
}
.about2 .about5 {
    flex: 1;
    justify-content: center;
    align-items: center;
}
.about5 .about6 {
    margin-bottom: 50px;
}
.about5 .about7 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 50px;
}
.about5 .about8 {
    margin-top: 40px;
    background-color: rgb(70, 70, 26);
    color: #ffffff;
    padding: 15px 20px;
    border: none;
    border-radius: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;  
}
.about5 .about8:hover {
     background-color: #ffffff;
    color: rgb(82, 82, 38);
    outline: 1px solid rgb(82, 82, 38);
}
.wrapper .about6,
.wrapper .about7,
.wrapper .about8 {
    text-align: left;
    margin-left: -70px; 
    margin-right: 0;
    width: auto;
    max-width: 90vw;
}
.wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.23,1.01,.32,1), 
    transform 0.8s cubic-bezier(.23,1.01,.32,1);
}
.wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}
.services {
    margin-top: 10px;
    
}
.service .service1 {
    font-size: 30px;
    margin-top: 100px;
    margin-left: 55px;
    margin-bottom: 50px;
}
.service2 {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 50px;
    height: auto;
    margin-top: 30px;
     border-top: 1px solid rgba(82, 82, 38, 0.1);  
      padding-top: 50px; 
       padding-bottom: 50px; 
}
.service-spacer {
    height: 500px; /* Adjust this value for the space you want */
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 80px;
}
.service3 {
    display: flex;
     position: relative;
    display: inline-block;
    width: 750px;
    height: 480px;
    overflow: hidden;
    }
.service3::after {
     content: "";
    position: absolute;
    top: 0; left: 35px; right: 0; bottom: 0;
    background: rgba(82, 82, 38, 0.9); /* semi-transparent overlay */
    pointer-events: none;
    transition: opacity 0.6s;
    opacity: 1;
}
.services:hover .service3::after {
    opacity: 0;
}
.service-image {
    width: 750px;
    height: 480px;   
    object-fit: cover;
    display: block;
    margin-left: 35px;
}
.service4 {
    margin-top: 50px;
    margin-bottom: 100px;
}
.service5 {
   margin-bottom: 50px;
   border-bottom: 1px solid rgba(82, 82, 38, 0.2);
    padding-bottom: 70px; 
   
}
.service5 p {
    margin-top: 50px;
    font-size: 15px;
}
.service7 {
    margin-top: 50px;
}
.service8 {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(82, 82, 38, 0.2);
    padding-bottom: 70px; 
}
.service8 p {
    margin-top: 50px;
    font-size: 15px;
}
.service6 p {
    margin-top: 30px;
    font-size: 15px;
}
.service9 p {
    margin-top: 50px;
    font-size: 15px;
}
.service5 h3 {
    font-size: 25px;
}
.service6 h3 {
    font-size: 25px;
}
.service8 h3 {
    font-size: 25px;
}
.service9 h3 {
    font-size: 25px;
}
.approach {
    background-color: #ffffff;
    margin-bottom: 40px;
}
.approach-text {
    justify-items: center;
    margin-top: 80px;
}
.approach-text h1 {
    font-size: 40px;
}
.approach-text h6 {
    font-size: 20px;
    margin-top: 20px;
    margin-left: -8px;
}
.approach1 {
    display: flex;
    flex-direction: row;
    padding: 20px 20px;
    gap: 20px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.approach1 p {
    flex: 1 1 0;
    text-align: center;
    margin: 0;
    max-width: 450px;
}
.approach-spacer2 {
     height: 100px;
    width: 1px;
    background-color: rgba(82, 82, 38, 0.2);
    display: block;
    margin: 20px;
}
.approach-spacer1 {
    display: none;
}
.clients {
    background-color: #f4f4f4;
     padding-top: 50px;
     padding-bottom: 100px;
}
.client1 {
    margin-top: 20px;
}
.client1 h1 {
     font-size: 30px;
     margin-left: 50px;
}
.client2 {
       margin-top: 50px;
       border-top: 2px solid rgba(82, 82, 38, 0.5);
       border-bottom: 1px solid rgba(82, 82, 38, 0.1);
       padding-bottom: -50px;
}
.clients1 {
    display: flex;
    flex-direction: row;
    gap: 80px;
    justify-content: center;
    font-size: 40px;
    margin: 0px;
}
.client4 {
      height: 170px;
     width: 1px;
     background-color: rgba(82, 82, 38, 0.5);
     display: block;
}
.client3 h6 {
    margin-top: 70px;
}
.client3 a {
    text-decoration: none;
}
.client3 a:hover h6 {
    background-color: white !important;
    color: rgb(82, 82, 38) !important;
}
.contact {
    background-color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.contact-text {
    margin-top: 10px;
}
.contact-text h1 {
    font-size: 30px;
    margin-top: 30px;
}
.contact-text h6 {
    font-size: 15px;
    font-weight: lighter;
    margin-top: 30px;
}
.contact-text p {
    font-size: 25px;
    margin-top: 50px;
}
.contact-form {
    padding-top: 50px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: none;
    justify-content: center;
    align-items: center;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
        width: 30%;
        box-sizing: border-box;
}
.contact-form input {
    height: 50px;
}
.contact-form textarea {
    height: 100px;
}
.contact-form button {
    height: 50px;
    background-color: rgb(82, 82, 38);
        color: #ffffff;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease-in-out;
        margin-bottom: -50px;
    }
    .contact-form button:hover {
        background-color: #ffffff;
        color: rgb(82, 82, 38);
        outline: 1px solid rgb(82, 82, 38);
    }
    .iti {
    width: 30%;
}
   .iti input[type="tel"] {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding-left: 52px !important; /* space for flag dropdown */
    font-size: 1rem;
}
   .contact-form input,
   .contact-form textarea {
    padding-left: 15px;
    padding-right: 12px;
    box-sizing: border-box;
}
footer {
    background-color: #f4f4f4;
    padding-top: 50px;
    color: rgb(82, 82, 38);
    padding-bottom: 20px;
}
.footer1 {
    margin-left: 50px;
    max-width: 95%;
    margin-top: 10px;
    padding-top: 0px;
       border-top: 1px solid rgba(82, 82, 38, 0.5);
       border-bottom: 1px solid rgba(82, 82, 38, 0.5);
       padding-bottom: 0px;
}
.footer2 {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.footer {
    margin-left: 1px;
}
.footer3 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 50px;
}
.footer4 {
    margin-top: 300px;
    margin-bottom: 20px;
}
.footer5 {
     height: 430px;
     width: 1px;
     background-color: rgba(82, 82, 38, 0.5);
     display: block;
     margin-left: 400px;
}
.footer6 {
    margin-left: 100px;
}
.footer7, .footer10, .footer12 {
    margin-top: 50px;
}
.footer8 p {
    margin-top: 30px;
    margin-bottom: 10px;
}
.footer13 {
    margin-top: 10px;
}
.footer7 a,
.footer12 a,
.footer13 a,
.footer15 a,
.footer3 a {
    text-decoration: none;
    color: rgb(82 82 38);
}
.footer14 {
    justify-items: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
.footer15 a {
  margin: 0 5px;
  font-size: 1.5em;
  color: rgb(82, 82, 38);
  transition: color 4s;
  text-decoration: none;
}
.footer15 a:hover {
  color: #0077b5; 
}
.footer16 {
    display: none;
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 2rem;
  background: rgb(82, 82, 38);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(82,82,38,0.15);
  transition: background 0.3s, transform 0.3s;
}
#backToTop:hover {
  background: #fff;
  color: rgb(82, 82, 38);
  border: 1px solid rgb(82, 82, 38);
  transform: scale(1.1);
}
.whatsapp-dm {
   position: fixed;
  right: 30px;
  bottom: 200px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-dm a {
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(37,211,102,0.12);
  gap: 10px;
  transition: background 0.3s;
}

.whatsapp-dm a:hover {
  background: #128c7e;
}

.whatsapp-dm i.fab.fa-whatsapp {
  font-size: 1.7em;
  animation: whatsappFade 3s infinite;
}
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(.23,1.01,.32,1), transform 0.8s cubic-bezier(.23,1.01,.32,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes whatsappFade {
  0%, 100% { opacity: 1; }
  40% { opacity: 0.2; }
  60% { opacity: 1; }
}
@media (max-width: 768px) {
  .whatsapp-dm {
    right: 10px;
    bottom: 200px;
  }
  .whatsapp-dm a {
    padding: 10px 16px;
    font-size: 1em;
  }
  .whatsapp-dm span {
    display: none;
  }
}

    
/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Initial state for overlay elements */
.overlay .Arle,
.overlay .description,
.overlay .btn {
    opacity: 0;
}

/* Animate image */
.hero-image {
    opacity: 0;
    animation: fadeIn 8s ease forwards;
    animation-delay: 1.4s;
}

/* Animate Arle heading */
.overlay .Arle {
    animation: fadeInUp 0.8s 0.8s cubic-bezier(.23,1.01,.32,1) forwards;
}

/* Animate description */
.overlay .description {
    animation: fadeInUp 1.8s 1.8s cubic-bezier(.23,1.01,.32,1) forwards;
}

/* Animate button */
.overlay .btn {
    animation: fadeInUp 3.4s 2.8s cubic-bezier(.23,1.01,.32,1) forwards;
}
.wrapper .about-text,
.wrapper .about6,
.wrapper .about7,
.wrapper .about8 {
    opacity: 0;
}
.about-image {
    opacity: 0;
    animation: fadeIn 8s ease forwards;
    animation-delay: 1.8s;
}
.about4 {
    opacity: 0;
    animation: fadeIn 8s ease forwards;
    animation-delay: 2.4s;
}
.wrapper .about-text {
     animation: fadeInUp 0.8s 0.8s cubic-bezier(.23,1.01,.32,1) forwards;
}
.wrapper .about6 {
    animation: fadeInUp 1.8s 1.8s cubic-bezier(.23,1.01,.32,1) forwards;
}

.wrapper .about7 {
    animation: fadeInUp 2.4s 2.4s cubic-bezier(.23,1.01,.32,1) forwards;
}

.wrapper .about8 {
    animation: fadeInUp 3.4s 3.4s cubic-bezier(.23,1.01,.32,1) forwards;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.50) translateY(80px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(40px);
    }
}
.services > * {
    opacity: 0;
    animation: fadeInScale 8s cubic-bezier(.23,1.01,.32,1) forwards;
}

/* Stagger the animation for each child */
.services > *:nth-child(1) { animation-delay: 1.1s; }
.services > *:nth-child(2) { animation-delay: 1.4s; }
.services > *:nth-child(3) { animation-delay: 1.6s; }
.services > *:nth-child(4) { animation-delay: 1.8s; }
.services > *:nth-child(5) { animation-delay: 2s; }
.services > *:nth-child(6) { animation-delay: 2.2s; }

@keyframes approachFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.approach-text h1,
.approach-text h6,
.approach1 p,
.approach-spacer2,
.approach-spacer1 {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: approachFadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) forwards;
}

.approach-text h1 {
    animation-delay: 0.5s;
}
.approach-text h6 {
    animation-delay: 0.7s;
}
.approach1 .approach-p1 {
    animation-delay: 0.9s;
}
.approach-spacer2 {
    animation-delay: 1.4s;
}
.approach-spacer1 {
    animation-delay: 1.4s;
}
.approach1 .approach-p2 {
    animation-delay: 1.7s;
}
@keyframes clientFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.clients1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.client3 {
    opacity: 0;
    transform: translateY(60px) scale(1.96);
    animation: clientFadeInUp 2.8s cubic-bezier(.23,1.01,.32,1) forwards;
}

.clients1 .client3:nth-child(1) { animation-delay: 1.2s; }
.clients1 .client3:nth-child(3) { animation-delay: 2.4s; }
.clients1 .client3:nth-child(5) { animation-delay: 3.6s; }
.clients1 .client3:nth-child(7) { animation-delay: 4.8s; }

.client3 a {
    transition: transform 5.3s cubic-bezier(.23,1.01,.32,1), 
    box-shadow 3.3s cubic-bezier(.23,1.01,.32,1);
    display: inline-block;
    border-radius: 0px;
}
.client3 a:hover,
.client3 a:focus {
    transform: scale(2);
    box-shadow: 0 0px 0px rgba(82,82,38,0.10), 1 1px 1px rgba(82,82,38,0.08);
}
/* Modern fade-in and scale animation */
@keyframes contactPopIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.contact-form {
  animation: contactPopIn 5.8s cubic-bezier(.23,1.01,.32,1) both;
  border-radius: 12px;
  padding: 32px 20px;
  transition: box-shadow 0.3s;
}
.contact-form input,
.contact-form textarea {
  transition: box-shadow 10.2s, border 8.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #525226;
  box-shadow: 0 2px 12px rgba(82,82,38,0.12);
  outline: none;
}

.contact-form button {
  transition: transform 5.2s, box-shadow 3.2s, background 2.2s;
}

.contact-form button:hover {
  transform: translateY(-2px) scale(1.5s);
  box-shadow: 0 6px 24px rgba(82,82,38,0.13);
  background: #fff;
  color: #525226;
  outline: 1px solid #525226;
}
@keyframes contactSectionPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.contact {
  animation: contactSectionPopIn 6s cubic-bezier(.23,1.01,.32,1) both;
  margin: 0 auto 40px auto;
  padding: 50px 20px;
  transition: box-shadow 5.3s;
}
@keyframes footerParallaxIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97) skewY(1deg);
    /*filter: blur(1px);*/
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) skewY(0);
    filter: blur(0);
  }
}
footer {
  opacity: 0;
  animation: footerParallaxIn 1.2s cubic-bezier(.23,1.01,.32,1) forwards;
  animation-delay: 3.3s;
  background: #f4f4f4;
  box-shadow: 0 8px 40px rgba(82,82,38,0.08);
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.footer14 {
  opacity: 0;
  animation: footerParallaxIn 1.2s cubic-bezier(.23,1.01,.32,1) forwards;
  animation-delay: 8.5s;
}
.footer2 > div {
  opacity: 0;
  animation: footerParallaxIn 5s cubic-bezier(.23,1.01,.32,1) forwards;
}
.footer2 > div:nth-child(1) { animation-delay: 2.5s; }
.footer2 > div:nth-child(2) { animation-delay: 4.7s; }
.footer2 > div:nth-child(3) { animation-delay: 5.9s; }
.footer2 > div:nth-child(4) { animation-delay: 6.1s; }
.footer2 > div:nth-child(5) { animation-delay: 7.3s; }
footer:hover {
  box-shadow: 0 16px 64px rgba(82,82,38,0.13), 0 0 16px #fff;
  background: #fff;
  transition: box-shadow 0.4s, background 0.4s;
}

/* Responsive styles on mobile at 768px below */
@media (max-width: 768px) {
    header {
        background-color: #f4f4f4 !important;
        position: static;
        top: auto;
    }
    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 20px;
        color:  rgb(82, 82, 38);
        font-size: 35px;
    }
    .menu-toggle .menu-icon,
    .menu-toggle .close-icon {
        color: rgb(82, 82, 38) !important;
    }
    .logo {
        margin-left: 0px;
        color: rgb(82, 82, 38);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 70%;
        height: 100vh;
        background: white;
        position: fixed;
        top: 0px;
        left: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 1001;
        font-weight: bold;
        align-items: flex-start;   
        padding-left: 16px;         
        gap: 0;
        margin-top: 0px;
        padding-top: 70px;
        transition: all 0.7s ease-in-out;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a,
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        color: rgb(82, 82, 38);
        padding: 15px 0 15px 0;
        background: none !important;
        border: none;
        font-size: 1rem;
    }
    .dropdown {
        position: relative;
        width: auto;
        align-items: flex-start;
    }
    /* Dropdown appears next right to Services */
    .dropdown-content {
        display: none;
        position: absolute;
        left: calc(100% + 50px); /* Shift 50px further right */
        top: 50px; /* Adjust top position */
        min-width: 140px;
        width: max-content; /* Allow content to define width */
        max-width: 70vw;        /* Never exceed viewport */
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 2000;
        flex-direction: column;
        border-radius: 4px;
        margin-left: 0;
        margin-top: 0;
        font-weight: lighter;
    }
    .dropdown-content a {
        color: #333333;
        padding: 10px 10px;
        background: #ffffff;
        white-space: nowrap;
    }

    .nav-links a:active,
    .nav-links a:focus,
    .dropdown-toggle:active,
    .dropdown-toggle:focus {
        background: none !important;
        outline: none !important;
        color: rgb(82, 82, 38) !important;
        box-shadow: none !important;
    }
     .hero {
        position: relative;
        flex-direction: column;
        height: 500px;
        padding: 0;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
    }
    .Bigfour3 {
        width: 100vw;
        margin: 0;
        padding: 0;
        border-radius: 0;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .hero-image {
        width: 100vw;
        max-width: 100vw;
        height: 500px; 
        object-fit: cover;
        margin: 0;
        border-radius: 0;
        display: block;
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        color: #ffffff;
        background:  rgba(255, 255, 255, 0.6); /* semi-transparent overlay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px 10px;
        border-radius: 0;
        margin: 0;
        text-align: center;
        z-index: 1; /* Ensure it appears above the image */
    }
    .overlay .Arle {
        font-size: 25px;
        margin-bottom: 10px;
        color:  rgb(82, 82, 38);
    }
    .overlay .description {
        font-size: 15px;
        color: rgb(82, 82, 38);
        margin-top: 10px;
        max-width: 90%;
    }   
    .overlay .btn {
    margin-top: 60px;
    background-color: rgb(82, 82, 38);
    color: #ffffff;
    padding: 15px 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
    }
    .overlay .btn:hover {
        background-color: #ffffff;
        color: rgb(82, 82, 38);
    }
    .wrapper {
    background-color: #f4f4f4;
    color: rgb(82, 82, 38);
    margin-top: -50px;
    }
    .wrapper .About {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 10px;
    }
    .About {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
    }
     .about-text {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 24px 0 16px 0;
        text-align: center;
    }
    .about-text h1 {
        width: 100%;
        text-align: center;
        font-size: 25px;
        margin: 0;
    }
    .about-image {
        display: none;
    }
    .about3 {
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    .about3 .about4 {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        object-fit: cover;
        margin: 0;
        display: block;
        align-self: center;
        background: #f4f4f4;
    }
    .about2 {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        margin: 0;
    }
    .wrapper .about6,
    .wrapper .about7,
    .wrapper .about8 {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper .about6 {
        font-size: 24px;
        width: 100%;
        max-width: 420px;
        margin-top: 20px;
        margin-bottom: 20px;
    } 
    .wrapper .about7 {
        font-size: 15px;
        width: 100%;
        max-width: 420px;
        text-align: center;
    }
    .wrapper .about8 {
        font-size: 16px;
        display: block;
        margin: 20px auto 0 auto;  /* Center horizontally */
        justify-content: center;
        align-items: center;
        min-width: 120px;
        max-width: 150px;
        text-align: center;
        padding: 15px 20px;
         background-color: rgb(82, 82, 38);
         color: white;
         margin-bottom: 20px;
       }
       .wrapper .about8:hover {
         background-color: #ffffff;
        color: rgb(82, 82, 38);
       }
        .service2 {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    .service3 {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin: 0;
        padding: 0;
    }
    .service3::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(82, 82, 38, 0.9); 
    pointer-events: none;
    transition: opacity 0.8s;
    opacity: 1;
}
     .service {
        width: 100vw;
        max-width: 100vw;
        display: block;
        margin: 0;
        padding: 0;
    }
    .service1 {
        width: 100%;
        max-width: 100vw;
        text-align: center;
        margin: 0 auto 24px auto !important;
        display: block;
        font-size: 28px;
        margin-left: 0 !important;
    }
    .service-image {
        width: 100vw;
        max-width: 100vw;
        height: 220px; 
        margin: 0 auto;
        object-fit: cover;
        display: block;
    }
    .service4 {
        margin-top: 50px !important;
    }
    .service4,
    .service5,
    .service6,
    .service7,
    .service8,
    .service9 {
        width: 90vw;
        max-width: 500px;
        margin: 0 auto 24px auto;
        text-align: center;
        display: block;
    }
    .service-spacer {
        display: block;
        width: 100vw;       
        max-width: 390px;  
        height: 1px;          
        background: rgba(82, 82, 38, 0.2);
        margin: 0 auto;   
        border: none;
    }
     .service5 h3 br,
    .service6 h3 br,
    .service8 h3 br,
    .service9 h3 br {
        display: none;
    }
    .service5 h3,
    .service6 h3,
    .service8 h3,
    .service9 h3 {
        white-space: nowrap;
        font-size: 1.5rem;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .service5 {
     margin-bottom: 20px;
     border-bottom: 1px solid rgba(82, 82, 38, 0.2);
     padding-bottom: 20px; 
   } 
   .service8 {
     margin-top: 10px;
     margin-bottom: 20px;
     border-bottom: 1px solid rgba(82, 82, 38, 0.2);
     padding-bottom: 20px; 
   }
   .service5 p {
     margin-top: 20px;
     font-size: 15px;
   }
   .service6 p {
     margin-top: 20px;
     font-size: 15px;
     margin-bottom: -30px !important;
   }
   .service8 p {
     margin-top: 20px;
     font-size: 15px;
   }
   .service9 p {
     margin-top: 20px;
     font-size: 15px;
   }
   .approach {
    margin-bottom: 30px;
   }
   .approach-text {
    margin-top: 50px;
   }
     .approach-text h1,
    .approach-text h6 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .approach-text h1 {
        font-size: 30px;
    }
    .approach-text h6 {
        font-size: 1rem;
    }
    .approach1 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 15px;
    }
    .approach-spacer2 {
        display: none !important;
    }
    .approach-spacer1 {
        display: block !important;
        width: 100vw;
        max-width: 390px;
        height: 1px;
        background: rgba(82, 82, 38, 0.2);
        margin: 24px auto;
        border: none; 
    }
     .clients1 {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .client1 {
        margin-left: 80px;
    }
    .client1 h1 {
        font-size: 25px;
    }
    .client3 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .client3 h6 {
        margin: 16px 0 0 0;
        text-align: center;
        width: 100%;
    }
    .client4 {
        width: 100vw;
        height: 1px;
        background: rgba(82, 82, 38, 0.5);
        margin: 12px auto;
        display: block;
    }
     .contact {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow-x: hidden;
    }
    .contact-text {
        width: 100%;
        max-width: 95vw;
        margin: 0 auto 24px auto;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .contact-text h1,
    .contact-text h6,
    .contact-text p {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        word-break: break-word;
    }
    .contact-text h1 {
        font-size: 25px;
        margin-top: -30px;
    }
    .contact-text h6 {
        font-size: 15px;
        font-weight: normal;
    }
    .contact-text p br {
        display: none;
    }
    .contact-text p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .contact-form {
        width: 100%;
        max-width: 400px;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 100%;
        box-sizing: border-box;
    }
    .contact-form input {
        height: 50px;
    }
    .contact-form textarea {
        height: 100px;
        resize: none;
    }
    .contact-form button {
        height: 50px;
        background-color: rgb(82, 82, 38);
        color: #ffffff;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease-in-out;
    }
    .contact-form button:hover {
        background-color: #ffffff;
        color: rgb(82, 82, 38);
        outline: 1px solid rgb(82, 82, 38);
    }
     .iti {
    width: 100%;
    }
     .iti input[type="tel"] {
      width: 100%;
      height: 50px;
      box-sizing: border-box;
      padding-left: 52px !important; /* space for flag dropdown */
      font-size: 1rem;
    }
    .footer1 {
    margin-left: 30px;
    max-width: 80vw;
    padding: 0 1px;
  }
  .footer1, .footer2,
  .footer8, .footer12, 
  .footer13 {
     margin-top: -10px;
  }
  .footer4, .footer10 {
    display: none;
  }
  .footer2 {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer {
    margin-left: 0;
    text-align: left;
  }
  .footer5 {
    display: none; /* Hide vertical divider on mobile */
  }
  .footer6 {
    margin-left: 0;
  }
  .footer7, .footer10, .footer12, .footer13, .footer14 {
    margin-top: 15px;
    margin-left: 0;
    text-align: left;
  }
  .footer8 iframe {
    max-width: 100vw;
    width: 100%;
    height: 180px;
  }
  .footer14 {
    margin-left: 30px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
  }
  .footer16 {
    display: block !important;
    margin-top: 10px;
    width: 100%;
    opacity: 0;
    animation: footerParallaxIn 1.2s cubic-bezier(.23,1.01,.32,1) forwards;
    animation-delay: 8s;
  }
  .footer15 a {
    font-size: 1.2em;
  }
}
