/* Basic body styling */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #FFFFFF;
  color: #333;
  overflow-x: hidden;
  padding-top: 2rem;
}

/* BASE style for ALL main buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 15px 30px;
  min-width: 186px;
  background: linear-gradient(90deg, #00A1FF, #00E4FE);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Satoshi", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #009acd;
}

.section-pill {
  display: inline-block;
  background-color: #E6FBFF; /* Using the same light blue as other pills */
  color: #00E4FE;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.938rem;
  padding: 10px 25px;
  border-radius: 50px;
  transform: rotate(-10deg);
  margin-bottom: 1.5rem;
}

/* Header-to-Hero Section Background */
.hh-background-container {
  background: linear-gradient(to bottom, #D8F1FF, #FFFFFF);
  padding-top: 2rem;
}

/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
#home #hero {
  padding: 4rem 5%;
}
#home .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home .hero-text {
  flex: 1;
  text-align: left;
  width: 100%;
}
#home .hero-text h1 {
  font-family: "Satoshi", sans-serif;
  font-size: 2.5rem;
  color: #006AFF;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
}
#home .hero-text > p {
  font-size: 1.2rem;
  color: #787E91;
  margin-bottom: 2rem;
  line-height: 1.6;
}
#home .hero-button {
  width: auto;
  padding: 20px 20px;
  min-width: auto;
  font-size: 1.1rem;
  text-transform: none;
}
#home .hero-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
#home .hero-button-icon svg {
  width: 16px;
  height: 16px;
  color: #006AFF;
}
#home .hero-button:hover .hero-button-icon {
  transform: translateY(3px);
}
#home .hero-images {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  height: 350px;
  margin-top: 3rem;
  position: relative;
}
#home .hero-image-item,
#home .about-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  transition: flex-grow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#home .hero-image-item.active,
#home .about-image-item.active {
  flex-grow: 5;
  cursor: default;
}
#home .hero-image-item img,
#home .about-image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (min-width: 768px) {
  #home #hero {
    padding: 8rem 5%;
  }
  #home .hero-container {
    flex-direction: row;
    max-width: 1500px;
    margin: 0 auto;
  }
  #home .hero-text {
    text-align: left;
    flex-basis: 5%;
    flex-shrink: 0;
  }
  #home .hero-text h1 {
    font-size: 4.6rem;
    max-width: 800px;
  }
  #home .hero-text > p {
    font-size: 1.5rem;
    max-width: 750px;
    margin-left: 0;
  }
  #home .hero-button {
    width: auto;
    min-width: 344px;
    height: auto;
    min-height: 90px;
    font-size: 1.25rem;
    padding: 20px 30px;
  }
  #home .hero-button-icon {
    margin-left: 15px;
    width: 60px;
    height: 60px;
  }
  #home .hero-button-icon svg {
    width: 30px;
    height: 30px;
  }
  #home .hero-images {
    flex-basis: 45%;
    gap: 1rem;
    height: 450px;
    margin-top: 0;
  }
  #home .hero-images::before {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 0;
    width: 110%;
    height: 40%;
    top: 0;
    left: -30%;
    background: radial-gradient(ellipse at center, #00A1FF 10%, #00E4FE 40%, rgba(0, 228, 254, 0) 70%);
    transform: rotate(-45deg);
    filter: blur(120px);
    opacity: 0.8;
  }
  #home .about-images {
    flex: 1.2;
    gap: 1rem;
    height: 450px;
    margin-top: 0;
  }
  #home .about-images::before {
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(circle at center, #00E4FE, rgba(0, 228, 254, 0) 50%), radial-gradient(circle at center, #D9D9D9, rgba(217, 217, 217, 0) 50%), radial-gradient(circle at center, #00E4FE, rgba(0, 228, 254, 0) 50%), radial-gradient(circle at center, #00A1FF, rgba(0, 161, 255, 0) 50%);
    background-position: 100% 50%, 80% 50%, 20% 50%, 50% 50%;
    background-size: 40% 40%, 40% 40%, 40% 40%, 60% 60%;
    filter: blur(120px);
    opacity: 0.7;
  }
  #home .hero-image-item,
  #home .about-image-item {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  #home .hero-image-item:not(.active):hover img,
  #home .about-image-item:not(.active):hover img {
    transform: scale(1.05);
  }
}

.brands-background-container {
  background: linear-gradient(to top, #D8F1FF, #FFFFFF);
}

#brands {
  padding: 4rem 5%;
}

.brands-header h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  color: #006AFF;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  text-align: left;
}

.brands-header p {
  font-size: 1.1rem;
  color: #787E91;
  line-height: 1.6;
  margin: 0 auto 3rem;
}

.brands-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brands-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-direction: column;
}

.brand-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-image-container {
  display: block;
  margin: 2rem auto 0;
  width: 85%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}

