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

body {
  background: #0B0B0B;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1rem;
}
body .gradient-follow-circle {
  position: fixed;
  pointer-events: none;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 151, 17, 0.18) 0%, rgba(100, 32, 170, 0.1) 60%, rgba(0, 0, 0, 0.01) 100%);
  filter: blur(48px) contrast(1.2);
  opacity: 0.85;
  z-index: 1000;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  transition: left 0.15s, top 0.15s, background 0.5s, opacity 0.3s;
  will-change: left, top, background, opacity;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Junge", serif;
  font-weight: 400;
  color: #fff;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #B3B3B3;
}

.glass-navbar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  min-width: 320px;
  padding: 1rem 0.8rem 1rem 1.1rem;
  background: rgba(155, 155, 155, 0.18);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}
.glass-navbar .dropdown {
  position: relative;
  display: inline-block;
}
.glass-navbar .mobile-close {
  display: none;
}
.glass-navbar .dropdown-toggle {
  cursor: pointer;
  color: #e9e9e9;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.glass-navbar .dropdown-toggle:hover,
.glass-navbar .dropdown-toggle:focus {
  color: #fff;
}
.glass-navbar .dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 210%;
  min-width: 200px;
  background: rgba(155, 155, 155, 0.18); /* glassmorphism, matches navbar */
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08); /* same as .glass-navbar */
  backdrop-filter: blur(10px); /* same as .glass-navbar */
  -webkit-backdrop-filter: blur(10px); /* same as .glass-navbar */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3); /* same as .glass-navbar */
  z-index: 2001;
  padding: 0.5rem;
  margin-top: 0.5rem;
  list-style: none;
}
.glass-navbar .dropdown-menu li {
  width: 100%;
}
.glass-navbar .dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #e9e9e9;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  transition: background 0.2s, color 0.2s;
  border-radius: 12px;
}
.glass-navbar .dropdown-menu a:hover,
.glass-navbar .dropdown-menu a:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.glass-navbar .dropdown.open .dropdown-menu {
  display: block;
}
.glass-navbar .dropdown-chevron {
  font-size: 1.1em;
  vertical-align: middle;
  margin-left: 0.2em;
  transition: transform 0.2s;
}
.glass-navbar .dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

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

.navbar-logo img {
  height: 20px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  text-decoration: none;
  color: #e9e9e9;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #fff;
}

.container {
  width: 70%;
  min-width: 1200px;
  margin: 0px auto;
}

.btn-primary {
  background-color: #FDEACF;
  color: #784C09;
  border: #784C09 1px solid;
  padding: 12px 32px;
  border-radius: 32px;
  cursor: pointer;
}
.btn-primary a {
  color: #784C09;
}

.btn-primary:hover {
  color: #523206;
  border: #523206 1px solid;
}
.btn-primary:hover a {
  color: #523206;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100vw;
  height: 120vh;
  background: linear-gradient(180deg, #140622, #0B0B0B);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  margin-top: 5vh;
  justify-content: space-around;
}
.hero .container .left {
  width: 50%;
}
.hero .container .left h1 {
  font-weight: 400;
  font-size: 2rem;
}
.hero .container .right {
  width: 50%;
}
.hero .container .right p {
  margin-bottom: 20px;
}
.hero .bento {
  margin: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  height: 60vh;
  gap: 20px;
}
.hero .bento .pic {
  border: 1px solid rgba(255, 255, 255, 0.062);
  overflow: hidden;
  position: relative;
}
.hero .bento .pic .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
}
.hero .bento .pic2 {
  padding: 20px 0px 20px 20px;
}
.hero .bento .pic2 .pic2-img-upperleft {
  width: 100%;
  border-radius: 16px 0px 0px 16px;
  border: 1px solid rgba(255, 255, 255, 0.404);
}
.hero .bento .pic3 {
  position: relative;
}

.everything {
  padding: 60px 0px;
  overflow: hidden;
}
.everything p {
  color: #B3B3B3;
}
.everything h2 {
  font-size: 3rem;
}
.everything .everything-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.everything .everything-cards-container .everything-card {
  padding: 40px 20px;
  margin: 40px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 60vh;
  border: 1px solid rgba(255, 255, 255, 0.062);
  transition: border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: transparent;
}
.everything .everything-cards-container .everything-card.show-border {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px 0 rgba(100, 32, 170, 0.08);
}
.everything .everything-cards-container .everything-card h3 {
  margin: 20px 0px;
}
.everything .everything-cards-container .everything-card button {
  width: -moz-fit-content;
  width: fit-content;
}
.everything .everything-cards-container .everything-card .lottie-corner {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.1;
}
.everything .everything-text-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.inventory {
  overflow: hidden;
  padding: 60px 0px;
  height: 100vh;
}
.inventory .inventory-container {
  display: flex;
  height: 100%;
}
.inventory .inventory-container .inventory-info {
  width: 50%;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.062);
}
.inventory .inventory-container .inventory-info p {
  color: #B3B3B3;
}
.inventory .inventory-container .inventory-info h2 {
  font-size: 3rem;
}
.inventory .inventory-container .inventory-graphics {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  padding: 40px 0px 40px 40px;
}
.inventory .inventory-container .inventory-graphics img {
  width: 250%;
}

