:root {
  --bg-primary: #050505;          /* Main black */
  --bg-secondary: #0d0d0d;        /* Slight depth black */
  
  --accent-primary: #ff2b2b;      /* Main red */
  --accent-glow: #ff0000;         /* Glow red */
  
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;

  --gradient-primary: linear-gradient(135deg, #ff2b2b, #990000);

  --shadow-glow: 0 0 40px rgba(255, 0, 0, 0.45);
}

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

/* html {
  scroll-behavior: smooth;
} */

body {
  background: #050505;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -300px;
  left: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,0,0,0.15), transparent 70%);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}

/* GLOBAL */

.container {
  width: 85%;
  max-width: 1300px;
  margin: auto;
}

section {
  padding: 120px 0;
  position: relative;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(15px);
  background: rgba(11, 15, 25, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  z-index: 1000;
}

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

.logo a {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
}

.logo span {
  color: var(--accent-primary);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

nav li {
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  color: var(--text-primary);
}

.btn-nav {
  background: var(--gradient-primary);
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff !important;
}

/* Hide Toggle on Desktop */
.menu-toggle {
  display: none;
  color: var(--text-primary);
}

/* =================================================
   HERO SECTION STARTS
================================================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.hero-text {
  font-family: 'Segoe UI', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: left;
}

.hero-text span {
  color: #ff2d2d; /* Red i360 */
  font-weight: 500;
}

/* -------------------------
   RED GLOW BACKGROUND
------------------------- */

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.25),
    transparent 70%
  );
  transform: translateY(-50%);
  filter: blur(150px);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(120, 0, 0, 0.15) 0%,
    transparent 50%,
    rgba(120, 0, 0, 0.15) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* -------------------------
   MOVING RED GRID
------------------------- */

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

/* -------------------------
   ROTATING 3D MESH OBJECTS
------------------------- */

.hero-mesh {
  position: absolute;
  width: 350px;
  height: 350px;
  opacity: 0.18;
  pointer-events: none;
  animation: rotateMesh 35s linear infinite;
  z-index: -1;
}

.mesh-left {
  top: 10%;
  left: -120px;
}

.mesh-right {
  bottom: 5%;
  right: -100px;
  animation-duration: 45s;
}

@keyframes rotateMesh {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* -------------------------
   HERO CONTENT
------------------------- */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

/* Title */

.hero-title {
  font-size: 72px;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff, #ff2b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Subtitle */

.hero-subtitle {
  font-size: 20px;
  color: #bdbdbd;
  margin-bottom: 40px;
}

/* -------------------------
   TYPING TEXT
------------------------- */

#typed-text {
  background: linear-gradient(90deg, #ffffff, #ff2b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cursor-typing {
  display: inline-block;
  margin-left: 5px;
  animation: blink 1s infinite;
  color: #ff2b2b;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75%      { opacity: 0; }
}

/* -------------------------
   BUTTONS
------------------------- */

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 15px 35px;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6);
}

.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  border: 1px solid #ff2b2b;
  color: #ff2b2b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #ff2b2b;
  color: #ffffff;
}

/* -------------------------
   STATS
------------------------- */

.stats-grid {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

.stat h3 {
  font-size: 48px;
}

/* =========================
   PAGE TRANSITION
========================= */

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0B0F19;
  z-index: 9999;

  transform: scaleY(1);
  transform-origin: top;

  pointer-events: none;
}

/* =========================
   CUSTOM CURSOR 
========================= */

.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
}

/* Main dot */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
}

/* Follower ring */
.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-primary);
  transition: 0.15s ease-out;
}


/* =========================
   DISABLE ON MOBILE / TOUCH
========================= */

@media (max-width: 992px), (hover: none), (pointer: coarse) {

  .cursor,
  .cursor-follower {
    display: none !important;
  }

}

/* ===============================
   RED SCROLLING SERVICE BAR
================================ */


.service-marquee {
  width: 100%;
  background: #ff0000;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

/* Remove any spacing from hero */
.hero + .service-marquee {
  margin: 0;
  padding: 0;
}

/* Remove any spacing from about-page-hero */
.about-page-hero + .service-marquee {
  margin: 0;
  padding: 0;
}
.marquee-tracks {
  display: flex;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 30px; /* tighter gap */
  padding: 8px 0; /* 🔥 thinner height */
}

.marquee-content span {
  font-size: 14px; /* smaller text */
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Infinite smooth scroll */
@keyframes scrollLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}


/* =========================
  ABOUT SECTION
========================= */

.about-modern {
  background: #050505; /* pure black theme */
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

/* Subtle red depth overlay */

.about-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.18),
    transparent 70%
  );
  transform: translateY(-50%);
  filter: blur(160px);
  z-index: 0;
  pointer-events: none;
}

/* Layout */

.about-modern-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.about-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.about-label .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary); /* red */
  border-radius: 50%;
}

.about-heading-modern {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-heading-modern .highlight {
  color: var(--accent-primary);
}

.about-btn {
  margin-top: 20px;
}

/* RIGHT SIDE */

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 0, 0, 0.15); /* subtle red line */
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===============================
   INTERACTIVE 3D BACKGROUND SHAPE
================================ */

.bg-3d-shape {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
  z-index: 0;

  background: radial-gradient(
    circle at 40% 40%,
    rgba(255, 0, 0, 0.6),
    rgba(120, 0, 0, 0.4) 60%,
    transparent 70%
  );

  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;

  transition: transform 0.1s ease-out;
}

/* RESPONSIVE */

@media (max-width: 992px) {

  .about-modern-wrapper {
    grid-template-columns: 1fr;
  }

  .about-heading-modern {
    font-size: 36px;
  }

}


/* ===============================
   SERVICES SECTION
================================ */