.card-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-content {
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-logo {
  height: 40px;
}

.card-title h4 {
  margin: 0;
  font-size: 1.5rem;
  color: #0d2452;
}

.card-title h4 span {
  font-weight: 600;
  font-size: 1.451rem;
  color: #00bfff;
}

.brand-card p {
  color: #787E91;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* AdoPisoft card */
.adopisoft-card {
  background-color: #fff;
}

.adopisoft-card .card-title h4 {
  font-family: "Righteous", sans-serif;
  font-size: 1.451rem;
  color: #782061;
}

.adopisoft-card .card-title h4 span {
  font-family: "Poppins", sans-serif;
  color: #00bfff;
  font-weight: 600;
}

/* DafoxTech card */
.dafoxtech-card {
  background-color: #fff;
}

/* FlareLoad card */
.flareload-card {
  background-color: #fff;
}

#about {
  padding: 4rem 5%;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text {
  flex: 1;
  width: 100%;
}

.about-text h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  color: #006AFF;
  font-size: 1.8rem;
  margin: 0 0 2rem;
  line-height: 1.2;
  text-align: left;
}

.about-text > p {
  font-size: 1.1rem;
  color: #787E91;
  line-height: 1.9;
  margin: 0 0 3rem;
}

.about-button {
  padding: 18px 25px;
  min-width: auto;
  font-size: 1.1rem;
  text-transform: none;
}

.about-images {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  height: 350px;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-images::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: radial-gradient(circle at center, #00E4FE, rgba(0, 228, 254, 0) 60%), radial-gradient(circle at center, #00A1FF, rgba(0, 161, 255, 0) 60%);
  background-position: 80% 20%, 20% 80%;
  background-size: 70% 70%, 70% 70%;
  background-repeat: no-repeat;
  filter: blur(80px);
  opacity: 0.6;
}

/* --- About Us Part 2: Stats Section --- */
.stats-container {
  padding: 4rem 0 0;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-card {
  border-radius: 32px;
  min-height: 450px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* --- Left Card Styling --- */
.stat-card-left {
  background-color: #FFE9FF;
  background-image: url("../images/home-abtus-ado-card.webp");
}

/* --- Middle Card Styling --- */
.stat-card-middle {
  background-color: #006AFF;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 1. Pill Shapes */
.stat-card-middle::before,
.stat-card-middle::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #0099FF, #006AFF);
  border-radius: 100px;
  z-index: -1;
}

/* --- Top Pill Control --- */
.stat-card-middle::before {
  width: 100px;
  height: 350px;
  top: -130px;
  left: 5%;
}

/* --- Bottom Pill Control --- */
.stat-card-middle::after {
  width: 100px;
  height: 350px;
  bottom: -130px;
  right: 5%;
}

/*  2. Circle Shapes */
.stat-item::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #0099FF, #006AFF);
  border-radius: 50%;
  z-index: -1;
}

/* --- Top-Right Circle Control --- */
.stat-item:first-child::before {
  width: 100px;
  height: 100px;
  top: -30px;
  right: -50px;
}

/* --- Bottom-Left Circle Control --- */
.stat-item:last-child::before {
  width: 100px;
  height: 100px;
  bottom: 0px;
  left: -50px;
}

.stat-item h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  margin: 0;
  line-height: 1;
  padding-bottom: 1.5rem;
}

/* --- New Separator Line Style --- */
.stat-item {
  position: relative;
}

.stat-item:first-child::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-item p {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

/* --- Right Card Styling --- */
.stat-card-right {
  background-color: #E2FFFB;
  background-image: url("../images/home-abtus-dafox-card.webp");
}

/* --- Contact Us Section --- */
#contact {
  padding: 4rem 5%;
}

.contact-container {
  background-color: #F3F9FD;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
}

#contact h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #006AFF;
  margin: 0 0 1rem;
  text-align: left;
}

#contact p {
  color: #787E91;
  font-size: 1.2rem;
  line-height: 2;
  margin: 0 auto 2.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-icon img {
  width: 90px;
  height: 90px;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
}

/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
@media (min-width: 768px) {
  /* --- Hero Section --- */
  .brands-header {
    max-width: 1600px;
    margin: 0 auto 4rem;
    text-align: center;
  }
  .brands-header h2 {
    font-size: 4.063rem;
    max-width: 1000px;
    text-align: center;
  }
  .brands-header p {
    font-size: 1.25rem;
    max-width: 1200px;
    text-align: center;
  }
  .brands-row {
    flex-direction: row;
    max-width: 1400px;
    margin: 0 auto;
  }
  .brand-card-full .card-content {
    flex-direction: row;
    align-items: center;
  }
  #about {
    padding: 10rem 5%;
  }
  .about-container {
    flex-direction: row;
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
  }
  .about-text {
    text-align: left;
  }
  .about-text h2 {
    font-size: 4.063rem;
    max-width: 700px;
  }
  .about-text > p {
    font-size: 1.25rem;
    max-width: 600px;
  }
  .about-button {
    width: auto;
    min-width: auto;
    padding: 18px 50px;
  }
  /* --- Stats Section (About Section Part-2) --- */
  .stats-container {
    padding: 12rem 5% 0;
  }
  .stats-row {
    flex-direction: row;
    gap: 3rem;
  }
  .stat-card {
    flex: 1;
  }
  .stat-card-middle {
    flex: 1.5;
  }
  .stat-item h2 {
    font-size: 4.063rem;
  }
  .stat-item p {
    font-size: 1.875rem;
  }
  .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
  }
  #contact h2 {
    font-size: 4.063rem;
  }
  #contact p {
    font-size: 1.25rem;
    max-width: 860px;
    margin: 0 0 2.5rem 0;
  }
  .social-icons {
    gap: 2.5rem;
    justify-content: flex-start;
  }
  .social-icon img {
    width: 80px;
    height: 80px;
  }
}
/* General Styles */
.adopisoft-name {
  color: #782061;
  text-decoration: none;
  font-weight: bold;
  font-style: italic;
}

.dafoxtech-name {
  color: #17563C;
  text-decoration: none;
  font-weight: bold;
  font-style: italic;
}

