/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --yellow: #FBBA00;
  --yellow-hot: #FBBA00;
  --yellow-dim: #FBBA00;
  --black: #0A0A0A;
  --black-mid: #141414;
  --black-soft: #1E1E1E;
  --white: #FAFAFA;
  --white-dim: rgba(250, 250, 250, 0.72);
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --light-black: #575656;
  --koho-font: 'KoHo', sans-serif;
  --feature-back-color: rgb(255 254 254 / 52%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--white);
  color: var(--black);
  /* font-family: 'DM Sans', sans-serif; */
  font-family: var(--koho-font);
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  overflow-x: clip;
}

.designed_by {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

/* ── PAGE LOADER ──────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--koho-font);
  font-size: 3rem;
  letter-spacing: 0.25em;
  color: var(--white);
}

.loader-logo span {
  color: var(--yellow);
}

.loader-logo img {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: var(--black-soft);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--yellow);
  animation: loadFill 1.6s ease forwards;
}

@keyframes loadFill {
  to {
    width: 100%;
  }
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

nav.scrolled {
  background: var(--black);
  padding: 14px 60px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: var(--koho-font);
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--yellow);
}

#navbar.scrolled .nav-logo img {
  height: 50px;
  /* smaller size on scroll */
}

.nav-logo img {
  height: 100px;
  /* adjust based on your navbar */
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--yellow-hot);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO SLIDER ──────────────────────────────────────── */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-img {
  transform: scale(1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.55) 50%,
      rgba(10, 10, 10, 0.20) 100%);
  z-index: 1;
}

/* Yellow accent stripe */
.hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--yellow);
  z-index: 2;
}

.hero-content {
  position: absolute;
  z-index: 3;
  bottom: 18%;
  left: 8%;
  max-width: 580px;
}

.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--koho-font);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 400px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--yellow-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 196, 0, 0.45);
}

.btn-outline {
  border: 1.5px solid rgba(250, 250, 250, 0.4);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--yellow);
  background: rgba(245, 196, 0, 0.1);
  color: var(--yellow);
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  background: var(--yellow);
  display: flex;
  padding: 28px 40px;
  gap: 48px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--koho-font);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.65);
  margin-top: 4px;
}

/* Swiper custom nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--black);
  background: var(--yellow);
  width: 48px;
  height: 48px;
  border-radius: 0;
  --swiper-navigation-size: 18px;
  transition: background var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--yellow-hot);
}

.hero-swiper .swiper-button-prev {
  left: 0;
}

.hero-swiper .swiper-button-next {
  right: 0;
}

.hero-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.45;
  width: 8px;
  height: 8px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--yellow);
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}

/* ── SECTION COMMONS ──────────────────────────────────── */
section {
  padding: 100px 60px;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dim);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--koho-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--light-black);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-title em {
  color: var(--yellow-dim);
  font-style: italic;
}

.section-sub {
  font-size: 1rem;
  color: #555;
  max-width: 480px;
  line-height: 1.75;
}

/* ── FEATURES SECTION ─────────────────────────────────── */
.features {
  background: var(--white);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: 'SOLAR';
  position: absolute;
  font-family: var(--koho-font);
  font-size: 22vw;
  color: rgba(255, 255, 255, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.15em;
}

.features .section-title {
  color: var(--white);
}

.features .section-sub {
  color: var(--light-black)
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--black-soft);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background var(--transition);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.feature-card:hover {
  background: #242424;
  border-left-color: var(--yellow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--koho-font);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-text {
  font-size: 0.88rem;
  color: rgba(250, 250, 250, 0.5);
  line-height: 1.75;
}

.feature-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--koho-font);
  font-size: 3.5rem;
  color: var(--feature-back-color);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ── CAROUSEL SECTION ─────────────────────────────────── */
.carousel-section {
  background: var(--white);
  /*padding-bottom: 120px;*/
  padding-bottom: 60px;
}

.carousel-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-swiper {
  width: 100%;
  padding: 20px 4px 50px !important;
  overflow: visible !important;
}

.product-swiper .swiper-wrapper {
  align-items: stretch;
}

/*.product-card {*/
/*  background: var(--black);*/
/*  border-radius: var(--radius);*/
/*  overflow: hidden;*/
/*  height: 380px;*/
/*  position: relative;*/
/*  cursor: pointer;*/
/*  transition: transform var(--transition), box-shadow var(--transition);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

.product-card {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #fff;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);


}



.product-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.product-img-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* hover overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay-btn {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 26px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(10px);
  transition: transform var(--transition), background var(--transition);
}

.product-card:hover .product-overlay-btn {
  transform: translateY(0);
}

.product-overlay-btn:hover {
  background: var(--yellow-hot);
}

.product-info {
  padding: 20px 22px;
  background: var(--black);
  position: relative;
  z-index: 3;
  border-top: 2px solid var(--yellow);
}

.product-name {
  font-family: var(--koho-font);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.8rem;
  color: rgba(250, 250, 250, 0.5);
}

/* Carousel navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  color: var(--black);
}

.carousel-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.product-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.product-swiper .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

/* ── TRUSTED SECTION ──────────────────────────────────── */
.trusted {
  background: #f5f5f5;
  position: relative;
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trusted-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.trusted-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.trusted-img-wrap:hover img {
  transform: scale(1.04);
}

.trusted-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--yellow);
  color: var(--black);
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(245, 196, 0, 0.4);
}

