/* =========================================
   ULTRA TRADE - MAIN STYLESHEET
   ========================================= */

/* --- 1. CSS Variables --- */
:root {
    /* UI Colors */
    --jet-black: #111111;
    --ice-white-top: #ffffff;
    --ice-white-bottom: #edf2f7; /* Frosty/ice feel */
    --shiny-blue-light: #00b3ff;
    --shiny-blue-dark: #0051ff;
    --shiny-blue-gradient: linear-gradient(135deg, var(--shiny-blue-light) 0%, var(--shiny-blue-dark) 100%);
    --shadow-soft: 0 4px 20px rgba(0, 81, 255, 0.1);

    /* Ticker Colors (Professional Financial Theme) */
    --ticker-bg: #0d1117; 
    --ticker-border: #1f2937; 
    --text-symbol: #9ca3af; 
    --text-price: #f3f4f6; 
    --trade-green: #10b981; 
    --trade-red: #ef4444;   
}

/* --- 2. Base Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(180deg, var(--ice-white-top) 0%, var(--ice-white-bottom) 100%);
    min-height: 100vh;
    overflow-x: hidden; /* Mobile pe horizontal scroll roklega */
}

/* --- 3. Navbar Styling --- */
.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--jet-black);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a:hover, .nav-links li a.active {
    background: var(--shiny-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--shiny-blue-gradient);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login {
    color: var(--jet-black);
    background: transparent;
    border: 2px solid transparent;
}

.btn-login:hover {
    color: var(--shiny-blue-dark);
}

.btn-register {
    color: #ffffff;
    background: var(--shiny-blue-gradient);
    border: none;
    box-shadow: var(--shadow-soft);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 81, 255, 0.3);
}