/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
/* --- Hero Section --- */
#about-us #hero {
  padding: 2rem 5%;
}
#about-us .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#about-us .hero-text {
  flex: 1;
  text-align: left;
  width: 100%;
}
#about-us .hero-text h1 {
  font-family: "Satoshi", sans-serif;
  font-size: 3rem;
  color: #006AFF;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#about-us .hero-text > p {
  font-size: 1.1rem;
  color: #787E91;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
#about-us .hero-button {
  width: auto;
  padding: 20px 20px;
  min-width: auto;
  font-size: 1.1rem;
  text-transform: none;
}
#about-us .hero-button:hover .hero-button-icon {
  transform: translateY(3px);
}
#about-us .hero-images {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  height: 350px;
  margin-top: 3rem;
  position: relative;
}
#about-us .hero-image-item,
#about-us .about-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  transition: flex-grow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#about-us .hero-image-item.active,
#about-us .about-image-item.active {
  flex-grow: 5;
  cursor: default;
}
#about-us .hero-image-item img,
#about-us .about-image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (min-width: 768px) {
  #about-us #hero {
    padding: 8rem 5% 10rem;
  }
  #about-us .hero-container {
    position: relative;
    flex-direction: row;
    max-width: 1500px;
    margin: 0 auto;
  }
  #about-us .hero-container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    left: 10%;
    top: 10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at center, #ffffff 10%, #fff 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(200px);
    transform: rotate(90deg);
    opacity: 1;
    z-index: 0;
  }
  #about-us .hero-text {
    position: relative;
    z-index: 1;
    text-align: left;
    flex-basis: 50%;
    flex-shrink: 0;
  }
  #about-us .hero-text h1 {
    font-size: 5.3rem;
    max-width: 700px;
    padding-bottom: 2rem;
  }
  #about-us .hero-text > p {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
    margin-left: 0;
  }
  #about-us .hero-button {
    width: auto;
    min-width: 344px;
    height: auto;
    min-height: 90px;
    font-size: 1.25rem;
  }
  #about-us .hero-images {
    flex-basis: 45%;
    gap: 1rem;
    height: 500px;
    margin-top: 0;
  }
  #about-us .hero-images::before {
    pointer-events: none;
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 40%;
    top: 40%;
    left: 30%;
    background: radial-gradient(ellipse at center, #1DF6D9 10%, #00E4FE 40%, rgba(0, 228, 254, 0) 70%);
    transform: rotate(-90deg);
    filter: blur(120px);
    opacity: 0.8;
  }
  #about-us .hero-image-item {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  #about-us .hero-image-item:not(.active):hover img {
    transform: scale(1.05);
  }
}

/* --- Core Values Section --- */
#core-values {
  padding: 4rem 5%;
  background: linear-gradient(to top, #D8F1FF, #FFFFFF);
  position: relative;
  overflow: hidden;
}

.values-background-shape {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 90%;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(to left, #01A4FF, #00E4FE);
  opacity: 0.7;
  filter: blur(150px);
}

.core-values-intro {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.core-values-intro h2 {
  font-family: "Satoshi", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #006AFF;
  line-height: 1.3;
  margin: 0 auto 1.5rem;
}

.core-values-intro p {
  font-size: 1.125rem;
  color: #787E91;
  line-height: 1.6;
  margin: 0;
}

.values-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.value-card {
  background-color: #ffffff;
  border: 1px solid #E6FBFF;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 161, 255, 0.08);
  padding: 2rem;
  text-align: left;
  width: 100%;
  max-width: 444px;
  min-width: 364px1;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 161, 255, 0.15);
}

.value-card img {
  height: 85px;
}

.value-card h3 {
  font-family: "Poppins", sans-serif;
  color: #006AFF;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.value-card p {
  color: #787E91;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* --- Team Section 
#team {
  padding: 6rem 0;
  text-align: left;
}

.team-header {
  max-width: 1300px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.team-header h2 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #006AFF;
  margin: 0 auto 1rem;
}

.team-header p {
  font-size: 1.125rem;
  color: #787E91;
  line-height: 1.6;
  margin: 0 auto;
}

.carousel-nav {
  display: none; 
}

.team-carousel-viewport {
  max-width: 1400px; 
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; 
  scrollbar-width: 1rem; 
}

.team-carousel-viewport::-webkit-scrollbar {
  display: none; 
}

.team-carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
}

.team-card {
  width: 360px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 1px solid #E6FBFF;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 161, 255, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  box-sizing: border-box;
  scroll-snap-align: center; 
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-image-wrapper {
  width: 250px; height: 250px; border-radius: 50%;
  margin: 0 auto 1.5rem; overflow: hidden;
  box-shadow: 0 0 0 4px #F1F6FF;
}

.team-card-photo {
  width: 90%; height: 110%; object-fit: cover; border-radius: 50%;
}

.team-card-name {
  font-family: 'Satoshi', sans-serif; font-weight: 900;
  font-size: 1.875rem; color: #787E91; margin: 0;
}

.team-card-position {
  display: block; color: #00A1FF; font-weight: normal;
  font-size: 1.125rem; margin: 0.25rem 0 1.5rem;
}

.team-card-bio {
  color: #787E91; font-size: 1rem; line-height: 1.6;
  margin: 0; min-height: 96px;
}

--- */
/* --- Desktop Styles 
@media (min-width: 1024px) {
  .team-header h2 { font-size: 4.063rem; }
  .team-header p { font-size: 1.25rem; }
  .carousel-nav {
    display: flex; 
  }
}

--- */
/* --- Story Section --- */
#story {
  padding: 4rem 5%;
  text-align: left;
}

