/* ============================================
   ORVINAL - Main Stylesheet
   https://orvinal.com
   ============================================ */

:root {
  --orv-bg-dark: #060810;
  --orv-bg-mid: #0d1117;
  --orv-bg-card: #111827;
  --orv-bg-card-hover: #1a2235;
  --orv-accent-cyan: #00e5ff;
  --orv-accent-purple: #7c3aed;
  --orv-accent-pink: #f72585;
  --orv-accent-green: #00ff88;
  --orv-text-primary: #e8eaf6;
  --orv-text-secondary: #8892a4;
  --orv-text-muted: #4a5568;
  --orv-border: rgba(0, 229, 255, 0.15);
  --orv-glow-cyan: 0 0 20px rgba(0, 229, 255, 0.4);
  --orv-glow-purple: 0 0 20px rgba(124, 58, 237, 0.4);
  --orv-glow-pink: 0 0 20px rgba(247, 37, 133, 0.4);
  --orv-radius: 12px;
  --orv-radius-lg: 20px;
  --orv-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--orv-bg-dark);
  color: var(--orv-text-primary);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--orv-bg-dark); }
::-webkit-scrollbar-thumb { background: var(--orv-accent-cyan); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: rgba(0, 229, 255, 0.3); color: #fff; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  line-height: 1.2;
  color: var(--orv-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }

p { color: var(--orv-text-secondary); font-size: 1.05rem; margin-bottom: 1rem; }
a { color: var(--orv-accent-cyan); text-decoration: none; transition: color var(--orv-transition); }
a:hover { color: #fff; }

/* ── LAYOUT ── */
.orv-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.orv-section { padding: 100px 0; position: relative; }
.orv-section-sm { padding: 60px 0; }

/* ── SECTION LABELS ── */
.orv-eyebrow {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orv-accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

/* ── BUTTONS ── */
.orv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--orv-transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.orv-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.4s ease;
}

.orv-btn:hover::before { transform: translateX(100%) skewX(-20deg); }

.orv-btn-primary {
  background: linear-gradient(135deg, var(--orv-accent-cyan), #0099bb);
  color: var(--orv-bg-dark);
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3);
}
.orv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--orv-glow-cyan), 0 8px 32px rgba(0, 229, 255, 0.4);
  color: var(--orv-bg-dark);
}

.orv-btn-secondary {
  background: transparent;
  color: var(--orv-accent-cyan);
  border: 1.5px solid var(--orv-accent-cyan);
}
.orv-btn-secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
  color: var(--orv-accent-cyan);
}

.orv-btn-purple {
  background: linear-gradient(135deg, var(--orv-accent-purple), #5b21b6);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}
.orv-btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: var(--orv-glow-purple), 0 8px 32px rgba(124, 58, 237, 0.4);
  color: #fff;
}

/* ── NAVBAR ── */
.orv-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--orv-transition);
  background: transparent;
}

.orv-navbar.orv-scrolled {
  background: rgba(6, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--orv-border);
  padding: 0.7rem 0;
}

.orv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orv-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orv-text-primary);
  letter-spacing: 0.1em;
}
.orv-logo span { color: var(--orv-accent-cyan); }

.orv-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.orv-nav-links a {
  color: var(--orv-text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.orv-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orv-accent-cyan);
  transition: width var(--orv-transition);
}

.orv-nav-links a:hover { color: var(--orv-text-primary); }
.orv-nav-links a:hover::after { width: 100%; }

.orv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.orv-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--orv-text-primary);
  transition: all var(--orv-transition);
}

/* ── HERO ── */
.orv-hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--orv-bg-dark);
}

.orv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(247, 37, 133, 0.06) 0%, transparent 50%);
}

.orv-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

#orv-particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.orv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orv-accent-cyan);
  margin-bottom: 1.5rem;
  animation: orv-fadeInDown 0.8s ease both;
}

.orv-hero-badge .orv-dot {
  width: 6px; height: 6px;
  background: var(--orv-accent-cyan);
  border-radius: 50%;
  animation: orv-pulse 2s infinite;
}

.orv-hero h1 {
  animation: orv-fadeInUp 0.9s ease 0.1s both;
  margin-bottom: 1.5rem;
}

.orv-hero h1 .orv-highlight {
  color: var(--orv-accent-cyan);
  position: relative;
}

.orv-hero p {
  font-size: 1.15rem;
  max-width: 580px;
  animation: orv-fadeInUp 0.9s ease 0.2s both;
  margin-bottom: 2rem;
}

