
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  text-decoration: none;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}


  /* FIXED HERO */
    .video-hero {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: 1;
      overflow: hidden;
    }

    .video-hero video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* OVERLAY CONTENT */
    .hero-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2)); */
    }

    .hero-content {
      /* max-width: 900px; */
    }

    .hero-content h1 {
      font-size: clamp(56px, 8vw, 82px);
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .hero-content h1 span {
      background: linear-gradient(135deg, #b6840f, #ffe38f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-content p {
      margin-top: 20px;
      font-size: 18px;
      color: #ddd;
      line-height: 1.6;
    }

    .hero-buttons {
      margin-top: 35px;
      display: flex;
      gap: 18px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-buttons a {
      padding: 14px 36px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 15px;
      letter-spacing: 1px;
      transition: .35s;
    }

    .btn-primary {
      background: linear-gradient(135deg, #e9bc54, #f7e7b7);
      color: #000;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(198, 163, 79, .45);
    }

    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.7);
      color: #fff;
    }

    .btn-outline:hover {
      background: #c6a34f;
      color: #000;
    }

    /* SECTION-2 */
    .section-2 {
      position: relative;
      z-index: 2;
      /* min-height: 100vh; */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      background: #000; /* To ensure background if needed */
      margin-top: 100vh; /* Push section-2 below the initial viewport */
    }

    .section-2 .container {
      display: flex;
      width: 100%;
      max-width: 1200px;
      gap: 20px;
    }

    .section-2 .left,
    .section-2 .right {
      flex: 1;
    }

    .section-2 .left video {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .section-2 .slider-container {
      position: relative;
      overflow: hidden;
    }

    .section-2 .slides {
      display: flex;
      transition: transform 0.5s ease;
    }

    .section-2 .slide {
      min-width: 100%;
      padding: 20px;
      box-sizing: border-box;
      text-align: left;
    }

    .section-2 .slide h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .section-2 .slide p {
      font-size: 16px;
      color: #ddd;
    }

    .section-2 .dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }

    .section-2 .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: background 0.3s;
    }

    .section-2 .dot.active {
      background: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 38px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .section-2 .container {
        flex-direction: column;
      }
    }

    @media (max-width: 500px) {
      .side-menu {
        width: 100%;
        right: -100%;
      }
    }











    /* SECTION 3 */
.section-3 {
  position: relative;
  z-index: 2;
  padding: 100px 30px;
  background: #000;
  overflow: hidden;
}

.section-3-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
}

.section-3-left,
.section-3-right {
  flex: 1;
}

/* Left - Text */
.section-3-left h2 {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #e9bc54, #f7e7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-3-left p {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 45px;
  max-width: 520px;
}

/* 3D Button */
.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #e9bc54, #f7e7b7);
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(233, 188, 84, 0.25);
}

.btn-3d:hover {
  transform: perspective(800px) rotateX(12deg) rotateY(12deg) translateY(-8px);
  box-shadow: 0 20px 50px rgba(233, 188, 84, 0.45);
}

.btn-3d .btn-3d-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f7e7b7, #e9bc54);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-3d:hover .btn-3d-bg {
  opacity: 1;
}

/* Right - Images */
.section-3-right .image-pair {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.image-wrapper {
  flex: 1;
  max-width: 320px;
  height: 480px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: transform 0.6s ease;
}

.image-wrapper:hover {
  transform: translateY(-12px) scale(1.04);
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2;           /* horizontal format */
}

/* Scroll Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .section-3-container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .section-3-left {
    max-width: 680px;
    margin: 0 auto;
  }

  .section-3-left h2,
  .section-3-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .section-3-left .btn-3d {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-3 {
    padding: 40px;
  }

  .section-3-left h2 {
    font-size: 38px;
  }

  .section-3-left p {
    font-size: 16px;
  }

  .image-pair {
    /* flex-direction: column; */
    /* gap: 32px; */
  }

  .image-wrapper {
    /* max-width: 420px; */
    height: 300px;
    margin: 0 auto;
  }
}












/* SECTION 4 */
.section-4 {
  position: relative;
  z-index: 2;
  padding: 100px 30px;
  background: #000;
}

.section-4-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-4-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #e9bc54, #f7e7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes silverFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(200, 200, 200, 0.18);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 260px;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 100%,
    rgba(120, 80, 220, 0.12),
    rgba(40, 180, 220, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: -1;
}

.value-card:hover::before {
  opacity: 1;
}

/* Galaxy hover effect */
.value-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(180, 140, 255, 0.45) 0%,
    rgba(80, 200, 255, 0.35) 30%,
    transparent 70%
  );
  bottom: -90px;
  right: -90px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.7s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}

.value-card:hover::after {
  opacity: 0.7;
  transform: scale(1.1) translate(20px, -20px);
}

/* Stars (simple pseudo-elements) */
.value-card:hover {
  border-color: rgba(220, 220, 255, 0.45);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.value-card::before {
  background-image: 
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0;
  transition: opacity 1s ease;
}

.value-card:hover::before {
  opacity: 0.12;
}

/* Content */
.number {
  font-size: 60px;
  font-weight: 900;
  color: rgba(200, 200, 220, 0.12);
  line-height: 1;
  position: absolute;
  top: -8px;
  left: 12px;
  pointer-events: none;
}

.value-card h3 {
  font-size: 22px;
  margin: 60px 0 16px;
  color: #e0e0e0;
  font-weight: 700;
}

.value-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #bbbbbb;
}