.story-header h3 {
  color: #00E4FE;
  font-size: 1.1rem;
  font-weight: 400;
  border: 1px solid #E6FBFF;
  background-color: #E6FBFF;
  border-radius: 50px;
  padding: 10px 25px;
  display: inline-block;
  margin-bottom: 1rem;
  transform: rotate(-10deg);
}

.story-header h2 {
  font-family: "Satoshi", sans-serif;
  color: #006AFF;
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.timeline-carousel-container {
  max-width: 90%;
  margin: 2rem 0;
  padding: 0;
  position: relative;
}

.timeline-carousel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(1, 193, 255, 0.05);
  padding: 1.1rem 1.5rem;
  min-height: 110px;
  max-width: 100%;
  width: 100%;
  display: none;
  transition: box-shadow 0.2s;
  border: 1.5px solid #e9f8ff;
}

.timeline-item.active {
  display: block;
}

.timeline-year {
  font-family: "Satoshi", sans-serif;
  font-size: 2rem;
  color: #018aff;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.timeline-nav {
  position: absolute;
  top: 1.3rem;
  right: -1.5rem;
  display: flex;
  gap: 10px;
}

.timeline-nav button {
  background: linear-gradient(180deg, #01DFFE, #01A1FF);
  border: none;
  border-radius: 8px;
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-nav button:hover {
  background: #00a1ff;
}

.timeline-item p {
  color: #787E91;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.story-layout-grid {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.story-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 400px;
  padding: 0 20px;
  box-sizing: border-box;
}

.gallery-item {
  position: absolute;
  width: 70%;
  max-width: 260px;
  height: 380px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  flex: none;
  cursor: default;
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s 0.25s;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}

.gallery-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item.is-prev {
  transform: translateX(-60%) scale(0.8);
  opacity: 0.6;
  z-index: 2;
}

.gallery-item.is-main {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
}

.gallery-item.is-next {
  transform: translateX(60%) scale(0.8);
  opacity: 0.6;
  z-index: 2;
}

.gallery-item.active {
  flex: 1;
}

.story-cta {
  display: none;
}

/* --- CTA Block Styling --- */
.story-cta {
  background: url(/assets/images/aboutp-story-cta-bg.svg) no-repeat center/cover;
  color: #ffffff;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  border-radius: 24px;
}

.story-cta h2 {
  font-family: "Satoshi", sans-serif;
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
}

.story-cta .cta-button {
  background: #ffffff;
  color: #006AFF;
  width: 100%;
}

.story-cta .cta-button:hover {
  background: #f0f8ff;
}

/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
@media (min-width: 768px) {
  /* --- Core Values Section --- */
  .core-values-intro {
    text-align: center;
    max-width: 1200px;
  }
  .core-values-intro h2 {
    font-size: 4rem;
    max-width: 900px;
    padding-bottom: 1rem;
  }
  .core-values-intro p {
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 700px;
  }
  .values-container {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
    gap: 2rem;
  }
  .value-card {
    flex: 1;
    max-width: 444px;
  }
  .value-card img {
    height: 80px;
  }
  /* --- Team Section --- */
  #team {
    padding: 10rem 5%;
    text-align: center;
  }
  .team-header h2 {
    font-size: 4rem;
    max-width: 1300px;
    padding-bottom: 2rem;
  }
  .team-header p {
    font-size: 1.2rem;
    max-width: 1150px;
  }
  .carousel-nav {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .carousel-nav button {
    background: linear-gradient(180deg, #01DFFE, #01A1FF);
    border: none;
    border-radius: 15px;
    width: 45px;
    height: 45px;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-nav button:hover {
    background: #00a1ff;
    box-shadow: 0 4px 20px rgba(0, 164, 255, 0.2);
    transform: translateY(-2px);
  }
  .team-carousel-viewport {
    scrollbar-width: none;
  }
  /* --- Story Section --- */
  #story {
    padding: 4rem 5%;
  }
  .story-content-wrapper {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
  }
  .story-header h2 {
    font-size: 4.063rem;
    max-width: 1300px;
    margin: 0 auto 2rem 0;
  }
  .timeline-carousel-container {
    max-width: 800px;
    margin: 6rem 0 0 0;
    padding: 0;
    position: relative;
  }
  .timeline-carousel {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 24px rgba(1, 193, 255, 0.04);
    padding: 2rem 2.5rem;
    min-height: 150px;
    max-width: 100%;
    width: 100%;
    display: none;
    transition: box-shadow 0.2s;
    border: 3px solid #F3F9FD;
  }
  .timeline-item.active {
    display: block;
  }
  .timeline-year {
    font-family: "Satoshi", sans-serif;
    font-size: 2.5rem;
    color: #006AFF;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  .timeline-item p {
    color: #787E91;
    font-size: 1.313rem;
    line-height: 1.6;
    margin: 0;
  }
  .timeline-nav {
    position: absolute;
    top: 2.5rem;
    right: -2.5rem;
    display: flex;
  }
  .timeline-nav button {
    background: linear-gradient(180deg, #01DFFE, #01A1FF);
    border: none;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .timeline-nav button:hover {
    background: #00a1ff;
  }
  .story-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px auto;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 4rem auto 0;
  }
  .story-gallery {
    display: contents;
    height: auto;
    padding: 0;
  }
  .gallery-item,
  .gallery-item.is-main,
  .gallery-item.is-prev,
  .gallery-item.is-next {
    position: static;
    flex: none;
    width: auto;
    height: auto;
    max-width: none;
    border-radius: 24px;
    cursor: default;
    opacity: 1;
    transform: none;
    z-index: auto;
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  .gallery-item img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .gallery-item:nth-child(2) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .gallery-item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .gallery-item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .gallery-item:nth-child(5) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .story-cta {
    display: flex;
    grid-column: 2/4;
    grid-row: 3/4;
    background: url(/assets/images/aboutp-story-cta-bg.svg) no-repeat center/contain;
    padding: 2.5rem;
    border-radius: 24px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-top: 0;
  }
  .story-cta h2 {
    font-size: 1.75rem;
    max-width: 500px;
    margin: 0;
  }
  .story-cta .cta-button {
    width: auto;
  }
}
/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
header, nav {
  position: relative;
  z-index: 1;
}

.contact-bg-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hh-background-container,
.contact-main-container,
main,
.contact-info,
.contact-form-container {
  position: relative;
  z-index: 0;
}

/* Remove background from .hh-background-container for contact page */
.contact-page .hh-background-container {
  background: none !important;
}

/* Main Section Layout */
.contact-main-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 700px;
  padding: 2rem 0.25rem 3rem 0.25rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* Show split backgrounds */
.contact-left-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120vh;
  background: url(/assets/images/contactp-left-bg.svg) no-repeat center center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.contact-right-bg {
  display: block;
  position: absolute;
  top: 53%;
  right: 0;
  width: 100vw;
  height: 90vh;
  background: linear-gradient(to bottom, #D8F1FF, #FFFFFF);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-right-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Layered mesh gradients (elliptical/cylindrical) */
  background: radial-gradient(ellipse 200px 200px at 20% 20%, rgba(0, 228, 254, 0.25) 0%, rgba(0, 228, 254, 0.13) 45%, rgba(0, 228, 254, 0.04) 75%, transparent 100%), radial-gradient(ellipse 200px 230px at 70% 50%, rgba(0, 161, 255, 0.18) 0%, rgba(0, 161, 255, 0.09) 45%, rgba(0, 161, 255, 0.03) 80%, transparent 100%), radial-gradient(ellipse 200px 350px at 25% 80%, rgba(0, 161, 255, 0.14) 0%, rgba(0, 161, 255, 0.07) 45%, rgba(0, 161, 255, 0.02) 85%, transparent 100%);
  opacity: 1;
}

/* Contact Info */
.contact-info {
  flex: 1.25;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 0.5rem;
  color: #fff;
  background: none;
  border-radius: 0;
}

.contact-info h1 {
  font-family: "Satoshi", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.contact-info p {
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0.95;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-socials .social-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.contact-socials .social-icon:hover img {
  transform: scale(1.07);
}

.contact-map {
  margin-bottom: 2rem;
}

#map {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(11, 95, 212, 0.07);
  background: #fff;
  border: none;
  object-fit: cover;
}

.leaflet-marker-icon.pulse-marker {
  width: 32px;
  height: 32px;
  position: relative;
  background: transparent;
}

.leaflet-marker-icon.pulse-marker .pulse {
  width: 32px;
  height: 32px;
  background: rgba(0, 174, 255, 0.45);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-animation 1.5s infinite;
  z-index: 1;
}

.leaflet-marker-icon.pulse-marker .dot {
  width: 12px;
  height: 12px;
  background: #00aeff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.7);
}

@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.8;
  }
}
.contact-address {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.address-label {
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.address-details {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.25rem;
}

/* Contact Form Area */
.contact-form-container {
  flex: 1;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #091740;
}

.contact-form-container h2 {
  color: #0085FF;
  font-family: "Satoshi", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(11, 95, 212, 0.09);
  padding: 1.5rem 1rem;
  width: 90%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.3rem;
}

.contact-form input,
.contact-form textarea {
  border: none;
  outline: none;
  background: #f7fcff;
  border: 1px solid #e4eefe;
  border-radius: 12px;
  padding: 1.05rem 1.1rem;
  font-size: 1.05rem;
  color: #091740;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 16px rgba(5, 150, 244, 0.03);
  transition: box-shadow 0.2s;
  width: 90%;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a1c7f7;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 2px 24px rgba(5, 150, 244, 0.1);
  background: #f0f9ff;
}

.contact-form textarea {
  min-height: 90px;
  max-height: 180px;
}

.contact-form button.cta-button {
  width: 100%;
  max-width: 530px;
  min-width: 180px;
  background: linear-gradient(90deg, #00A1FF, #00E4FE);
  color: #fff;
  font-size: 1.125rem;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button.cta-button:hover {
  background: #009acd;
}

/* --- TABLET VIEW: min-width 768px --- */
@media (min-width: 768px) {
  .contact-main-container {
    flex-direction: row;
    gap: 2.5rem;
    padding: 3rem 2rem 5rem 2rem;
    border-radius: 24px;
  }
  .contact-info,
  .contact-form-container {
    min-width: 340px;
    max-width: 600px;
    border-radius: 20px;
    padding: 2rem 1.5rem;
  }
  .contact-info h1,
  .contact-form-container h2 {
    font-size: 2.2rem;
  }
  #map {
    height: 300px;
    max-width: 500px;
  }
  .contact-form-card {
    padding: 2rem 2rem;
    max-width: 600px;
  }
}
/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
@media (min-width: 1024px) {
  /* Show split backgrounds */
  .contact-left-bg {
    width: 60vw;
    height: 100%;
  }
  .contact-right-bg {
    top: 0;
    width: 50vw;
    height: 100%;
  }
  .contact-main-container {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: none;
    border-radius: 0;
    padding: 4rem 0 8rem 0;
    min-height: 700px;
  }
  .contact-info {
    min-width: 480px;
    max-width: 700px;
    align-items: flex-start;
    padding: 0 3rem;
    border-radius: 0;
  }
  .contact-info h1 {
    font-size: 5.313rem;
  }
  .contact-info p {
    font-size: 1.563rem;
    max-width: 600px;
  }
  .contact-socials {
    gap: 3rem;
  }
  .contact-socials .social-icon img {
    width: 80px;
    height: 80px;
  }
  #map {
    width: 700px;
    height: 340px;
    max-width: 650px;
    border-radius: 18px;
    border: 3px solid #e8f6ff;
    background: #fff;
    object-fit: cover;
    box-shadow: none;
  }
  .address-label {
    font-size: 1.563rem;
  }
  .address-details {
    font-size: 1.563rem;
    max-width: 600px;
  }
  .contact-form-container {
    min-width: 480px;
    max-width: 700px;
    align-items: flex-start;
    padding: 0 2rem;
    margin-left: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
    color: #091740;
  }
  .contact-form-container h2 {
    color: #006AFF;
    font-size: 5.313rem;
  }
  .contact-form-card {
    padding: 2.5rem;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(11, 95, 212, 0.1);
  }
  .contact-form input,
  .contact-form textarea {
    color: #091740;
    background: #f7fcff;
    font-size: 1.13rem;
  }
  .contact-form button.cta-button {
    font-size: 1.25rem;
  }
}
/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
/* --- Hero Section --- */
#success-stories #hero {
  padding: 2rem 5%;
  min-height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#success-stories .hero-text {
  text-align: left;
  max-width: 800px;
}
#success-stories #hero h1 {
  font-family: "Satoshi", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #006AFF;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}
#success-stories #hero p {
  font-size: 1.25rem;
  color: #787E91;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  #success-stories #hero {
    padding: 4rem 5%;
    min-height: 30vh;
  }
  #success-stories .hero-text {
    text-align: center;
    max-width: 1000px;
  }
  #success-stories #hero h1 {
    font-size: 5.313rem;
  }
  #success-stories #hero p {
    font-size: 1.563rem;
    max-width: 650px;
    margin: 0 auto;
  }
}

/* --- Testimonial Section --- */
#testimonials {
  padding: 2rem 0;
}