.services-v2 {
  position: relative;
  padding: 160px 0;
  background: #050505;
  overflow: hidden;
}

/* Red Glow Background */

.services-v2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.25),
    transparent 70%
  );
  transform: translateY(-50%);
  filter: blur(150px);
  z-index: 0;
}

/* Subtle Red Depth Overlay */

.services-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(120, 0, 0, 0.15) 0%,
    transparent 50%,
    rgba(120, 0, 0, 0.15) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* ===============================
   TOP SECTION
================================ */

.services-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.services-left h2 {
  font-size: 48px;
  line-height: 1.2;
}

.services-left .highlight {
  color: #ff2b2b;
}

.services-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.services-label .dot {
  width: 8px;
  height: 8px;
  background: #ff2b2b;
  border-radius: 50%;
}

.services-right p {
  color: #aaa;
  margin-bottom: 25px;
  max-width: 400px;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff2b2b, #990000);
  padding: 12px 24px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.services-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5);
}

/* ===============================
   GRID
================================ */

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* ===============================
   CARD
================================ */

.service-card-v2 {
  position: relative;
  padding: 50px 40px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 0, 0, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(30px);
  transition: 0.4s ease;
  overflow: hidden;
}

.service-card-v2:hover {
  transform: translateY(-15px);
  border-color: #ff2b2b;
  box-shadow: 0 25px 70px rgba(255, 0, 0, 0.4);
}

/* ===============================
   ARROW
================================ */

.card-arrow {
  position: absolute;
  top: 65px;
  right: 30px;
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
}

.card-arrow svg {
  width: 100%;
  height: 100%;
}

.arrow-path {
  stroke: #ff2b2b;
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
  transition: stroke 0.4s ease;
}

.service-card-v2:hover .card-arrow {
  transform: scale(1.1);
}

.service-card-v2:hover .arrow-path {
  stroke: #ffffff;
}

/* ===============================
   ICON
================================ */

.icon-box {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 28px;
  height: 28px;
  stroke: #ff2b2b;
  stroke-width: 1.8;
  fill: none;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1s ease;
}

.service-card-v2:hover .icon-svg {
  stroke-dashoffset: 0;
}

.service-card-v2 h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card-v2 p {
  color: #aaa;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

  .services-top {
    flex-direction: column;
  }

  .services-grid-v2 {
    grid-template-columns: 1fr;
  }

  .services-left h2 {
    font-size: 36px;
  }

}

/* =====================================
   EXPLORE MORE CAPABILITIES (RED THEME)
===================================== */

.services-marquee {
  position: relative;
  padding: 160px 0;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
}

/* Cinematic red ambient background */

.services-bg-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.18),
    transparent 70%
  );
  filter: blur(200px);
  z-index: 0;
  pointer-events: none;
}


/* HEADER */

.marquee-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.marquee-header h2 {
  font-size: 46px;
  color: #ffffff;
}

.marquee-header p {
  color: #bdbdbd;
  margin-top: 10px;
}

/* GLASS AREA CONTAINER */

.marquee-area {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: auto;
  padding: 60px 0;

  background: linear-gradient(
    145deg,
    rgba(255, 0, 0, 0.08),
    rgba(0, 0, 0, 0.4)
  );

  border: 1px solid rgba(255, 0, 0, 0.15);
  border-radius: 30px;
  backdrop-filter: blur(40px);
  overflow: hidden;
}

/* WRAPPER */

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

/* TRACK */

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 20px;
}

/* CARD DESIGN */

.marquee-card {
  width: 280px; /* smaller */
  flex-shrink: 0;

  padding: 28px;
  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(20, 0, 0, 0.65),
    rgba(10, 0, 0, 0.85)
  );

  border: 1px solid rgba(255, 0, 0, 0.12);

  backdrop-filter: blur(20px);

  transition: all 0.35s ease;
}

/* Hover lift */

.marquee-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.25);
}

/* TEXT */

.card-content h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* Logo */

.card-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;

  background: rgba(255, 0, 0, 0.15);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo img {
  width: 24px;
  height: 24px;
}

/* Responsive */

@media (max-width: 992px) {
  .marquee-area {
    padding: 40px 0;
  }

  .marquee-card {
    width: 260px;
  }
}
/* =====================================
   MEDIA SECTION
===================================== */

.media-section{
  position:relative;
  padding:100px 8%;
  background:#0b0b0b;
  text-align:center;
  overflow:hidden;
}

.section-title{
  color:#ff2a2a;
  font-size:42px;
  font-weight:700;
  margin-bottom:60px;
}

/* grid */

.media-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

/* card */

.media-card{
  background:#0f0f0f;
  border-radius:14px;
  padding:40px 20px;
  text-align:center;
  border:1px solid rgba(255,0,0,0.15);
  transition:0.4s;
  position:relative;
}

.media-card:hover{
  transform:translateY(-10px);
  border-color:#ff2a2a;
  box-shadow:0 10px 40px rgba(255,0,0,0.3);
}

/* logo wrapper */

