/*
/* Global Typography Root Overrides */
:root {
    --bs-body-font-family: 'Lora', serif;
    --bs-font-sans-serif: 'Lora', serif;
}

/* Base Body Font Rule */
body {
    font-family: 'Lora', serif;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force headings and buttons to inherit Lora */
h1, h2, h3, h4, h5, h6, 
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
button, input, select, textarea, .btn {
    font-family: 'Lora', serif;
}

/* Optional Utility Classes */
.font-lora {
    font-family: 'Lora', serif;
    font-optical-sizing: auto;
}

/* Specific Weight Helper Classes */
.fw-lora-regular { font-weight: 400; }
.fw-lora-medium  { font-weight: 500; }
.fw-lora-semibold{ font-weight: 600; }
.fw-lora-bold    { font-weight: 700; }

  /* Top Utility Bar Hover Effects */
        .top-bar-link {
            transition: color 0.2s ease-in-out;
        }
        .top-bar-link:hover {
            color: #0d6efd !important;
        }

        /* Navbar Brand Logo Hover */
        .navbar-brand img {
            transition: transform 0.25s ease-in-out;
        }
        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        /* Navigation Links Underline Hover Effect */
        .custom-nav-link {
            position: relative;
            color: #2c3e50 !important;
            padding: 0.5rem 0.8rem !important;
            transition: color 0.25s ease-in-out;
        }
        .custom-nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0px;
            left: 50%;
            background-color: #0d6efd;
            transition: all 0.25s ease-in-out;
            transform: translateX(-50%);
        }
        .custom-nav-link:hover::after,
        .custom-nav-link.active::after {
            width: 70%;
        }
        .custom-nav-link:hover,
        .custom-nav-link.active {
            color: #0d6efd !important;
        }

        /* Get Started CTA Button Hover */
        .btn-header-cta {
            transition: all 0.25s ease-in-out;
            box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
        }
        .btn-header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(13, 110, 253, 0.35);
            background-color: #0b5ed7 !important;
            border-color: #0a58ca !important;
        }
          .footer-link {
                transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
                display: inline-block;
            }
            .footer-link:hover {
                color: #0d6efd !important; /* Bootstrap Primary Blue */
                padding-left: 4px;
            }
            .social-link {
                transition: transform 0.2s ease, color 0.2s ease;
            }
            .social-link:hover {
                color: #0d6efd !important;
                transform: translateY(-2px);
            }
            /* Fullscreen Hero Background Setup */
.hero-full-bg {
    position: relative;
    min-height: 85vh;
    background: url('../images/herobg.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle dark overlay for contrast over background image */
.hero-full-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.35); /* Soft dark gradient scrim */
    z-index: 1;
}

/* Ensure content stays above background overlay */
.hero-full-content {
    position: relative;
    z-index: 2;
}

/* Glassmorphic Email Lead Form Box */
.glass-input-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50rem;
    padding: 6px 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 520px;
    margin: 0 auto;
}

.glass-input-wrapper .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding-left: 1.25rem;
}

.glass-input-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.glass-input-wrapper .form-control:focus {
    box-shadow: none;
    background: transparent;
    color: #ffffff;
}

.btn-glass-cta {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-glass-cta:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}
.tradingview-ticker-wrapper {
    min-height: 46px;
    width: 100%;
    position: relative;
    z-index: 10;
}


/* Layout & Card Styling based on Reference Design */
.about-image-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 380px;
    background: url('../images/about-team.jpg') no-repeat center center / cover;
    display: flex;
    align-items: flex-end;
}

.about-image-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.85) 100%);
    width: 100%;
    padding: 2rem;
    color: #ffffff;
}

/* Light Purple Box (Matches upper right card in reference) */
.about-box-light {
    background-color: #ede9fe;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Solid Purple Primary Box (Matches bottom right card in reference) */
.about-box-purple {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Feature Cards (Why Choose Us) */
.feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.08);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #ede9fe;
    color: #4f46e5;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
/* Custom Purple Primary Button */
.btn-purple-primary {
    background: rgb(85, 85, 243);
    color: #ffffff !important;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Hover & Active States */
.btn-purple-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.38);
}