/* --- 4. Ticker Styling (Mobile-First & Production Ready) --- */
.ticker-wrap {
    width: 100%;
    background-color: var(--ticker-bg);
    overflow: hidden;
    position: relative;
    margin-top: 65px; /* Mobile navbar height adjustment */
    border-top: 1px solid var(--ticker-border);
    border-bottom: 1px solid var(--ticker-border);
    box-sizing: border-box;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 25s linear infinite;
    will-change: transform; 
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px; 
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item .symbol {
    color: var(--text-symbol);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-item .price {
    color: var(--text-price);
    font-family: 'SFMono-Regular', Consolas, 'Courier New', monospace; 
    font-weight: 600;
    font-size: 13px;
}

.ticker-item .change {
    font-family: 'SFMono-Regular', Consolas, 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.ticker-item .change.up { color: var(--trade-green); }
.ticker-item .change.down { color: var(--trade-red); }

@keyframes tickerScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- 5. Mobile Responsiveness (Media Queries) --- */
@media (max-width: 768px) {
    /* Mobile par navbar links hide kar diye hain taaki design clean rahe */
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 12px 15px;
    }

    /* Adjust logo */
    .logo img {
        height: 32px;
    }

    /* Adjust buttons */
    .nav-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    /* Desktop layout adjustments */
    .ticker-wrap {
        margin-top: 76px; /* Match with desktop navbar height */
    }
    .ticker-item {
        gap: 14px;
        padding: 10px 40px;
    }
    .ticker-item .symbol { font-size: 13px; }
    .ticker-item .price { font-size: 15px; }
    .ticker-item .change { font-size: 13px; }
}

/* ADD THIS TO YOUR BASE BODY STYLING TO KILL BOUNCE */
html, body {
    overflow-x: hidden;
    width: 100%;
    overscroll-behavior-x: none; /* iOS aur Mac par rubber-banding rokta hai */
}

/* =========================================
   HERO SECTION (FIXED OVERLAP & SCROLL)
   ========================================= */

html, body {
    overflow-x: hidden; /* Sirf left-right bounce rokne ke liye */
    width: 100%;
}

/* =========================================
   STATIC BACKGROUND STRIPE (WATERMARK)
   ========================================= */

.hero-section {
    position: relative; /* Ye pehle se hoga, make sure ye hai */
    /* ... baki aapki hero-section ki CSS ... */
}

/* =========================================
   STATIC BACKGROUND STRIPE (WATERMARK) - STRAIGHT & SHIFTED UP
   ========================================= */

.hero-bg-stripe {
    position: absolute;
    /* 'top' ko 45% se kam karke 28% kar diya hai (aap isko 25% ya 30% karke upar-neeche set kar sakte ho) */
    top: 31%; 
    left: 0; /* Tedha nahi hai toh left margin hata diya */
    width: 100%; /* Width wapas normal 100% kar di */
    transform: none; /* Yahan se rotate(-4deg) hata diya taaki seedhi ho jaye */
    
    /* Baki sab same hai */
    background-color: rgba(17, 17, 17, 0.03); 
    border-top: 1px solid rgba(17, 17, 17, 0.05);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    
    padding: 10px 0;
    pointer-events: none; 
    z-index: 0; 
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-stripe span {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    color: rgba(17, 17, 17, 0.05); /* Very light text color for watermark look */
    text-transform: uppercase;
    letter-spacing: 4px;
    white-space: nowrap;
    user-select: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    /* MAGIC: Ye 60px ka margin buttons aur cards ko kabhi overlap nahi hone dega */
    margin-bottom: 60px; 
}

/* Typography & Buttons */
.hero-title { font-size: clamp(32px, 5vw, 64px); font-weight: 700; color: var(--jet-black); line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; text-align: center; }
.hero-title .highlight { background: var(--shiny-blue-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: #4b5563; max-width: 650px; line-height: 1.6; margin-bottom: 40px; font-weight: 400; text-align: center; }
.hero-cta { display: flex; gap: 20px; }
.btn-primary { color: #ffffff; background: var(--shiny-blue-gradient); border: none; box-shadow: var(--shadow-soft); padding: 14px 36px; font-size: 16px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 81, 255, 0.35); }
.btn-outline { color: var(--jet-black); background: transparent; border: 2px solid var(--jet-black); padding: 12px 34px; font-size: 16px; }
.btn-outline:hover { background: var(--jet-black); color: var(--ice-white-top); }

/* =========================================
   IMAGE LOOP (CARDS)
   ========================================= */

.hero-image-wrapper {
    width: 100%;
    /* Position absolute HATA diya. Ab ye normal flow me rahega */
    padding-bottom: 60px; /* Scroll karne ke baad niche space dikhegi */
}

.loop-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.loop-img {
    height: 250px; /* Perfect square cards */
    width: 250px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* JS se jab active hoga tab ye class lagegi */
.scrolling-active {
    animation: scrollLeftToRight 35s linear infinite;
}

@keyframes scrollLeftToRight {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content { margin-bottom: 30px; }
    .hero-cta { flex-direction: column; width: 100%; max-width: 320px; gap: 15px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .loop-img { height: 160px; width: 160px; border-radius: 14px; }
}

/* =========================================
   CORPORATE SPLIT-LEDGER SECTION STYLING
   ========================================= */

.about-section {
    padding: 120px 20px;
    background-color: var(--ice-white-top);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.corporate-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Left text thoda compact, right pillars thode wide */
    gap: 60px;
    align-items: center;
}

/* Left Side Styling */
.corporate-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corp-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--shiny-blue-dark);
    margin-bottom: 15px;
}

.corp-title {
    font-size: clamp(32px, 3.5vw, 46px);
    color: var(--jet-black);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.corp-title .highlight {
    background: var(--shiny-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.corp-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.corp-stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--jet-black);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Right Side Pillars Styling */
.corporate-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corp-pillar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px; /* Slight, professional radius instead of big childish curves */
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.corp-pillar:hover {
    border-color: rgba(0, 81, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 81, 255, 0.06);
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Vector SVG Color styling */
.pillar-icon-box svg {
    stroke: var(--shiny-blue-dark); /* Logo wale blue se match karega */
}

.pillar-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--jet-black);
    margin-bottom: 6px;
}

.pillar-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* =========================================
   STANDARD VERTICAL REVEAL (FOR CORE ASSETS)
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px); /* Shuru mein 40px neeche rahega */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Scroll aate hi apni original position par set ho jayega */
}

/* =========================================
   SMOOTH SCROLL REVEAL ANIMATIONS (CORPORATE)
   ========================================= */

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .about-section {
        padding: 60px 15px;
    }
    
    .corporate-container {
        grid-template-columns: 1fr; /* Mobile par single stack */
        gap: 40px;
    }
    
    .corp-title {
        font-size: 28px;
    }
    
    .corp-stats-row {
        gap: 30px;
    }
}

/* =========================================
   SECTION DIVIDER LINE STYLING
   ========================================= */

.section-divider-line {
    width: calc(100% - 100px); /* Dono taraf space chhodne ke liye */
    max-width: 1100px;
    height: 2px;
    background: var(--shiny-blue-gradient);
    margin: 0 auto;
    opacity: 0.6;
    box-shadow: 0 0 12px rgba(0, 81, 255, 0.25);
}

/* =========================================
   CORE ASSETS SECTION (COMPACT & VIEWPORT FIT)
   ========================================= */

.core-assets-section {
    padding: 70px 20px; /* Padding kam kar di hai taaki screen pe fit aaye */
    background-color: var(--ice-white-top);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.assets-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Centered Header (Compact) */
.assets-header {
    text-align: center;
    margin-bottom: 40px; /* Gap kam kiya taaki cards paas dikhe */
    max-width: 600px;
}

.assets-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--shiny-blue-dark);
    margin-bottom: 8px;
    display: inline-block;
}

.assets-title {
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--jet-black);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 10px;
}

.assets-title .highlight {
    background: var(--shiny-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.assets-subtitle {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

/* 3 Compact Cards Grid */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.asset-product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 22px; /* Cards ka size chota kiya */
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.asset-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 81, 255, 0.08);
    border-color: rgba(0, 81, 255, 0.2);
}

.product-badge {
    position: absolute;
    top: 34px; /* Image box ke bilkul upar right corner me set karne ke liye */
    right: 34px;
    background: rgba(11, 15, 25, 0.75); /* Rich dark translucent background */
    backdrop-filter: blur(6px); /* Glass blur effect */
    color: #ffffff; /* Text ekdum white rahega taaki saaf dikhe */
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Halka sa fine border */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Image Showcase Box (Fixed Fitting) */
.product-img-box {
    width: 100%;
    height: 130px; /* Box ki height thodi si badha di hai taaking image khuli dikhe */
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden; /* Bahar nikalne wali image ko hide karega */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Yeh image ko box ke andar ekdum properly fill kar dega */
    transition: transform 0.3s ease;
}

.asset-product-card:hover .product-img-box img {
    transform: scale(1.05); /* Hover par smooth zoom effect */
}

/* Content Details */
.product-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--jet-black);
    margin-bottom: 4px;
}

.product-spec {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 14px;
    font-family: 'SFMono-Regular', Consolas, monospace;
}

.product-price-box {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 10px 14px;
}

.product-price-box .label {
    display: block;
    font-size: 9px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.val-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.val-row .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--jet-black);
    font-family: 'SFMono-Regular', Consolas, monospace;
}

.val-row .change {
    font-size: 11px;
    font-weight: 700;
    font-family: 'SFMono-Regular', Consolas, monospace;
}

.val-row .change.up { color: #059669; }
.val-row .change.down { color: #dc2626; }

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .assets-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 380px;
    }
    .section-divider-line {
        width: calc(100% - 40px);
    }
}

/* =========================================
   CRUDE MARQUEE SECTION (REFINED & CLEAN)
   ========================================= */

.crude-marquee-section {
    padding: 100px 0;
    background-color: var(--ice-white-top);
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.marquee-container-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marquee-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 650px;
    padding: 0 20px;
}

.marquee-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--shiny-blue-dark);
    margin-bottom: 10px;
    display: inline-block;
}