.orv-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: orv-fadeInUp 0.9s ease 0.3s both;
}

.orv-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--orv-border);
  animation: orv-fadeInUp 0.9s ease 0.4s both;
}

.orv-hero-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orv-accent-cyan);
  display: block;
  line-height: 1;
}

.orv-hero-stat-label {
  font-size: 0.8rem;
  color: var(--orv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── NEWS TICKER ── */
.orv-ticker {
  background: rgba(0, 229, 255, 0.06);
  border-top: 1px solid var(--orv-border);
  border-bottom: 1px solid var(--orv-border);
  padding: 0.8rem 0;
  overflow: hidden;
}

.orv-ticker-inner {
  display: flex;
  align-items: center;
}

.orv-ticker-label {
  background: var(--orv-accent-cyan);
  color: var(--orv-bg-dark);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.orv-ticker-track {
  overflow: hidden;
  flex: 1;
}

.orv-ticker-content {
  display: flex;
  gap: 0;
  animation: orv-ticker 40s linear infinite;
  white-space: nowrap;
}

.orv-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orv-text-secondary);
}

.orv-ticker-item i { color: var(--orv-accent-cyan); }

/* ── CARDS ── */
.orv-card {
  background: var(--orv-bg-card);
  border: 1px solid var(--orv-border);
  border-radius: var(--orv-radius-lg);
  overflow: hidden;
  transition: all var(--orv-transition);
}

.orv-card:hover {
  background: var(--orv-bg-card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--orv-glow-cyan);
}

.orv-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.orv-card-body { padding: 1.5rem; }

.orv-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orv-accent-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  width: max-content;
}

/* ── ARTICLE CARD ── */
.orv-article-card { height: 100%; }

.orv-article-card .orv-card-img { height: 200px; }

.orv-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--orv-text-muted);
  margin-bottom: 0.8rem;
}

.orv-article-meta i { color: var(--orv-accent-cyan); }

/* ── SERVICE CARD ── */
.orv-service-card {
  padding: 2rem;
  height: 100%;
}

.orv-service-icon {
  width: 60px; height: 60px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orv-accent-cyan);
  margin-bottom: 1.2rem;
  transition: all var(--orv-transition);
}

.orv-service-card:hover .orv-service-icon {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: var(--orv-glow-cyan);
  transform: rotate(5deg) scale(1.1);
}

/* ── TEAM CARD ── */
.orv-team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.orv-team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--orv-accent-cyan);
  box-shadow: var(--orv-glow-cyan);
}

.orv-team-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orv-accent-cyan);
  margin-bottom: 0.5rem;
}

.orv-team-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.orv-team-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--orv-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--orv-text-muted);
  transition: all var(--orv-transition);
}

.orv-team-socials a:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--orv-accent-cyan);
  color: var(--orv-accent-cyan);
}

/* ── TESTIMONIAL ── */
.orv-testimonial-card {
  padding: 2rem;
}

.orv-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.orv-testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.orv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.orv-testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orv-accent-purple);
}

.orv-testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--orv-text-primary);
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
}

.orv-testimonial-handle {
  font-size: 0.8rem;
  color: var(--orv-accent-cyan);
}

/* ── FILTER TABS ── */
.orv-filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.orv-filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--orv-transition);
  border: 1px solid var(--orv-border);
  background: transparent;
  color: var(--orv-text-secondary);
}

.orv-filter-tab:hover,
.orv-filter-tab.orv-active {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--orv-accent-cyan);
  color: var(--orv-accent-cyan);
}

/* ── GAME CARD ── */
.orv-game-card {
  position: relative;
  border-radius: var(--orv-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.orv-game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.orv-game-card:hover img { transform: scale(1.08); }

.orv-game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,16,0.95) 0%, rgba(6,8,16,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.85;
  transition: opacity var(--orv-transition);
}

.orv-game-card:hover .orv-game-overlay { opacity: 1; }

.orv-game-genre {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orv-accent-cyan);
  margin-bottom: 0.3rem;
}

.orv-game-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.orv-game-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fbbf24;
}