.btn-purple-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Arrow Icon Motion on Hover */
.btn-purple-primary i {
    transition: transform 0.25s ease;
}

.btn-purple-primary:hover i {
    transform: translateX(4px);
}


/* Trust & Regulation Section Styles */
.cert-preview-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cert-preview-card:hover {
    transform: translateY(-4px);
}

.cert-img-wrapper {
    background-color: #f8fafc;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.award-badge-icon {
    color: #d97706; /* Elegant Gold Accent */
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.text-navy-heading {
    color: #1e293b;
    letter-spacing: 0.5px;
}
.trust{
    color: #3d72c7;
}
.full{
    color:#3d72c7;
}
.fully{
    color: #1e293b;
}

/* Live Market Section Styles */
.market-widget-card {
    background: whitesmoke;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    height: 580px;
}

.tradingview-widget-container {
    height: 100% !important;
    width: 100% !important;
}

.tradingview-widget-copyright {
    display: none !important; /* Cleans up footer trademark text for a seamless UI */
}

/* How It Works - Visual & Vertical Timeline */
.how-works-visual-wrapper {
    position: relative;
    padding-bottom: 2rem;
}

.how-works-glow {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: rgba(99, 102, 241, 0.18);
    filter: blur(70px);
    border-radius: 50%;
    z-index: 0;
}

.how-works-main-img {
    border-radius: 1.5rem;
    width: 80%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.how-works-floating-card {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 65%;
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    z-index: 3;
}

.how-works-badge-pill {
    position: absolute;
    top: 50%;
    right: 20%;
    background: #e0e7ff;
    color: #4f46e5;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

/* Vertical Connected Timeline */
.vertical-timeline-wrapper {
    position: relative;
}

.vertical-timeline-line {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 25px;
    width: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.timeline-step-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.timeline-step-item:last-child {
    margin-bottom: 0;
}

.timeline-step-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

/* Active Highlight (First Step by Default) */
.timeline-step-item.active .timeline-step-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* Market Asset Cards */
.asset-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.asset-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.1);
    border-color: #c7d2fe;
}

.asset-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

/* TradingView World Market Summary Container */
.market-summary-widget-container {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    min-height: 420px;
    overflow: hidden;
}


/* Founder Section Styles */
.founder-section {
    background-color: #ffffff;
}

.display-title-huge {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #111827;
}

.founder-img-wrapper {
    position: relative;
    display: inline-block;
}

.founder-img-wrapper img {
    max-width: 100%;
    height: auto;
    /* Soft bottom blend matching reference image */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
}

.founder-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
}

.founder-quote-box {
    border-left: 2px solid #6366f1;
    padding-left: 1.25rem;
}


/* Unified Connected Pricing Container Concept */
.connected-pricing-panel {
    background: #ffffff;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.plan-column {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: background-color 0.3s ease;
}

/* Vertical Dividers Between Columns on Desktop */
@media (min-width: 992px) {
    .plan-column:not(:last-child) {
        border-right: 1px solid #f1f5f9;
    }
}

@media (max-width: 991.98px) {
    .plan-column:not(:last-child) {
        border-bottom: 1px solid #f1f5f9;
    }
}

/* Light Background Hover for Non-Featured Tiers */
.plan-column:hover {
    background-color: #fafafa;
}

/* Featured / Professional Dark Highlighting (as seen in image) */
.plan-column.featured-column {
    background: #0f172a;
    color: #ffffff;
}

.plan-column.featured-column .text-dark,
.plan-column.featured-column .text-muted {
    color: #ffffff !important;
}

.plan-column.featured-column .plan-check-list li {
    color: #cbd5e1;
}

.plan-check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.plan-check-list li {
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-check-list li i {
    color: #6366f1;
    font-size: 0.9rem;
}

.plan-column.featured-column .plan-check-list li i {
    color: #818cf8;
}

.plan-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 1.1rem;
}

/* Partners Section Slider Customization */
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    height: 70px;
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo-item img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

/* Custom Swiper Pagination Dots */
.swiper-pagination-partners {
    position: relative !important;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-partners .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #cbd5e1;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.25s ease;
}

.swiper-pagination-partners .swiper-pagination-bullet-active {
    background: #94a3b8;
    border-color: #94a3b8;
}
/* Fix Swiper flexbox layout calculation bug */
.col-lg-8 {
    min-width: 0;
}

.partnerSwiper {
    width: 100%;
    overflow: hidden;
}

/* Live Crypto Widget Section */
.crypto-widget-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    padding: 1.5rem;
}

