:root {
    --primary-red: #ff1f1f;
    --dark-red: #8a0000;
    --bg-black: #050505;
    --bg-card: #111111;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --neon-glow: 0 0 10px rgba(255, 31, 31, 0.7), 0 0 20px rgba(255, 31, 31, 0.5);
}


/* for resposive */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


/* General Reset & Typography */

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    line-height: 1.25; /* Reduced line height for a tighter feel */
    letter-spacing: -0.01em; /* Slight reduction in letter spacing */
}

/* Target the text in the Hero Section specifically */
#hero .hero-content p {
    line-height: 1.5; /* Slightly tighter line height for body text */
}

/* Ensure the form elements retain a standard look, but inherit the font */
#heroForm .form-control,
#heroForm .form-select {
    letter-spacing: normal; /* Keep form inputs normal for readability */
}

a { text-decoration: none; }

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

/* Navbar */



/* Buttons */
.btn-spider {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-spider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-spider:hover {
    color: white;
    box-shadow: var(--neon-glow);
}

.btn-spider:hover::before {
    left: 0;
}

.btn-spider-filled {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
    box-shadow: var(--neon-glow);
}

.btn-spider-filled:hover {
    background-color: transparent;
    color: var(--primary-red);
    box-shadow: none;
}

/* Mobile Platform Toggle Styling */
.platform-toggle {
    background: var(--bg-card);
    padding: 4px;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.platform-toggle .btn {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
}
.platform-toggle .btn-active {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 0 10px rgba(255, 31, 31, 0.5);
}
.platform-toggle .btn-inactive {
    background-color: transparent;
    color: var(--text-gray);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px; 
}

#spiderCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Contact Form inside Hero Specific Styling */
.hero-form-container {
    background: #80808041; 
    backdrop-filter: blur(8px);
    border: 1px solid #ff1f1f8c; 
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 40px #1fffb433;
}

.form-control, .form-select, .form-control:focus, .form-select:focus {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 5px rgba(255, 31, 31, 0.5);
    border-color: var(--primary-red);
    background-color: #111;
}


/* hero form request a demo */

.hero-form-heading {
    font-size: 1.7rem;
    font-weight: 800;           /* Bold */
    color: var(--primary-red);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ff7272, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.4));
}



/* Fix for button text on hover */
.btn-spider,
.btn-spider-filled {
    color: #fff !important; /* default text */
    transition: 0.3s;
}

/* When full red hover happens */
.btn-spider-filled:hover,
.btn-spider:hover {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #fff !important; /* force white text on hover */
}




/* Placeholder color for dark theme */
.form-control::placeholder { 
    color: #FFFFFF; 
    opacity: 1; 
}

/* Textarea specific style */
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Phone input group style */
.input-group-text {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-right: none;
    color: var(--primary-red);
    font-weight: 700;
    border-radius: 4px 0 0 4px;
}
.text-input-group .form-control {
    border-left: none;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-black) 0%, #0e0e0e 50%, var(--bg-black) 100%);
}

.feature-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 31, 31, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-features-list {
    max-width: 900px;
    margin: 0 auto;
}
.app-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 30px;
}


/* === VENN SECTION === */
.venn-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #140000 0%, #050505 60%);
    position: relative;
    overflow: hidden;
}

/* Organized Grid Layout */
.comparison-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Vertical Dividers */
.divider-line {
    width: 2px;
    height: 300px;
    margin: 0 15px;
    position: relative;
    display: none; 
}