.statistics {
  overflow: hidden;
  padding: 60px 0px;
  position: relative;
  z-index: 1;
}
.statistics .stat-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.statistics p {
  color: #B3B3B3;
  text-align: center;
  width: 70%;
}
.statistics h2 {
  font-size: 3rem;
}
.statistics .grid-graphs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "g1 g1 g1" "g2 g3 g4" "g5 g5 g6";
  margin: 2.5rem 0;
}
.statistics .grid-graphs .glass-graph-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.062);
}
.statistics .grid-graphs .glass-graph-card img {
  width: 100%;
  opacity: 0.7;
}
.statistics .grid-graphs .g1 {
  grid-area: g1;
}
.statistics .grid-graphs .g2 {
  grid-area: g2;
}
.statistics .grid-graphs .g3 {
  grid-area: g3;
}
.statistics .grid-graphs .g4 {
  grid-area: g4;
}
.statistics .grid-graphs .g5 {
  grid-area: g5;
}
.statistics .grid-graphs .g6 {
  grid-area: g6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.statistics .stats-blur-circle {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px) brightness(1.1) contrast(1.1);
  opacity: 0.45;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 60% 40%, #F69711 0%, #6420AA 50%);
  animation-timing-function: ease-in-out;
}
.statistics .stats-blur-circle.circle1 {
  background: radial-gradient(circle at 60% 40%, #ffc676 0%, #6420AA 50%);
  animation: moveCircle1 16s linear infinite alternate;
}
.statistics .stats-blur-circle.circle2 {
  background: radial-gradient(circle at 40% 60%, #B290D5 0%, #ffd59b 50%);
  animation: moveCircle2 22s linear infinite alternate;
  opacity: 0.35;
}
@keyframes moveCircle1 {
  0% {
    left: -200px;
    top: 10%;
  }
  40% {
    left: 30%;
    top: 0%;
  }
  60% {
    left: 60%;
    top: 60%;
  }
  100% {
    left: 100vw;
    top: 80%;
  }
}
@keyframes moveCircle2 {
  0% {
    left: 100vw;
    top: 80%;
  }
  30% {
    left: 60vw;
    top: 60%;
  }
  60% {
    left: 30vw;
    top: 10%;
  }
  100% {
    left: -200px;
    top: 0%;
  }
}

.about-us {
  height: 100vh;
  width: 100vw;
  position: relative;
}
.about-us video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.about-us .about-us-video-expanded {
  width: 90% !important;
  height: 90% !important;
}
.about-us .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(./assets/about-bg.png);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-us .overlay .container {
  display: flex;
  flex-direction: column;
}
.about-us .overlay h2 {
  font-size: 4rem;
}
.about-us .overlay p {
  width: 40%;
  color: #E7E7E7;
}

@media (max-width: 762px) {
  body {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    min-width: 100%;
    margin: 0px auto;
  }
  .glass-navbar {
    width: 90%;
    padding: 0.5rem 1rem;
  }
  .glass-navbar .dropdown-menu {
    position: absolute;
    left: 50%;
    top: 100%;
    min-width: 200px;
    background: rgba(155, 155, 155, 0.18);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 2001;
    display: none;
  }
  .glass-navbar .dropdown:hover .dropdown-menu,
  .glass-navbar .dropdown:focus-within .dropdown-menu {
    display: block;
    background: rgba(155, 155, 155, 0.18);
    box-shadow: 0;
  }
  .navbar-logo img {
    height: 32px;
  }
  .mobile-only {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .mobile-only .burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .mobile-only .burger .line {
    width: 25px;
    height: 2px;
    background-color: #fff;
  }
  .navbar-links {
    position: absolute;
    right: 0;
    top: -30px;
    height: 100vh;
    width: 80%;
    background: linear-gradient(180deg, #140622, #0B0B0B);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(110%);
    transition: all 0.5s ease-in;
  }
  .navbar-links .mobile-close {
    position: absolute;
    display: block;
    top: 40px;
    left: 10px;
  }
  .nav-active {
    transform: translateX(5%);
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, #140622, #0B0B0B);
    position: relative;
    overflow: hidden;
    padding: 20px;
  }
  .hero .container {
    display: flex;
    margin-top: 15vh;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
  }
  .hero .container .left {
    width: 100%;
  }
  .hero .container .left h1 {
    font-weight: 400;
    font-size: 2rem;
  }
  .hero .container .right {
    width: 100%;
  }
  .hero .container .right p {
    margin-bottom: 20px;
  }
  .hero .bento {
    margin: 0px;
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
    gap: 20px;
  }
  .hero .bento .pic {
    border: 1px solid rgba(255, 255, 255, 0.062);
    overflow: hidden;
    position: relative;
  }
  .hero .bento .pic .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 2;
  }
  .hero .bento .pic1 {
    display: none;
  }
  .hero .bento .pic2 {
    padding: 20px 0px 20px 20px;
  }
  .hero .bento .pic2 .pic2-img-upperleft {
    width: 100%;
    border-radius: 16px 0px 0px 16px;
    border: 1px solid rgba(255, 255, 255, 0.404);
  }
  .hero .bento .pic3 {
    position: relative;
    display: none;
  }
  .everything {
    padding: 60px 20px;
  }
  .everything h2 {
    font-size: 1.5rem;
  }
  .everything .everything-cards-container {
    grid-template-columns: 1fr;
  }
}
a {
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
}

button {
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
}

.what-we-do {
  width: 100vw;
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  padding: 4rem 0 4rem 0;
}

.what-we-do-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.what-we-do-title {
  font-family: "Junge", serif;
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 4.5rem;
  font-weight: 300;
  text-align: center;
}

.what-we-do-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: left;
}

.glass-card:hover {
  box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.28);
  transform: translateY(-6px) scale(1.03);
}

.glass-card h3, .glass-card p {
  text-align: left;
}

.glass-card h3 {
  font-family: "Junge", serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
}

.glass-card p {
  font-size: 1rem;
  color: #e0e0e0;
  width: 100%;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
}

.card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.7rem;
  margin-right: 0.7rem;
  vertical-align: middle;
  filter: brightness(0.95) grayscale(0.1);
}

