
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&family=Rajdhani:wght@700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #050505;
  color: #eaeaea;
}

a{
  text-decoration: none;
}

/* ================= HEADER ================= */
.epic-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  z-index: 1000;
  overflow: hidden;
}

.header-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(245, 166, 35, 0.15),
      transparent 70%);
  animation: glowMove 7s linear infinite;
}

@keyframes glowMove {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.header-inner {
  max-width: 1400px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 72px;
  /* increased */
  filter: drop-shadow(0 0 14px rgba(245, 166, 35, 0.7));
}

.brand-text {
  display: flex;
  gap: 4px;
  font-size: 22px;
  /* increased */
  font-weight: 800;
  letter-spacing: 2px;
}

.brand-text .yamraj {
  color: #eaeaea;
  /* smoky white */
}

.brand-text .ff {
  color: #f5a623;
}

/* NAV */
.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  position: relative;
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f5a623, #ff8c00);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: #f5a623;
}

.nav-links a:hover::after {
  width: 100%;
}


.nav-links a {
  position: relative;
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f5a623, #ff8c00);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: #f5a623;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  animation: activeLine 0.5s ease forwards;
}

@keyframes activeLine {
  from { width: 0%; }
  to { width: 100%; }
}

/* CTA */
.cta-btn {
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f5a623, #ff8c00);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.45);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(245, 166, 35, 0.75);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f5a623;
  transition: 0.4s;
}

/* ================= MOBILE MENU (LEFT SLIDE) ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, #0b0b0b, #050505);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mobile-brand img {
  height: 94px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.6));
}

.mobile-brand-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}

.mobile-brand-text .yamraj {
  color: #eaeaea;
}

.mobile-brand-text .ff {
  color: #f5a623;
}

.mobile-tagline {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
}

/* CLOSE BUTTON */
.close-btn {
  background: none;
  border: none;
  color: #f5a623;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

/* LINKS */
.mobile-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-links a {
  font-size: 18px;
  color: #ddd;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
}

.mobile-links a:hover {
  color: #f5a623;
}

/* CTA */
.mobile-cta {
  margin-top: auto;
  padding: 14px;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(135deg, #f5a623, #ff8c00);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .nav-links,
  .desktop-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-text {
    font-size: 20px;
  }

  .brand img {
    height: 68px;
  }
}


/* Breadcrumb Section */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Rajdhani:wght@700;900&display=swap');

:root {
    --gold: #f5a623;
    --gold-dark: #b37400;
    --dark-bg: #050505;
}

.yamraj-breadcrumb-premium {
    background: var(--dark-bg);
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
    margin-top: 90px;
}

/* 1. Cyber Mesh Background */
.cyber-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 166, 35, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.4;
    transform: perspective(1000px) rotateX(20deg);
}

/* 2. Watermark */
.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    letter-spacing: 20px;
    z-index: 1;
    pointer-events: none;
}

.breadcrumb-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* 3. 3D GOLD TEXT */
.text-3d-gold {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    /* Layered 3D shadows */
    text-shadow: 
        1px 1px 0px var(--gold-dark),
        2px 2px 0px var(--gold-dark),
        3px 3px 0px var(--gold-dark),
        0 10px 20px rgba(0,0,0,0.5);
}

.b-accent-line {
    width: 50px;
    height: 4px;
    background: var(--gold);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px var(--gold);
}

.b-left p {
    color: #999;
    font-size: 1.05rem;
    max-width: 450px;
}

/* 4. GLASSMOPHIC BREADCRUMB PILL */
.breadcrumb-pill {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.breadcrumb-pill a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.breadcrumb-pill a:hover {
    color: #fff;
}

.sep {
    color: #444;
    font-size: 10px;
}

.current {
    color: #eee;
    font-weight: 600;
    font-size: 14px;
}

/* Bottom Glow line */
.yamraj-breadcrumb-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 850px) {
    .breadcrumb-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .b-accent-line { margin: 0 auto 15px auto; }
    .b-left p { margin: 0 auto; }
    .watermark-text { font-size: 15vw; }
}