.logo-wrapper{
  position:relative;
  width:120px;
  height:120px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* logo */

.logo-media{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
  transition:transform 0.6s;
}

.logo-media img{
  width:65px;
}

/* flip animation */

.media-card:hover .logo-media{
  transform:rotateY(180deg);
}

/* circular waves */

.wave{
  position:absolute;
  width:120px;
  height:120px;
  border:2px solid rgba(255,0,0,0.5);
  border-radius:50%;
  animation:ripple 3s infinite;
}

.wave2{
  animation-delay:1.5s;
}

/* ripple animation */

@keyframes ripple{
  0%{
    transform:scale(1);
    opacity:0.8;
  }

  100%{
    transform:scale(1.6);
    opacity:0;
  }
}

.media-card h3{
  margin-top:20px;
  color:white;
  font-size:20px;
}

/* hover effect */

.media-card:hover{
  transform:translateY(-10px) scale(1.05);
  border-color:#ff2a2a;
  box-shadow:0 10px 35px rgba(255,0,0,0.3);
}

/* background svg shapes */

.bg-shapes{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  pointer-events:none;
}

.shape{
  position:absolute;
  fill:none;
  stroke:#ff2a2a;
  stroke-width:2;
  opacity:0.2;
}

/* shape positions */

.shape1{
  width:220px;
  top:10%;
  left:5%;
  animation:rotateShape 20s linear infinite;
}

.shape2{
  width:300px;
  bottom:10%;
  right:10%;
  animation:rotateShape 25s linear infinite reverse;
}

@keyframes rotateShape{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}


.clients-section{
background:#000;
padding:120px 20px;
color:white;
overflow:hidden;
position:relative;
font-family:sans-serif;
}

.clients-header{
text-align:center;
margin-bottom:70px;
}

.clients-header .sub{
color:#ff2a2a;
letter-spacing:3px;
font-size:14px;
}

.clients-header h2{
font-size:48px;
margin-top:10px;
}

.clients-header h2 span{
color:#ff2a2a;
}

.clients-header p{
color:#aaa;
margin-top:15px;
}

/* container */

.clients-container{
max-width:1200px;
margin:auto;
background:linear-gradient(180deg,#3a0000,#000);
border-radius:25px;
padding:50px;
border:1px solid rgba(255,0,0,0.2);
overflow:hidden;
}

/* scrolling track */

.clients-track{
display:flex;
gap:30px;
width:max-content;
animation:scroll 25s linear infinite;
}

/* card */

.client-card{
width:260px;
height:170px;
background:rgba(255,0,0,0.07);
border:1px solid rgba(255,0,0,0.2);
border-radius:18px;
padding:25px;
transition:0.4s;
backdrop-filter:blur(10px);
}

.client-card:hover{
transform:translateY(-10px) scale(1.05);
box-shadow:0 0 30px rgba(255,0,0,0.3);
}

/* icon */

.icon{
width:45px;
height:45px;
background:#ff2a2a;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:15px;
font-size:14px;
}

/* animation */

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

/* _____________________________________________ */

.clients-section{
background:#000;
padding:120px 20px;
color:white;
font-family:sans-serif;
position:relative;
overflow:hidden;
}

.clients-header{
text-align:center;
margin-bottom:70px;
}

.clients-header .sub{
color:#ff2a2a;
letter-spacing:3px;
font-size:14px;
}

.clients-header h2{
font-size:48px;
margin-top:10px;
}

.clients-header h2 span{
color:#ff2a2a;
}

.clients-header p{
color:#aaa;
margin-top:15px;
}


/* slider container */

.logo-slider{
position:relative;
max-width:1200px;
margin:auto;
overflow:hidden;
}

/* blur edges */

.logo-slider::before,
.logo-slider::after{
content:"";
position:absolute;
top:0;
width:200px;
height:100%;
z-index:2;
pointer-events:none;
}

.logo-slider::before{
left:0;
background:linear-gradient(to right,#000,transparent);
}

.logo-slider::after{
right:0;
background:linear-gradient(to left,#000,transparent);
}


/* scrolling track */

.logo-track{
display:flex;
align-items:center;
gap:120px;
width:max-content;
animation:scroll 25s linear infinite;
}


/* logos */

.logo-track img{
height:200px;   /* increased size */
width:auto;
opacity:0.8;
transition:all 0.4s ease;
filter:grayscale(100%);
}

/* hover effect */

.logo-track img:hover{
opacity:1;
filter:grayscale(0%);
transform:scale(1.15);
}


/* infinite animation */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* =====================================
   EXPERTISE SECTION
===================================== */

.expertise-section {
  padding: 140px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Red ambient background glow */

/* .expertise-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  width: 1000px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.35),
    transparent 70%
  );
  transform: translateX(-50%);
  filter: blur(180px);
  z-index: 0;
} */

/* Main Container */
/* =====================================
   EXPERTISE CONTAINER - EXACT BORDER
===================================== */

.expertise-container {
  position: relative;
  z-index: 2;
  width: 85%;
  margin: auto;
  padding: 90px;

  background: #000;
  border-radius: 35px;

  display: grid;
  grid-template-columns: 1.1fr 1px 1fr;
  gap: 60px;
  align-items: center;

  overflow: hidden;
}

/* OUTER RED FRAME */

.expertise-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 35px;
  padding: 14px; /* thickness of border */

  background: linear-gradient(
    to bottom,
    #ff3b3b 0%,
    #ff2b2b 30%,
    rgba(255, 0, 0, 0.6) 60%,
    rgba(255, 0, 0, 0.2) 80%,
    transparent 100%
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* OUTSIDE GLOW */

/* .expertise-container::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: 90%;
  height: 200px;
  background: radial-gradient(
    ellipse,
    rgba(255, 0, 0, 0.8),
    transparent 70%
  );
  transform: translateX(-50%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
} */
/* Left Side */

.expertise-left h2 {
  font-size: 42px; /* reduced size */
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.expertise-left span {
  color: #ff2b2b;
  font-weight: 600;
}

/* Stats */

.expertise-stats {
  display: flex;
  gap: 60px;
  margin-top: 50px;
}

.stat h3 {
  font-size: 38px; /* reduced */
  color: #ff2b2b;
  margin-bottom: 8px;
}

.stat p {
  color: #bdbdbd;
  max-width: 220px;
  font-size: 14px;
  line-height: 1.6;
}

/* Divider */

.expertise-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

/* Right Side */

.expertise-item {
  margin-bottom: 40px;
}

.expertise-item h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.expertise-item h4 span {
  color: #ff2b2b;
  margin-right: 10px;
  font-size: 20px;
}

.expertise-item p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

/* ===============================
   CAPABILITIES SECTION
================================ */

.capabilities-section {
  position: relative;
  padding: 160px 0;
  background: #000;
  overflow: hidden;
  
}

/* Red ambient glow */
.cap-ambient {
  position: absolute;
  top: 50%;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle,
      rgba(255, 0, 0, 0.4),
      transparent 70%);
  transform: translateY(-50%);
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

/* Glass container */
.cap-container {
  position: relative;
  z-index: 2;
  width: 85%;
  margin: auto;
  padding: 80px;
  border-radius: 40px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 80px rgba(255, 0, 0, 0.15),
    inset 0 0 30px rgba(255,255,255,0.03);
}

/* Header layout */
.cap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Text */
.cap-title {
  font-size: 34px;
  color: #fff;
  margin-bottom: 20px;
}

.cap-sub {
  color: #cbd5e1;
  max-width: 520px;
  line-height: 1.6;
}

/* Rotating Circle */
.cap-circle {
  position: relative;
  width: 170px;
  height: 170px;
}

.cap-circle svg {
  width: 100%;
  height: 100%;
  fill: red;
  animation: rotateCircle 12s linear infinite;
}

.cap-circle text {
  fill: #ff0000;
  text-transform: uppercase;
}

.cap-circle textPath {
  dominant-baseline: middle;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Arrow inside circle */
.circle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 0.4s ease;
}

.circle-arrow::before,
.circle-arrow::after {
  content: "";
  position: absolute;
  background: white;
  transition: 0.4s ease;
}

.circle-arrow::before {
  width: 30px;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.circle-arrow::after {
  width: 3px;
  height: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.cap-circle:hover .circle-arrow {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1.15);
}

/* Marquee */
.cap-marquee {
  margin-top: 80px;
  overflow: hidden;
}

.cap-track {
  display: flex;
  gap: 25px;
  width: max-content;
  padding: 30px;
}

.cap-card {
  width: 200px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s ease;
}

.cap-card img {
  max-width: 70%;
  filter: brightness(0.9);
  transition: 0.4s ease;
}

.cap-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
}

.cap-card:hover img {
  filter: brightness(1.1);
}

.cap-container {
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}


/* ===============================================
   WHY THRILLS SECTION
=============================================== */


.why-ai {
  position: relative;
  padding: 200px 0;
  background: #050505;
  overflow: hidden;
}

/* Red Glow Background */

.why-ai::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -400px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255,0,0,0.25), transparent 70%);
  transform: translateY(-50%);
  filter: blur(160px);
  z-index: 0;
}


/* 3D Objects */

.ai-objects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mesh {
  position: absolute;
  opacity: 0.15;
  animation: rotateMesh 25s linear infinite;
}

.mesh-1 {
  top: 10%;
  left: 5%;
  width: 350px;
}

.mesh-2 {
  bottom: 10%;
  right: 5%;
  width: 400px;
  animation-direction: reverse;
}

@keyframes rotateMesh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Layout */

.why-ai-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 140px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.why-label {
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.why-label .dot {
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
}

.why-ai-title {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.why-ai-title span {
  color: red;
}

.why-ai-desc {
  font-size: 20px;
  color: #aaa;
  max-width: 600px;
  margin-bottom: 60px;
}

/* Cards */

.why-ai-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-ai-card {
  padding: 35px;
  border-radius: 20px;
  background: rgba(20,20,20,0.8);
  border: 1px solid rgba(255,0,0,0.2);
  backdrop-filter: blur(20px);
  transition: 0.4s ease;
}

.why-ai-card:hover {
  transform: translateY(-10px);
  border-color: red;
  box-shadow: 0 25px 70px rgba(255,0,0,0.3);
}

.why-ai-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.why-ai-card p {
  font-size: 16px;
  color: #999;
}

/* RIGHT IMAGE */

.why-ai-image {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.why-ai-image img {
  width: 100%;
  border-radius: 50px;
  display: block;
  transition: 0.6s ease;
}

.why-ai-image:hover img {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 992px) {
  .why-ai-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .why-ai-title {
    font-size: 42px;
  }

  .why-ai-desc {
    font-size: 16px;
  }
}


/* =========================================
   THRILLS – HOW IT WORKS SECTION
========================================= */

.thrills-process {
  position: relative;
  padding: 150px 0;
  background: #000;
  overflow: hidden;
}

/* Red ambient glow background */
.thrills-process::before {
  content: "";
  position: absolute;
  top: 35%;
  left: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.35),
    transparent 70%
  );
  filter: blur(150px);
  z-index: 0;
}

.container {
  width: 85%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.process-header {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 90px;
}

.process-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.process-label .dot {
  width: 8px;
  height: 8px;
  background: #ff2b2b;
  border-radius: 50%;
}

.process-left h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
}

.process-left h2 span {
  color: #ff2b2b;
}

.process-right p {
  max-width: 420px;
  font-size: 16px;
  color: #c5c5c5;
  line-height: 1.7;
}

/* =========================================
   PROCESS CARDS
========================================= */

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* =========================================
   CARD BASE
========================================= */

.process-card {
  position: relative;
  padding: 45px 35px 120px;
  border-radius: 26px;

  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.6s ease,
    border-color 0.4s ease;

  overflow: hidden;
}

/* Title */
.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* Description */
.process-card p {
  font-size: 15px;
  font-weight: 400;
  color: #b8b8b8;
  line-height: 1.7;
  transition: color 0.4s ease;
}

/* =========================================
   STEP NUMBER
========================================= */

.step-info {
  position: absolute;
  bottom: 30px;
  left: 35px;
}

.step-info span {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 1px;
}

.step-info h4 {
  font-size: 34px;
  font-weight: 600;
  color: #ff2b2b;
  transition: color 0.5s ease;
}

/* =========================================
   CORNER BLOCK – SMOOTH LIQUID FILL
========================================= */

.step-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 120px;
  border-top-left-radius: 40px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ff1a1a;
}

/* White expansion layer */
.step-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;

  width: 0;
  height: 0;

  background: #ffffff;
  border-top-left-radius: 100%;

  transition:
    width 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    height 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* =========================================
   HOVER EFFECT
========================================= */

.process-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #ff2b2b;
  box-shadow:
    0 25px 70px rgba(255, 0, 0, 0.35),
    0 0 40px rgba(255, 0, 0, 0.2);
}

/* Smooth curved fill expansion */
.process-card:hover .step-icon::before {
  width: 240%;
  height: 240%;
}

/* Text brighten */
.process-card:hover p {
  color: #e6e6e6;
}

/* Step number brighten */
.process-card:hover .step-info h4 {
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .process-header {
    flex-direction: column;
    gap: 30px;
  }

  .process-left h2 {
    font-size: 32px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 35px 30px 110px;
  }
}


/* =========================================
   THRILLS JOIN SECTION (FINAL PREMIUM)
========================================= */

.thrills-join {
  position: relative;
  padding: 140px 0;
  background: #000;
  overflow: hidden;
}

/* Background red glow */
.thrills-join::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -250px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,0,0,0.35), transparent 70%);
  filter: blur(150px);
  z-index: 0;
}

