
  @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  background: #0E0E0E;
  color: #fff;
}


.horizontal-wrapper {
  display: flex;
  height: 100vh;
  width: max-content; /* ✅ auto-calculates */
  will-change: transform;
}



p{
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.2rem;
  line-height: 1.2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
}

.logo img {
  width: 120px;
  height: auto;
  margin-left: 50px;
}

.menu {
  display: flex;
  gap: 40px;
  padding: 80px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
}

.moon {
  position: absolute;
  right: -5%;
  top: 0;
  width: 800px;
  height: 800px;
  background: url(../assets/moon.png) center/contain no-repeat;
  opacity: 0;
  z-index: 1;
  filter: contrast(1.1) brightness(0.95);
}

.about, .names {
  background: url(../assets/about-section-background.png) center/cover no-repeat;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* adjust darkness here */
  z-index: 1;
}

/* Make sure content stays above overlay */
.about > *{
  position: relative;
  z-index: 2;
}

.team {
  background: url(../assets/team-section-background.png) center/cover no-repeat;
}





.services{
  background: url(../assets/service-bg.png) center/cover no-repeat;
}

.names{
  background: url(../assets/the-names-bg.png) center/cover no-repeat;
}

.form{
  background: url(../assets/form-bg.png) center/cover no-repeat;
}

.logos-client{
  background: url(../assets/logos-section-background.png) center/cover no-repeat;
}

.about::before, .team::before, .logos-client::before, .names::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* adjust darkness here */
  z-index: 1;
}

/* Make sure content stays above overlay */
.about > *, .team > *, .logos-client > *, .names > *{
  position: relative;
  z-index: 2;
}

.about,
.team {
  position: relative; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.text {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.about .text{
  max-width: 60%;
  left: 10%;
}

.team .text, .names-inner .text{
  max-width: 50%;
  transform: none;
  top: auto;
}

.word {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 48px;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.hero .word{
  margin-bottom: 20px;
}

.names .word{
  font-size: 24px;
}


.names ul li a{
  color: white;
  text-decoration: none;
}

.word.big {
  font-family: "Outfit", sans-serif;
  font-size: 100px;
  font-weight: 500;
  letter-spacing: 0.6rem;
  margin-top: -60px;
}

.word.bigger {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.6rem;
  line-height: 1px;
  margin-bottom: 100px;
  
}

.word.extra-big {
  font-family: "Outfit", sans-serif;
  font-size: 250px;
  font-weight: 500;
  margin-top: -100px;
  letter-spacing: 0.6rem;
}

.eagle {
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 70vh;
  max-height: 80%;
  opacity: 0;
  transform: translateY(60px);
  z-index: 2;
}

.astha {
  width: 40%;
  max-height: 80vh;
  object-fit: contain;
  z-index: 2;
}


.menu a{
  font-size: 15px;
  font-weight: 200;
  text-transform: capitalize;
}

.hero {
  position: relative;
  overflow: hidden;
}

.moon {
  z-index: 1;
}

.text {
  position: relative;
  z-index: 3;
}


.header {
  z-index: 1000;
}

.panel.team {
  width: calc(100vw * 2); /* number of members */
  display: flex;
}

.team-inner, .names-inner {
  display: flex;
  width: 100%;
  height: 100vh;
}

.member {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  opacity: 1;
  pointer-events: auto;
}

.member:first-child {
  opacity: 1;
  pointer-events: auto;
}

.logos-class{
  
  display: flex;
  justify-content: center;
  align-items: center;

}

.logos-class img{
  width: 50%;
}

.names-inner .name-title{
  position: absolute;
  top: 15%;
  left: 2%;
}


/*-form-*/

.form{
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark-form {
  max-width: 500px;
  width: 500px;
  font-family: inherit;
  
}

.dark-form .form-group {
  margin-bottom: 25px;
}

.dark-form input,
.dark-form select,
.dark-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
  color: #ffffff;
  font-size: 16px;
  outline: none;
}

.dark-form input::placeholder,
.dark-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.dark-form select {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.dark-form select option {
  color: #000000; /* dropdown list text */
}

.dark-form input:focus,
.dark-form select:focus,
.dark-form textarea:focus {
  border-bottom: 2px solid #ffffff;
}

.dark-form button {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-form button:hover {
  background: #ffffff;
  color: #000000;
}


.names ul{
  list-style: none;
  display: flex;
  gap: 40px;
  padding-left: 0;
}



@media (max-width: 1023px) {
  .horizontal-wrapper {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .panel {
    height: auto;
    min-height: 100vh;
  }

  .text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 40px 20px;
  }

  .panel.team {
    width: 100vw;       /* 🔥 CRITICAL */
    display: block;
  }

  .names-inner .name-title {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    margin-bottom: 30px;
  }

  .names-inner {
    display: block;
    height: auto;
  }

  .team-inner,
  .names-inner {
    height: auto;
  }
}

@media (max-width: 767px) and (min-width: 320px){

  .panel,
  .team-inner,
  .names-inner,
  .member {
    height: auto !important;
    min-height: unset !important;
  }
  .menu{
    display: none;
  }

  .logo img{
    margin-left: 20px;
  }

  .hero .word {
    margin-top: 60px;
    font-size: 28px;
    margin-bottom: 40px;
}

.panel.team {
    width: 100vw;       /* 🔥 CRITICAL */
    display: block;
  }

.word.big {   
    font-size: 70px;
    letter-spacing: 0.2rem; 
    margin-top: -50px;  
}

.word.extra-big {
    font-size: 90px;
    margin-top: -60px;
}

.about .text, .team .text, .names-inner .text {
  
  
  max-width: fit-content;
  left: 0;
  padding: 20px;
}

.team-inner{
  flex-direction: column;
}

.member {
  flex-direction: column;
}

.about .big, .services .big, .names .big, .names .name-title{
      font-size: 40px;
    margin-bottom: 40px;
}

.services .bigger, .form .word, .team .word{
  font-size: 24px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.team .word{
  margin-bottom: 50px;
}

.form .word{
  margin-bottom: 50px;
}

.names-inner .text{
  transform: none;
  margin-top: 30px;
}

.names-inner ul{
  flex-direction: column;
  gap: 0;
}

.names-inner ul li .word{
  font-size: 20px;
}

.dark-form {
  max-width: 300px;
}

.names-inner .name-title {
    position: relative;
    top: 80px;
    left: 20px;
    display: block;
    margin-bottom: 30px;
  }

  .names-inner {
    display: block;
    height: auto;
  }

  .names-inner .word{
    transform: none;
  }

  .astha{
    width: 60%;
  }

  .logos-class img {
    width: 80%;
    padding: 40px;
}

}