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

html {
  width: 100%;
}

body {
  font-family: "Poppins", Helvetica, sans-serif;
  width: 100%;
  position: relative;
}

.homepage {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Hide mobile-only sections on desktop */
.how-it-works-mobile {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  /* min-height: 900px; */
  width: 100%;
  padding: 0 135px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 887px;
  background: linear-gradient(180deg, rgba(237, 223, 223, 1) 0%, rgba(224, 249, 255, 1) 100%);
  z-index: -1;
}

.team-building {
  position: absolute;
  top: 253px;
  right: 135px;
  width: 519px;
  height: 512px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 114px;
  box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 20px rgba(221, 221, 221, 0.25);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fdb21a;
}

.homepage .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.homepage .nav-dropdown .down-arrow {
  width: 8px;
  height: 5px;
}

.homepage .nav-dropdown .dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  padding-top: 0px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: none;
  min-width: 200px;
  z-index: 1000;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
}

.homepage .nav-dropdown .dropdown-menu a {
  background-color: #ffffff;
  padding: 12px 20px;
  color: #212121;
  text-decoration: none;
  font-family: "Poppins", Helvetica;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.homepage .nav-dropdown .dropdown-menu a:first-child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-top: 15px;
  box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.08);
}

.homepage .nav-dropdown .dropdown-menu a:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-bottom: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.homepage .nav-dropdown .dropdown-menu a:not(:first-child):not(:last-child) {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
}

.homepage .nav-dropdown:hover .dropdown-menu,
.homepage .nav-dropdown.active .dropdown-menu {
  display: flex !important;
}

.homepage .nav-dropdown .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #fdb21a;
  border-left-color: #fdb21a;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  background-color: #fdb21a;
  border-radius: 70px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #004aad;
}

.nav-cta:hover .nav-cta-text {
  color: #ffffff;
}

.nav-cta:hover .nav-cta-arrow {
  filter: brightness(0) invert(1);
}

.nav-cta-text {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-cta-arrow {
  width: 14px;
  height: 13px;
  filter: brightness(0);
  transition: filter 0.3s ease;
}

/* Hero Content */
.hero-content {
  margin-top: 100px;
  max-width: 616px;
}

.hero-label {
  /* opacity: 0.7; */
  font-family: "Neue Haas Grotesk Text Pro-55Rg", Helvetica;
  color: #212121;
  font-size: 22px;
  letter-spacing: 6.38px;
  margin-bottom: 40px;
}

.hero-title {
  font-family: "Neue Haas Grotesk Text Pro-Regular", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 55px;
  line-height: 60px;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #e8107c;
}

.hero-description {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 45px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  background-color: #004aad;
  border-radius: 70px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, #003580 0%, #002d6b 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: width 0.8s ease, height 0.8s ease;
  z-index: 0;
}

.hero-cta:hover::before {
  width: 300%;
  height: 300%;
}

.hero-cta-text,
.hero-cta span {
  position: relative;
  z-index: 1;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
}

.hero-cta img {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 13px;
  filter: brightness(0) invert(1);
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 60px 135px;
  min-height: 324px;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d3f3fa;
  z-index: -2;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0px 0px 20px #ffffff;
  z-index: -1;
}

.stats-content {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.stats-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 24px;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #e8107c;
  font-size: 65px;
  margin-bottom: 10px;
}

.stat-text {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 18px;
  line-height: 30px;
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 135px;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 45px;
  margin-bottom: 30px;
}

.homepage .section-line {
      position: relative;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 630px;
}

.section-description {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 18px;
  line-height: 30px;
  max-width: 912px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Steps Container - Sticky Scroll */
.steps-container {
  position: relative;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

.step {
  position: sticky;
  top: 50px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.step-1 { z-index: 1; }
.step-2 { z-index: 2; }
.step-3 { z-index: 3; }
.step-4 { z-index: 4; }
.step-5 { z-index: 5; }
.step-6 { z-index: 6; }

.step-card {
  width: 100%;
  height: 400px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.step-card-pink {
  background-color: #e8107c;
}

.step-card-blue {
  background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/frame-30.svg);
  background-size: cover;
}

.step-card-gradient {
  background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/frame-29.svg);
  background-size: cover;
}

.step-visual {
  position: relative;
  width: 50%;
}

.step-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.step-visual img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}

.step-content {
  width: 50%;
  padding-left: 50px;
}

.step-content-center {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.step-label {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.step-card-pink .step-label,
.step-card-pink .step-text {
  color: #ffffff;
}

.step-card-blue .step-label,
.step-card-blue .step-text {
  color: #ffffff;
}

.step-card-gradient .step-label {
  color: #212121;
}

.step-card-gradient .step-text {
  color: #000000;
}

.step-text {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  opacity: 0.8;
}

.step-image {
  width: 323px;
  height: auto;
}

/* Services Section */
.services-section {
  position: relative;
  padding: 80px 135px;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 246, 246, 1) 0%, rgba(232, 251, 255, 1) 100%);
  z-index: -1;
}

.services-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1230px;
  margin: 0 auto;
}

.service-card {
  flex: 1;
  max-width: 393px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 20px rgba(221, 221, 221, 0.25);
  backdrop-filter: blur(30px);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-content p {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 16px;
  line-height: 25px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.service-cta span {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #e8107c;
  font-size: 18px;
}

.service-cta img {
  width: 16px;
  height: 14px;
}
.setup-section{
  background: linear-gradient(180deg, rgba(255, 246, 246, 1) 0%, rgba(232, 251, 255, 1) 100%);
    text-align: center;
    padding: 100px 0px;
}
/* Why Section */
.why-section {
  position: relative;
  padding: 100px 135px;
}

.why-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 246, 246, 1) 0%, rgba(232, 251, 255, 1) 100%);
  z-index: -1;
}