/* ── QUOTE CAROUSEL ── */
.orv-quote-section {
  background: rgba(124, 58, 237, 0.05);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.orv-quote-carousel {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.orv-quote-text {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--orv-text-primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orv-quote-text::before { content: '\201C'; color: var(--orv-accent-purple); font-size: 4rem; line-height: 0; vertical-align: -1rem; margin-right: 0.2em; }

.orv-quote-author {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: var(--orv-accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.orv-quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.orv-quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orv-border);
  border: none;
  cursor: pointer;
  transition: all var(--orv-transition);
}

.orv-quote-dot.orv-active {
  background: var(--orv-accent-cyan);
  box-shadow: var(--orv-glow-cyan);
}

/* ── SKILL CHART ── */
.orv-skill-item {
  margin-bottom: 1.5rem;
}

.orv-skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.orv-skill-name {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.orv-skill-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: var(--orv-accent-cyan);
  font-weight: 700;
}

.orv-skill-bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.orv-skill-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orv-accent-cyan), var(--orv-accent-purple));
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── GALLERY ── */
.orv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.orv-gallery-item {
  overflow: hidden;
  border-radius: var(--orv-radius);
  cursor: pointer;
}

.orv-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.orv-gallery-item:hover img { transform: scale(1.06); }

.orv-gallery-item:nth-child(1) { grid-column: span 5; }
.orv-gallery-item:nth-child(2) { grid-column: span 4; }
.orv-gallery-item:nth-child(3) { grid-column: span 3; }
.orv-gallery-item:nth-child(4) { grid-column: span 3; }
.orv-gallery-item:nth-child(5) { grid-column: span 5; }
.orv-gallery-item:nth-child(6) { grid-column: span 4; }

/* ── FOOTER ── */
.orv-footer {
  background: var(--orv-bg-mid);
  border-top: 1px solid var(--orv-border);
  padding: 4rem 0 2rem;
}

.orv-footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orv-text-primary);
  display: block;
  margin-bottom: 1rem;
}

.orv-footer-logo span { color: var(--orv-accent-cyan); }

.orv-footer-desc {
  color: var(--orv-text-muted);
  font-size: 0.92rem;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.orv-footer-socials {
  display: flex;
  gap: 0.6rem;
}

.orv-footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--orv-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orv-text-muted);
  font-size: 0.85rem;
  transition: all var(--orv-transition);
}

.orv-footer-social:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--orv-accent-cyan);
  color: var(--orv-accent-cyan);
}

.orv-footer-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orv-text-primary);
  margin-bottom: 1.2rem;
}

.orv-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.orv-footer-links a {
  color: var(--orv-text-muted);
  font-size: 0.9rem;
  transition: color var(--orv-transition);
}

.orv-footer-links a:hover { color: var(--orv-accent-cyan); }

.orv-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--orv-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.orv-footer-copy {
  color: var(--orv-text-muted);
  font-size: 0.85rem;
}

/* ── COOKIE BANNER ── */
.orv-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13, 17, 23, 0.97);
  border-top: 1px solid var(--orv-border);
  backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.orv-cookie-banner.orv-show { transform: translateY(0); }

.orv-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.orv-cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--orv-text-secondary);
  min-width: 200px;
}

.orv-cookie-text a { color: var(--orv-accent-cyan); }

.orv-cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* ── HERO IMAGE ── */
.orv-hero-visual {
  position: relative;
}

.orv-hero-img-wrap {
  position: relative;
  border-radius: var(--orv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--orv-border);
  box-shadow: var(--orv-glow-purple), 0 40px 100px rgba(0,0,0,0.6);
  animation: orv-float 6s ease-in-out infinite;
}

.orv-hero-img-wrap img {
  width: 100%; display: block;
  border-radius: var(--orv-radius-lg);
}

.orv-hero-img-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--orv-border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.orv-online-dot {
  width: 8px; height: 8px;
  background: var(--orv-accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orv-accent-green);
  animation: orv-pulse 2s infinite;
}

/* ── PAGE HERO ── */
.orv-page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--orv-border);
  position: relative;
}

.orv-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── BREADCRUMB ── */
.orv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--orv-text-muted);
  margin-bottom: 1.5rem;
}

.orv-breadcrumb a { color: var(--orv-accent-cyan); }
.orv-breadcrumb i { font-size: 0.7rem; }

/* ── ARTICLE STYLES ── */
.orv-article-body {
  max-width: 800px;
}

.orv-article-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--orv-text-primary);
  padding-left: 1rem;
  border-left: 3px solid var(--orv-accent-cyan);
}

.orv-article-body h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
  color: var(--orv-accent-cyan);
}

.orv-article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--orv-text-secondary);
}