.testimonial-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding-bottom: 2rem;
}

.slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.testimonial-slider:hover .slider-track {
  animation-play-state: paused;
}

/* --- The Animation Keyframes --- */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* --- Individual Card Styling --- */
.testimonial-card {
  background-color: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 380px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.testimonial-quote p {
  font-family: "Poppins", sans-serif;
  color: #787E91;
  line-height: 1.7;
  font-size: 1.063rem;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  color: #091740;
  font-size: 1.125rem;
}

.author-role {
  font-family: "Poppins", sans-serif;
  color: #006AFF;
  font-size: 1rem;
}

/* Testimonial Images */
#community-images {
  margin-top: -4rem;
  padding: 4rem 0;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-cluster-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.community-pfp {
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.community-pfp.large {
  width: 80px;
  height: 80px;
}

.community-pfp.medium {
  width: 60px;
  height: 60px;
}

.community-pfp.small {
  width: 40px;
  height: 40px;
}

.community-pfp:nth-child(1) {
  top: 20%;
  left: 40%;
}

.community-pfp:nth-child(2) {
  top: 50%;
  left: 5%;
}

.community-pfp:nth-child(3) {
  top: 20%;
  left: 25%;
}

.community-pfp:nth-child(4) {
  top: 45%;
  left: 50%;
}

.community-pfp:nth-child(5) {
  top: 20%;
  left: 60%;
}

.community-pfp:nth-child(6) {
  top: 50%;
  left: 20%;
}

.community-pfp:nth-child(7) {
  top: 20%;
  left: 75%;
}

.community-pfp:nth-child(8) {
  top: 50%;
  left: 80%;
}

.community-pfp:nth-child(9) {
  top: 40%;
  left: -5%;
}

.community-pfp:nth-child(10) {
  top: 50%;
  left: 35%;
}

.community-pfp:nth-child(11) {
  top: 20%;
  left: 10%;
}

.community-pfp:nth-child(12) {
  top: 30%;
  left: 90%;
}

.community-pfp:nth-child(13) {
  top: 50%;
  left: 68%;
}

/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 767px) {
  #community-images {
    height: 200px;
  }
  .image-cluster-container {
    transform: scale(0.8);
  }
}
/* --- Feedback Section --- */
.feedback-background-container {
  background: linear-gradient(to bottom, #ffffff 0%, #EBF8FF 52%, #ffffff 100%);
}

#feedback {
  padding: 4rem 5%; /* Vertical and horizontal padding */
}