.trusted-badge-num {
  font-family: var(--koho-font);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.trusted-badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.trusted-header {
  text-align: center;
  margin-bottom: 60px;
}

.trusted-header .section-sub {
  max-width: 600px;
  margin: 0 auto;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-item {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 3px solid transparent;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-left-color: var(--yellow);
}

.service-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.service-desc {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body {
  font-size: 0.88rem;
  color: #444;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-text {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullet {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: #555;
}

.service-bullet-icon {
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}

.service-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.service-link:hover {
  opacity: 0.8;
}

/* ── TESTIMONIAL SECTION ──────────────────────────────── */
.testimonials {
  background: var(--black);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-swiper {
  padding: 10px 4px 50px !important;
}

.testimonial-card {
  background: var(--black-soft);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  border-top: 3px solid var(--yellow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.quote-mark {
  font-family: var(--koho-font);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(250, 250, 250, 0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.author-role {
  font-size: 0.78rem;
  color: rgba(250, 250, 250, 0.45);
  margin-top: 2px;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: rgba(250, 250, 250, 0.3);
  opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--black-mid);
  color: var(--black);
  text-align: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 30px,
      rgba(0, 0, 0, 0.03) 30px,
      rgba(0, 0, 0, 0.03) 31px);
  pointer-events: none;
}

.cta-title {
  color: var(--white);
  font-family: var(--koho-font);
  font-size: clamp(2.5rem, 6vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.cta-sub {
  font-size: 1.05rem;
  max-width: 420px;
  margin: 0 auto 40px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost-dark:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* ─── CONTACT ───────────────────────────────────────── */
#contact {
  padding: 7rem 60px;
  background:
    radial-gradient(circle at top left, rgba(251, 186, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #121212 0%, #080808 100%);
  color: var(--white);
}

#contact .container {
  max-width: 1240px;
  margin: 0 auto;
}

#contact .section-title,
#contact .section-sub {
  color: var(--white);
}

.section-label {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.divider-gold {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: 1rem;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.w-100 {
  width: 100%;
}

.py-3 {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: stretch;
}

.contact-panel,
.contact-form-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.contact-panel::before,
.contact-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(251, 186, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-panel-intro {
  margin-bottom: 1.8rem;
}

.contact-kicker {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.contact-panel-title {
  font-family: var(--koho-font);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  color: var(--white);
}

.contact-panel-copy {
  color: rgba(250, 250, 250, 0.72);
  line-height: 1.8;
  font-size: 0.96rem;
  max-width: 34rem;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 186, 0, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border: 1px solid rgba(251, 186, 0, 0.38);
  color: var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: rgba(251, 186, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.contact-info-item h6 {
  color: var(--yellow);
  font-family: var(--koho-font);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .32rem;
}

.contact-info-item p {
  color: rgba(255, 255, 255, .76);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
  min-height: 280px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.contact-form-wrap {
  padding: 2.2rem;
}

.contact-form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form-title {
  font-family: var(--koho-font);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.contact-form-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 32rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: rgba(251, 186, 0, 0.1);
  border: 1px solid rgba(251, 186, 0, 0.22);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.8);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  border-radius: 14px;
  padding: .92rem 1rem;
  font-size: .94rem;
  font-family: var(--koho-font);
  transition: border-color .3s, box-shadow .3s, background .3s;
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.75) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}

.form-control:focus {
  border-color: rgba(251, 186, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(251, 186, 0, 0.14);
  background: rgb(32 30 30 / 73%);


}

.form-control::placeholder {
  color: rgba(255, 255, 255, .34);
}

.form-control.is-invalid {
  border-color: #ff7b72;
  box-shadow: 0 0 0 3px rgba(255, 123, 114, 0.14);
}

.field-error {
  margin-top: 0.45rem;
  color: #ffb4ad;
  font-size: 0.82rem;
  line-height: 1.4;
}

.field-note {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.46);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 32px rgba(251, 186, 0, 0.22);
}

.contact-submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.btn-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.btn-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(10, 10, 10, 0.25);
  border-top-color: var(--black);
  border-radius: 50%;
  display: none;
  animation: spin 0.75s linear infinite;
}

.contact-submit.is-loading .btn-spinner {
  display: inline-block;
}

.contact-submit.is-loading .btn-send-icon {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  display: none;
  margin-top: 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(52, 168, 83, 0.12);
  color: #d6f5de;
  border-color: rgba(52, 168, 83, 0.35);
}

.form-status.error {
  background: rgba(255, 123, 114, 0.12);
  color: #ffd7d3;
  border-color: rgba(255, 123, 114, 0.35);
}

.contact-footnote {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(250, 250, 250, 0.5);
  padding: 70px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--koho-font);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.footer-brand-name span {
  color: var(--yellow);
}

.footer-brand-name img {
  width: 160px;
  /* adjust as needed */
  height: auto;
  display: block;
  margin-bottom: 10px;
}


.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(250, 250, 250, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 250, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(250, 250, 250, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── SCROLL INDICATOR ────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(250, 250, 250, 0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--yellow);
  border-radius: 99px;
  animation: scrollAnim 1.8s ease infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav {
    padding: 18px 36px;
  }

  nav.scrolled {
    padding: 12px 36px;
  }

  section {
    padding: 80px 36px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 28px;
    padding: 20px 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
  }

  nav.scrolled {
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li,
  .nav-links a,
  .nav-cta {
    width: 100%;
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 70px 24px;
  }

  .hero-swiper {
    min-height: auto;
    height: 100svh;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .trusted-services {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline,
  .btn-dark,
  .btn-ghost-dark {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    bottom: 18%;
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .hero-sub {
    max-width: none;
  }

  .hero-stats {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 16px 18px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 12px;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev,
  .scroll-indicator {
    display: none;
  }

  .trusted-badge {
    left: 16px;
    bottom: 16px;
  }

  #contact {
    padding: 70px 24px;
  }

  .contact-form-head {
    flex-direction: column;
  }

  .contact-badge {
    white-space: normal;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-section {
    padding: 70px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 16px 18px;
  }

  nav.scrolled {
    padding: 12px 18px;
  }

  section,
  .cta-section,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    left: 18px;
    right: 18px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 140px;
  }

  .hero-stats {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 12px;
  }

  .stat {
    min-width: 110px;
  }

  #contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-panel,
  .contact-form-wrap {
    padding: 1.3rem;
    border-radius: 18px;
  }

  .contact-panel-title,
  .contact-form-title {
    font-size: 1.2rem;
  }

  .trusted-badge {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }
}

/*accordion FAQ*/
.faq-section {
  background: #0a0a0a;
  padding: 5rem 2rem;
  font-family: var(--koho-fant)
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto
}

.faq-tag {
  display: inline-block;
  background: #f5c800;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 1.5rem
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #f5c800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.faq-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #f5c800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.7
}

.faq-para {
  font-size: 16px;
  color: #c8c8b8;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 3.5rem
}

.faq-para strong {
  color: #f5c800;
  font-weight: 500
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.acc-item {
  background: #111111;
  border: 0.5px solid #2a2a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s
}

.acc-item:hover {
  border-color: #f5c800
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s
}

.acc-btn:hover {
  background: #1a1a08
}

.acc-btn:hover .acc-icon {
  background: #f5c800;
  color: #0a0a0a
}

.acc-question {
  font-size: 15px;
  font-weight: 500;
  color: #e8e8d8;
  line-height: 1.4;
  transition: color 0.2s
}

.acc-btn:hover .acc-question {
  color: #f5c800
}

.acc-item.open .acc-question {
  color: #f5c800
}

.acc-item.open .acc-btn {
  background: #1a1a08
}

.acc-item.open {
  border-color: #f5c800
}

.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #3a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: #888870;
  transition: all 0.25s;
  line-height: 1
}

.acc-item.open .acc-icon {
  background: #f5c800;
  color: #0a0a0a;
  border-color: #f5c800;
  transform: rotate(45deg)
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1)
}

.acc-body.open {
  max-height: 400px
}

.acc-content {
  padding: 0 1.5rem 1.4rem;
  font-size: 15px;
  color: #a8a899;
  line-height: 1.75;
  border-top: 0.5px solid #222215
}

.acc-content strong {
  color: #f5c800;
  font-weight: 500
}

.faq-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid #2a2a1a;
  font-size: 14px;
  color: #666655;
  font-style: italic;
  letter-spacing: 0.04em
}

.faq-footer span {
  color: #f5c800;
  font-style: normal;
  font-weight: 500
}

/*Faq end*/

/*About us*/
.about-wrap {
  background: #0a0a0a;
  padding: 5rem 2rem;
  font-family: var(--koho-font)
}

.about-inner {
  max-width: 90%;
  margin: 0 auto
}

.section-tag {
  display: inline-block;
  background: #f5c800;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 1.5rem
}

.section-sub {
  font-size: 15px;
  color: #888870;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 3.5rem
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0
}

.t-item {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 0;
  align-items: stretch
}

.t-year-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1.5rem;
  padding-top: 1.6rem
}

.t-year {
  font-size: 25px;
  font-weight: 500;
  color: #f5c800;
  letter-spacing: 0.06em;
  white-space: nowrap
}

.t-line-col {
  display: flex;
  flex-direction: column;
  align-items: center
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5c800;
  border: 2px solid #0a0a0a;
  flex-shrink: 0;
  margin-top: 1.8rem;
  transition: transform 0.25s
}

.t-vert {
  flex: 1;
  width: 1px;
  background: #2a2a1a;
  margin-top: 0
}

.t-item:last-child .t-vert {
  background: transparent
}

.t-card-col {
  padding: 0 0 2.5rem 1.5rem
}

.t-card {
  background: #111111;
  border: 0.5px solid #2a2a1a;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s, background 0.3s;
  cursor: default
}

.t-card:hover {
  border-color: #f5c800;
  background: #141408
}

.t-card:hover .t-card-icon {
  color: #f5c800
}

.t-item:hover .t-dot {
  transform: scale(1.5)
}

.t-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem
}

.t-card-titles {
  flex: 1
}

.t-card-name {
  font-size: 17px;
  font-weight: 500;
  color: #f5c800;
  margin-bottom: 3px
}

.t-card-tagline {
  font-size: 12px;
  color: #666655;
  letter-spacing: 0.07em;
  text-transform: uppercase
}

.t-badge {
  background: #1e1e00;
  border: 0.5px solid #3a3a00;
  color: #c8a800;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.05em
}

.t-card-body {
  font-size: 14px;
  color: #a8a899;
  line-height: 1.75
}

.t-card-body strong {
  color: #d4b800;
  font-weight: 500
}

.t-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem
}

.pill {
  background: #1a1a08;
  border: 0.5px solid #333318;
  color: #888860;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em
}

/*About us*/

.footer-contact {
  margin: 15px 0;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
}

.footer-contact i {
  color: var(--yellow);
  font-size: 16px;
}

.testimonials {
  background-color: #000;
  padding: 80px 20px;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Image */
.testimonial-image {
  flex: 1;
  text-align: center;
}

.testimonial-image img {
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}

/* Right Content */
.testimonial-content {
  flex: 3;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title em {
  color: #f5c542;
  /* yellow */
  font-style: normal;
}

.testimonial-content p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f5c542;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }
}





/* video */
.video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  /* 👈 FULL WINDOW HEIGHT */
  overflow: hidden;
  background: #0a0a0a;
}

/* Video fills entire screen */
.video-bg-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  /* 👈 full width */
  height: 100vh;
  /* 👈 full height */
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark overlay */
.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Center content */
.video-bg-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* video */
