
    /* =========================================================
   LOGO – IMAGE BASED (PREMIUM)
   Clean, scalable, brand-safe
========================================================= */

.logo {
  display: flex;
  align-items: center;
}

/* Clickable logo wrapper */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo image */
.logo-img {
  height: 150px;          /* Desktop size */
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Subtle interaction (optional but premium) */
.logo-link:hover .logo-img {
  transform: translateY(-1px);
  opacity: 0.95;
}
@media (max-width: 768px) {
  .logo-img {
    height: 100px;
  }
}

  /* =========================================================
   HERO SECTION – BASE LAYOUT
   Fullscreen cinematic hero container
========================================================= */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* =========================================================
   HERO BACKGROUND VIDEO
   Fullscreen looping video behind all slides
========================================================= */

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

/* =========================================================
   HERO OVERLAY
   Dark gradient for text readability & premium mood
========================================================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 55%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 1;
}

/* =========================================================
   SWIPER STRUCTURE
   Ensure slides take full hero height
========================================================= */

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

/* =========================================================
   HERO CONTENT CONTAINER
   Controls left alignment & vertical centering
========================================================= */

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
}

/* =========================================================
   HERO TEXT BLOCK
   Vertical stacking with entrance animation
========================================================= */

.hero-text {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideFade 1.2s ease forwards;
  opacity: 0;
}

/* Animate text only when slide becomes active */
.swiper-slide-active .hero-text {
  opacity: 1;
}

/* =========================================================
   DESKTOP TEXT ENTRANCE ANIMATION
========================================================= */

@keyframes slideFade {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* =========================================================
   BRAND / TRUST TAG (TOP LINE)
========================================================= */

.super-tag {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #00ffc3;
  position: relative;
}

/* Decorative line before brand name */
.super-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #00ffc3;
  position: absolute;
  left: -55px;
  top: 50%;
}

/* =========================================================
   HERO HEADLINE
   Large gradient typography with premium feel
========================================================= */

.hero-text h1 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2px;
  background: linear-gradient(90deg, #fff, #a6ffe2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accent word styling */
.hero-text h1 span {
  background: linear-gradient(90deg, #00ffb3, #00cfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   HERO SUBTITLE
========================================================= */

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
}

/* =========================================================
   HERO BUTTON GROUP
========================================================= */

.hero-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

/* =========================================================
   PREMIUM MOBILE HERO STYLES
   Clean, uncluttered, thumb-friendly
========================================================= */

@media (max-width: 768px) {

  /* Mobile-safe viewport height */
  .hero {
    height: 100svh;
  }

  /* Vertical overlay for better contrast */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.78) 10%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.35) 100%
    );
  }

  /* Push content slightly lower for balance */
  .hero-container {
    padding: 0 6%;
    align-items: flex-end;
    padding-bottom: 90px;
  }

  /* Glass-style text panel */
  .hero-text {
    max-width: 520px;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;

    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }

  /* Smaller brand tag */
  .super-tag {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    opacity: 0.9;
  }

  /* Remove decorative line on mobile */
  .super-tag::before {
    display: none;
  }

  /* Mobile headline sizing */
  .hero-text h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -1px;
  }

  /* Mobile subtitle tuning */
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
    margin-top: -2px;
  }

  /* Stack buttons vertically */
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
  }

  /* Premium outline button styling */
  .btn-outline-light {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
  }

  .btn-outline-light:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.25);
  }

  /* Swiper pagination polish */
  .hero .swiper-pagination {
    bottom: 28px !important;
  }

  .hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 0.45;
  }

  .hero .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* =========================================================
   MOBILE VIDEO VISIBILITY BOOST
========================================================= */

@media (max-width: 768px) {
  .hero-bg-video {
    opacity: 0.45;
  }
}

/* =========================================================
   MOBILE TEXT ENTRANCE ANIMATION
   Softer vertical motion
========================================================= */

@keyframes slideFade {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero-text {
    animation: slideFade 0.9s ease forwards;
  }
}