/* Responsive iframe container wrapper */
.crypto-widget-container {
    width: 100%;
    min-height: 301px;
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Why Choose Us Section */
.feature-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    background: #f1f5f9;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: #4f46e5;
    color: #ffffff;
}

/* User Testimonials Cards */
.testimonial-card-wrapper {
    padding-top: 50px; /* Space for top overlapping avatar */
    height: 100%;
}

.ut-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 60px 1.75rem 2rem; /* Extra top padding for avatar overlap */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

/* Overlapping Avatar Container */
.ut-avatar-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ut-avatar-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Highlighted Active Center Card */
.ut-card.featured-card {
    background: #2563eb; /* Primary Blue Accent */
    color: #ffffff;
}

.ut-card.featured-card .ut-name {
    color: #ffffff !important;
}

.ut-card.featured-card .ut-role {
    color: rgba(255, 255, 255, 0.8) !important;
}

.ut-card.featured-card .ut-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.ut-card.featured-card .ut-stars {
    color: #ffffff !important;
}

.ut-card.featured-card .ut-quote {
    color: #ffffff !important;
}

/* Regular Card Styling */
.ut-stars {
    color: #2563eb;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.ut-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.ut-role {
    font-size: 0.825rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.ut-quote {
    font-size: 1.75rem;
    line-height: 1;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.ut-text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Background Section */
.cta-section-bg {
    position: relative;
    background: url('../images/cta-bg.jpg') no-repeat center center / cover;
    padding: 5rem 0;
    overflow: hidden;
}

/* Dark Overlay for Text Legibility */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.88) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.btn-cta-primary {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50rem;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Prevent parent container overflow clipping in mini-navbar */
.mini-navbar,
.top-bar,
.mini-nav-translate-container {
    overflow: visible !important;
}

.mini-nav-translate-container {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
}

/* Ensure Google wrapper renders visibly */
#google_translate_element {
    display: inline-block !important;
    min-width: 120px;
    min-height: 28px;
}

/* Base Gadget Container */
.goog-te-gadget {
    font-family: 'Lora', serif !important;
    font-size: 0 !important;
    color: transparent !important;
    line-height: normal !important;
}

/* Custom Mini Navbar Button Look */
.goog-te-gadget-simple {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 4px !important;
    padding: 3px 8px !important;
    font-family: 'Lora', serif !important;
    font-size: 0.75rem !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
}

.goog-te-gadget-simple:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
}

/* Text & Icon Adjustments */
.goog-te-menu-value {
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.goog-te-menu-value span {
    color: #ffffff !important;
    font-family: 'Lora', serif !important;
    font-size: 0.75rem !important;
    border-left: none !important;
}

.goog-te-menu-value img {
    display: none !important;
}

/* Hide default Google banner space at top of body */
body {
    top: 0px !important;
    position: static !important;
}

.goog-te-banner-frame {
    display: none !important;
}


/* About Hero Section Overhaul */
.about-hero-bg {
    position: relative;
    min-height: 520px; /* Increased height */
    display: flex;
    align-items: center;
    background: url('../images/about-hero-bg.jpg') no-repeat center center / cover;
    padding: 7rem 0 6rem;
    overflow: hidden;
}

/* Dark Gradient Overlay for optimal text legibility */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.88) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Badge Accent */
.about-hero-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Hero CTA Button */
.btn-about-hero {
    background: #2563eb;
    color: #ffffff;
    padding: 0.9rem 2.25rem;
    font-weight: 600;
    border-radius: 50rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-about-hero:hover {
    background: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

/* Who We Are Section Styling */
.who-we-are-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.3s ease;
}

.who-we-are-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.who-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: #e0e7ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.accent-border-left {
    border-left: 4px solid #2563eb;
    padding-left: 1.25rem;
}

