: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;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: clamp(70px, 6vw, 100px) 0 60px; 

    
}
@media (max-width:768px){
.hero-section{
    padding:70px 0 40px;
}
}

#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;
}


/* for form white bar */

/* --- Final Autofill & Text Visibility Fix --- */

#heroForm input:-webkit-autofill,
#heroForm input:-webkit-autofill:hover, 
#heroForm input:-webkit-autofill:focus, 
#heroForm textarea:-webkit-autofill {
    /* Background fix */
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    
    /* Text color ko white par FORCE karne ke liye */
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    
    /* Smoothness transition */
    transition: background-color 5000s ease-in-out 0s;
}

/* Zigzag red/blue lines (Spellcheck) hatane ke liye */
#heroForm input, 
#heroForm textarea {
    
}

/* Selection color fix (agar text select karne par gayab ho) */
#heroForm input::selection,
#heroForm textarea::selection {
    background: #ff1f1f;
    color: white;
}


/* 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: 1.1rem;
    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;
  }
}

/* might ven diagram end */

/* 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: #36454f96;
}

/* 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: 16px;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */

@media (max-width: 768px) {

    .screens-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .screen-img img {
        height: 220px;
    }
}


/* broker */

    .broker-section-wrapper {
        background: #000 !important;
        color: #fff !important;
        font-family: 'Inter', -apple-system, sans-serif !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
        line-height: 1.5 !important;
    }

    .broker-section-wrapper * {
        box-sizing: border-box !important;
    }

    .broker-section-wrapper .partner-section {
        padding: 80px 0 !important;
        background: #000 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        border: none !important;
        width: 100% !important;
        min-height: auto !important;
    }

    .broker-section-wrapper .broker-custom-container {
        width: 100% !important;
        max-width: 1200px !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .broker-section-wrapper .ambient-glow {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 80% !important;
        height: 300px !important;
        background: radial-gradient(circle, rgba(225, 29, 72, 0.12) 0%, transparent 70%) !important;
        filter: blur(60px) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .broker-section-wrapper .partner-title {
        text-align: center !important;
        margin-bottom: 60px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .broker-section-wrapper .partner-title span {
        color: #ff2a2a !important;
        letter-spacing: 6px !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        display: block !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
        text-shadow: 0 0 10px rgba(255, 42, 42, 0.5) !important;
    }

    .broker-section-wrapper .partner-title h3 {
        font-weight: 900 !important;
        font-size: clamp(24px, 4vw, 36px) !important;
        color: #ffffff !important;
        letter-spacing: -1px !important;
        margin: 0 !important;
    }

    .broker-section-wrapper .slider-area {
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        padding: 40px 0 !important;
        z-index: 2 !important;
    }

    .broker-section-wrapper .slider-area::before,
    .broker-section-wrapper .slider-area::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        width: 200px !important;
        height: 100% !important;
        z-index: 5 !important;
        pointer-events: none !important;
    }

    .broker-section-wrapper .slider-area::before {
        left: 0 !important;
        background: linear-gradient(to right, #000 20%, transparent 100%) !important;
    }

    .broker-section-wrapper .slider-area::after {
        right: 0 !important;
        background: linear-gradient(to left, #000 20%, transparent 100%) !important;
    }

    .broker-section-wrapper .slider-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        animation: brokerInfiniteScroll 40s linear infinite !important;
    }

    .broker-section-wrapper .slider-area:hover .slider-track {
        animation-play-state: paused !important;
    }

    @keyframes brokerInfiniteScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ── SLIDE CARD ── no grayscale, no brightness kill */
    .broker-section-wrapper .slide {
        flex: 0 0 auto !important;
        width: 240px !important;
        margin: 0 25px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px 30px !important;
        background: rgba(15, 15, 15, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 14px !important;
        cursor: pointer !important;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        backdrop-filter: blur(10px) !important;
        filter: none !important;   /* ✅ NO grayscale - colors visible always */
        box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    }

    .broker-section-wrapper .slide:hover {
        filter: none !important;
        border-color: rgba(255, 42, 42, 0.7) !important;
        background: rgba(25, 25, 25, 0.95) !important;
        transform: translateY(-8px) scale(1.05) !important;
        box-shadow: 0 15px 35px rgba(255,42,42,0.25), 0 0 25px rgba(255,42,42,0.15) !important;
    }

    /* ── MOCK LOGO ── */
    .broker-section-wrapper .mock-logo {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        font-size: 20px !important;
        font-weight: 800 !important;
        letter-spacing: -0.5px !important;
        white-space: nowrap !important;
    }

    .broker-section-wrapper .mock-logo i {
        font-size: 26px !important;
    filter: drop-shadow(0 0 3px currentColor) !important;
    }

    /* ── BRAND COLORS WITH GLOW — reduced brightness ── */
.broker-section-wrapper .logo-zerodha  { color: #4d9fff !important; text-shadow: 0 0 6px rgba(77,159,255,0.6) !important; }
.broker-section-wrapper .logo-upstox   { color: #b57fff !important; text-shadow: 0 0 6px rgba(181,127,255,0.6) !important; }
.broker-section-wrapper .logo-angel    { color: #ff8c5a !important; text-shadow: 0 0 6px rgba(255,140,90,0.6) !important; }
.broker-section-wrapper .logo-fyers    { color: #00e8ff !important; text-shadow: 0 0 6px rgba(0,232,255,0.6) !important; }
.broker-section-wrapper .logo-dhan     { color: #cc77ff !important; text-shadow: 0 0 6px rgba(204,119,255,0.6) !important; }
.broker-section-wrapper .logo-icici    { color: #ff6b6b !important; text-shadow: 0 0 6px rgba(255,107,107,0.6) !important; }
.broker-section-wrapper .logo-groww    { color: #00f2b6 !important; text-shadow: 0 0 6px rgba(0,242,182,0.6) !important; }
.broker-section-wrapper .logo-hdfc     { color: #5ab4ff !important; text-shadow: 0 0 6px rgba(90,180,255,0.6) !important; }
.broker-section-wrapper .logo-kotak    { color: #ff6060 !important; text-shadow: 0 0 6px rgba(255,96,96,0.6) !important; }
.broker-section-wrapper .logo-religare { color: #3db5ff !important; text-shadow: 0 0 6px rgba(61,181,255,0.6) !important; }
.broker-section-wrapper .logo-jainam   { color: #ffd23f !important; text-shadow: 0 0 6px rgba(255,210,63,0.6) !important; }
.broker-section-wrapper .logo-jhaveri  { color: #ff4d8f !important; text-shadow: 0 0 6px rgba(255,77,143,0.6) !important; }
.broker-section-wrapper .logo-jm       { color: #a07aff !important; text-shadow: 0 0 6px rgba(160,122,255,0.6) !important; }

    @media (max-width: 768px) {
        .broker-section-wrapper .slider-area::before,
        .broker-section-wrapper .slider-area::after {
            width: 80px !important;
        }
        .broker-section-wrapper .slide {
            width: 200px !important;
            margin: 0 15px !important;
            padding: 15px 20px !important;
        }
    }

