
    /* =========================================================
   LOGO – IMAGE BASED (PREMIUM)
   Clean, scalable, brand-safe
========================================================= */



  /* =========================================================
   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(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  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.317) 10%,
      rgba(0, 0, 0, 0.265) 55%,
      rgba(0, 0, 0, 0.016) 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.199);
    border: 1px solid rgba(24, 23, 23, 0.192);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.073);
  }

  /* 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;
  }
}
/* =========================================
   HERO POSITION PATCH (STYLE PRESERVED)
   Only adjusts alignment/spacing
========================================= */

/* Better full-height behavior across devices */
.hero {
  min-height: 100vh;
  min-height: 100svh;
}

/* Ensure container can truly center vertically */
.hero-container {
  min-height: 100%;
}

/* Tablet: keep left vibe but stop awkward vertical drift */
@media (max-width: 1024px) {
  .hero-container {
    align-items: center;     /* balanced vertical center */
    padding: 0 6%;
  }
}

/* Mobile: center the hero content (no style changes) */
@media (max-width: 768px) {

  /* Override the bottom-pin behavior */
  .hero-container {
    align-items: center !important;   /* replaces flex-end */
    padding-bottom: 0 !important;     /* removes the push-down */
  }

  /* Keep your glass panel look, just place it nicely */
  .hero-text {
    margin: 0 auto;                   /* centers the block */
  }

  /* Keep pagination visible and avoid crowding */
  .hero .swiper-pagination {
    bottom: 18px !important;          /* slightly higher */
  }
}

/* Small phones: keep everything inside viewport neatly */
@media (max-width: 420px) {
  .hero-container {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-text {
    max-width: 520px;                 /* same as your mobile max */
  }
}
@media (max-width: 768px){
  .hero-container{
    align-items: center !important;
    padding-bottom: 0 !important;
    padding-top: 14px;  /* subtle lift */
  }
}
