* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f7fb;
  height: 200vh;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}

.header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(45deg, #9c2c2c, #06b6d4);
  -webkit-background-clip: text;
  color: transparent;
  z-index: 9999;
}

/* NAV DESKTOP */
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #9c2c2c;
}

/* BUTTONS */
.btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #9c2c2c;
  color: #9c2c2c !important;
  transition: 0.3s;
}

.btn:hover {
  background: #9c2c2c;
  color: #fff !important;
}

.primary {
  background: linear-gradient(45deg, #535353, var(--bg-dark));
  color: #fff !important;
  border: none;
}

.primary:hover {
  opacity: 0.9;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1101;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.4s;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* OVERLAY */
.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .container1 {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    padding: 80px 20px;
    z-index: 1100;
  }

  .nav.active {
    left: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start !important;
  }

  .nav a {
    font-size: 18px;
  }
}
:root {
  --bg-dark: #0e0f15;
  --panel-bg: rgba(20, 20, 25, 0.7);
  --border-glow: rgba(99, 102, 241, 0.15);
  --primary-glow: #6366f1;
  --secondary-glow: #06b6d4;
  --text-main: #fff;
  --text-muted: #a1a1aa;
}

/* BASE HERO STYLING */
.hero-premium {
  position: relative;
  background-color: var(--bg-dark);
  color: #fff;
  padding: 140px 0 100px 0;
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* BACKGROUND EFFECTS */
.hero-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
}

.orb-1 {
  top: -10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: var(--primary-glow);
}

.orb-2 {
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--secondary-glow);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 85%);
}