.divider-red {
    background: linear-gradient(to bottom, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 15px var(--primary-red);
}

.divider-grey {
    background: linear-gradient(to bottom, transparent, #fff, transparent);
}

@media (min-width: 992px) {
    .divider-line { display: block; }
}

/* List Styling */
.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comp-item {
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.comp-item:hover {
    transform: translateX(10px);
}

.comp-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.comp-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Left List (Algo) */
.comp-list-left .comp-icon-box {
    color: var(--primary-red);
    border-color: rgba(255, 31, 31, 0.3);
    box-shadow: 0 0 10px rgba(255, 31, 31, 0.1);
}

.comp-list-left .comp-text { color: white; }

.comp-list-left .comp-item:hover .comp-icon-box {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 0 20px var(--primary-red);
}

/* Right List (Manual) */
.comp-list-right .comp-icon-box {
    color: #777;
    border-color: #fff;
}

.comp-list-right .comp-text { color: #fff; }

.comp-list-right .comp-item:hover .comp-icon-box {
    border-color: #fff;
    color: #fff;
}

/* === HD VENN CIRCLES (Separated) === */
.venn-visual-container {
    position: relative;
    width: 100%; 
    max-width: 420px; 
    height: 340px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.venn-circle {
    position: absolute;
    width: 230px; 
    height: 230px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}

.venn-circle h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    z-index: 2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shiny Red Circle - Positioned Far Left */
.circle-algo {
    left: 0; 
    background: radial-gradient(130% 130% at 30% 30%, rgba(255, 31, 31, 0.1) 0%, rgba(50, 0, 0, 0.8) 100%);
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 30px rgba(255, 31, 31, 0.2), inset 0 0 20px rgba(255, 31, 31, 0.1);
    color: #fff;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* Shiny Grey Circle - Positioned Far Right */
.circle-manual {
    right: 0;
    background: radial-gradient(130% 130% at 70% 30%, rgba(100, 100, 100, 0.1) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid #73AF6F;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    color: #73AF6F;
    z-index: 1;
    animation: float 6s ease-in-out infinite reverse;
}

/* Shine effect */
.venn-circle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* VS Badge */
.vs-badge {
    position: absolute;
    z-index: 5;
    width: 50px;
    height: 50px;
    background: #000;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}



/* ---- fix venn diagram on mobile ---- */
@media (max-width: 768px) {

  .venn-visual-container {
      width: 320px;
      height: 300px;
  }

  .venn-circle {
      width: 190px;
      height: 190px;
  }

  .circle-algo {
      left: -20px;   /* left shift */
      top: 20px;
  }

  .circle-manual {
      right: -20px;  /* right shift */
      bottom: 20px;
  }

  /* make text readable on small */
  .venn-circle h3 {
      font-size: 1.1rem;
      line-height: 1.2;
  }

  /* VS middle */
  .vs-badge {
      bottom: 42%;
      left: 50%;
      transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .circle-algo {
      left: -30px;
  }
  .circle-manual {
      right: -30px;
  }
}



/* Stats Section */
.stats-section {
    padding: 70px 0;
    background: url('https://images.unsplash.com/photo-1611974765270-ca1258634369?q=80&w=1920&auto=format&fit=crop')
        no-repeat center / cover;
    position: relative;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(109, 80, 80, 0.8);
}

/* Stat card */
.stat-item {
    padding: 20px 10px;
}

.stat-item h3 {
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Rating */
.rating-stars i {
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ffeb7f, #e0b400, #ffdf00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.7));
}

.rating-number {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    background: linear-gradient(45deg, #ffeb7f, #d4a000, #ffdf00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-number span {
    font-size: 1.2rem;
}

/* Disable parallax on mobile (very important) */
@media (max-width: 768px) {
    .stats-section {
        background-attachment: scroll;
        padding: 50px 0;
    }
}

/* Mobile App Section Styling */
/* .app-section {
    padding: 100px 0;
    background: var(--bg-black);
}

.app-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.app-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255, 31, 31, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(255, 31, 31, 0.3);
}

.app-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}
.app-feature-desc {
     color: var(--text-gray);
     font-size: 0.9rem;
}

.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    border: 12px solid #222;
    border-radius: 35px;
    background: #000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    padding: 5px;
}
.phone-mockup:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: #222;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Pricing */
/* .pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 31, 31, 0.15);
}

.popular-badge {
    background: var(--primary-red);
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
}

.price span { font-size: 1rem; color: var(--text-gray); }

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.pricing-list li i {
    color: var(--primary-red);
    margin-right: 10px;
}  */

/* Footer */


.hover-red:hover {
    color: var(--primary-red) !important;
}

/* Animations Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.comp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Tweaks */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-form-container {
        margin-top: 40px;
    }
    .venn-visual-container {
        margin: 40px 0;
        width: 300px;
        height: 300px;
    }
    .venn-circle { width: 180px; height: 180px; }
    .circle-algo { left: 0; }
    .circle-manual { right: 0; }
    .divider-line { display: none; }
    
    .app-features-list {
        margin-top: 40px;
    }
}


/* new footer */

footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 31, 31, 0.1);
    color: #fff; /* ensures default white visibility */
}

/* general text fix */
footer p,
footer a {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* make important labels more visible */
footer h5,
footer .navbar-brand {
    color: #fff !important;
}

/* address block */
.footer-address-block p {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* risk disclaimer */
footer .risk-text {
    color: rgba(255, 255, 255, 0.70) !important;
}

/* hover effect */
.hover-red:hover {
    color: var(--primary-red) !important;
}



/* hero form for shiny */

#heroForm .form-control,
#heroForm .form-select,
#heroForm .input-group-text {
    /* 1. Subtle Background Lift */
    background-color: #1f1f1f; /* Slightly lighter dark background for contrast */
    border-color: #444444;     /* Lighter border for visibility */
    color: white;
    border-radius: 8px;

    /* 2. The Shine Effect (Red Glow) */
    box-shadow: 0 0 10px rgba(255, 31, 31, 0.2); /* Soft initial red glow */
    transition: all 0.3s ease; /* Smooth animation */
}

/* 3. Enhanced Glow on Focus */
#heroForm .form-control:focus,
#heroForm .form-select:focus {
    border-color: var(--primary-red); /* Bright red border on focus */
    /* Stronger, clearer shadow when clicked */
    box-shadow: 0 0 15px rgba(255, 31, 31, 0.6), /* Stronger Red Glow */
                0 0 5px rgba(255, 255, 255, 0.1); /* Slight White Accent */
    background-color: #242424; /* Subtle color change on focus */
}

/* Ensure the Input Group text is visually consistent */
#heroForm .input-group-text {
    background-color: #242424;
    border-right: none;
    color: var(--primary-red);
    font-weight: 700;
}

/* Back To Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #ff1f1f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 99999;
    box-shadow: 0 0 18px rgba(255,31,31,0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    box-shadow: 0 0 25px rgba(255,31,31,0.7);
    transform: translateY(-5px);
}



/* stats rating star */

/* Stars */
/* .rating-stars i {
    font-size: 1.5rem;
    margin-right: 3px;
    background: linear-gradient(45deg, #ffeb7f, #e0b400, #ffdf00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.7));
}

Number (4.5/5)
.rating-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffeb7f, #d4a000, #ffdf00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.6));
}

.rating-number span {
    font-size: 1.6rem;
} 


/* Core Advantages Section */

.gradient-features {
  background: linear-gradient(180deg, #050505 0%, #0a0a0a 60%, #050505 100%);
}

.gf-card {
  background: linear-gradient(145deg, #131313, #0a0a0a);
  border: 1px solid rgba(255, 0, 0, 0.1);
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.gf-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.25);
}

.gf-card::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.25), transparent 60%);
  transition: 0.5s;
  opacity: 0;
}

.gf-card:hover::before {
  opacity: 1;
}

.gf-icon {
  font-size: 42px;
  color: #ff1f1f;
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
}
.gf-card h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.gf-card p {
  font-size: 0.95rem;
  color: #bfbfbf;
  margin: 0;
}



/* ------how it works----- */

.hiw-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b0b0b 0%, #111 50%, #0b0b0b 100%);
}

.hiw-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  color: white;
}
.hiw-title span {
  color: var(--primary-red);
}

.hiw-box {
  background: rgba(20,20,20,0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px 25px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hiw-box:hover {
  transform: translateY(-12px);
  border-color: var(--primary-red);
  box-shadow: 0 0 35px rgba(255, 31, 31, 0.2);
}

.hiw-icon {
  font-size: 2.6rem;
  color: var(--primary-red);
  margin-bottom: 18px;
}

.hiw-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 31, 31, 0.6);
}

.hiw-box h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hiw-box p {
  font-size: 0.91rem;
  color: #bfbfbf;
  line-height: 1.5;
}

/* new !% */

/* SECTION */
.elite-section {
    background: #050505;
    padding: 80px 0;
    overflow: hidden;
}

/* FLEX */
.elite-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.elite-image img {
    max-width: 420px;
    width: 100%;
    display: block;
}

/* CONTENT RIGHT ALIGNED */
.elite-content {
    text-align: right;
}

.elite-content h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.elite-subtext {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* POINTS */
.elite-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

/* Each line */
.elite-points li {
    display: flex;
    flex-direction: row-reverse;   /* 👈 MAGIC */
    align-items: flex-start;
    gap: 10px;
    color: #e5e5e5;
    font-size: 15px;
    margin-bottom: 10px;
    text-align: right;
}

/* Check icon */
.elite-points .check {
    color: var(--primary-red);
    font-weight: bold;
    flex-shrink: 0;
}


/* ==========================
   ANIMATIONS
========================== */

/* Initial hidden state */
/* ==========================
   FADE + SLIDE ANIMATION
========================== */

.animate-left,
.animate-right {
    opacity: 0;
    transform: translateY(30px); /* 👈 vertical slide (safe) */
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* When visible */
.animate-show {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .elite-inner {
        flex-direction: column;
        text-align: center;
    }

    .elite-content {
        text-align: center;
    }

    .elite-image img {
        max-width: 300px;
    }

    .elite-content h2 {
        font-size: 26px;
    }
}




/* gdgdgd */

/* ===============================
   SCREENSHOTS SECTION
================================ */

.elite-screenshots {
    background: #000;
    padding: 80px 0;
}

/* GRID LAYOUT */
.screens-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

/* COLUMN */
.screen-box {
    text-align: center;
}

/* IMAGE CARD */
.screen-img {
    background: #0b0b0b;
    padding: 14px;
    border-radius: 14px;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.65),
        0 0 25px rgba(255,31,31,0.18);
}

/* IMAGE SIZE CONTROL */
.screen-img img {
    width: 100%;
    height: 300px;          /* 👈 controlled height */
    object-fit: cover;      /* no stretch */
    border-radius: 10px;
    display: block;
}

/* TEXT BELOW IMAGE */
.screen-text {
    margin-top: 18px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.screen-text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.screen-text p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */

@media (max-width: 768px) {

    .screens-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .screen-img img {
        height: 220px;
    }
}