@media (max-width: 900px) {
  .what-we-do-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .what-we-do-title {
    font-size: 2rem;
  }
  .glass-card {
    padding: 1.5rem 1rem;
    min-height: 180px;
  }
}
.site-footer {
  width: 100vw;
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  color: #e0e0e0;
  padding: 2.5rem 0 2rem 0;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  color: #888;
  margin: 0 0.5rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0.9) grayscale(0.2);
  transition: filter 0.2s, transform 0.2s;
}

.footer-icon:hover {
  filter: brightness(1.2) grayscale(0);
  transform: scale(1.08);
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: #bdbdbd;
}

.address-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0.8) grayscale(0.3);
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .footer-links, .footer-social, .footer-address {
    font-size: 0.98rem;
  }
}
.about-us-section {
  width: 100vw;
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  padding: 4rem 0 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}

.about-us-title {
  font-family: "Junge", serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-us-intro {
  font-size: 1.15rem;
  color: #e0e0e0;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.about-profile-card {
  flex: 1 1 320px;
  width: 40%;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.profile-img-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.1);
  background: #232526;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.profile-info {
  width: 100%;
}
.profile-info .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
}
.profile-info .title .profile-name {
  font-family: "Junge", serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.2rem;
}
.profile-info .title .profile-title {
  font-size: 1rem;
  color: #bdbdbd;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 500;
  text-align: center;
}

.profile-bio {
  font-size: 1rem;
  color: #e0e0e0;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 1.1rem;
  text-align: center;
}

.profile-social {
  display: flex;
  justify-content: left;
  gap: 1.1rem;
}

.profile-social .material-icons-outlined {
  font-size: 2rem;
  color: #e0e0e0;
  transition: color 0.2s, transform 0.2s;
}

.profile-social .material-icons-outlined:hover {
  color: #fff;
  transform: scale(1.12);
}

.contact-section {
  width: 100vw;
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  padding: 4rem 0 4rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-family: "Junge", serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: left;
  width: 100%;
}

.contact-subtext {
  color: #bdbdbd;
  font-size: 1.1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-align: left;
  width: 100%;
}

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

.contact-cards {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-icon {
  font-size: 2.5rem;
  color: #e0e0e0;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-family: "Junge", serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0;
}

.contact-card p {
  font-size: 1rem;
  color: #e0e0e0;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 0;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-social .material-icons-outlined {
  font-size: 2rem;
  color: #e0e0e0;
  transition: color 0.2s, transform 0.2s;
}

.contact-social .material-icons-outlined:hover {
  color: #fff;
  transform: scale(1.12);
}

.contact-social-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.3rem;
  margin-bottom: 0;
  filter: brightness(0.95) grayscale(0.1);
  transition: filter 0.2s, transform 0.2s;
  vertical-align: middle;
}