.why-content {
  max-width: 1230px;
  margin: 0 auto 60px;
}

.why-setup {
  text-align: center;
  margin-bottom: 60px;
}

.why-setup h2 {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 45px;
  margin-bottom: 40px;
}

.why-setup-visual {
  position: relative;
  display: inline-block;
}

.why-setup-visual .laptop {
  width: 600px;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 60px;
  background-color: #004aad;
  border-radius: 70px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, #003580 0%, #002d6b 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: width 0.8s ease, height 0.8s ease;
  z-index: 0;
}

.why-cta:hover::before {
  width: 300%;
  height: 300%;
}

.why-cta span {
  position: relative;
  z-index: 1;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
}

.why-cta img {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 13px;
  filter: brightness(0) invert(1);
}

.why-matters {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-matters img {
  width: 400px;
}

.why-matters-content h3 {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 45px;
  margin-bottom: 20px;
}

.why-matters-content p {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.why-adlee-box {
  max-width: 1230px;
  margin: 0 auto;
  background-color: #fff6fb;
  border-radius: 30px;
  padding: 60px;
  display: flex;
  gap: 60px;
}

.why-adlee-left {
  flex: 1;
}

.why-adlee-left h3 {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 45px;
  margin-bottom: 20px;
}

.why-adlee-left p {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.why-adlee-right {
  flex: 1;
}

.why-adlee-right h4 {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #0ba66d;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-adlee-right ul {
  list-style: none;
}

.why-adlee-right li {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}

.why-adlee-right li strong {
  font-weight: 700;
}

/* Footer Section */
.footer-section {
  position: relative;
  min-height: 820px;
  background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/rectangle-17.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 135px;
}

.footer-cta {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.footer-cta h2 {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 75px;
  margin-bottom: 20px;
}

.footer-cta p {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 24px;
  max-width: 800px;
}

.footer-watermark {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 495px;
  opacity: 0.15;
  position: absolute;
  bottom: 100px;
  white-space: nowrap;
}

.footer-bottom {
  position: absolute;
  bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 270px);
}

.footer-bottom img {
  width: 305px;
}

.footer-bottom p {
  font-family: "Neue Haas Grotesk Text Pro-65Md", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 24px;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #212121;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Styles */
@media screen and (max-width: 1520px) {
  .homepage .text-wrapper-20 {
      height: 285px;
      font-size: 435px;
  }
}
@media screen and (max-width: 1420px) {
  .homepage .element-2 {
    margin-top: 175px;
  }
  .homepage .element-4 {
    margin-top: 225px;
  }
  .homepage .element-6 {
    margin-top: 278px;
  }
  .homepage .group-4 {
    margin-top: 255px;
  }
  .homepage .imgi {
    left: 400px;
  }
  .homepage .frame-15 {
    width: 300px;
  }
  .homepage .imgi-invoice {
    width: 450px;
  }
  .homepage .text-wrapper-20 {
    width: 100%;
    height: 267px;
    font-size: 410px;
  }
}
@media screen and (max-width: 1380px) {
  .homepage .services-section {
    /* margin-top: 5%; */
    padding: 40px 100px;
  }
  .nav-links {
      gap: 15px;
  }
  .team-building {
    position: absolute;
    top: 230px;
    right: 120px;
    width: 450px;
    height: 400px;
  }
  .homepage .frame-wrapper {
    margin-top: 50px;
  }
  .homepage .element-2{
    margin-top: 110px;
  }
  .homepage .element-4 {
    margin-top: 205px;
  }
  .homepage .element-6 {
    margin-top: 238px;
  }
  .homepage .group-wrapper {
    margin-top: 50px;
  }
  .homepage .frame-wrapper {
      margin-top: 75px;
  }
  .homepage .element-2 {
    margin-top: 140px;
  }
  .homepage .element-4 {
    margin-top: 210px;
  }
  .homepage .element-6 {
    margin-top: 246px;
  }
  .homepage .group-4 {
    margin-top: 215px;
  }
  .homepage .frame-15 {
    width: 288px;
  }
}

@media screen and (max-width: 1300px) {
  .homepage .services-section {
    margin-top: 5%;
    padding: 40px 100px;
  }
  .homepage .frame-11 {
      width: 100%;
  }
  .homepage .frame-16 {
    left: 0px;
    width: 100%;
  }
  .homepage .group-3 {
    width: 100%;
  }
  .homepage .frame-18 {
    left: 0px;
    width: 100%;
  }
  .homepage .frame-wrapper {
    margin-top: 100px;
    height: 399px;
    background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/frame-29.svg);
    background-size: auto;
    width: 100%;
    display: flex;
    background-repeat: no-repeat;
    border-radius: 25px;
    margin-top: 140px;
  }
  .homepage .element-2 {
    margin-top: 220px;
    height: 399px;
    gap: 200px;
    background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/frame-30.svg);
    background-size: initial;
    width: 100%;
    display: flex;
    border-radius: 25px;
    background-repeat: no-repeat;
  }
  .homepage .element-4 {
    margin-top: 235px;
  }
  .homepage .element-6 {
    margin-top: 280px;
  }
  .homepage .group-wrapper {
    margin-top: 75px;
  }
  .homepage .group-4 {
    margin-top: 275px;
    width: 100%;
    height: 399px;
    display: flex;
    background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/frame-35.svg);
    background-size: initial;
    border-radius: 25px;
    background-repeat: no-repeat;
  }
  .homepage .text-wrapper-20 {
      width: 100%;
      height: 240px;
      font-size: 375px;
  }
}

/* Additional Responsive Fixes for All Screen Sizes */
@media screen and (max-width: 1280px) {
  .hero-section {
    padding: 0 60px;
  }
  
  .homepage .group-wrapper,
  .homepage .frame-wrapper,
  .homepage .element-2,
  .homepage .element-4,
  .homepage .element-6,
  .homepage .group-4 {
    width: 100%;
  }
  
  .homepage .frame-29 {
    gap: 80px;
    padding: 0 60px;
  }
  .frame-27 {
    display: flex;
    width: 100% !important;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 700px !important;
    left: 0 !important;
    padding: 0 3%;
  }
  .homepage .services-section {
    padding: 80px 120px;
  }
  .homepage .frame-35 {
    position: absolute;
    top: 563px;
    left: calc(50% - 400px);
    width: 337px;
    height: 266px;
  }
  .homepage .frame-28{
    gap: 0;
  }
  .homepage .laptop {
    position: relative;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
  }
  .homepage .laptop-video {
    top: 1%;
    left: 6%;
    width: 73%;
    height: 86%;
  }
  .homepage .imgi {
    left: 420px;
    width: 550px;
  }
  .homepage .frame-15 {
    width: 200px;
    margin-top: 110px;
  }
  .homepage .imgi-ad {
    top: 75px;
    left: 635px;
    width: 310px;
  }
}

@media screen and (max-width: 1200px) {
    .homepage .laptop-video {
        top: 18%;
        left: 18%;
        width: 64%;
        height: 59%;
    }
        .homepage .text-wrapper-20 {
        width: 100%;
        height: 217px;
        font-size: 345px;
    }

}

@media screen and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .homepage {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .navbar {
    padding: 15px 30px;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 60vh;
    width: 300px;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 25px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
  }
  
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .homepage .nav-dropdown .down-arrow {
    bottom: 25px;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 10px;
    width: 100%;
    box-shadow: none;
    background-color: #f8f8f8;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
      .hero-content {
        margin-top: 70px;
        width: 550px;
    }
  
  .hero-title {
    font-size: 40px;
    line-height: 45px;
  }
  
  .stats-grid {
    /* flex-direction: column; */
    gap: 30px;
  }
  
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  /* Why Sponsorship Section */
  .homepage .frame-29 {
    flex-direction: column;
    gap: 40px;
    padding: 0 30px;
  }
  
  .homepage .inclusion {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  .homepage .frame-30 {
    width: 100%;
  }
  
  .homepage .text-wrapper-22 {
    font-size: 36px;
    width: 100%;
  }
  
  /* How It Works Steps */
  .homepage .group-wrapper,
  .homepage .frame-wrapper,
  .homepage .element-2,
  .homepage .element-4,
  .homepage .element-6,
  .homepage .group-4 {
    width: 100%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .homepage .group-3,
  .homepage .frame-13,
  .homepage .frame-14,
  .homepage .frame-17,
  .homepage .frame-19,
  .homepage .frame-20 {
    width: 100%;
  }
  
  .homepage .frame-11,
  .homepage .frame-16,
  .homepage .frame-18 {
    width: 100%;
  }
  
  .homepage .text-wrapper-10,
  .homepage .text-wrapper-12 {
    font-size: 36px;
  }
  
  /* Setup Section */
  .homepage .frame-28 {
    padding: 0 30px;
  }
  
  .homepage .text-wrapper-21 {
    font-size: 32px;
    width: 100%;
  }
  
  .homepage .group-9 {
    width: 100%;
    height: auto;
  }
  
  .homepage .laptop {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
  }

  .homepage .laptop-video {
    position: absolute;
    top: 3%;
    left: 12.5%;
    width: 75%;
    height: 72%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    z-index: 1;
  }
  
  .homepage .get-started-2 {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-section {
    min-height: 500px;
  }

  .homepage .frame-25 {
        display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 100px;
    left: 0;
    padding: 0 10px;
  }
  .homepage .group-8 {
    height: auto;
    min-height: 500px;
  }
  
  .homepage .talk-to-us {
    font-size: 48px;
  }
  
  .homepage .you-have-questions {
    font-size: 15px;
  }
  
  .homepage .rectangle-10 {
    top: 520px;
    height: 160px;
  }
  
  .homepage .frame-27 {
    top: 555px !important;
  }
  .team-building {
      position: absolute;
      top: 130px;
      right: 80px;
      width: 300px;
      height: 400px;
  }
  .homepage .hero-section {
    position: relative;
    height: 687px;
    width: 100%;
  }
  .why-sponsorship-matters{
    display: none;
  }
  /* Hide desktop how-it-works-section on mobile */
  .homepage .how-it-works-section {
    display: none !important;
  }
  
  /* Show mobile-only how-it-works section */
  .how-it-works-mobile {
    display: block !important;
    padding: 0px 25px;
    background: linear-gradient(180deg, rgba(255, 246, 246, 0.3) 0%, rgba(232, 251, 255, 0.3) 100%);
  }
  
  .how-it-works-mobile .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .how-it-works-mobile .section-title {
    font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
    font-weight: 600;
    color: #212121;
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 45px;
  }
  
  .how-it-works-mobile .section-description {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    color: #212121;
    font-size: 16px;
    line-height: 26px;
    opacity: 0.8;
  }
  
  .how-it-works-mobile .mobile-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .how-it-works-mobile .mobile-step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Step 1 - Pink/Magenta */
  .how-it-works-mobile .mobile-step-card:nth-child(1) {
    background-color: #e8107c;
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(1) .step-number,
  .how-it-works-mobile .mobile-step-card:nth-child(1) .step-text {
    color: #ffffff;
  }
  
  /* Step 2 - Yellow/Orange gradient background */
  .how-it-works-mobile .mobile-step-card:nth-child(2) {
    background: linear-gradient(135deg, #fdb21a 0%, #ffcc5c 100%);
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(2) .step-number {
    color: #000000;
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(2) .step-text {
    color: #000000;
    opacity: 0.8;
  }
  
  /* Step 3 - Blue */
  .how-it-works-mobile .mobile-step-card:nth-child(3) {
    background-color: #004aad;
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(3) .step-number,
  .how-it-works-mobile .mobile-step-card:nth-child(3) .step-text {
    color: #ffffff;
  }
  
  /* Step 4 - Green */
  .how-it-works-mobile .mobile-step-card:nth-child(4) {
    background-color: #11cd88;
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(4) .step-number,
  .how-it-works-mobile .mobile-step-card:nth-child(4) .step-text {
    color: #ffffff;
  }
  
  /* Step 5 - Cyan/Blue */
  .how-it-works-mobile .mobile-step-card:nth-child(5) {
    background-color: #02aed6;
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(5) .step-number,
  .how-it-works-mobile .mobile-step-card:nth-child(5) .step-text {
    color: #ffffff;
  }
  
  /* Step 6 - Dark Gray */
  .how-it-works-mobile .mobile-step-card:nth-child(6) {
    background-color: #2a2a2a;
  }
  
  .how-it-works-mobile .mobile-step-card:nth-child(6) .step-number,
  .how-it-works-mobile .mobile-step-card:nth-child(6) .step-text {
    color: #ffffff;
  }
  
  .how-it-works-mobile .step-number {
    font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
    font-weight: 600;
    color: #004aad;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .how-it-works-mobile .step-text {
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    color: #212121;
    font-size: 15px;
    line-height: 24px;
    opacity: 0.9;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .steps-container {
    max-width: 100%;
  }
  
  .step {
    height: auto;
    min-height: 400px;
  }
  
  .step-card {
    flex-direction: column;
    height: auto;
    padding: 30px;
  }
  
  .step-visual,
  .step-content {
    width: 100%;
    padding-left: 0;
  }
  .homepage .services-section {
    padding: 80px 220px;
            margin-top: 35px;
  }
      .homepage .frame-35 {
        position: absolute;
        top: 731px;
        left: calc(55% - 400px);
        width: 337px;
        height: 266px;
    }
  .setup-section {
    padding: 40px 0px;
  }
  .homepage .text-wrapper-21 {
    font-size: 25px;
    width: 100%;
    margin-bottom: 20px;
  }
  .homepage .vector-2 {
    display: none;
  }
  .homepage .frame-26 {
    position: absolute;
    top: 320px;
    left: 0;
    width: 100%;
    height: 283px;
    display: flex;
    overflow: hidden;
  }
  .homepage .text-wrapper-20 {
    width: 100%;
    height: 275px;
    font-weight: 600;
    font-size: 295px;
  }
  .section-line {
    display: none;
  }
}

/* Mobile Specific Fixes */
@media screen and (max-width: 768px) {
  .homepage .hero-section {
    /* padding: 0 30px; */
    height: 587px;
  }
  
  .navbar {
    padding: 15px 20px;
    margin-top: 20px;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .team-building {
    display: none;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 38px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .homepage .stats-section {
    padding: 40px 30px;
    height: 250px;
  }
  
  .stats-title {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 35px;
  }

  .stat-text {
    font-size: 15px;
  }
  
  .why-sponsorship-matters {
    margin-top: 12%;
  }
  
  .homepage .services-section {
    padding: 80px 130px;
  }
  
  .why-section {
    padding: 60px 30px;
  }
  
  .why-adlee-box {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }
  
  .footer-section {
    padding: 40px 30px;
  }
  /* Reset sticky positioning for mobile */
  .homepage .element,
  .homepage .element-wrapper,
  .homepage .div-wrapper,
  .homepage .element-3,
  .homepage .element-5,
  .homepage .element-7 {
    position: relative;
    top: auto;
    height: auto;
    margin-bottom: 40px;
  }
  
  .homepage .how-it-works-section {
    margin-top: 60px;
  }
  
  .homepage .section-line {
    top: auto;
    position: relative;
    margin: auto;
  }
  
  /* Services Section Mobile */
  .homepage .group-5,
  .homepage .group-6,
  .homepage .group-7 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
  }
  
  .homepage .rectangle-6,
  .homepage .rectangle-8,
  .homepage .rectangle-9 {
    width: 100%;
    max-width: 320px;
  }
  
  .homepage .frame-21,
  .homepage .frame-24 {
    width: 90%;
  }
  
  /* Why Adlee Section Mobile */
  .homepage .group-10 {
    position: relative;
    top: auto;
    left: auto;
    width: 95%;
    height: auto;
    padding: 40px 20px;
    margin: 0 auto;
  }
  
  .homepage .frame-32,
  .homepage .frame-34 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 0;
  }
  
  .homepage .text-wrapper-23 {
    font-size: 32px;
  }
  
  .homepage .text-wrapper-25 {
    font-size: 20px;
  }
  
  .homepage .frame-35 {
    display: none !important;
  }
  .homepage .laptop-video {
    top: 3%;
    left: 12.5%;
    width: 75%;
    height: 68%;
  }
  .homepage .ADLEE-LOGO-2 {
    position: relative;
    width: 200px;
    height: 48px;
    object-fit: fill;
  }
  .homepage .rectangle-10 {
    top: 520px;
    height: 135px;
  }
  .homepage .element-adlee-all {
    font-size: 18px;
  }
  .homepage .text-wrapper-20 {
    width: 100%;
    height: 220px;
    font-weight: 600;
    font-size: 220px;
  }
  .hero-cta {
    position: initial;
  }
}

@media screen and (max-width: 480px) {
  .hero-content {
    margin-top: 50px;
    width: 100%;
  }
      .homepage .hero-section {
        padding: 0 30px;
        height: 520px;
    }
        .homepage .stats-section {
        padding: 40px 30px;
        height: 550px;
    }
        .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
        .homepage .services-section {
        padding: 80px 30px;
    }
  .nav-links {
    width: 250px;
    height: 57vh;
  }
  
  .hero-label {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .hero-cta {
    padding: 18px 30px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-text {
    font-size: 14px;
  }
  
  /* Why Sponsorship Section - Mobile */
  .homepage .frame-29 {
    padding: 0 20px;
    gap: 30px;
  }
  
  .homepage .inclusion {
    max-width: 300px;
  }
  
  .homepage .text-wrapper-22 {
    font-size: 28px;
  }
  
  .homepage .sponsorships-are {
    font-size: 16px;
    line-height: 26px;
  }
  
  .homepage .get-started {
    width: 100%;
    padding: 20px 12px;
    /* margin-top: 45px; */
  }
  .homepage .frame-31 {
    margin-bottom: 0;
  }
  
  .homepage .text-wrapper-4 {
    font-size: 16px;
  }

  .homepage .text-wrapper-10,
  .homepage .text-wrapper-12 {
    font-size: 28px;
    line-height: 32px;
  }
  
  .homepage .text-wrapper-11,
  .homepage .text-wrapper-13 {
    font-size: 14px;
    line-height: 22px;
  }
  
  .homepage .imgi,
  .homepage .imgi-ad,
  .homepage .imgi-invoice {
    display: none;
  }
  
  .homepage .ellipse-2,
  .homepage .ellipse-3,
  .homepage .ellipse-4 {
    display: none;
  }
  
  .homepage .frame-15 {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  
  /* Setup Section - Mobile */
  .homepage .text-wrapper-21 {
    font-size: 24px;
    line-height: 32px;
  }
  
  .homepage .vector-2 {
    display: none;
  }
  
  /* Footer - Mobile */
  .homepage .talk-to-us {
    font-size: 36px;
  }
  
  .homepage .you-have-questions {
    font-size: 16px;
  }
  
  .homepage .text-wrapper-20 {
    font-size: 125px;
  }
  .homepage .text-wrapper-20{
        height: 212px;
  }
  
  .homepage .frame-27 {
    flex-direction: column;
    gap: 20px;
    top: 550px !important;
    /* width: 90%; */
  }
  
  .homepage .ADLEE-LOGO-2 {
    width: 200px;
    height: auto;
  }
  
  .homepage .element-adlee-all {
    font-size: 18px;
  }

  .hero-section {
    padding: 0 20px;
  }
  
  .homepage .frame-29 {
    position: relative;
    top: auto;
    left: auto;
  }
  
  .homepage .group-5,
  .homepage .group-6,
  .homepage .group-7 {
    max-width: 100%;
  }
  
  .homepage .text-wrapper-23 {
    font-size: 28px;
  }
  
  .homepage .group-10 {
    width: 100%;
    padding: 30px 15px;
  }
      .homepage .laptop-video {
        top: 3%;
        left: 12.5%;
        width: 75%;
        height: 60%;
        border-radius: 5px 5px 0 0;
    }
}

@media screen and (max-width: 450px) {
    .homepage .hero-section {
        height: 540px;
    }
    .homepage .laptop-video {
        height: 58%;
    }
}

/* Extra Small Mobile - 400px and below */
@media screen and (max-width: 400px) {
  .homepage .get-started {
    padding: 20px 12px;
    margin-top: 45px;
  }
  .homepage .text-wrapper-20 {
        height: 220px;
        font-size: 110px;
    }
        .homepage .hero-section {
        padding: 0 30px;
        height: 570px;
    }
    .homepage .laptop-video {
        height: 55%;
    }
}

@media screen and (max-width: 380px) {
    .homepage .hero-section {
        padding: 0 30px;
        height: 600px;
    }
      .homepage .laptop-video {
        height: 54%;
    }
}
