@media (max-width: 767px){
    /* nav-section */
.nav-section {
    padding: 10px 20px;
}
.nav-menu-section {
    display: none;
}
.nav-menu-icon {
  display: flex;
}
/* top-section */
.top-wrapper {
    height: auto;
}
.top-section {
    height: auto;
    display: flex;
    flex-direction: column-reverse; /* <-- this swaps the order */
}
.top-left {
    width: 100%;
    height: 50vh;
}
.top-right {
    width: 100%;
    margin-top: 7rem;
}
.head {
   display: none;
}
.top-minihead {
    font-size: 34px;
    padding-left:20px;
}
.we-here {
    font-size: 18px;
    padding-left:20px;
}
/* second-section */
.second-section {
  position: sticky;
  top: 0;
  display: flex;
  height: auto;
  overflow: hidden;
}
.second-section {
    padding: 0px 0px;
    display: block;
}
.second-section-left {
    display: none;
}
.second-section-right {
    width: 100%;
}
.image-stack {
    position: relative;
    width: 280px;
    height: 200px;
    perspective: 4000px;
    perspective-origin: 0% -180%;
    margin-left: 50px;
}
/* third-section */
.what-third-section {
    font-size: 18px;
}
.option {
    font-size: 35px;
    padding-bottom: 15px;
}
/* fourth-section */
.fourth-section {
    padding: 0px 20px;
}
.fourth-head {
    font-size: 28px;
    font-weight: 800;
    width: 100%;
}
.fourth-section-grid {
    display: block;
}

.fourth-section-grid-left {
    width: 100%;
    padding-bottom: 20px;

}

.fourth-section-grid-right {
    width: 100%;
}
.fourth-left,
.fourth-right {
    width: 100%;
    height: 300px;
}
.hover-mid-img {
    width: 100%;
    height: 100px;
}
/* fifth-section */
.fifth-section {
    padding: 0px 20px;
}
.first-line-grid {
    padding: 0px 0px;
}

.line-side-head {
    font-size: 26px;
}
.line-mid-head {
    padding-top: 0px;
}
.second-line-grid {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-left: 0
  }

  .second-line-container.name-grid {
    order: 1;
  }

  .line-img-section {
    order: 3;
  }

  .second-line-container.role-grid {
    order: 2;
  }
  .second-line-container.name-grid,
  .second-line-container.role-grid{
    width: 100%;
    text-align: left;
  }
  .second-line-side-head {
    font-size: 30px;
    line-height: 1px;
}
.line-img-section {
   width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    margin-left: 0px
}
.bottom-img-section {
    padding: 10px 20px;
}
/* footer */
/* footer */
  .footer {
    background-color: #000000;
    padding: 80px 20px;
    height: auto;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* Make regular footer-columns take equal width in a row */
  .footer-top > .footer-column:not(.b) {
    flex: 1 1 30%;  /* grow, shrink, basis ~30% each */
    margin-bottom: 20px;
  }

  /* The .footer-column.b to take full width and align below */
  .footer-column.b {
    flex: 1 1 100%;
    margin-top: 0px;
    visibility: visible; /* Make sure it's visible */
    display: block;
  }

  /* Hide the paragraph inside other footer-columns if needed */
  .footer-column:not(.b) p {
    display: none;
  }

  /* You can style links as you want */
  .footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
  }
.footer-bottom {
    height: auto;
    overflow: visible;
    position: relative;
    margin-top: 80px;
  }

  .lets-work {
    font-size: 47px;
    top: 0;
    left: 10px;
    line-height: 1;
    margin: 0;
    padding: 0;
    background-color: #000;
    white-space: nowrap;
  }

  .lets-work-clone {
    font-size: 47px !important;
    position: absolute !important;
    top: 0 !important; /* start all clones from same top */
    left: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    opacity: 0;
    transform: translateY(calc(var(--index) * -10px)) !important;
    white-space: nowrap;
    z-index: 10; /* or control by JS */
  }


.nav-menu-section {
    display: none;
  }

  .nav-menu-icon {
    display: block;
    cursor: pointer;
    color: #111;
    width: 24px;
    height: 18px;
    transition: transform 0.3s ease;
    border-radius: 5px;
  }


/* Optional: style nav-menu items */
.mobile-menu-content .nav-menu {
  margin: 0;
  cursor: pointer;
  user-select: none;
  color: #111;
  font-size: 24px;
  font-weight: 1000;
  text-transform: uppercase;
  line-height: 0.6;
  font-family: "Archivo Black", sans-serif;
}
.contact-grid{
    padding-top: 30px;
}

}