/* Mission Section with Background Image */
.mission-card-wrapper {
    position: relative;
    background: url('../images/mission-bg.jpg') no-repeat center center / cover;
    border-radius: 1.75rem;
    padding: 3.5rem 2.5rem;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

/* Dark Gradient Overlay for optimal contrast */
.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 27, 75, 0.90) 100%);
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-feature-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.mission-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Vision Section Styling */
.vision-card {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 3.5rem 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #4f46e5 0%, #9333ea 100%);
}

.vision-badge-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.vision-badge-item:hover {
    background: #ffffff;
    border-color: #818cf8;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
    transform: translateY(-2px);
}

.vision-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50rem;
    background: #e0e7ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

/* Core Values Cards */
.value-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.25rem 1.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.08);
    border-color: #cbd5e1;
}

.value-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    background: #f1f5f9;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-box {
    background: #4f46e5;
    color: #ffffff;
}

/* How We Work Process Flow with Images */
.process-step-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: hidden; /* Clips image top corners */
    display: flex;
    flex-direction: column;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
    border-color: #818cf8;
}

.process-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #f1f5f9;
}

.process-card-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Number Badge Accent Overlay */
.process-number-badge {
    width: 40px;
    height: 40px;
    border-radius: 50rem;
    background: #f1f5f9;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-step-card:hover .process-number-badge {
    background: #2563eb;
    color: #ffffff;
}

/* Connecting Line Alignment */
@media (min-width: 992px) {
    .process-row-relative {
        position: relative;
    }
    
    .process-row-relative::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 10%;
        width: 80%;
        height: 2px;
        border-top: 2px dashed #cbd5e1;
        z-index: 1;
    }
}

/* Founder Section Styling */
.founder-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.founder-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 420px;
    background: #eff1f3;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-quote-box {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 0 1rem 1rem 0;
    padding: 1.5rem 1.75rem;
    position: relative;
}

.founder-vision-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.founder-vision-icon {
    width: 36px;
    height: 36px;
    border-radius: 50rem;
    background: #e0e7ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Why Choose Us & Metrics Cards */
.metric-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2.25rem 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: #818cf8;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50rem;
    background: #f1f5f9;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon-box {
    background: #2563eb;
    color: #ffffff;
}
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Security Cards with Background Images */
.security-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.security-card:hover {
    transform: translateY(-4px);
    border-color: #818cf8;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

.security-card-img-header {
    height: 140px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.security-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.security-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.security-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* CTA Section with Background Image Styling */
.cta-wrapper {
    position: relative;
    background: url('../images/cta-bg.jpg') no-repeat center center / cover;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.88) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}

/* Market News Section Styling */
.news-widget-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
}

.news-widget-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.75rem;
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.tradingview-widget-container {
    width: 100% !important;
}

.tradingview-widget-container iframe {
    border-radius: 0 0 1.5rem 1.5rem;
}

/* Professional Contact Page Styling */
/* Contact Hero with Background Image Overlay */
.contact-hero {
    position: relative;
    background: url('../images/contact-hero-bg.jpg') no-repeat center center / cover;
    padding: 6rem 0 5rem 0;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 42, 0.94) 0%, 
        rgba(2, 6, 23, 0.88) 60%, 
        rgba(30, 27, 75, 0.85) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

/* Glassmorphic Cards & Form */
.glass-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.icon-box-sq {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Floating Form Control Adjustments */
.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Map Frame Wrapper */
.map-frame-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
}

.map-frame-wrapper iframe {
    width: 100%;
    height: 480px;
    filter: grayscale(0.2) contrast(1.1);
}

.pulse-badge {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
}