/* --- Grid Layout Container --- */
.feedback-container {
  /* Mobile: Stack the columns */
  display: flex;
  flex-direction: column;
  gap: 3rem; /* Space between text and form on mobile */
  /* Center the content */
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* --- Left Column: Text --- */
.feedback-text {
  text-align: left;
}

.feedback-pill {
  display: inline-block;
  background-color: #E6FBFF;
  color: #00B9E1;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 25px;
  border-radius: 50px;
  transform: rotate(-10deg);
  margin-bottom: 1.5rem;
}

.feedback-text h2 {
  font-family: "Satoshi", sans-serif;
  font-size: 2.5rem; /* Mobile font size */
  font-weight: 700;
  color: #006AFF;
  line-height: 1.2;
  margin: 0;
}

/* --- Right Column: Form --- */
.feedback-form-container {
  background-color: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 106, 255, 0.1);
  width: 100%;
  box-sizing: border-box; /* Ensures padding is included in width */
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Space between form fields */
}

/* This is the core styling adapted from contact-styles.css */
.feedback-form input,
.feedback-form textarea {
  border: 1px solid #e4eefe;
  outline: none;
  background: #f7fcff;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  font-size: 1rem;
  color: #091740;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 16px rgba(5, 150, 244, 0.03);
  transition: box-shadow 0.3s, border-color 0.3s;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #a1c7f7;
  opacity: 1;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  box-shadow: 0 2px 24px rgba(5, 150, 244, 0.1);
  border-color: #00A1FF;
}