@media (min-width: 768px) and (max-width: 991.98px) {
    
    /* Navigation */
    .nav-section {
        padding: 15px 40px;
    }
    
    .nav-menu-section {
        gap: 25px;
    }
    
    .nav-menu {
        font-size: 16px;
    }
    
    .logo-wrapper {
        width: 90px;
    }
    
    .logo,
    .logo-w {
        width: 90px;
    }
    
    /* Top Section */
    .top-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .top-left {
        width: 100%;
        height: 50vh;
        order: 1;
    }
    
    .top-right {
        width: 100%;
        height: 50vh;
        order: 2;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .we-here {
        padding-left: 0;
        font-size: 16px;
        padding-bottom: 15px;
    }
    
    .top-minihead {
        font-size: 42px;
        padding-left: 0;
        text-align: center;
    }
    
    .minihead-section {
        margin-left: 0;
        padding-left: 0;
        padding-bottom: 20px;
    }
    
    .head {
        font-size: 180px;
        margin-left: 0;
        text-align: center;
        padding-top: 20px;
        letter-spacing: -6px;
    }
    
    /* Second Section */
    .second-section {
        padding: 0 40px;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .second-section-left {
        width: 100%;
        order: 2;
        padding: 40px 0;
    }
    
    .second-section-right {
        width: 100%;
        height: 60vh;
        order: 1;
    }
    
    .second-section-left-content {
        width: 80%;
        gap: 25px;
    }
    
    .second-title {
        font-size: 42px;
        text-align: center;
    }
    
    .second-minititle {
        font-size: 20px;
        text-align: center;
    }
    
    .second-minihead {
        font-size: 18px;
        text-align: center;
    }
    
    .read-more {
        font-size: 16px;
        text-align: center;
    }
    
    .image-stack {
        width: 350px;
        height: 280px;
    }
    
    /* Third Section */
    .third-section {
        padding: 20px 40px 100px;
    }
    
    .option {
        font-size: 65px;
    }
    
    .what-third-section {
        font-size: 18px;
        padding-bottom: 15px;
    }
    
    /* Fourth Section */
    .fourth-section {
        padding: 40px 40px;
    }
    
    .fourth-head {
        font-size: 42px;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .fourth-section-grid {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding-top: 30px;
    }
    
    .fourth-section-grid-left,
    .fourth-section-grid-right {
        width: 100%;
        height: 50vh;
    }
    
    .hover-mid {
        width: 200px;
        height: 250px;
    }
    
    .hover-content {
        font-size: 14px;
        width: 30%;
    }
    
    /* Fifth Section */
    .fifth-section {
        padding: 0 40px;
    }
    
    .first-line-grid {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .line-side-head {
        font-size: 42px;
    }
    
    .second-line-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .second-line-container {
        width: 100%;
        text-align: center;
    }
    
    .second-line-side-head {
        font-size: 36px;
    }
    
    .line-img-section {
        width: 280px;
        height: 280px;
        margin-left: 0;
        order: -1;
    }
    
    .line-mid-container {
        width: 100%;
    }
    
    /* Bottom Image Section */
    .bottom-img-section {
        padding: 60px 40px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 40px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        row-gap: 40px;
    }
    
    .footer-column:last-child {
        width: 100%;
        grid-column: 1 / -1;
    }
    
    .lets-work {
        font-size: 120px;
    }
    
    /* Mobile Menu Adjustments */
    .nav-menu-icon {
        display: block;
    }
    
    .nav-menu-section {
        display: none;
    }
    
    .mobile-menu-content {
        padding-top: 10rem;
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    
    /* Navigation */
    .nav-section {
        padding: 18px 60px;
    }
    
    .nav-menu-section {
        gap: 30px;
    }
    
    .nav-menu {
        font-size: 17px;
    }
    
    .logo-wrapper {
        width: 100px;
    }
    
    .logo,
    .logo-w {
        width: 100px;
    }
    
    /* Top Section */
    .we-here {
        padding-left: 4rem;
        font-size: 17px;
    }
    
    .top-minihead {
        font-size: 52px;
        padding-left: 4rem;
    }
    
    .minihead-section {
        margin-left: -10rem;
        padding-left: 10rem;
    }
    
    .head {
        font-size: 220px;
        margin-left: -20rem;
        letter-spacing: -8px;
    }
    
    /* Second Section */
    .second-section {
        padding: 0 60px;
    }
    
    .second-section-left-content {
        width: 70%;
        gap: 28px;
    }
    
    .second-title {
        font-size: 48px;
    }
    
    .second-minititle {
        font-size: 21px;
    }
    
    .second-minihead {
        font-size: 19px;
    }
    
    .read-more {
        font-size: 17px;
    }
    
    .image-stack {
        width: 380px;
        height: 320px;
    }
    
    /* Third Section */
    .third-section {
        padding: 20px 60px 120px;
    }
    
    .option {
        font-size: 75px;
    }
    
    .what-third-section {
        font-size: 19px;
    }
    
    /* Fourth Section */
    .fourth-section {
        padding: 45px 60px;
    }
    
    .fourth-head {
        font-size: 48px;
        width: 60%;
    }
    
    .fourth-section-grid {
        gap: 18px;
        padding-top: 45px;
    }
    
    .hover-mid {
        width: 250px;
        height: 300px;
    }
    
    .hover-content {
        font-size: 15px;
    }
    
    /* Fifth Section */
    .fifth-section {
        padding: 0 60px;
    }
    
    .line-side-head {
        font-size: 48px;
    }
    
    .second-line-side-head {
        font-size: 42px;
    }
    
    .line-img-section {
        width: 320px;
        height: 320px;
        margin-left: 40px;
    }
    
    .line-mid-container,
    .second-line-container {
        width: 25%;
    }
    
    /* Bottom Image Section */
    .bottom-img-section {
        padding: 80px 60px;
    }
    
    /* Footer */
    .footer {
        padding: 70px 60px;
    }
    
    .footer-top {
        gap: 20px;
    }
    
    .footer-column:last-child {
        width: 280px;
    }
    
    .lets-work {
        font-size: 150px;
    }
    
    /* Fine-tune spacing */
    .first-line-grid {
        padding: 18px 0;
    }
    
    .second-line-grid {
        padding: 18px 0;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    
}