/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  background: url(assets/images/bgm.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}
/* ========== SECTION BASE STYLES ========== */
.section-one,
.section-two,
.section-three,
.section-four,
.section-five,
.section-six,
.section-seven {
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background-color: transparent;
}

/* ========== HERO SECTION ========== */
.section-one {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.hero-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: all 1s ease;
}

.hero-image {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
  z-index: 5;
}

.video-section {
  position: absolute;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: top 1s ease;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.pre-transition {
  overflow: hidden !important;
}

/* Hero section */
.hero-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: all 1s ease;
}

.hero-image {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
  z-index: 5;
}

/* Video section */
.video-section {
  position: absolute;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: top 1s ease;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

/* Transitioned states */
body.transitioned .hero-section {
  height: 0px;
}

body.transitioned .hero-image {
  width: 12rem;
  top: 2rem;
  left: 8rem;
  transform: none;
  position: absolute;
}

body.transitioned .video-section {
  top: 0;
}

body.transitioned .top-right-content {
  display: flex;
}

/* ========== NAVIGATION ========== */
.top-right-content {
  position: absolute;
  top: 2rem;
  right: 8rem;
  display: none;
  gap: 0.625rem;
  z-index: 2;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
}

.nav-links a {
  font-family: "Space Grotesk", sans-serif;
  color: white;
  text-decoration: none;
  padding: 8px 10px;
  transition: color 0.3s ease;
  font-size: 18px;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  font-family: "Space Grotesk", sans-serif;
  background-color: #fb1cbe;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.btn:hover {
  background-color: #6b14d9;
  transition: background-color 0.3s ease;
  color: white;
}
/* ========== MOBILE MENU ========== */
.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu-overlay {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  z-index: 3;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 4rem;
  width: 100%;
}

.mobile-menu-overlay a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

.mobile-menu-overlay .btn {
  border: 1px solid;
  padding: 0.4rem 0.4rem;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

/* ========== ARROW CIRCLE BUTTON ========== */
.arrow-btn {
  position: absolute;
  bottom: 6rem;
  right: 4rem;
  width: 9rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.circle-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========== SECTION TWO / ABOUT US ========== */

.section-two {
  padding: 0.4rem 0 4rem 0;
}

/* Section Two Container */
.two-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.marquee span {
  display: inline-block;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.contents {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* Left part - Moon Image */
.left {
  width: 45%;
  height: 100dvh;
  margin-left: 4rem;
  position: relative;
}
.left-moon {
  width: 100%;
  height: 70%;
  transform: translate(14%, 0%) scale(1.2);
  background-image: url("assets/images/bgmoon2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  margin: 4rem 4rem;
}

/* Right part - Text Content */
.right {
  width: 55%;
  height: 100vh;
  position: relative;
  margin-left: 2rem;
}

.gradient-line-vertical {
  position: absolute;
  top: 16vw;
  left: -2rem;
  width: 4px;
  height: 15vw;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #48c9ff);
  border-radius: 4px;
}

.right-text {
  width: 100%;
  height: 100vh;
  transform: translate(-10%, 0%) scale(1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
  color: white;
}

/* About Us Heading */

.right-content h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 3.333vw;
  margin-bottom: 1.6rem;
  color: white;
  line-height: 1.2;
}

/* Paragraph */
.right-content p {
  max-width: 900px;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1vw;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  color: transparent;
  background: linear-gradient(to right, #fff 50%, #252525 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
}

.line-reveal {
  display: block;
  background: linear-gradient(to right, #fff 50%, #252525 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------section  Three -------------------------*/

.section-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 5rem 0;
}

.why-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.section-title {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-top: 1.5rem;
  color: #fff;
  display: inline-block;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 1.5rem;
}

.gradient-line {
  width: 15.5rem;
  height: 0.313rem;
  border-radius: 1px;
}

.left-line {
  background: linear-gradient(to left, #48c9ff, rgba(0, 0, 0, 0));
}

.right-line {
  background: linear-gradient(to right, #48c9ff, rgba(0, 0, 0, 0));
}

.section-subtitle {
  font-family: "Space Grotesk", sans-serif;
  max-width: 800px;
  margin-bottom: 4rem;
  font-size: 1vw;
  font-weight: 400;
  text-align: center;
  color: transparent;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #fff 50%, #252525 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.card-container {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  width: 90%;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CARD === */
.info-card {
  width: 400px;
  height: 300px;
  background-color: #1b1b1b80;
  border: 0.5px solid #4e4e4e;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.card-initial {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.card-initial h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 3.333vw;
  margin-bottom: 1.6rem;
  color: white;
  line-height: 1.2;
  margin: 0;
}

.arrow {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.arrow img {
  width: 3.5rem;
  height: 3.5rem;
  transition: transform 0.3s ease;
}

.info-card:hover .arrow {
  transform: translateX(5px);
}

.card-hover-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  background: linear-gradient(to bottom, #090909, #1052cc);
  color: #dcdcdc;
}

.card-hover-content h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 3.333vw;
  margin-bottom: 1.6rem;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.card-hover-content p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
}

/* === ON HOVER === */

.info-card:hover {
  width: 600px;
  height: 300px;
}

.info-card:hover .card-hover-content {
  opacity: 1;
  z-index: 3;
}

.info-card:hover .card-initial {
  opacity: 0;
  z-index: 1;
}

/*-------- section four----------------- */
.section-four {
  padding: 5rem 0 5rem 0;
  color: white;
}

.section-four {
  padding: 5rem 0;
  color: white;
}

.services-title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 3.333vw;
  margin-bottom: 1.6rem;
  color: white;
  line-height: 1.2;
  margin-left: 6rem;
  margin-bottom: 3rem;
}

/* Desktop grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #1b1b1b80;
  border: 0.5px solid #4e4e4e;
  border-radius: 15px;
  padding: 24px;
  color: white;
  transition: all 0.4s ease;
  width: 100%;
  max-height: 164px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  z-index: 1;
  box-sizing: border-box;
}

.service-card::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 20px;
  width: 25px;
  height: 140px;
  background: linear-gradient(to bottom, #48c9ff, rgba(0, 0, 0, 0));
  border-radius: 10px;
  filter: blur(1px) brightness(0.8);
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 12;
}

.service-card:hover::before {
  opacity: 0;
  transform: translateX(-10px);
}

.service-card:hover {
  transform: rotate(-3deg) scale(1.05);
  max-height: 500px;
  background: linear-gradient(145deg, #090909, #1052cc);
  box-shadow: 0 0 25px #1052cc88, inset 0 0 30px #0d3c8b;
}

.service-card img {
  width: 55px;
  margin-left: 2rem;
  vertical-align: middle;
}

.service-card h3 {
  font-family: "Nunito", sans;
  font-weight: 600;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 20px;
  margin-left: 2rem;
  display: inline-block;
}

.service-card p {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
  margin-left: 2rem;
}

.service-card .more-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.service-card:hover .more-description {
  max-height: 300px;
  opacity: 1;
  transition-delay: 0.2s;
}

/* Hide mobile slider on desktop */
.mobile-slider {
  display: none;
}

@media (max-width: 1024px) {
  .service-card {
    margin-bottom: 20px;
  }
  .service-card:hover {
    transform: rotate(0deg);
    max-height: 500px;
    background: linear-gradient(145deg, #090909, #1052cc);
    box-shadow: 0 0 25px #1052cc88, inset 0 0 30px #0d3c8b;
    gap: 20px;
  }

  /* Hide desktop grid on tablets & below */
  .services-grid {
    display: none;
  }

  /* Show mobile slider */
  .mobile-slider {
    display: block;
    padding: 1rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  /* Swiper container padding for bottom pagination */
  .swiper {
    margin-top: 50px;
    padding-bottom: 50px;
  }

  /* Pagination styling */
  .swiper-pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

 .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #efeff0 !important;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #48c9ff !important; /* active dot color */
  }

  /* Page indicator text */
  .page-indicator {
    text-align: center;
    color: #615f5f !important;
    font-size: 16px;
    margin-top: 24px;
    font-family: "Nunito", sans-serif;
  }
  /* Stack cards vertically inside each swiper-slide */
  .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .swiper-slide .service-card {
    width: 98% !important;
    max-height: none !important;
  }
}

/* ------------------section four ends----------- */
/*------------- Section Five - Core Values -------*/

/* SECTION FIVE STYLES */
.section-five {
  padding: 5rem 0 5rem 0;
  color: white;
}
.section-five-contain {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  min-height: 100vh;
  overflow: hidden;
  text-align: justify;
}

.moon-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%) scale(1.6);
  z-index: 0;
  opacity: 1;
  max-width: none;
  max-height: 70vh;
  pointer-events: none;
  filter: brightness(0.5);
}

.content-column {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  max-width: 900px;
  padding: 4rem;
  color: white;
  font-family: "Space Grotesk", sans-serif;
}

.core-values-header {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 3.333vw;
  margin-bottom: 1.6rem;
  color: white;
  line-height: 1.2;
  margin-left: 6rem;
  margin-bottom: 3rem;
  padding-left: 0;
}

/* VALUE BLOCKS */
.value {
  margin-bottom: 1rem;
  max-width: 700px;
  margin-bottom: 1rem;
  transform: translate(30%, -5%) scale(1);
}

.value-title {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.value-content {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: transparent;
  background: linear-gradient(to right, #ffffff 50%, #444444 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.6s ease;
}

/* DIVIDER LINES */
.gradient-line-horizontal {
  width: 250px;
  height: 5px;
  background: linear-gradient(90deg, #48c9ff, rgba(72, 201, 255, 0));
  border-radius: 4px;
  margin: 1rem 0;
}

.horizontal-line {
  background: linear-gradient(20deg, #48c9ff, rgba(72, 201, 255, 0));
}

/*--------------------- section -six--------------- */

.section-six {
  margin: 0;
  padding: 5rem 0 5rem 0;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonoals-header {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 3.333vw;
  margin-bottom: 1.6rem;
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0 2rem;
  display: inline-block;
}

.section-six-container {
  width: 80%;
  margin-top: 6rem;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 4rem 2rem;
}

.container-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  flex-wrap: wrap;
  padding: 1rem;
}

.left-controls,
.right-controls {
  display: flex;
  align-items: center;
  margin: 1rem;
}

.btn-aro {
  background: none;
  border: none;
  cursor: pointer;
  filter: brightness(1.5);
  padding: 0;
}

.btn-aro img {
  width: 40px;
  height: 40px;
}

.card-stack {
  position: relative;
  width: 60%;
  max-width: 600px;
  max-height: 400px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.card {
  position: absolute;
  width: 600px;
  height: 400px;
  padding: 0 4rem 0 2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #090909, #1052cc);
  color: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-origin: bottom center;
  font-family: "Space Grotesk", sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.quote-mark {
  font-size: 180px;
  line-height: 1;
  font-weight: bold;
  color: white;
}

.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.card p {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 40px;
}

#cardStack .card:nth-child(1) {
  transform: rotate(8deg) translate(2%, 6%) scale(1);
  z-index: 4;
}
#cardStack .card:nth-child(2) {
  transform: rotate(-3.48deg) translate(-4%, 2%) scale(0.95);
  z-index: 3;
}
#cardStack .card:nth-child(3) {
  transform: rotate(0.12deg) translate(20%, -4%) scale(0.9);
  z-index: 2;
}
#cardStack .card:nth-child(4) {
  transform: rotate(0deg) translate(0%, 0%) scale(0.85);
  z-index: 1;
}
/*----------------------------------------------------------- section-seven----------------- */
.section-seven {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  min-height: 100vh;
  width: 100%;
  padding: 5rem 0 5rem 0;
}
.Portfolio {
  width: 100%;
  padding: 1rem 0 1rem 0;
  height: 90vh;
  display: flex;
  flex-direction: column;
  color: white;
}

.Portfolio h1 {
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 3.333vw;
  text-align: left;
  padding-left: 30px;
  margin-left: 2rem;
  margin-bottom: 2rem;
}
.carousel-container {
  position: relative;
  width: 100%;
  min-width: 100vw;
  height: 600px;
  overflow: visible;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wave {
  position: absolute;
  top: 46%;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.card1-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.card1-header img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card1-header h3 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.wave img {
  width: 100%;
  height: auto;
  opacity: 1;
}

.port-card {
  display: flex;
  position: absolute;
  width: 350px;
  max-width: 80%;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.6s ease;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 1;
}

.port-card h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-align: left;
  family-font: "Nunito", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.port-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  align-items: center;
  justify-content: center;
}

.port-card img {
  width: 162px;
  height: 90px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.controls button {
  background: #fb1cbe;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 212, 255, 0.35);
  transition: background 0.3s, transform 0.2s;
}

.controls button:hover {
  background: #4305e4;
  transform: translateY(-2px);
}
/*-------------------------------------- section-eight------ */
/* .section-eight {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  min-height: 100vh;
  width: 100%;
  padding: 5rem 0 5rem 0;
}

.workwith {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.workwith-head {
  font-size: 4rem;
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
  padding: 1rem 2rem;
  color: #fff;
  text-align: left;
  padding-left: 30px;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.section-brand-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand-card-grid {
  width: 1000px;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(5, 120px);
  gap: 4rem;
}

.brand-card {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 1;
}
.brand-card:hover {
  transform: scale(1.05);
  z-index: 2;
}

.corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid grey;
  z-index: 10;
  transition: border-color 0.2s ease;
}
.corner.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.corner.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.corner.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.corner.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.brand-card:hover .corner {
  border-color: #fff;
}

.brand-card-description {
  width: 400px;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: transparent;
}

.brand-card-description h3 {
  text-align: left;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.brand-card-description p {
  text-align: left;
  font-size: 1rem;
  color: #ccc;
}

.gradient-line-horizontal-eight {
  width: 80%;
  height: 2px;
  margin: 2rem auto;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    #48c9ff 50%,
    rgba(0, 0, 0, 0) 100%
  );

  filter: blur(0.4px);
}

.popup {
  display: none;
} */

/* section eight ends */
/* -------------------------------section nine---------------------------------------- */
.section-nine {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  color: white;
  min-height: 100vh;
  width: 100%;
}

.contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 4rem;
  font-family: "Nunito", sans-serif;
  margin-bottom: 2rem;
}

.contact-subtitle {
  max-width: 800px;
  font-family: "Space Grotesk", sans-serif;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  color: #ccc;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
  flex-wrap: wrap;
  min-height: 600px; /* Makes it more square */
}

.contacts-l-r {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2rem;
}

.contact-det {
  width: 100%;
  font-family: "Audiowide", sans-serif;
}

.contact-det > h3 {
  font-size: 3rem;
  margin-left: -6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  width: 100%;
}

.contact-left {
  width: 50%;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.contact-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-left: 1.5rem;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6rem;
}

.contact-info img {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.social-icons span {
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.follow-us {
  font-size: 1.938rem;
  margin-left: 1.5rem;
}

.icons-s {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons .icons {
  display: flex;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 67px;
  border: 2px solid #4e4e4e;
  border-radius: 50%;
  margin: 4px;
  background-color: transparent;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons img {
  width: 35px;
  height: 35px;
  margin: 4px;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.underline-white {
  border-bottom: 2px solid white;
  padding-bottom: 2px;
  color: white;
  text-decoration: none;
}
.underline-white:hover {
  color: #ddd;
  border-color: #ddd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-bottom: 2px solid #666;
  background: transparent;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  left: 0;
  color: #fff;
  opacity: 1;
}

.contact-form button {
  padding: 0.8rem;
  width: 100%;
  max-width: 260px;
  background-color: #fb1cbe;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #4315e4;
  transition: background-color 0.3s ease;
  color: white;
}

.footer-text {
  font-family: "Space Grotesk", sans-serif;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
  padding: 0 1rem;
}

.footer-text {
  font-family: "Space Grotesk", sans-serif;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
  padding: 0 1rem;
}

/*  */

/* ========== MEDIA QUERIES ========== */
@media (max-width: 1024px) {
}

@media (max-width: 675px) {
  body {
    font-family: "Audiowide", sans-serif;
    background: url(assets/images/bgm.png) no-repeat;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    scrollbar-width: none;
  }

  body.transitioned .hero-image {
    width: 12rem;
    top: 1em;
    left: 5rem;
    transform: none;
    position: absolute;
  }
  .video-section {
    z-index: 2;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 100%;
    left: 0;
    top: -10;
    height: 100vh;
    z-index: 10;
  }

  .mobile-menu-overlay.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .menu-icon {
    display: block;
    top: -0.2em;
    left: 4rem;
    position: absolute;
  }

  .top-right-content {
    display: none;
  }

  .arrow-btn {
    width: 5rem;
    height: 5rem;
    bottom: 2rem;
    right: 1rem;
  }

  .arrow-image {
    width: 2rem;
    height: 2rem;
  }

  .arrow-btn {
    position: absolute;
    bottom: 4rem;
    right: 1.25rem;
    width: 6rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

  .circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
  }

  @keyframes rotateText {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  /* section two */

  .marquee {
    font-size: 2rem;
  }
  .contents {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .left {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 0;
  }
  .right {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 0;
  }

  .left-moon {
    height: 220px;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1rem;
  }

  .right-text {
    padding: 0 1rem;
    height: auto;
    text-align: left;
  }

  .right-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .right-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .gradient-line-vertical {
    display: none;
  }
  /*  */
  .section-title {
    font-family: "Audiowide", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    display: inline-block;
    padding-bottom: 5px;
  }

  .gradient-line {
    width: 150px;
    height: 5px;
    margin-bottom: 5px;
  }

  .left-line {
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #48c9ff);
  }

  .right-line {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), #48c9ff);
  }

  .section-subtitle {
    font-family: "Space Grotesk", sans-serif;
    max-width: 800px;
    margin: 0 0 1.2rem 0;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: #ccc;
    line-height: 1.5;
  }

  .card-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .info-card {
    width: 550px;
    height: 400px;
    background-color: #1b1b1b80;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
  }

  .card-initial {
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    transition: opacity 0.3s ease;
  }

  .card-initial h3 {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: #fff;
    margin: 0;
  }

  .arrow {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .arrow img {
    width: 3.5rem;
    height: 3.5rem;
    transition: transform 0.3s ease;
  }

  .info-card:hover .arrow {
    transform: translateX(5px);
  }

  .card-hover-content {
    position: absolute;
    inset: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, #090909, #1052cc);
    color: #dcdcdc;
  }

  .card-hover-content h3 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
  }

  .card-hover-content p {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .info-card:hover {
    width: 800px;
    height: 400px;
  }

  .info-card:hover .card-hover-content {
    opacity: 1;
    z-index: 3;
  }

  .info-card:hover .card-initial {
    opacity: 0;
    z-index: 1;
  }
  /* -----section four------ */

  .services-title {
    color: white;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding-left: 30px;
  }
  /* 
  .services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(260px, 1fr));
    gap: 30px;
    margin: 0 auto;
    padding: 30px;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    background: #1b1b1b80;
    border: 0.5px solid #4e4e4e;
    border-radius: 15px;
    padding: 25px;
    color: white;
    transition: all 0.4s ease;
    max-height: 260px;
    gap: 10px;
    cursor: pointer;
    z-index: 2;
  } */

  /* .service-card::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 20px;
    width: 25px;
    height: 120px;
    background: linear-gradient(to bottom, #48c9ff, rgba(0, 0, 0, 0));
    border-radius: 6px;
    filter: blur(1px) brightness(0.8);
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
  } */

  /* .service-card:hover::before {
    opacity: 0;
    transform: translateX(-10px);
  } */

  /* .service-card:hover {
    transform: rotate(-3deg) scale(1.05);
    max-height: 500px;
    background: linear-gradient(145deg, #090909, #1052cc);
    box-shadow: 0 0 25px #1052cc88, inset 0 0 30px #0d3c8b;
  } */

  /* .service-card img {
    width: 40px;
    margin-bottom: 20px;
  } */

  /* .service-card h3 {
    font-family: "Audiowide", sans-serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
  } */

  /* .service-card p {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4;
  } */

  /* .service-card .more-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  } */

  /* .service-card:hover .more-description {
    max-height: 320px;
    opacity: 1;
    transition-delay: 0.2s;
  } */

  /*  section five  */

  .section-five {
    padding: 0.5rem;
  }

  .section-five-contain {
    flex-direction: column;
    padding: 1rem;
    text-align: left;
  }

  .moon-image {
    transform: translate(-45%, -50%) scale(1);
    padding: 1rem 1rem;
    display: block;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    max-height: 50vh;
  }

  .content-column {
    padding: 1rem;
    transform: none;
    max-width: 100%;
    text-align: left;
  }

  .core-values-header {
    font-size: 2.5rem;
    margin-left: 0;
    text-align: center;
  }

  .value {
    transform: none;
    max-width: 100%;
    margin-left: 0;
  }

  .value-content {
    font-size: 1rem;
  }

  .gradient-line-horizontal {
    width: 250px;
    height: 5px;
    background: linear-gradient(90deg, #48c9ff, rgba(72, 201, 255, 0));
    border-radius: 4px;
    margin: 1rem 0;
  }

  .horizontal-line {
    background: linear-gradient(20deg, #48c9ff, rgba(72, 201, 255, 0));
  }

  /*---------------------- section six------------------------------------------  */
  .section-six {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  .testimonoals-header {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .container-cards {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .card-stack {
    width: 250px;
    height: 250px;
  }
  #cardStack .card:nth-child(1) {
    transform: rotate(6deg) translate(1%, 6%) scale(1);
  }
  #cardStack .card:nth-child(2) {
    transform: rotate(-2deg) translate(-2%, 2%) scale(0.95);
  }
  #cardStack .card:nth-child(3) {
    transform: rotate(0.1deg) translate(15%, -2%) scale(0.9);
  }
  #cardStack .card:nth-child(4) {
    transform: rotate(0deg) translate(0%, 0%) scale(0.85);
  }
  .btn-aro img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .left-controls,
  .right-controls {
    margin: 0.3rem 3px;
  }

  .card {
    padding: 3px;
    font-size: 12px;
  }

  .card .quote-mark {
    font-size: 2.2rem;
  }

  .card .stars {
    font-size: 1rem;
  }

  .card p {
    font-size: 12px;
  }

  /* -----section eight  */

  /* .section-eight {
    padding: 2rem 1rem;
    margin: 1rem 0;
    color: white;
  } */

  /* .workwith-head {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: "Audiowide", sans-serif;
    color: #fff;
    text-align: left;
    width: 100%;
  } */

  /* .brand-card-grid {
    grid-template-columns: repeat(3, 14vw);
  } */

  /* .brand-card {
    width: 80px;
    height: 60px;
    margin: 1rem;
  } */

  /* .brand-card-description {
    display: none;
  } */

  /* .popup {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    background: #1b1b1b;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    z-index: 999;
    display: none;
    width: 90%;
    max-width: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  } */

  /* .popup-close {
    position: absolute;
    top: 8px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
  } */

  /* .gradient-line-horizontal-eight {
    width: 100%;
  }  */

  /* section eight ends */
  /* section nine */

  .footer-text {
    white-space: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-text span {
    display: block;
  }

  /* section nine ________________ */

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .contacts-l-r {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    align-items: center;
  }

  .contact-det > h3 {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
  }

  .contact-container {
    padding: 1rem;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info {
    margin-left: 0;
    padding: 0 1rem;
  }

  .follow-us {
    margin-left: 0;
    text-align: center;
    font-size: 1.5rem;
  }

  .icons-s {
    justify-content: center;
  }

  .social-icons a {
    width: 48px;
    height: 48px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }

  .contact-form {
    max-width: 100%;
    padding: 0 1rem;
  }

  .contact-form button {
    max-width: 100%;
  }

  .footer-text {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}