/* Hero Section */

:root {
  --primary-gold: #f5a623;
  --dark-bg: #050505;
  --glass: rgba(255, 255, 255, 0.03);
}

.hero-final {
  position: relative;
  min-height: 100vh;
  background-color: var(--dark-bg);
  /* PREVENTS HEADER OVERLAP: Adjust 80px to your actual header height */
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* The "Yamraj" background text from your image - Better Managed */
.big-watermark {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.hero-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Typography & Layout */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.gold-line {
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
}

.badge-text {
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.hero-main-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 950;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.glow-text {
  color: var(--primary-gold);
  text-shadow: 0 0 25px rgba(245, 166, 35, 0.5);
}

.hero-subtext {
  color: #999;
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Stat Cards - Clean & Responsive */
.hero-stats-container {
  display: flex;
  gap: 15px;
  margin-bottom: 3rem;
}

.new-stat-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: 0.3s ease;
}

.new-stat-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}

.new-stat-card .val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.new-stat-card .lbl {
  font-size: 0.7rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-glow {
  padding: 18px 45px;
  background: var(--primary-gold);
  color: #000;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.btn-outline {
  padding: 18px 45px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
}

/* Character Side */
.hero-graphic-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-char {
  width: 100%;
  max-width: 600px;
  z-index: 5;

  /* Cinematic + Insta-grade enhancement */
  filter:
    brightness(1.08)
    contrast(1.45)
    saturate(1.15)
    drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 35px rgba(245, 166, 35, 0.25));

  animation: float-char 6s ease-in-out infinite;
}

.hero-char {
  position: relative;
}

.hero-char::after {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(
    circle,
    rgba(245,166,35,0.18),
    transparent 70%
  );
  z-index: -1;
}


@keyframes float-char {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

/* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .hero-text-side {
    order: 2;
    text-align: center;
  }

  .hero-badge,
  .hero-subtext,
  .hero-btns {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-graphic-side {
    order: 1;
    justify-content: center;
  }

  .hero-char {
    max-width: 350px;
  }

  .big-watermark {
    font-size: 35vw;
    bottom: 20%;
  }
}

@media (max-width: 600px) {
  .hero-stats-container {
    flex-direction: column;
  }

  .hero-btns {
    flex-direction: column;
  }
}

/* Product Card Section */

:root {
  --gold: #f5a623;
  --dark-card: #0f0f0f;
  --border: rgba(245, 166, 35, 0.2);
}

:root {
  --primary-gold: #f5a623;
  --bg-black: #050505;
  --card-grey: #121212;
  --font-main: 'Inter', sans-serif;
  --font-gaming: 'Orbitron', sans-serif;
}

.shop-section {
  background: var(--bg-black);
  padding: 100px 0;
  font-family: var(--font-main);
}

.shop-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER NAVIGATION ON RIGHT */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.header-left h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.header-left span {
  color: var(--gold);
}

.elite-label {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.header-right {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #f5a623;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--gold);
  color: rgb(255, 255, 255);
  border-color: var(--gold);
}

/* Slider Layout */
.shop-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.shop-slider::-webkit-scrollbar {
  display: none;
}

/* The Premium Card */
.premium-card {
  flex: 0 0 calc(25% - 18px);
  /* Exactly 4 cards */
  min-width: 320px;
  background: var(--card-grey);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

.premium-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Media/Image Styling */
.card-media {
  height: auto;
  max-height: 300px;
  background: #000;
  position: relative;
  margin: 12px;
  border-radius: 20px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  transition: 0.6s ease;
}

.premium-card:hover .card-media img {
  transform: scale(1.08);
}

.status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #25d366;
  /* Green for verified */
  font-size: 10px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  z-index: 5;
}

/* Hover Icons Stack */
.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.3s;
}

.premium-card:hover .media-overlay {
  opacity: 1;
}

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(20px);
  transition: 0.4s;
}

.premium-card:hover .action-stack {
  transform: translateX(0);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}

.icon-btn:hover {
  background: var(--primary-gold);
  color: #fff;
}

/* Content Styling */
.card-content {
  padding: 0 24px 24px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-lvl {
  color: var(--primary-gold);
  font-weight: 900;
  font-size: 14px;
}

.card-likes {
  color: #666;
  font-size: 13px;
}

.card-tags {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 20px 0;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-price {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.buy-now-btn {
  background: transparent;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.buy-now-btn:hover {
  background: var(--primary-gold);
  color: #000;
}

/* ===== VIEW ALL ACCOUNTS BUTTON ===== */
.view-all-wrap {
  margin-top: 50px;
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #f5a623;
  border: 1.5px solid rgba(245, 166, 35, 0.45);
  background: transparent;
  transition: all 0.3s ease;
}

.view-all-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #f5a623, #ff8c00);
  color: #000;
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.4);
}

.view-all-btn:hover i {
  transform: translateX(4px);
}

/* Mobile safety */
@media (max-width: 600px) {
  .view-all-btn {
    width: 100%;
    justify-content: center;
  }
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .premium-card {
    flex: 0 0 calc(33.33% - 20px);
  }
}

@media (max-width: 900px) {
  .premium-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .premium-card {
    flex: 0 0 950%;
    max-width: 100%;
  }

  .section-title {
    font-size: 2.2rem;
  }
  .header-left h2 { font-size: 2.7rem;}
  .shop-container { padding: 0 20px;}
}

/* Why Choose Us */

:root {
  --gold: #f5a623;
  --gold-glow: rgba(245, 166, 35, 0.4);
  --bg-dark: #050505;
}

.cyber-why-us {
  background: var(--bg-dark);
  padding: 120px 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.cyber-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.cyber-header {
  text-align: center;
  margin-bottom: 100px;
}

.status-blink {
  color: #25d366;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.status-blink i {
  font-size: 8px;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.cyber-title {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
}

.cyber-title span {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

/* Dashboard Layout */
.cyber-dashboard {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CENTRAL CORE ANIMATION */
.cyber-core {
  position: relative;
  width: 200px;
  z-index: 10;
}

.core-logo img {
  width: 100%;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}

.core-outer-ring,
.core-inner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0.15;
}

.core-outer-ring {
  width: 450px;
  height: 450px;
  animation: rotate 30s linear infinite;
}

.core-inner-ring {
  width: 300px;
  height: 300px;
  animation: rotate 15s linear reverse infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* NODES STYLING */
.cyber-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 370px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 20px;
  box-shadow: 0 0 15px var(--gold-glow);
}

@media (min-width: 1200px) {
  .node-info{
    max-width: 260px;
  }
}


.node-info h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 800;
}

.node-info p {
  color: #888;
  font-size: 12px;
  line-height: 1.4;
}

/* POSITIONING 6 NODES (Desktop) */
.n1 {
  top: 0%;
  left: 5%;
}

.n2 {
  top: 40%;
  left: 0%;
}

.n3 {
  bottom: 0%;
  left: 5%;
}

.n4 {
  top: 0%;
  right: 5%;
  text-align: right;
}

.n5 {
  top: 40%;
  right: 0%;
  text-align: right;
}

.n6 {
  bottom: 0%;
  right: 5%;
  text-align: right;
}

.cyber-node:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--gold);
  transform: scale(1.05);
}

/* ... keep your existing desktop CSS above ... */

/* UPDATED MOBILE RESPONSIVE DASHBOARD */
@media (max-width: 1100px) {
  .cyber-dashboard {
    height: auto;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .cyber-core {
    margin-bottom: 50px;
    order: -1;
    /* Keeps logo at the top on mobile */
  }

  /* Reset rings for cleaner mobile look */
  .core-outer-ring,
  .core-inner-ring {
    display: none;
  }

  .cyber-node {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;

    /* FIX: Force all nodes to follow the same left-aligned icon layout */
    display: flex !important;
    flex-direction: row !important;
    text-align: left !important;
    padding: 15px 20px;
  }

  /* Force icon to always be on the left for nodes 4, 5, and 6 */
  .n4,
  .n5,
  .n6 {
    flex-direction: row !important;
  }

  /* Ensure the icon always comes BEFORE the text in the DOM flow */
  .cyber-node .node-icon {
    order: 1;
    /* Icon first */
    min-width: 50px;
    /* Prevents icon from shrinking */
  }

  .cyber-node .node-info {
    order: 2;
    /* Text second */
  }

  .cyber-header {
    margin-bottom: 0px;
  }

  .shop-section {
    padding: 80px 0 40px;
  }

  .cyber-why-us {
    background: var(--bg-dark);
    padding: 60px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }

  .op-split-testimonials {
    background: var(--dark-bg);
    padding: 40px 0;
}
.yamraj-epic-deals {
    padding: 60px 20px;
}
}

@media (max-width: 600px) {
  .cyber-title {
    font-size: 2rem;
  }

  .node-info h4 {
    font-size: 14px;
  }

  .node-info p {
    font-size: 11px;
  }
}


/* Premium Membership */

:root {
  --gold: #f5a623;
  --gold-glow: rgba(245, 166, 35, 0.5);
  --dark: #050505;
  --card-bg: #0f0f0f;
}

.membership-section {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.membership-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
}

.membership-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.membership-header {
  text-align: center;
  margin-bottom: 70px;
}

.header-tag {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 12px;
}

.membership-header h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
  margin-top: 10px;
}

.membership-header span {
  color: var(--gold);
}

/* GRID DESIGN */
.membership-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* BASE CARD */
.member-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

.card-top {
  text-align: center;
  margin-bottom: 30px;
}

.icon-main {
  font-size: 3rem;
  color: #666;
  margin-bottom: 20px;
}

.member-card h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
}

.member-sub {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LIST ITEMS */
.perks-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.perks-list li {
  color: #ccc;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.perks-list li i {
  font-size: 14px;
}

/* NORMAL CARD SPECIFICS */
.tier-normal .perks-list li i {
  color: #555;
}

.tier-btn-outline {
  display: block;
  text-align: center;
  padding: 15px;
  border: 1px solid #333;
  color: #888;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
}

/* PREMIUM CARD (GOD TIER) */
.tier-premium {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
}

.tier-premium .icon-main {
  color: var(--gold);
  filter: drop-shadow(0 0 10px var(--gold));
}

.tier-premium .perks-list li i {
  color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 10px;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.price-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.price-val {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.price-dur {
  color: #888;
  font-weight: 600;
}

.free {
  font-size: 2.5rem;
  font-weight: 900;
  color: #444;
}

.join-premium-btn {
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--gold);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 30px var(--gold-glow);
  transition: 0.3s;
}

.join-premium-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gold);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .tier-premium {
    transform: scale(1);
    margin-top: 30px;
  }

  .membership-section {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .membership-header h2 {
    font-size: 2.2rem;
  }

  .member-card {
    padding: 40px 25px;
  }
}


/* Testimonail Section */

:root {
  --gold: #f5a623;
  --gold-glow: rgba(245, 166, 35, 0.6);
  --dark-bg: #050505;
  --tech-blue: #00d2ff;
  /* Added a secondary tech color for contrast */
}

.op-split-testimonials {
  background: var(--dark-bg);
  padding: 100px 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  position: relative;
}

/* Subtle background grid */
.op-split-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245, 166, 35, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 166, 35, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.op-container-split {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  /* PC Layout: 40% Text, 60% Images */
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;700&display=swap');

.testimonial-left-premium {
  background: #0d0d0f;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* Verification Badge */
.verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.left-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  color: #f5a623;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.left-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.left-title .glow-text {
  color: #f5a623;
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.left-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Featured Points */
.left-points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.left-points li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #e2e8f0;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: rgba(245, 166, 35, 0.1);
  color: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 21px;
}

/* Call to Action Button */
.left-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #f5a623;
  color: #000;
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.2);
}

.left-cta:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.left-cta i {
  transition: transform 0.3s ease;
}

.left-cta:hover i {
  transform: translateX(5px);
}

/* === RIGHT SIDE: CAROUSEL ZONE === */
.carousel-zone {
  position: relative;
}

.carousel-viewport-split {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  /* Space for hover effects */
}

.carousel-track-split {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  gap: 20px;
}

/* HOLOGRAPHIC CARD STYLING */
.holo-card {
  /* PC: Show 3 items (33.33% minus gap adjustment) */
  flex: 0 0 calc(33.333% - 14px);
  aspect-ratio: 9/16;
  position: relative;
}

.phone-hud {
  width: 100%;
  height: 100%;
  background: #000;
  border: 3px solid rgba(245, 166, 35, 0.3);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}

.holo-card:hover .phone-hud {
  border-color: var(--gold);
  /* box-shadow: 0 0 40px var(--gold-glow); */
  transform: translateY(-10px) scale(1.02);
}

.phone-hud img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: 0.4s;
}

.holo-card:hover img {
  filter: brightness(1);
}

.hud-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, var(--gold), transparent);
  color: #000;
  font-weight: 900;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.holo-card:hover .hud-overlay {
  opacity: 1;
}

/* NAVIGATION ARROWS */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  font-size: 18px;
}