/* TEXT CONTENT */
.hero-content {
  text-align: center;
  /* max-width: 800px; */
  margin: 0 auto 60px auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.pulse-ring {
  width: 6px;
  height: 6px;
  background: var(--secondary-glow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, #9b2f49 70%, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px auto;
}

/* BUTTONS */
.action-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--bg-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid rgb(255 255 255 / 64%);
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* VISUAL PREVIEW & HUD OVERLAYS */
.dashboard-preview-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}

.glass-panel {
  /* background: var(--panel-bg); */
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 20px;
  padding: 12px;
  backdrop-filter: blur(20px);
  /* box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--border-glow); */
  transform: rotateX(8deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  transform: rotateX(2deg) translateY(-4px);
}

.glass-panel img {
  width: 100%;
  border-radius: 12px;
  display: block;
  opacity: 0.9;
}

/* FLOATING DASHBOARD WIDGETS */
.floating-hud {
  position: absolute;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-left {
  bottom: 15%;
  left: -40px;
  animation: float 4s ease-in-out infinite;
}

.card-right {
  top: 20%;
  right: -30px;
  animation: float 4.5s ease-in-out infinite alternate;
}

.hud-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.hud-icon.inc {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.hud-icon.active {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  font-size: 10px;
}

.hud-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hud-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

/* ANIMATIONS & RESPONSIVE */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .floating-hud {
    display: none;
  }
  .glass-panel {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .hero-premium {
    padding: 100px 0 60px 0;
  }
  .action-row {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* ABOUT */
.about-modern {
  padding: 40px 0;
  background: #fdfdfd;
  overflow: hidden;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */

.about-flex {
  display: flex;
  align-items: center;
  gap: 100px;
}

/* VISUAL SIDE */
.about-visual {
  flex: 1;
  position: relative;
}

.image-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #eef2ff 0%, transparent 70%);
  z-index: 1;
}

.main-img {
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-img:hover {
  transform: rotate(-3deg) scale(1.05);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: 10%;
  right: -20px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.badge-icon {
  font-size: 24px;
}
.badge-text strong {
  color: #10b981;
  display: block;
}
.badge-text p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* TEXT SIDE */
.about-text {
  flex: 1.2;
}

.section-title {
  font-size: clamp(34px, 4vw, 50px);
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title span {
  background: linear-gradient(135deg, #ff8d8d 30%, #a32626 70%, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
}

/* SPECS GRID */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.spec-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.spec-number {
  font-size: 12px;
  font-weight: 800;
  color: #cd3c3c;
  background: #eff6ff;
  padding: 4px 8px;
  border-radius: 4px;
}

.spec-item h4 {
  font-size: 17px;
  color: #0f172a;
  margin: 0;
}

.spec-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* FOOTER */
.about-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-main {
  background: #0f172a;
  color: #fff;
  border: none;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-main:hover {
  background: #9c2c2c;
}

.about-footer p {
  font-size: 14px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .floating-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -20px;
  }
  .spec-header {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .about-footer {
    flex-direction: column;
  }
}
/* SECTION */
:root {
  --accent: #a32626;
  --text-main: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --bg-soft: #f8fafc;
}

.trading-suite {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sub-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text-main);
  margin: 15px 0;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(135deg, #ff8d8d 30%, #a32626 70%, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-content p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
}

/* BENTO GRID */
.bento-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
}

.bento-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* SPECIFIC ITEM STYLES */
.main-showcase {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.bento-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.bento-image {
  margin-top: 20px;
  width: 110%; /* Makes it overflow slightly for a "layered" look */
  transform: rotate(-2deg);
}

.bento-image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
  font-size: 32px;
  margin-bottom: 20px;
}

.status-tag {
  display: inline-block;
  margin-top: 15px;
  font-size: 12px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.mobile-card {
  background: #eff6ff;
}
.desktop-card {
  background: #f1f5f9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bento-grid1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .main-showcase {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-image {
    width: 100%;
    transform: none;
  }
}
:root {
  --brand-blue: #1677ff;
  --brand-gold: #ffb800;
  --bg-dark: #0e0f15;
  --bg-glow: #1a3a8a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* TRADING HERO SECTION */
.trading-hero {
  background: radial-gradient(circle at 20% 50%, #303030 0%, #030305 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  color: #ffffff;
  overflow: hidden;
}

.trading-hero__wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXT BLOCK */
.trading-hero__content {
  flex: 1;
  min-width: 280px;
}

.trading-hero__title {
  font-size: clamp(40px, 8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 30%, #9b2f49 70%, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trading-hero__subtitle {
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 16px;
  max-width: 520px;
}

.trading-hero__highlight {
  color: var(--brand-gold);
}

.trading-hero__description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  font-weight: 400;
}

/* BUTTON */
.trading-hero__cta {
  display: inline-block;
  background-color: var(--bg-soft);
  color: var(--bg-dark);
  padding: 16px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(22, 119, 255, 0.4);
}

.trading-hero__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.5);
}

/* IMAGE BLOCK */
.trading-hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 400px;
}

.trading-hero__image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.6));
  user-select: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .trading-hero {
    padding: 60px 20px;
  }
  .trading-hero__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .trading-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .trading-hero__description {
    margin-left: auto;
    margin-right: auto;
  }
  .trading-hero__visual {
    min-width: 100%;
    margin-top: 40px;
  }
}
.editorial-services {
  padding: 120px 0;
  background-color: #fafafa;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

.container3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.editorial-header {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.tagline {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* THE STRIPE ROWS */
.editorial-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
  position: relative;
}

.editorial-row:hover {
  background-color: #000000ed;
  color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
}

.row-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.index {
  font-size: 16px;
  font-weight: 600;
  font-family: serif;
  font-style: italic;
}

.row-left h2 {
  font-size: clamp(22px, 3vw, 44px);
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.row-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.row-right p {
  font-size: 18px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.8;
  max-width: 400px;
}

.service-arrow {
  font-size: 40px;
  font-weight: 300;
  transition: transform 0.5s ease;
}

.editorial-row:hover .service-arrow {
  transform: translateX(10px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .editorial-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .row-right p {
    max-width: 100%;
  }
}
.ts-wrapper {
  padding: 120px 0;
  background: radial-gradient(
    circle at 20% 50%,
    var(--bg-glow) 0%,
    var(--bg-dark) 100%
  );
  color: #ffffff;
  overflow: hidden;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.ts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ts-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* CONTENT STYLES */
.ts-content-box {
  flex: 1;
  z-index: 10;
}

.ts-status-label {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.ts-main-heading {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  margin-bottom: 24px;
  font-weight: 900;
}

.ts-outline-title {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
}

.ts-description {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.ts-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.ts-tag-item {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  background: #1e293b;
  padding: 6px 14px;
  border-radius: 6px;
}

.ts-primary-action {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-primary-action:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

/* 3D VISUAL STACK */
.ts-visual-stack {
  flex: 1;
  position: relative;
  height: 500px;
  perspective: 2000px; /* Depth intensity */
}

.ts-layer {
  position: absolute;
  width: 440px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -30px 40px 70px rgba(0, 0, 0, 0.5);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ts-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-layer-front {
  z-index: 5;
  transform: rotateY(-28deg) rotateX(12deg) translateZ(50px);
  top: 40px;
  right: 0;
}

.ts-layer-back {
  z-index: 2;
  transform: rotateY(-28deg) rotateX(12deg) translateZ(-120px);
  top: 160px;
  right: 100px;
  opacity: 0.4;
  filter: grayscale(100%);
}

/* Interaction Effects */
.ts-wrapper:hover .ts-layer-front {
  transform: rotateY(-18deg) rotateX(8deg) translateZ(100px);
}

.ts-wrapper:hover .ts-layer-back {
  transform: rotateY(-18deg) rotateX(8deg) translateZ(0);
  opacity: 0.7;
  filter: grayscale(0%);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .ts-grid {
    flex-direction: column;
    text-align: center;
  }

  .ts-description {
    margin-left: auto;
    margin-right: auto;
  }

  .ts-tag-row {
    justify-content: center;
  }

  .ts-visual-stack {
    width: 100%;
    height: 400px;
    perspective: none;
  }

  .ts-layer {
    width: 90%;
    max-width: 400px;
    position: relative;
    margin: 0 auto;
    transform: none !important;
    right: auto;
    top: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .ts-layer-back {
    display: none;
  }
}

/* =====================================
    PREMIUM SERVICES SECTION
===================================== */
:root {
  --primary-glow: #d95e5e;
  --secondary-glow: #0077ff;
  --accent-glow: #ff0077;
  --bg-dark: #030712;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --text-muted: #9ca3af;
}

.services-premium {
  position: relative;
  padding: 140px 0;
  background: var(--bg-dark);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  overflow: hidden;
}

.services-premium .container2 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Background Ambient Glows */
.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}

.blur-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-glow);
  top: -150px;
  left: -150px;
}

.blur-2 {
  width: 450px;
  height: 450px;
  background: var(--secondary-glow);
  bottom: -150px;
  right: -100px;
}

.blur-3 {
  width: 350px;
  height: 350px;
  background: var(--accent-glow);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Heading Styling */
.services-heading {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(0, 255, 179, 0.06);
  color: var(--primary-glow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 255, 179, 0.2);
  box-shadow: 0 4px 20px rgba(0, 255, 179, 0.05);
}

.services-heading h2 {
  color: #fff;
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.services-heading h2 span {
  background: linear-gradient(135deg, #fff 30%, #9b2f49 70%, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-heading p {
  max-width: 650px;
  margin: auto;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* 3-Column Grid for Better visual rhythm */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Ultimate Card Glassmorphism */
.service-box {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.service-box:hover {
  transform: translateY(-10px) scale(1.01);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 255, 179, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 255, 179, 0.05);
}

/* Clean image reveal */
.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0)
  );
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(90%);
  transition:
    transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.5s ease;
}

.service-box:hover .service-image img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(100%);
}

/* Service Content layout */
.service-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Floating Icon style */
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 179, 0.1) 0%,
    rgba(0, 119, 255, 0.1) 100%
  );
  border: 1px solid rgba(0, 255, 179, 0.2);
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.service-box:hover .service-icon {
  transform: rotate(-5deg) scale(1.05);
  background: linear-gradient(
    135deg,
    var(--primary-glow) 0%,
    var(--secondary-glow) 100%
  );
}

.service-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.service-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 24px;
}

/* Action Links */
.service-link {
  color: var(--primary-glow);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.service-link span {
  transition: transform 0.3s ease;
}

.service-box:hover .service-link {
  color: #fff;
}

.service-box:hover .service-link span {
  transform: translateX(5px);
}

/* Specific Cards Overrides */
.featured {
  border-color: rgba(0, 255, 179, 0.25);
  background: linear-gradient(
    180deg,
    rgba(0, 255, 179, 0.02) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.upcoming {
  border-color: rgba(0, 119, 255, 0.2);
  opacity: 0.85;
}

.upcoming-badge {
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(0, 119, 255, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(0, 119, 255, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .services-premium {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-heading h2 {
    font-size: 32px;
  }
  .services-heading p {
    font-size: 16px;
  }
  .service-content {
    padding: 24px;
  }
}
/* =====================================
   PREMIUM FOOTER
===================================== */
.footer-modern {
  position: relative;
  background: linear-gradient(180deg, #07111f, #030712);
  padding: 90px 0 25px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modern .container3 {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Shapes */
.footer-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.shape1 {
  width: 280px;
  height: 280px;
  background: #00ffb3;
  opacity: 0.1;
  top: -80px;
  left: -60px;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: #0066ff;
  opacity: 0.1;
  bottom: -120px;
  right: -100px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  /* margin-bottom: 25px; */
}

.brand-logo img {
  width: 30%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  /* background: rgba(255, 255, 255, 0.08); */
  /* padding: 10px; */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.brand-logo h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
  font-weight: 800;
}

.brand-logo span {
  color: #00ffb3;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 15px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #fff 30%, #9b2f49 70%, #6f6f6f);
  transform: translateY(-5px);
}

/* Columns */
.footer-column h3,
.footer-newsletter h3 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 28px;
  position: relative;
}

.footer-column h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 3px;
  background: linear-gradient(135deg, #fff 30%, #9b2f49 70%, #6f6f6f);
  left: 0;
  bottom: -10px;
  border-radius: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #00ffb3;
  padding-left: 8px;
}

/* Newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 25px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-newsletter input {
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0 18px;
  color: #fff;
  outline: none;
}

.footer-newsletter button {
  height: 55px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 30%, #9b2f49 70%, #6f6f6f);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 179, 0.25);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.bottom-links a:hover {
  color: #00ffb3;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .brand-logo h2 {
    font-size: 24px;
  }
}