/* --- Form Button --- */
.feedback-form .cta-button {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
}

/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
@media (min-width: 768px) {
  /* --- Hero Section --- */
  #hero {
    padding: 4rem 5%;
    min-height: 30vh;
  }
  .hero-text {
    text-align: center;
    max-width: 1000px;
  }
  #hero h1 {
    font-size: 5.313rem;
  }
  #hero p {
    font-size: 1.563rem;
    max-width: 650px;
    margin: 0 auto;
  }
  /* --- Feedback Section --- */
  #feedback {
    padding: 6rem 5%;
  }
  .feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .feedback-text h2 {
    font-size: 4.063rem;
  }
  .feedback-form-container {
    padding: 3.5rem;
  }
}
/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
.terms-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}

.terms-header {
  margin-bottom: 4rem;
}

.terms-header h2 {
  font-size: 1.99rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
  text-align: center;
}

.terms-header p {
  color: #555;
  text-align: left;
  margin: 0.15rem 0;
}

.terms-header p strong {
  color: #555;
}

.terms-page h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #222;
  border-left: 4px solid #006AFF;
  padding-left: 0.75rem;
}

.terms-page p {
  margin-bottom: 1rem;
}

.terms-page strong {
  color: #000;
}

.terms-page a {
  color: #ff6f3c;
  text-decoration: none;
}

.terms-page a:hover {
  text-decoration: underline;
}

/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
@media (max-width: 768px) {
  .terms-page {
    padding: 1.5rem 1rem;
  }
  .terms-page h2 {
    font-size: 1.5rem;
  }
  .terms-page h4 {
    font-size: 1.1rem;
  }
}
/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
.privacy-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}

.privacy-header {
  margin-bottom: 4rem;
}

.privacy-header h2 {
  font-size: 1.99rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
  text-align: left;
}

.privacy-header p {
  color: #555;
  text-align: left;
  margin: 0.15rem 0;
}

.privacy-header p strong {
  color: #555;
}

.privacy-page h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #222;
  border-left: 4px solid #006AFF;
  padding-left: 0.75rem;
}

.privacy-page p {
  margin-bottom: 1rem;
}

.privacy-page strong {
  color: #000;
}

.privacy-page a {
  color: #006AFF;
  text-decoration: none;
}

.privacy-page a:hover {
  text-decoration: underline;
}

.npc-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem; /* spacing between images */
  flex-wrap: wrap; /* allows wrapping on small screens */
  margin-top: 1.5rem;
}

.npc-image img {
  width: 260px; /* controls the size (tweak as you like) */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.npc-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
@media (max-width: 768px) {
  .privacy-page {
    padding: 1.5rem 1rem;
  }
  .privacy-page h2 {
    font-size: 1.5rem;
  }
  .privacy-page h4 {
    font-size: 1.1rem;
  }
  .npc-image img {
    width: 100%;
    max-width: 280px;
  }
}
/* Poppins Regular (Weight 400) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/poppins-v23-latin-regular.woff2") format("woff2");
}
/* Poppins Bold (Weight 700) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/poppins-v23-latin-700.woff2") format("woff2");
}
/* Poppins Black (Weight 900) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("/assets/fonts/poppins-v23-latin-900.woff2") format("woff2");
}
/* Satoshi Black (Weight 900) */
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 900;
  src: url("/assets/fonts/Satoshi-Black.woff2") format("woff2");
}
/* Satoshi Bold (Weight 700) */
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/Satoshi-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Righteous";
  font-style: normal;
  font-weight: 300 900;
  src: url("/assets/fonts/righteous-v18-latin-regular.woff2") format("woff2");
}
/* Avenir Next Cyr (Bold) */
@font-face {
  font-family: "Avenir Next Cyr";
  font-style: bold;
  src: url("/assets/fonts/AvenirNextCyr-Bold.woff") format("woff");
}
/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: white;
  border: 2px solid #006AFF;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 106, 255, 0.4);
  transition: box-shadow 0.3s ease;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #006AFF;
  height: 3px;
  width: 24px;
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

.nav-toggle-label:hover {
  box-shadow: 0 4px 10px rgba(0, 106, 255, 0.6);
}

.nav-close-label {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: white;
  border: 2px solid #006AFF;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 106, 255, 0.4);
  transition: box-shadow 0.3s ease;
  z-index: 1001;
}

.nav-close-label:hover {
  box-shadow: 0 4px 10px rgba(0, 106, 255, 0.6);
}

.nav-close-label svg {
  color: #006AFF;
}