.orv-article-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.orv-article-body ul li {
  color: var(--orv-text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.orv-article-body ul li::marker { color: var(--orv-accent-cyan); }

.orv-article-img {
  width: 100%;
  border-radius: var(--orv-radius);
  margin: 2rem 0;
  border: 1px solid var(--orv-border);
}

.orv-callout {
  background: rgba(0, 229, 255, 0.06);
  border-left: 3px solid var(--orv-accent-cyan);
  border-radius: 0 var(--orv-radius) var(--orv-radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.orv-callout p { margin: 0; color: var(--orv-text-primary); }

/* ── FORMS ── */
.orv-form-group { margin-bottom: 1.5rem; }

.orv-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orv-text-secondary);
  margin-bottom: 0.6rem;
}

.orv-input,
.orv-textarea,
.orv-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--orv-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--orv-text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: all var(--orv-transition);
  outline: none;
}

.orv-input:focus,
.orv-textarea:focus,
.orv-select:focus {
  border-color: var(--orv-accent-cyan);
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.orv-textarea { resize: vertical; min-height: 140px; }

/* ── CONTACT INFO ── */
.orv-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.orv-contact-icon {
  width: 44px; height: 44px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orv-accent-cyan);
  flex-shrink: 0;
}

/* ── TIMELINE ── */
.orv-timeline {
  position: relative;
  padding-left: 2rem;
}

.orv-timeline::before {
  content: '';
  position: absolute;
  left: -2px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orv-accent-cyan), var(--orv-accent-purple), transparent);
}

.orv-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.orv-timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem; top: 4px;
  width: 10px; height: 10px;
  background: var(--orv-accent-cyan);
  border-radius: 50%;
  box-shadow: var(--orv-glow-cyan);
}

.orv-timeline-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orv-accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

/* ── MAP ── */
.orv-map-wrap {
  border-radius: var(--orv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--orv-border);
  height: 360px;
}

.orv-map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }

/* ── LEGAL PAGES ── */
.orv-legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--orv-border);
}

.orv-legal-content p,
.orv-legal-content li {
  color: var(--orv-text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.orv-legal-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }

/* ── DIVIDERS ── */
.orv-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orv-accent-cyan), var(--orv-accent-purple));
  border-radius: 2px;
  margin: 1rem 0 2rem;
}

/* ── BADGE / CHIP ── */
.orv-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orv-badge-cyan { background: rgba(0, 229, 255, 0.12); color: var(--orv-accent-cyan); }
.orv-badge-purple { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
.orv-badge-pink { background: rgba(247, 37, 133, 0.12); color: #fb7185; }
.orv-badge-green { background: rgba(0, 255, 136, 0.12); color: var(--orv-accent-green); }

/* ── GLOWING DECORATIONS ── */
.orv-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}

/* ── FEATURE ROW ── */
.orv-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.orv-feature-row.orv-reverse { direction: rtl; }
.orv-feature-row.orv-reverse > * { direction: ltr; }

/* ── ANIMATIONS ── */
@keyframes orv-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orv-fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes orv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes orv-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes orv-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orv-shimmer {
  from { background-position: -200% center; }
  to { background-position: 200% center; }
}

/* ── ANIMATE ON SCROLL ── */
.orv-aos {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.orv-aos.orv-visible {
  opacity: 1;
  transform: translateY(0);
}

.orv-aos-delay-1 { transition-delay: 0.1s; }
.orv-aos-delay-2 { transition-delay: 0.2s; }
.orv-aos-delay-3 { transition-delay: 0.3s; }
.orv-aos-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .orv-feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .orv-feature-row.orv-reverse { direction: ltr; }
  .orv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .orv-gallery-item { grid-column: span 1 !important; }
}

@media (max-width: 768px) {
  .orv-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(6, 8, 16, 0.98);
    border-bottom: 1px solid var(--orv-border);
    padding: 1.5rem;
    gap: 1rem;
  }
  .orv-nav-links.orv-open { display: flex; }
  .orv-hamburger { display: flex; }
  .orv-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .orv-section { padding: 70px 0; }
}

@media (max-width: 576px) {
  .orv-gallery-grid { grid-template-columns: 1fr; }
  .orv-cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* ── UTILITY ── */
.orv-text-center { text-align: center; }
.orv-text-cyan { color: var(--orv-accent-cyan); }
.orv-text-purple { color: var(--orv-accent-purple); }
.orv-mb-0 { margin-bottom: 0 !important; }
.orv-mt-auto { margin-top: auto; }



.logo{
  max-width: 150px;
  object-fit: contain;
}


html{
  overflow-x: hidden;
}