/* Scroll Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-4 {
    padding: 80px 5% 100px;
  }

  .section-4-title {
    font-size: 42px;
    text-align: center;
  }

  .value-card {
    min-height: 240px;
  }

  .number {
    font-size: 48px;
  }
}












/* ==============================================
   Horizontal Feature Section – Fixed Height
=============================================== */
.horizontal-feature-section {
  position: relative;
  z-index: 2;
  padding: 80px 5%;
  background: #000;
  overflow: hidden;
}

.feature-box {
  max-width: 1400px;
  margin: 0 auto;
  height: 450px;
  max-height: 450px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid transparent;
  background: 
    linear-gradient(#000, #000) padding-box,
    linear-gradient(145deg, #d4a017, #f0d08c, #d4a017) border-box;
  background-origin: border-box;
  display: flex;
  transition: all 0.55s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.feature-box:hover {
  transform: translateY(-14px);
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.7),
    0 0 60px rgba(212,160,23,0.18);
}

/* Left – Text (≈60%) */
.feature-text {
  width: 60%;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #e9c46a, #f4e1b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.feature-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #d5d5d5;
  margin-bottom: 20px;
  max-width: 480px;
}

/* Minimal & cool button */
.minimal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  background: linear-gradient(135deg, #e9c46a, #f4e1b9);
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  overflow: hidden;
  transition: all 0.4s ease;
}

.minimal-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(233,196,106,0.45);
}

.minimal-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.minimal-btn:hover::after {
  transform: translateX(100%);
}

/* Right – Image area (40%, zero padding, image centered) */
.feature-image-container {
  width: 40%;
  height: 100%;
  overflow: hidden;
  /* background: #000; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image {
  width: 350px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}

/* .feature-box:hover .feature-image {
  transform: scale(1.07);
} */

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.3s cubic-bezier(0.22,1,0.36,1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .feature-box {
    flex-direction: column;
    height: auto;
    min-height: 450px;
    max-height: none;
    border-radius: 20px;
  }

  .feature-text,
  .feature-image-container {
    width: 100%;
  }

  .feature-text {
    padding: 20px;
    text-align: left;
  }

  .feature-text p {
    margin: 0 auto 1.2rem;
  }

  .feature-image-container {
    /* height: 380px; */
  }
}

@media (max-width: 680px) {
  .horizontal-feature-section {
    padding: 60px 5% 80px;
  }

  .feature-text {
    padding: 50px 30px;
  }

  .feature-image-container {
    /* height: 320px; */
  }
}

























/* SECTION 5 */
.section-5 {
  position: relative;
  z-index: 2;
  padding: 120px 5% 140px;
  background: #000;
  overflow: hidden;
}

.section-5-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-5-title {
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 900;
  margin-bottom: 90px;
  background: linear-gradient(135deg, #e0e0e0, #a8a8a8, #d4d4d4, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: silverFlow 8s ease infinite;
  text-align: left;
}

@keyframes silverFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Carousel */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  animation: scroll 60s linear infinite;
  width: calc(320px * 20); /* 10 cards + duplicate, with gap */
  padding: 30px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-320px * 10)); }
}

.testimonials-carousel:hover .track {
  animation-play-state: paused;
}

/* Card */
.testimonial-card {
  max-width: 300px;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
  padding: 40px 15px 15px;
  border: 1px solid rgba(200, 200, 200, 0.18);
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 260px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 100%,
    rgba(120, 80, 220, 0.12),
    rgba(40, 180, 220, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: -1;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(180, 140, 255, 0.25) 0%,
    rgba(80, 200, 255, 0.18) 30%,
    transparent 70%
  );
  bottom: -90px;
  right: -90px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.7s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
}

.testimonial-card:hover::after {
  opacity: 0.7;
  transform: scale(1.1) translate(20px, -20px);
}

.testimonial-card::before {
  background-image: 
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0;
  transition: opacity 1s ease;
}

.testimonial-card:hover::before {
  opacity: 0.12;
}

.testimonial-card:hover {
  border-color: rgba(220, 220, 255, 0.45);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Content */
.quote-icon {
  font-size: 90px;
  color: rgba(200, 200, 220, 0.12);
  line-height: 1;
  position: absolute;
  top: -8px;
  left: 12px;
  pointer-events: none;
}

.review {
  font-size: 16px;
  line-height: 1.65;
  color: #bbbbbb;
  margin-bottom: 24px;
}

.author,
.location {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.author i,
.location i {
  color: #c6a34f;
  font-size: 14px;
}

/* Scroll Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .section-5 {
    padding: 80px 5% 100px;
  }

  .section-5-title {
    font-size: 42px;
    text-align: center;
  }

  .track {
    animation-duration: 40s; /* Faster on mobile */
  }

  .testimonial-card {
    min-width: 280px;
    margin-right: 16px;
  }
}