#nav-toggle:checked ~ .nav-menu {
  transform: translateX(0);
}

#nav-toggle:checked ~ .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

#nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}

#nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(45deg);
  top: 0;
}

#nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-45deg);
  top: 0;
}

header {
  max-width: 1554px;
  margin: 0 1rem 1rem;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.5rem;
  position: relative;
  z-index: 1001;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 6rem 2rem 2rem;
  z-index: 1000;
  overflow-y: hidden;
  box-sizing: border-box;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 23, 64, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nav-menu li {
  width: 100%;
  text-align: left;
}

.nav-menu > ul > li:not(:last-child) {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eef2f6;
}

.nav-menu ul li a,
.nav-menu .dropdown-toggle-label {
  text-decoration: none;
  color: #091740;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu .dropdown-toggle-label:hover {
  color: #007bff;
}

.nav-menu .cta-button {
  margin-top: auto;
  width: 100%;
  min-width: auto;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 2.188rem;
}

.logo img {
  height: 50px;
  margin-right: 15px;
}

/* --- Dropdown Menu Styles --- */
.dropdown li {
  text-align: left;
}

.dropdown-toggle {
  display: none;
}

.dropdown-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle-label {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle-label::after {
  content: "";
  display: inline-block;
  border: solid #091740;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease-out;
}

.nav-menu .dropdown-menu {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-menu .dropdown-menu li a {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555e78;
}

.dropdown-menu {
  list-style: none;
  padding-left: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.dropdown-toggle:checked ~ .dropdown-menu {
  max-height: 200px;
  margin-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.dropdown-toggle:checked ~ .dropdown-header .dropdown-toggle-label::after {
  transform: rotate(-135deg);
}

.desktop-cta {
  display: none;
}

.dropdown-link {
  display: none;
}

/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
@media (min-width: 768px) {
  nav {
    justify-content: space-between;
  }
  .nav-close-label,
  .nav-overlay {
    display: none !important;
  }
  #nav-toggle:checked ~ .nav-menu {
    transform: translateX(100%);
  }
  .nav-toggle-label {
    display: none;
  }
  header {
    margin: 0 auto 2rem;
    padding: 1rem 2.5rem;
  }
  .nav-menu {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    position: static;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    height: auto;
    overflow: visible;
  }
  .nav-menu ul {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 3.5rem;
  }
  .nav-menu li {
    width: auto;
  }
  .nav-menu ul li a,
  .nav-menu .dropdown-link {
    white-space: nowrap;
  }
  .nav-menu > ul > li:not(:last-child) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .logo img {
    height: 75px;
    margin-right: 15px;
  }
  .dropdown-toggle-label {
    display: none;
  }
  .dropdown-header {
    display: contents;
  }
  .dropdown {
    position: relative;
  }
  .nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 1rem;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateX(-50%);
    transition: all 0.3s ease-in-out;
  }
  .dropdown.is-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
  }
  .dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .dropdown-menu li a:hover {
    background-color: #f0f5ff;
    color: #007bff;
  }
  .dropdown-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #091740;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .dropdown-link:hover {
    color: #007bff;
  }
  .dropdown-link::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(180deg, #00E4FE, #01A5FF);
    border-radius: 6px;
    content: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" fill="%23FFFFFF"/></svg>');
    margin-left: 0.75rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }
  .dropdown.is-active .dropdown-link::after {
    transform: rotate(180deg);
  }
  .desktop-cta {
    display: inline-flex;
  }
  .mobile-cta {
    display: none;
  }
}
/* --- Footer Wrapper background --- */
.footer-background {
  background: linear-gradient(to bottom, #FFFFFF, #D3EDFF);
}

/* ========================================================== */
/*             Mobile Navigation Toggle Styles                */
/* ========================================================== */
footer {
  padding: 4rem 5%;
  color: #091740;
  font-size: 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

/* --- Left Column Styling --- */
.footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 0.75rem;
  text-decoration: none;
  color: #091740;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-logo img {
  height: 200px;
}

.footer-logo-text img {
  height: 100px;
}

.footer-about p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  max-width: 400px;
  margin: 0;
}

.footer-badge img {
  width: 100%;
  max-width: 350px;
}

/* --- Right Column (Navigation) Styling --- */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.footer-nav a {
  text-decoration: none;
  color: #091740;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #007bff;
}

/* ========================================================== */
/*             Desktop Navigation Toggle Styles               */
/* ========================================================== */
@media (min-width: 768px) {
  footer {
    padding: 4rem 5%;
  }
  .footer-container {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 4rem;
  }
  .footer-about {
    align-items: center;
    flex: 1.5;
  }
  .footer-logo {
    font-size: 2.813rem;
    gap: 1rem;
  }
  .footer-logo img {
    height: 250px;
  }
  .footer-logo-text img {
    height: 130px;
  }
  .footer-about p {
    font-size: 1.375rem;
    max-width: 750px;
  }
  .footer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3rem;
    align-items: flex-start;
  }
  .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 8rem;
  }
  .footer-nav a {
    font-size: 1.125rem;
  }
  .footer-badge img {
    width: 100%;
    max-width: 450px;
  }
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(9, 23, 64, 0.5);
  border-radius: 12px;
  text-decoration: none;
  color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: rgba(9, 23, 64, 0.7);
  transform: scale(1.05);
}

.with-hero-background {
  position: relative;
}
.with-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  background: linear-gradient(to bottom, #D8F1FF, #FFFFFF);
  z-index: -1;
}

/*# sourceMappingURL=main.css.map */