.nav-arrow:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px var(--gold);
}

.prev-arrow {
  left: -25px;
}

.next-arrow {
  right: -25px;
}

/* === MOBILE RESPONSIVE (STACKED LAYOUT) === */
@media (max-width: 1024px) {
  .op-container-split {
    grid-template-columns: 1fr;
    /* Stack them */
    gap: 50px;
  }

  .text-terminal {
    padding-right: 0;
    text-align: center;
  }

  .op-description {
    margin: 0 auto 40px auto;
  }

  .cyber-stat-block {
    max-width: 400px;
    margin: 0 auto 40px auto;
  }

  /* MOBILE: Show 2 items (50% minus gap adjustment) */
  .holo-card {
    flex: 0 0 calc(50% - 10px);
  }

  /* Adjust arrows for mobile */
  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }
}

@media (max-width: 768) {

  .testimonial-left-premium {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .op-heading {
    font-size: 2.8rem;
  }

  .stat-number {
    font-size: 3rem;
  }
}


/* Contact Section */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Rajdhani:wght@700&display=swap');

:root {
    --y-gold: #f5a623;
    --y-dark: #080808;
    --y-card: #121212;
}

.yamraj-final-contact {
    background: var(--y-dark);
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.luxury-container { max-width: 1200px; margin: 0 auto; }

/* 3D HEADER */
.title-3d {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-align: center;
    color: var(--y-gold);
    text-shadow: 
        0 1px 0 #b37400, 0 2px 0 #996300, 0 3px 0 #805200,
        0 10px 20px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.section-header-3d p { text-align: center; color: #666; margin-bottom: 60px; font-weight: 600; letter-spacing: 1px; }

.contact-grid-3d {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

/* 3D FORM CARD */
.form-container-3d {
    background: var(--y-card);
    padding: 45px;
    border-radius: 30px;
    border: 1px solid rgba(245, 166, 35, 0.1);
    box-shadow: 20px 20px 60px #000;
}

.input-row-3d { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-3d { margin-bottom: 22px; }
.field-3d label { display: block; font-size: 0.8rem; color: #888; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }

.field-3d input, .field-3d select, .field-3d textarea {
    width: 100%; background: #1a1a1a; border: 1px solid #252525;
    padding: 14px 20px; border-radius: 12px; color: #fff;
    outline: none; transition: 0.3s; font-family: inherit;
}

.field-3d input:focus, .field-3d select:focus { border-color: var(--y-gold); box-shadow: 0 0 15px rgba(245, 166, 35, 0.2); }

/* 3D GOLD BUTTON */
.yamraj-btn-gold {
    width: 100%; background: var(--y-gold); color: #000;
    padding: 18px; border-radius: 12px; border: none;
    font-weight: 800; font-size: 1.1rem; cursor: pointer;
    box-shadow: 0 8px 0 #b37400, 0 15px 25px rgba(0,0,0,0.4);
    transition: 0.2s; margin-top: 10px;
}

.yamraj-btn-gold:active { transform: translateY(4px); box-shadow: 0 4px 0 #b37400; }

/* INFO CARDS (RIGHT SIDE) */
.mini-card-3d {
    display: flex; align-items: center; gap: 20px;
    background: var(--y-card); padding: 20px;
    border-radius: 20px; margin-bottom: 15px;
    box-shadow: 10px 10px 25px #000; border: 1px solid rgba(255,255,255,0.02);
}

.icon-3d {
    width: 55px; height: 55px; background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    border-radius: 15px; color: var(--y-gold); font-size: 1.4rem;
    box-shadow: 4px 4px 10px #000, inset 2px 2px 5px rgba(255,255,255,0.05);
}

.card-meta span { display: block; font-size: 0.75rem; color: #666; font-weight: 700; }
.card-meta strong { font-size: 1.1rem; color: #ddd; }

/* MAP CARD */
.map-card-3d {
    height: 200px; border-radius: 20px; overflow: hidden;
    margin: 20px 0; border: 4px solid var(--y-card);
    box-shadow: 10px 10px 30px #000; position: relative;
}

.map-tag { position: absolute; top: 10px; left: 10px; background: var(--y-gold); color: #000; padding: 2px 10px; border-radius: 4px; font-size: 10px; font-weight: 800; z-index: 5; }

.map-card-3d iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(0.9) contrast(1.2); }

/* SOCIAL ORBS */
.social-box-3d { display: flex; gap: 15px; justify-content: flex-start; }
.s-3d {
    width: 50px; height: 50px; background: var(--y-card);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; text-decoration: none; font-size: 1.3rem;
    box-shadow: 5px 5px 15px #000; transition: 0.3s;
}

.s-3d:hover { color: var(--y-gold); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(245, 166, 35, 0.2); }

/* MOBILE */
@media (max-width: 992px) {
    .contact-grid-3d { grid-template-columns: 1fr; }
    .input-row-3d { grid-template-columns: 1fr; }
    .title-3d { font-size: 3rem; }
}


/* Footer Section */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Rajdhani:wght@700;800&display=swap');

:root {
    --f-gold: #f5a623;
    --f-dark: #080809; /* Deepest black */
    --f-card: #111114; /* Slightly lighter for contrast */
    --f-text: #a0a0a0; /* Soft gray text */
    --f-text-light: #ffffff;
}

.yamraj-footer-premium {
    background-color: var(--f-dark);
    color: var(--f-text);
    font-family: 'Poppins', sans-serif;
    position: relative;
    border-top: 3px solid var(--f-gold); /* Gold top border line */
    overflow: hidden;
}

/* Subtle tech pattern overlay */
.footer-bg-overlay {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.03) 0%, transparent 20%),
                      radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Custom column widths */
    gap: 40px;
    position: relative; z-index: 2;
}

/* FOOTER COLUMNS SHARED STYLES */
.footer-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--f-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
}

/* Little gold underline under headings */
.footer-heading::after {
    content: ''; position: absolute; bottom: -8px; left: 0;
    width: 40px; height: 3px; background: var(--f-gold);
}

/* BRAND COLUMN (Col 1) */
.footer-logo {
    max-width: 150px; /* Adjust based on your actual logo size */
    margin-bottom: 20px;
    display: block;
}

.brand-desc {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-trust-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--f-gold); font-weight: 700; font-size: 0.8rem;
    padding: 8px 15px; border-radius: 50px; border: 1px solid rgba(245, 166, 35, 0.2);
}

/* LINKS COLUMNS (Col 2 & 3) */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    text-decoration: none; color: var(--f-text);
    font-size: 0.95rem; font-weight: 500;
    transition: all 0.3s ease; display: inline-block;
}

/* Interactive Hover Effect */
.footer-links a:hover {
    color: var(--f-gold);
    transform: translateX(8px); /* Moves right on hover */
}
.footer-links a::before {
    content: '›'; opacity: 0; margin-right: 5px; transition: 0.3s; color: var(--f-gold);
}
.footer-links a:hover::before { opacity: 1; }

/* CONTACT COLUMN (Col 4) */
.footer-contact-info { list-style: none; padding: 0; margin-bottom: 30px; }
.footer-contact-info li {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 18px; color: var(--f-text-light); font-size: 0.95rem;
}
.icon-gold { color: var(--f-gold); font-size: 1.1rem; width: 20px; text-align: center; }

/* Social Buttons */
.footer-socials-row { display: flex; gap: 12px; }
.f-social-btn {
    width: 45px; height: 45px;
    background: var(--f-card);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; color: var(--f-text-light);
    font-size: 1.2rem; text-decoration: none;
    transition: 0.3s; border: 1px solid rgba(255,255,255,0.05);
}
.f-social-btn:hover { background: var(--f-gold); color: #000; transform: translateY(-5px); box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3); }

/* BOTTOM BAR */
.footer-bottom-bar {
    background: #040405; /* Even darker black */
    padding: 25px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.fb-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.9rem;
}

.fb-container a{ color: #fff;}

.gold-text { color: var(--f-gold); }
.designer-tag { opacity: 0.6; font-size: 0.8rem; }

/* ----- RESPONSIVE DESIGN ----- */

/* Tablet View (Stack into 2x2 grid) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 50px 30px; /* Larger vertical gap */
    }
    .brand-col { grid-column: span 2; } /* Brand takes full width on tablet */
}

/* Mobile View (Single column stack) */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column */
        text-align: center;
        padding: 60px 20px 40px;
    }
    .brand-col { grid-column: auto; }
    .footer-logo { margin: 0 auto 20px auto; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); } /* Center the gold underline */
    .footer-links a:hover { transform: none; /* Disable shifting on mobile */ }
    
    .footer-contact-info li { justify-content: center; }
    .footer-socials-row { justify-content: center; }

    .fb-container {
        flex-direction: column-reverse; /* Put designer tag below copyright */
        gap: 15px; text-align: center;
    }
  .form-container-3d { padding: 20px;}
}


@media (max-width: 1100px) {
  .shop-section {
    padding: 80px 0 40px;
  }

  .cyber-why-us {
    background: var(--bg-dark);
    padding: 60px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }

  .op-split-testimonials {
    background: var(--dark-bg);
    padding: 40px 0;
}
.yamraj-epic-deals {
    padding: 60px 20px;
}
.yamraj-final-contact {
    padding: 60px 20px;
}


}

@media (max-width: 768px) {
  .testimonial-left-premium {
    padding: 28px;
}
}



/* Pre Loader */

/* ================= PRELOADER ================= */
#yamraj-preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#yamraj-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  animation: fadeIn 0.8s ease forwards;
}

.pre-logo {
  width: 90px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 25px rgba(245,166,35,0.4));
}

.pre-brand {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pre-brand span {
  color: #fff;
}

.pre-brand .gold {
  color: #f5a623;
  margin-left: 6px;
}

.pre-text {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* Loader Bar */
.loader-bar {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #f5a623, #ff8c00);
  animation: loadingBar 1.2s infinite ease-in-out;
}

/* Animations */
@keyframes loadingBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