.contact-social-icon:hover {
  filter: brightness(1.2) grayscale(0);
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .contact-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact-title {
    font-size: 2rem;
  }
  .contact-card {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
}
.logo-mobile {
  display: none;
}

.logo-desktop {
  display: inline;
}

@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: inline;
  }
}
.hide-on-mobile {
  display: flex;
}

.mobile-only {
  display: none;
}

.close-menu {
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  padding: 0.3em 0.6em;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu:active, .close-menu:hover {
  background: rgba(255, 255, 255, 0.12);
}


@media (max-width: 768px) {
  .about-us-section {
    padding: 2.5rem 0 2.5rem 0;
    min-height: unset;
    display: block;
    height: unset;
  }
  .about-us-intro {
    width: 100%;
  }
  .about-us-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .about-us-content {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .about-profile-card {
    width: 100%;
    flex: 1;
    padding: 1rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile-img-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 12px 0 rgba(31, 38, 135, 0.1);
    background: #232526;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profile-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
  .profile-info {
    width: 100%;
  }
  .profile-info .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .profile-info .title .profile-name {
    font-family: "Junge", serif;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 0.2rem;
  }
  .profile-info .title .profile-title {
    font-size: 1rem;
    color: #bdbdbd;
    font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
    font-weight: 500;
    text-align: center;
  }
}
.platform-section {
  width: 100vw;
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  padding: 4rem 0 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.platform-container .platform-text {
  width: 50%;
}
.platform-container .platform-img-container {
  position: relative;
  width: 50%;
  height: 100%;
}
.platform-container .platform-img-container img {
  position: absolute;
  width: 1200px;
  left: 0;
  top: 20%;
  transform: perspective(1200px) rotateX(30deg) rotateY(-20deg) scale(1.5);
  transform-origin: bottom center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.platform-title {
  font-family: "Junge", serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 300;
}

.platform-desc {
  font-size: 1.15rem;
  color: #e0e0e0;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  width: 90%;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .platform-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .platform-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .platform-card {
    padding: 1.2rem 0.7rem;
    border-radius: 18px;
  }
  .platform-desc {
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .platform-section {
    width: 100vw;
    background: linear-gradient(120deg, #181818 0%, #232526 100%);
    padding: 4rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
  }
  .platform-container {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .platform-container .platform-text {
    width: 100%;
  }
  .platform-container .platform-img-container {
    position: relative;
    width: 100%;
    height: 700px;
  }
  .platform-container .platform-img-container img {
    position: absolute;
    width: 400px;
    left: -30%;
    top: 50%;
    transform: perspective(1200px) rotateX(30deg) rotateY(-20deg) scale(1.5);
    transform-origin: bottom center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  }
}
.whatsapp-consent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.whatsapp-consent-content {
  background: #232526;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 95vw;
  width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-consent-content h3 {
  margin-bottom: 1rem;
  font-family: "Junge", serif;
  font-weight: 300;
  font-size: 1.3rem;
}

.whatsapp-consent-content p {
  width: 100%;
}

.whatsapp-consent-content label {
  font-size: 1rem;
  color: #e0e0e0;
  margin-left: 0.5rem;
  cursor: pointer;
  width: 100%;
}

#whatsapp-consent-accept {
  margin-top: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  border: none;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Inter", "Segoe UI", "Roboto", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  opacity: 0.7;
}

#whatsapp-consent-accept:enabled {
  opacity: 1;
  background: #25d366;
}

#whatsapp-consent-accept:disabled {
  cursor: not-allowed;
  background: #25d366;
  opacity: 0.7;
}

.pic2-imgs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 0;
  position: relative;
}

.pic2-img-upperleft {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  position: relative;
  /* Each image will fill its grid cell */
  pointer-events: none;
}

#pic2-blur-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(200, 200, 200, 0.08) 60%, rgba(0, 0, 0, 0.01) 100%);
  filter: blur(48px) contrast(1.2);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  /* Grainy effect using a repeating PNG data URI */
  background-blend-mode: overlay;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(200, 200, 200, 0.08) 60%, rgba(0, 0, 0, 0.01) 100%), url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGNgYAAAAAMAASsJTYQAAAAASUVORK5CYII=");
  /* The PNG is a tiny white dot, repeated for grain */
}

.graph-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.graph-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}/*# sourceMappingURL=style.css.map */