.join-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ================= HEADER ================= */

.join-header {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 90px;
}

.join-left h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2;
}

.join-left h2 span {
  color: #ff2b2b;
}

.join-right p {
  max-width: 420px;
  font-size: 16px;
  color: #bdbdbd;
  line-height: 1.7;
}

/* ================= GRID ================= */

.join-socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

/* ================= CARD ================= */

/* ================= CARD ================= */

.social-card {
  position: relative;
  padding: 75px 32px 35px 32px; /* extra top space */
  border-radius: 28px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-width: 0;
  /* overflow: hidden;  */

  transition:
    transform 0.5s cubic-bezier(.19,1,.22,1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* ================= CLEAN CORNER WAVE ================= */

/* .social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 300px;
  height: 300px;

  background: radial-gradient(circle,
              #ff1a1a 0%,
              #ff1a1a 40%,
              transparent 70%);

  transform: translate(-60%, -60%) scale(0);
  transform-origin: top left;

  transition: transform 0.8s cubic-bezier(.19,1,.22,1);

  z-index: 0;
} */


.social-card:hover::before {
  transform: translate(-60%, -60%) scale(1.4);
}

/* ================= LOGO (FULL ROUND CORNER STYLE) ================= */

.social-icon {
  position: absolute;
  top: 0;
  left: 0;

  width: 95px;
  height: 95px;

  border-radius: 50%;
  background: #ff1a1a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 28px;
  color: #000;

  transform: translate(-30%, -30%); /* visually outside but not clipped */

  z-index: 3;

  transition:
    transform 0.5s cubic-bezier(.19,1,.22,1),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.social-card:hover .social-icon {
  transform: translate(-30%, -30%) scale(1.08);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(255,0,0,0.4);
}

/* ================= CONTENT ================= */

.social-content {
  margin-left: 55px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.social-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.social-content p {
  font-size: 14px;
  color: #9f9f9f;
  transition: color 0.4s ease;
}

.social-card:hover .social-content p {
  color: #fff;
}

.card-mid{
  display: flex;
  gap: 20px;
}

/* ================= ARROW ================= */

.social-arrow {
  position: relative;
  z-index: 2;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s ease;
  
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: #ff2b2b;
  box-shadow: 0 20px 60px rgba(255,0,0,0.3);
}

.social-card:hover .social-arrow {
  background: #ffffff;
  color: #000;
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .join-socials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .thrills-join{
    padding: 20px ;
  }

  .join-header {
    flex-direction: column;
    gap: 30px;
  }

  .join-left h2 {
    font-size: 32px;
  }

  .join-socials {
    grid-template-columns: 1fr;
  }
}



/* ===============================
   ABOUT PAGE STARTS
================================ */


/* =========================
ABOUT PAGE HERO
========================= */

.about-page-hero{
position:relative;
height:320px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
background:#000;
}

/* background image */

.about-page-hero::before{
content:"";
position:absolute;
inset:0;

background-image:url("../images/mesh1.png"); /* your wave image */
background-size:cover;
background-position:center;

opacity:.35;
z-index:0;
}

/* red gradient overlay */

.about-hero-overlay{
position:absolute;
inset:0;

background:
radial-gradient(circle at 40% 50%,rgba(255,0,0,0.25),transparent 60%);

filter:blur(60px);
z-index:1;
}

/* content */

.about-hero-content{
position:relative;
z-index:2;
}

.about-hero-content h1{
font-size:64px;
font-weight:500;
letter-spacing:.5px;
}

.about-hero-content span{
color:#ff2b2b;
font-weight:600;
}

/* breadcrumb */

.breadcrumb{
margin-top:20px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
font-size:16px;
}

.breadcrumb a{
color:#d1d5db;
text-decoration:none;
}

.breadcrumb span{
color:#fff;
}

.breadcrumb p{
color:#ff2b2b;
}

/* =========================
WHO WE ARE SECTION
========================= */

.who-premium{
padding:160px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* ambient glow */

.who-glow{
position:absolute;
top:50%;
left:-200px;

width:900px;
height:900px;

background:radial-gradient(
circle,
rgba(255,0,0,0.35),
transparent 70%
);

filter:blur(160px);

transform:translateY(-50%);
pointer-events:none;
}

/* grid */

.who-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

/* left */

.section-tag{
font-size:13px;
letter-spacing:2px;
color:#aaa;
display:block;
margin-bottom:20px;
}

.who-left h2{
font-size:48px;
line-height:1.2;
margin-bottom:30px;
}

.who-left span{
color:#ff2b2b;
}

.who-left p{
color:#cbd5e1;
line-height:1.7;
margin-bottom:20px;
max-width:520px;
}

/* cards */

.who-cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* card */

.who-card{
position:relative;

padding:35px;
border-radius:20px;

background:rgba(255,255,255,0.03);

border:1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(20px);

transition:all .4s ease;

overflow:hidden;
}

/* gradient hover overlay */

.who-card::before{
content:"";

position:absolute;
inset:0;

background:linear-gradient(
120deg,
transparent,
rgba(255,0,0,0.15),
transparent
);

opacity:0;
transition:.4s;
}

.who-card:hover::before{
opacity:1;
}

/* hover effect */

.who-card:hover{
transform:translateY(-10px);
border-color:#ff2b2b;

box-shadow:
0 20px 60px rgba(255,0,0,0.25);
}

/* icon */

.who-icon{
width:50px;
height:50px;

border-radius:12px;

background:#ff2b2b;

display:flex;
align-items:center;
justify-content:center;

font-size:12px;
font-weight:700;

margin-bottom:18px;
}

/* text */

.who-card h3{
font-size:18px;
margin-bottom:8px;
}

.who-card p{
font-size:14px;
color:#bdbdbd;
line-height:1.6;
}


/* =========================
TIMELINE PREMIUM
========================= */

.timeline-premium{
padding:160px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* ambient glow */

.timeline-glow{
position:absolute;
top:50%;
right:-250px;

width:900px;
height:900px;

background:radial-gradient(
circle,
rgba(255,0,0,0.35),
transparent 70%
);

filter:blur(160px);

transform:translateY(-50%);
pointer-events:none;
}

/* title */

.timeline-title{
text-align:center;
font-size:48px;
margin-bottom:100px;
}

.timeline-title span{
color:#ff2b2b;
}

/* wrapper */

.timeline-wrapper{
position:relative;
max-width:800px;
margin:auto;
}

/* vertical line */

.timeline-line{
position:absolute;
left:20px;
top:0;

width:2px;
height:100%;

background:linear-gradient(
to bottom,
transparent,
#ff2b2b,
transparent
);
}

/* item */

.timeline-item{
position:relative;
padding-left:80px;
margin-bottom:80px;
}

/* dot */

.timeline-dot{
position:absolute;
left:10px;
top:5px;

width:22px;
height:22px;

border-radius:50%;

background:#ff2b2b;

box-shadow:
0 0 20px #ff2b2b,
0 0 40px rgba(255,0,0,0.5);
}

/* card */

.timeline-card{
padding:30px;
border-radius:20px;

background:rgba(255,255,255,0.03);

border:1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(20px);

transition:.4s;
}

/* hover */

.timeline-card:hover{
transform:translateY(-6px);
border-color:#ff2b2b;

box-shadow:
0 20px 60px rgba(255,0,0,0.25);
}

.timeline-card h3{
font-size:22px;
margin-bottom:10px;
color:#ff2b2b;
}

.timeline-card p{
color:#cbd5e1;
line-height:1.7;
font-size:14px;
}


/* =========================
MISSION SECTION
========================= */

.about-mission{
padding:160px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* glow */

.mission-glow{
position:absolute;
right:-300px;
top:50%;

width:900px;
height:900px;

background:radial-gradient(
circle,
rgba(255,0,0,0.35),
transparent 70%
);

filter:blur(160px);

transform:translateY(-50%);
pointer-events:none;
}

/* grid */

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:100px;
align-items:start;
}

/* left */

.mission-left h2{
font-size:56px;
line-height:1.2;
margin-top:20px;
}

.mission-left span{
color:#ff2b2b;
}

/* 3d object */

.mission-3d{
margin-top:80px;
}

.mission-3d img{
width:260px;
opacity:.85;
}

/* timeline */

.mission-timeline{
position:relative;
padding-left:40px;
}

/* vertical line */

.timeline-line{
position:absolute;
left:10px;
top:0;
width:2px;
height:100%;

background:linear-gradient(
to bottom,
transparent,
#ff2b2b,
transparent
);
}

/* item */

.mission-item{
position:relative;
margin-bottom:70px;
}

/* node */

.mission-dot{
position:absolute;
left:-34px;
top:6px;

width:18px;
height:18px;

background:#ff2b2b;
border-radius:50%;

box-shadow:
0 0 15px #ff2b2b,
0 0 35px rgba(255,0,0,0.5);
}

/* card */

.mission-card{
padding:30px;
border-radius:16px;

background:rgba(255,255,255,0.03);

border:1px solid rgba(255,255,255,0.08);

backdrop-filter:blur(20px);

transition:.4s;
}

.mission-card:hover{
transform:translateY(-6px);
border-color:#ff2b2b;

box-shadow:
0 20px 50px rgba(255,0,0,0.25);
}

.mission-card h3{
margin-bottom:10px;
font-size:20px;
}

.mission-card p{
color:#cbd5e1;
line-height:1.7;
font-size:14px;
}



/* =========================
APPROACH SECTION
========================= */

.approach-section{
padding:150px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* red glow */

.approach-bg{
position:absolute;
right:-300px;
top:50%;

width:800px;
height:800px;

background:radial-gradient(circle,
rgba(255,0,0,0.35),
transparent 70%);

filter:blur(160px);

transform:translateY(-50%);
pointer-events:none;
}

/* header */

.approach-header{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:80px;
margin-bottom:80px;
}

.approach-left h2{
font-size:56px;
line-height:1.2;
}

.approach-left span{
color:#ff2b2b;
}

.approach-right p{
max-width:460px;
color:#cbd5e1;
line-height:1.7;
}

/* cards */

.approach-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

/* card */

.approach-card{
padding:28px;
border-radius:22px;

background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);

transition:.4s;
}

.approach-card:hover{
transform:translateY(-10px);
border-color:#ff2b2b;
box-shadow:0 20px 60px rgba(255,0,0,0.25);
}

/* image */

.card-image{
position:relative;
overflow:hidden;
border-radius:16px;
margin-bottom:20px;
}

.card-image img{
width:100%;
display:block;
transition:transform .6s ease;
}

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

/* icon */

.card-icon{
position:absolute;
bottom:16px;
left:16px;

color:#b4ff3b;
font-size:26px;

background:rgba(0,0,0,.6);
padding:6px 10px;
border-radius:8px;
}

/* title */

.approach-card h3{
font-size:20px;
margin-bottom:10px;
}

.approach-card p{
color:#cbd5e1;
font-size:14px;
line-height:1.7;
}


/* =============================
DIGITAL INNOVATION SECTION
============================= */


.innovation-clean{
padding:140px 0;
background:#000;
position:relative;
}

/* container */

.innovation-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:100px;
align-items:center;
}

/* left */

.section-label{
color:#ff2b2b;
letter-spacing:2px;
font-size:13px;
}

.innovation-content h2{
font-size:52px;
line-height:1.2;
margin:20px 0;
}

.innovation-content h2 span{
color:#ff2b2b;
}

.innovation-content p{
color:#bdbdbd;
max-width:480px;
line-height:1.7;
margin-bottom:40px;
}

/* media */

.innovation-media img{
width:260px;
border-radius:8px;
display:block;
}

.reviews{
color:#ff2b2b;
margin-top:10px;
font-size:16px;
}

.reviews span{
color:#aaa;
margin-left:8px;
font-size:14px;
}

/* button */

.innovation-btn{
display:inline-block;
margin-top:20px;
color:#ff2b2b;
text-decoration:none;
font-weight:500;
}

/* stats */

.innovation-stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* stat card */

.stat-box{
padding:35px;
border-radius:16px;

background:#0a0a0a;
border:1px solid rgba(255,255,255,0.06);

transition:.3s ease;
}

.stat-box:hover{
border-color:#ff2b2b;
transform:translateY(-5px);
}

/* number */

.stat-box h3{
font-size:40px;
color:#ff2b2b;
margin-bottom:10px;
}

.stat-box p{
color:#bdbdbd;
font-size:14px;
}

/* =====================================
PARTNERS SECTION
===================================== */
/* =====================================
PARTNERS SECTION (THRILLS THEME)
===================================== */

.partners-section{
padding:140px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* RED AMBIENT BACKGROUND */

.partners-section::before{
content:"";
position:absolute;
top:-200px;
right:-200px;

width:800px;
height:800px;

background:radial-gradient(circle,
rgba(255,0,0,0.35),
transparent 70%);

filter:blur(150px);
z-index:0;
}

.partners-section::after{
content:"";
position:absolute;
bottom:-200px;
left:-200px;

width:800px;
height:800px;

background:radial-gradient(circle,
rgba(255,0,0,0.25),
transparent 70%);

filter:blur(180px);
z-index:0;
}

/* container */

.partners-container{
width:85%;
margin:auto;
position:relative;
z-index:2;
}

/* wrapper card */

.partners-grid{

background:rgba(255,255,255,0.02);

border:1px solid rgba(255,255,255,0.08);

border-radius:30px;

padding:80px;

display:grid;
grid-template-columns:1fr 1.4fr;
gap:80px;
align-items:center;

backdrop-filter:blur(6px);

}

/* left content */

.section-label{
color:#ff2b2b;
letter-spacing:2px;
font-size:13px;
}

.partners-left h2{
font-size:52px;
line-height:1.2;
margin-top:15px;
}

.partners-left span{
color:#ff2b2b;
}

/* logos grid */

.partners-logos{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* partner card */

.partner-card{

display:flex;
align-items:center;
gap:12px;

padding:20px 25px;

background:#080808;

border-radius:14px;

border:1px solid rgba(255,255,255,0.05);

transition:.35s ease;

}

.partner-card img{
width:28px;
height:28px;
}

.partner-card span{
color:#fff;
font-weight:500;
}

/* hover */

.partner-card:hover{

transform:translateY(-5px);

border-color:#ff2b2b;

box-shadow:0 10px 35px rgba(255,0,0,0.25);

}


/* =========================
FAQ SECTION
========================= */

.faq-section{
padding:140px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* red glow */

.faq-section::before{
content:"";
position:absolute;
top:-200px;
right:-200px;

width:800px;
height:800px;

background:radial-gradient(circle,
rgba(255,0,0,0.35),
transparent 70%);

filter:blur(150px);
}

.faq-container{
width:85%;
margin:auto;
position:relative;
z-index:2;
}

.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

/* images */

.faq-images{
position:relative;
}

.main-img{
width:100%;
border-radius:20px;
}

.floating-img{
position:absolute;
top:-80px;
left:300px;

width:260px;
border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.5);
}

/* =========================
CALL BUTTON
========================= */

.faq-call{
position:absolute;
bottom:25px;
left:25px;

display:flex;
align-items:center;
gap:10px;

padding:14px 22px;

background:rgba(0,0,0,0.7);
backdrop-filter:blur(10px);

border-radius:14px;
border:1px solid rgba(255,255,255,0.08);

color:#9cff3b;
font-weight:500;
font-size:14px;

text-decoration:none;

overflow:hidden;

animation:callFloat 3s ease-in-out infinite;

transition:all .35s ease;
}

/* Hover */

.faq-call:hover{
background:#ff2b2b;
color:#fff;
transform:scale(1.05);
box-shadow:0 10px 35px rgba(255,0,0,.35);
}


/* =========================
PHONE ICON
========================= */

.call-icon{
position:relative;
font-size:16px;
z-index:2;
}


/* =========================
PULSE RINGS
========================= */

.call-icon::before,
.call-icon::after{
content:"";

position:absolute;
left:50%;
top:50%;

width:32px;
height:32px;

border-radius:50%;
border:2px solid #9cff3b;

transform:translate(-50%,-50%);

animation:callPulse 2s infinite;
opacity:.6;
}

.call-icon::after{
animation-delay:1s;
}


/* =========================
LEFT RIGHT FLOAT
========================= */

@keyframes callFloat{

0%{
transform:translateX(0px);
}

50%{
transform:translateX(50px);
}

100%{
transform:translateX(0px);
}

}


/* =========================
PULSE EFFECT
========================= */

@keyframes callPulse{

0%{
transform:translate(-50%,-50%) scale(0.8);
opacity:0.6;
}

70%{
transform:translate(-50%,-50%) scale(1.6);
opacity:0;
}

100%{
opacity:0;
}

}

/* right content */

.section-label{
color:#ff2b2b;
font-size:13px;
letter-spacing:2px;
}

.faq-content h2{
font-size:48px;
line-height:1.2;
margin:20px 0 40px;
}

.faq-content span{
/* color:#ff2b2b; */
color: white;
}

/* accordion */

.faq-item{
border:1px solid rgba(255,255,255,.1);
border-radius:12px;
margin-bottom:15px;
overflow:hidden;
}

.faq-question{
width:100%;
background:none;
border:none;

color:#fff;
font-size:18px;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px;
cursor:pointer;
}

.faq-answer{
display:none;
padding:0 20px 20px;
color:#bbb;
line-height:1.6;
}

.faq-item.active .faq-answer{
display:block;
}

.faq-icon{

background:#ff2b2b;
color:#ffffff;
font-weight: bold;

width:28px;
height:28px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;
}



/* =========================
TEAM SECTION
========================= */

.team-section{
padding:140px 0;
background:#000;
position:relative;
overflow:hidden;
}

/* animated grid */

.team-grid-bg{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;

background-image:
linear-gradient(rgba(255,0,0,.05) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,0,0,.05) 1px,transparent 1px);

background-size:70px 70px;

animation:gridMove 20s linear infinite;

z-index:0;
}

@keyframes gridMove{

0%{
transform:translateY(0);
}

100%{
transform:translateY(70px);
}

}


/* container */

.team-container{
width:85%;
margin:auto;
position:relative;
z-index:2;
}

/* header */

.team-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:90px;
}

.section-tag{
color:#ff2b2b;
letter-spacing:2px;
font-size:13px;
}

.team-header h2{
font-size:44px;
margin:20px 0;
}

.team-header span{
color:#ff2b2b;
}

.team-header p{
color:#9ca3af;
line-height:1.7;
}


/* grid */

.team-grid{
display:grid;
grid-template-columns:repeat(3,280px);
justify-content:center;
gap:40px;
}

/* Tablet */

@media(max-width:1000px){
.team-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */

@media(max-width:600px){
.team-grid{
grid-template-columns:1fr;
}
}


/* CARD */

.team-card{

position:relative;

background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);

border-radius:22px;

overflow:hidden;

transition:.4s ease;

transform-style:preserve-3d;
}

.team-card:hover{

border-color:#ff2b2b;

box-shadow:
0 30px 80px rgba(255,0,0,.25);

}


/* spotlight */

.spotlight{
position:absolute;

width:200px;
height:200px;

background:radial-gradient(circle,#ff0000,transparent 70%);

opacity:0;

pointer-events:none;

transition:.2s;

mix-blend-mode:screen;
}


/* image */

.team-img{
height:260px;
overflow:hidden;
}

.team-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s ease;
}

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


/* info */

.team-info{
padding:24px;
}

.team-info h3{
font-size:20px;
margin-bottom:5px;
}

.team-info span{
color:#ff2b2b;
font-size:14px;
}


/* socials */

.team-social{
display:flex;
gap:10px;
margin-top:14px;
}

.team-social a{

width:32px;
height:32px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;
border:1px solid rgba(255,255,255,.2);

font-size:12px;

transition:.3s ease;
}

.team-social a:hover{

background:#ff2b2b;
border-color:#ff2b2b;

}


/* Modal Css  */

.team-modal{
position:fixed;
inset:0;

display:flex;
align-items:center;
justify-content:center;

visibility:hidden;
opacity:0;

z-index:9999;
}

/* overlay */

.team-modal-overlay{
position:absolute;
inset:0;

background:rgba(0,0,0,.75);
backdrop-filter:blur(10px);
}

/* modal box */

.team-modal-content{

background:#0a0a0a;

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

width:850px;
max-width:90%;

padding:50px;

position:relative;

transform:scale(.9);

}

/* close */

.modal-close{
position:absolute;
top:20px;
right:20px;

background:#ff2b2b;
border:none;

width:35px;
height:35px;

border-radius:50%;
cursor:pointer;
}

/* grid */

.modal-grid{
display:grid;
grid-template-columns:300px 1fr;
gap:40px;
align-items:center;
}

.modal-image img{
width:100%;
border-radius:15px;
}

.modal-info h2{
font-size:32px;
margin-bottom:5px;
}

.modal-info span{
color:#ff2b2b;
display:block;
margin-bottom:20px;
}

.modal-info p{
color:#9ca3af;
line-height:1.7;
margin-bottom:20px;
}

/* socials */

.modal-social{
display:flex;
gap:10px;
}

.modal-social a{
padding:8px 16px;
border:1px solid rgba(255,255,255,.2);
border-radius:30px;
transition:.3s;
}

.modal-social a:hover{
background:#ff2b2b;
}