.marquee-title {
    font-size: clamp(30px, 3.5vw, 42px);
    color: var(--jet-black);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 12px;
}

.marquee-title .highlight {
    background: var(--shiny-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marquee-subtitle {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Marquee Strips */
.marquee-strip-wrapper {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 16px 0;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
}

/* Fade Edges */
.marquee-strip-wrapper::before,
.marquee-strip-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-strip-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--ice-white-top), transparent);
}
.marquee-strip-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ice-white-top), transparent);
}

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

.marquee-track.ltr {
    animation: scrollLTR 35s linear infinite;
}

.marquee-track.rtl {
    animation: scrollRTL 35s linear infinite;
}

.marquee-strip-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

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

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

/* Pill Item */
.marquee-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.marquee-pill:hover {
    background: #ffffff;
    border-color: rgba(0, 81, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 81, 255, 0.08);
    transform: translateY(-2px);
}

/* Circular Gradient Icon Badges (No Dabbe) */
.pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Colorful Icon Glow Variants */
.blue-glow { background: rgba(0, 81, 255, 0.12); color: #0051ff; }
.amber-glow { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.emerald-glow { background: rgba(16, 185, 129, 0.12); color: #059669; }
.purple-glow { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.cyan-glow { background: rgba(6, 182, 212, 0.12); color: #0891b2; }
.rose-glow { background: rgba(244, 63, 94, 0.12); color: #e11d48; }
.indigo-glow { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }
.teal-glow { background: rgba(20, 184, 166, 0.12); color: #0d9488; }

/* Professional Corporate Typography (No Monospace) */
.pill-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--jet-black);
    font-family: inherit; /* Website ka standard professional font */
    letter-spacing: -0.2px;
}

/* =========================================
   ORBITAL PLAYGROUND SECTION STYLING
   ========================================= */

.orbital-playground-section {
    padding: 100px 20px;
    background-color: var(--ice-white-top);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.orbital-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orbital-header {
    text-align: center;
    margin-bottom: 45px;
    max-width: 650px;
}

.orbital-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--shiny-blue-dark);
    margin-bottom: 8px;
    display: inline-block;
}

.orbital-title {
    font-size: clamp(30px, 3.5vw, 42px);
    color: var(--jet-black);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 10px;
}

.orbital-title .highlight {
    background: var(--shiny-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.orbital-subtitle {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
}

/* Playground Sandbox Box */
.playground-sandbox {
    width: 100%;
    height: 500px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Center Logo Watermark with Pulsing Blue Glow */
.center-brand-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.core-logo-img {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    /* Pulsing Glow Animation */
    animation: pulseGlow 3s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 81, 255, 0.2)); opacity: 0.7; transform: scale(1); }
    100% { filter: drop-shadow(0 0 35px rgba(0, 81, 255, 0.9)); opacity: 1; transform: scale(1.05); }
}

.core-halo {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(0, 81, 255, 0.15);
    border-radius: 50%;
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    100% { transform: rotate(360deg); }
}

/* =========================================
   ELECTRIC CANVAS & SHINY BLACK ORBS
   ========================================= */

/* The Electric Line Canvas */
#connectionCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Background aur orbs ke beech mein rahega */
    pointer-events: none;
}

/* Floating Barrels (Thick Border & Black Shine) */
.floating-barrel {
    position: absolute;
    width: 75px;
    height: 75px;
    cursor: grab;
    user-select: none;
    z-index: 5;
    will-change: transform;
    border-radius: 50%;
    
    /* Mota Electric Blue Border */
    border: 3px solid rgba(0, 179, 255, 0.9); 
    
    /* Piche se nikalti Black Shine / Deep Glow */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0, 0, 0, 0.6);
    
    overflow: hidden;
    background: #0b0f19; /* Image ke piche dark base */
}

.floating-barrel:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.floating-barrel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.floating-barrel:hover img {
    transform: scale(1.15);
}

/* =========================================
   MOBILE RESPONSIVENESS (ORBITAL PLAYGROUND)
   ========================================= */
@media (max-width: 768px) {
    .playground-sandbox {
        height: 550px; /* Mobile par area badha diya taaki aaram se udein */
    }
    .floating-barrel {
        width: 48px; /* Mobile par orbs thode chote aur cute lagenge */
        height: 48px;
    }
    .core-halo {
        width: 140px;
        height: 140px;
    }
    .core-logo-img {
        max-width: 110px; /* Logo thoda scale down kiya */
    }
}

/* =========================================
   CTA SECTION (JET BLACK & CRYSTAL BLUE)
   ========================================= */

.cta-section {
    padding: 80px 20px;
    background-color: var(--ice-white-top); /* Taki black box white background pe float kare */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    max-width: 1000px; /* Laptop par poori screen nahi lega */
    width: 100%;
    background: #0b0f19; /* Deep Jet Black */
    border-radius: 32px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Halka sa glass edge */
}

/* Background Subtle Blue Glow */
.cta-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 81, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #00b3ff; /* Bright cyan/blue */
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(0, 179, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 179, 255, 0.2);
}

.cta-title {
    font-size: clamp(32px, 4vw, 50px);
    color: #ffffff;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    max-width: 650px;
}

.cta-title .text-glow {
    background: linear-gradient(90deg, #0051ff, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(0, 179, 255, 0.4);
}

.cta-subtitle {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
}

/* =========================================
   THE CRYSTAL BLUE BUTTON
   ========================================= */
.crystal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0051ff 0%, #00b3ff 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* Crystal/Glass Look */
    box-shadow: 0 10px 30px rgba(0, 81, 255, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.crystal-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 81, 255, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Sweeping Light Animation (Shine Effect) */
.crystal-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: crystalShine 3.5s infinite;
}

@keyframes crystalShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 15px;
    }
    .cta-container {
        padding: 50px 20px;
        border-radius: 24px;
    }
    .crystal-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* =========================================
   FOOTER SECTION (JET BLACK)
   ========================================= */

.ultra-footer {
    background-color: #050810; /* Deep Jet Black */
    padding: 80px 20px 30px;
    color: #ffffff;
    border-top: 1px solid rgba(0, 179, 255, 0.1);
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Column */
.footer-brand-col {
    max-width: 450px;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #a1a1aa; /* Light Grey text */
    margin-bottom: 30px;
}

/* Subscribe Box with Blue Accents */
.subscribe-box {
    display: flex;
    align-items: center;
    background: #111827; /* Dark Grey Inner */
    border: 1px solid rgba(0, 179, 255, 0.3); /* Blue Border */
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.subscribe-box:focus-within {
    border-color: rgba(0, 179, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 179, 255, 0.2);
}

.subscribe-input {
    flex: 1;
    min-width: 0; /* Input ko flex box se bahar nikalne se rokta hai */
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.subscribe-input::placeholder {
    color: #6b7280;
}

.subscribe-btn {
    flex-shrink: 0; /* Button ko chota hone ya shrink hone se rokta hai */
    background: linear-gradient(90deg, #0051ff, #00b3ff);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    box-shadow: 0 0 15px rgba(0, 179, 255, 0.5);
    transform: translateY(-1px);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #050810;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00b3ff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Right Column (Links & Apps) */
.footer-links-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.links-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-group a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #00b3ff;
}

/* App Download Buttons */
.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    border-color: #00b3ff;
    color: #00b3ff;
    background: rgba(0, 179, 255, 0.05);
}

/* Footer Bottom Row */
.footer-bottom-row {
    display: flex;
    justify-content: center; /* Centered based on the screenshot */
    align-items: center;
    padding-top: 30px;
    font-size: 13px;
    color: #a1a1aa;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 16px;
}

.legal-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .footer-top-row {
        flex-direction: column;
        gap: 50px;
    }
    
    .links-grid {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* =========================================
   ADD THIS INSIDE YOUR MOBILE RESPONSIVENESS MEDIA QUERY 
   (@media (max-width: 900px) or similar)
   ========================================= */
@media (max-width: 500px) {
    .subscribe-box {
        padding: 4px; /* Mobile par padding kam ki taaki button fit aaye */
    }
    .subscribe-input {
        padding: 10px 10px;
        font-size: 13px;
    }
    .subscribe-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* =========================================
   CORPORATE DOCUMENTS SECTION (UPDATED)
   ========================================= */
.corporate-docs-section {
    background-color: var(--ice-white-top, #ffffff);
    /* Gap kam kar diya: Pehle 80px tha, ab 40px hai */
    padding: 30px 20px 40px 20px; 
    overflow: hidden;
}

.docs-header {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.highlight-badge {
    color: #0051ff; /* Deep blue base */
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Update this block to match the "Dynamic Ecosystem" headline size */
.docs-titles h2 {
    font-size: clamp(28px, 3.5vw, 42px); /* Font size chota aur balanced kar diya */
    color: #050810;
    font-weight: 800;
    margin-top: 10px;
    line-height: 1.2;
    letter-spacing: normal; /* Jo text chipka-chipka tha usko normal kar diya */
}

/* Match CTA Premium Gradient Glow */
.docs-titles .text-glow {
    background: linear-gradient(90deg, #0051ff, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 81, 255, 0.3);
}

/* View All Button - Premium Style like CTA */
.view-all-btn {
    background: linear-gradient(135deg, #0051ff 0%, #00b3ff 100%);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Rich Glassy Shadow */
    box-shadow: 0 10px 25px rgba(0, 81, 255, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 81, 255, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* CAROUSEL TRACK */
.pdf-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    padding: 25px 0 40px 0; /* Space for the deep glow */
}

.pdf-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.pdf-carousel-wrapper:active {
    cursor: grabbing;
}

.pdf-carousel-track {
    display: flex;
    gap: 35px;
    width: max-content;
}

/* PDF PAGE CARD - LANDSCAPE & PREMIUM DEEP GLOW */
.pdf-page {
    width: 380px;  /* Landscape Width */
    height: 215px; /* Landscape Height (16:9 ratio approx) */
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    flex-shrink: 0;
    
    /* Deep Rich Blue Border & Glow */
    border: 2px solid rgba(0, 81, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 81, 255, 0.15), inset 0 0 10px rgba(0, 179, 255, 0.05);
    transition: all 0.4s ease;
}

.pdf-page:hover {
    border-color: #0051ff; /* Solid Deep Blue on hover */
    /* Intense Premium Outer & Inner Glow */
    box-shadow: 0 15px 40px rgba(0, 81, 255, 0.45), inset 0 0 20px rgba(0, 179, 255, 0.2);
    transform: translateY(-8px);
}

.pdf-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* (Mobile adjustments for docs header) */
@media (max-width: 768px) {
    .docs-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .pdf-page { width: 280px; height: 158px; } /* Landscape for mobile */
}

/* =========================================
   UPDATED PDF MODAL (DOWNLOAD HUB)
   ========================================= */

/* Making the modal smaller and focused since we removed the image grid */
.pdf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 16, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pdf-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Focused, smaller popup box */
.pdf-modal-content.download-focus-modal {
    background: #0b0f19; /* Jet Black */
    width: 95%;
    max-width: 600px;
    height: auto; /* Adapts to content */
    border-radius: 24px;
    border: 1px solid rgba(0, 179, 255, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    padding-bottom: 30px;
}

.pdf-modal-overlay.active .pdf-modal-content.download-focus-modal {
    transform: scale(1);
}

.pdf-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header h3 {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

.close-modal-btn {
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal-btn:hover {
    color: #ff3b3b;
}

/* Download Centric Body styling */
.pdf-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
}

/* Big PDF Icon Styling */
.pdf-icon-wrapper {
    position: relative;
    color: #00b3ff;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 20px rgba(0, 179, 255, 0.3));
}

.pdf-badge {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background: #ff3b3b; /* Red PDF badge */
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 59, 59, 0.4);
}

/* Info Text Styling */
.pdf-info {
    margin-bottom: 40px;
}

.pdf-info h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.pdf-info p {
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 400px;
}

.file-size {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Big Download Button */
.big-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0051ff 0%, #00b3ff 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 81, 255, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.big-download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 81, 255, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .docs-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .pdf-modal-body { padding: 30px 20px; }
    .pdf-info h4 { font-size: 18px; }
    .big-download-btn { padding: 14px 28px; font-size: 14px; }
}