/* Base Reset & Variables */
:root {
    --bg-color: #ffffff;
    --text-primary: #111827;
    --text-secondary: #374151;
    --accent-gold: #10b981;
    --accent-gold-dark: #059669;
    --border-color: #e5e7eb;
    --nav-bg: #ffffff;
    --ticker-bg: #f9fafb;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
    /* Global Chart Background with Overlay */
    background:
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92));
    background-size: cover;
    /* Cover usually works best for full backgrounds */
    background-attachment: fixed;
    /* Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.text-green {
    color: var(--success-green);
}

.text-red {
    color: var(--danger-red);
}

/* --- Hero Brokerage Section Styling --- */
/* --- New Premium Hero Styling --- */
.hero-brokerage {
    background-color: transparent;
    /* Transparent so body gif shows */
    padding: 38px 0 80px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* Lower z-index so next section covers it */
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Side Text Styling */
.hero-text-content {
    flex: 1.2;
}

.top-tagline {
    color: #00d094;
    /* Vibrant Green */
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
}

.hero-main-title {
    font-size: 2rem;
    /* Small for a Hero Title (approx 32px) */
    font-weight: 700;
    /* Keep it bold so it's still the anchor */
    color: #1a1a1a;
    line-height: 1.3;
    /* Tighter line height for small text */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 0.95rem;
    /* Extra small (approx 15px) */
    color: #64748b;
    /* Muted slate gray for a professional look */
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
    /* Narrower width to match smaller font */
    font-weight: 400;
}

/* Orange Button Styling */
.btn-open-account {
    background-color: #ff9800;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-open-account:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

/* Right Side Visual Styling */
.hero-visual-content {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-stack {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-phone-mockup {
    width: 100%;
    max-width: 380px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.coin-stack {
    width: 180px;
    position: absolute;
    bottom: -20px;
    z-index: 1;
    transition: transform 0.5s ease;
}

.coin-left {
    left: -80px;
}

.coin-right {
    right: -80px;
}

/* Subtle Animation for extra "Tech" feel */
.hero-brokerage:hover .coin-left {
    transform: translateY(-10px) rotate(-5deg);
}

.hero-brokerage:hover .coin-right {
    transform: translateY(-15px) rotate(5deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-phone-mockup {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .visual-stack {
        margin-top: 50px;
    }

    .coin-stack {
        width: 100px;
    }
}

/* Orange Start Investing Button */
.btn-start-investing {
    display: inline-block;
    background-color: #ff9800;
    /* Exact orange from reference */
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-start-investing:hover {
    background-color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

/* Right Visual Styles */
.hero-visual-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-stack {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.hero-phone-mockup {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.coin-stack {
    width: 180px;
    position: absolute;
    bottom: -20px;
    z-index: 1;
}

.coin-left {
    left: -80px;
}

.coin-right {
    right: -80px;
}

/* Background Chart Overlay (The green bars in image) */
.chart-bg-overlay {
    position: absolute;
    width: 120%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/graphy.png');
    /* Pattern substitute */
    opacity: 0.1;
    left: -10%;
    top: 0;
    pointer-events: none;
}

/* Responsive for Mobile */
@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 5%;
    }

    .hero-phone-mockup {
        max-width: 300px;
    }

    .coin-stack {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.2rem;
        /* Reduced from 3.8rem */
        font-weight: 700;
        color: #333b4d;
        line-height: 1.3;
        /* Increased for better readability of long text */
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        font-size: 1.8rem;
    }

    .hero-main-title .highlight {
        font-size: 1rem;
    }

    .hero-visual-content {
        display: none;
    }

    .visual-stack {
        margin-top: 50px;
    }

    .coin-left,
    .coin-right {
        position: static;
        width: 80px;
    }

    .hero-phone-mockup {
        max-width: 250px;
    }
}

/* Navigation */
.navbar {
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo-text {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #10b981;
    /* Fallback */
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Keeping Inter (sans-serif) but ensuring bold */
    font-family: 'Inter', sans-serif;
}

.search-bar {
    background-color: #232736;
    border-radius: 6px;
    padding: 6px 12px;
    flex-grow: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    transition: 0.2s;
}

.search-bar:focus-within {
    border-color: var(--accent-gold);
    background-color: #1a1d29;
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    flex-grow: 1;
    outline: none;
    font-size: 0.9rem;
}

.search-icon,
.slash-key {
    color: var(--text-secondary);
}

.slash-key {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.nav-item:hover,
.nav-item.highlight {
    color: var(--text-primary);
}

.nav-item.highlight .material-icons-round {
    color: var(--accent-gold);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f0fdf4;
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.mobile-menu-toggle:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle .material-icons-round {
    font-size: 28px;
}

.btn-login {
    background-color: white;
    color: black;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-login:hover {
    background-color: #e5e5e5;
}

/* Open an Account Button Style */
.btn-open-account {
    background-color: #00b371;
    /* Vibrant Orange from your image */
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    /* Space from other menu items */
    white-space: nowrap;
}

.btn-open-account:hover {
    background-color: #00b371;
    /* Slightly darker on hover */
    box-shadow: #00b371;
    transform: translateY(-1px);
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    .btn-open-account {
        display: none !important;
    }

    .logo-text {
        font-size: 1rem;
        /* Smaller font size for mobile */
        white-space: nowrap;
        /* Prevent wrapping */
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.promo-banner p {
    margin: 0;
    line-height: 1.5;
}

.arrow-icon {
    font-size: 1rem;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    margin-left: 2px;
}

/* Services Section (Formerly Hero) - likely referenced as why-choose in HTML */
.why-choose-hero-section {
    position: relative;
    z-index: 10;
    /* Higher z-index to slide over the pinned hero */
    background-color: var(--bg-color);
    /* Ensure opaque background */
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%);
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-label {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: block;
}

.hero-label span {
    color: var(--accent-gold-dark);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.features-list {
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
}

.btn-secondary {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.98);
}

.gold-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.trust-markers {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 20px;
}

/* Financial Dashboard Visualization */
.financial-dashboard {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.dashboard-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.chart-card {
    flex: 1;
    min-height: 200px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.card-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-badge.positive {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.chart-container {
    width: 100%;
    height: 140px;
    position: relative;
}

.growth-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.chart-area {
    opacity: 0;
    animation: fadeInArea 2s ease-out 0.5s forwards;
}

.chart-dot {
    opacity: 0;
    animation: fadeInDot 0.5s ease-out 2s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.portfolio-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
}

.portfolio-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.portfolio-icon.equity {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    color: var(--accent-gold);
}

:root {
    --primary-green: #00d094;
    /* Modern Bullish Green */
    --primary-dark: #121d33;
    /* Deep Trading Blue */
    --text-gray: #64748b;
    /* Soft Subtitles */
    --card-bg: #ffffff;
    --section-bg: #f8fafc;
    /* Light Blueish Grey */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-features-section {
    padding: 100px 0;
    background-color: var(--section-bg);
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hero-label {
    display: inline-block;
    background: rgba(0, 208, 148, 0.1);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-label span {
    color: var(--primary-dark);
}

.section-header h2 {
    font-size: 38px;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 29, 51, 0.08);
    border-color: var(--primary-green);
}

/* Icon Styling */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f0fdf9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card-icon {
    font-size: 32px !important;
    color: var(--primary-green);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-green);
}

.feature-card:hover .feature-card-icon {
    color: #ffffff;
}

/* Text inside cards */
.feature-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Bottom Decorative Line */
.card-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-green);
    transition: var(--transition);
}

.feature-card:hover .card-footer-line {
    width: 100%;
}

/* Responsive Tablet */
@media (max-width: 992px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Mobile */
@media (max-width: 600px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .feature-card {
        padding: 30px;
    }
}

.portfolio-icon.mutual-fund {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
    color: var(--accent-gold);
}

.portfolio-icon.bonds {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    color: var(--success-green);
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.portfolio-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.portfolio-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.stats-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.stat-badge {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-badge:hover {
    border-color: var(--accent-gold);
    background: #f0fdf4;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--nav-bg);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 99;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 8px;
        justify-content: flex-start;
        transition: background-color 0.2s, color 0.2s;
        width: 100%;
    }

    .nav-item:hover,
    .nav-item:active {
        background-color: rgba(16, 185, 129, 0.1);
        color: var(--text-primary);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 8px 0;
    }

    .dropdown-item {
        padding: 12px 32px;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .search-bar,
    .slash-key {
        display: none;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .features-list li {
        justify-content: center;
    }

    .financial-dashboard {
        height: auto;
        padding: 15px;
    }

    .chart-card {
        min-height: 180px;
    }

    .chart-container {
        height: 120px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .portfolio-card {
        padding: 12px 8px;
    }

    .portfolio-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .portfolio-value {
        font-size: 0.85rem;
    }

    .stats-row {
        flex-direction: column;
    }
}

/* SIP Calculator Styles */
.calculator-section {
    padding: 60px 0;
    background-color: #f9fafb;
    border-top: 1px solid var(--border-color);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.calculator-header p {
    color: var(--text-secondary);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.control-group {
    margin-bottom: 30px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.label-row label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.input-wrapper {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: var(--accent-gold);
    border: 1px solid var(--border-color);
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.input-wrapper input {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    width: 60px;
    text-align: right;
    font-weight: 700;
    font-size: 1rem;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.input-wrapper input::-webkit-outer-spin-button,
.input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Range Slider Styling */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e5e7eb;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Result Card */
.calculator-result-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.result-row span:last-child {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.highlight-green {
    color: var(--accent-gold-dark) !important;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.result-total span:last-child {
    color: var(--accent-gold-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Simple Chart Visualization */
.chart-bar-container {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-top: 25px;
    display: flex;
    overflow: hidden;
}

.chart-bar-invested {
    background: #34d399;
    height: 100%;
    transition: width 0.3s;
}

.chart-bar-returns {
    background: var(--accent-gold);
    height: 100%;
    transition: width 0.3s;
}

.chart-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.invested {
    background: #34d399;
}

.dot.returns {
    background: var(--accent-gold);
}

@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* About Me Section */
.about-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%);
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-content .highlight-text {
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
    font-size: 0.8em;
}

.about-bio {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.about-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.about-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-placeholder {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

.person-icon {
    font-size: 100px;
    color: rgba(16, 185, 129, 0.2);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-bio {
        margin: 0 auto 32px;
    }

    .about-actions {
        justify-content: center;
    }

    .about-stats {
        justify-content: center;
        width: 100%;
    }

    .about-image {
        order: -1;
    }

    .profile-placeholder {
        width: 280px;
        height: 320px;
    }
}

/* Our Associate Section */
/* --- High-End Associate Slider Styles --- */

.associate-section {
    padding: 100px 0;
    background: #ffffff;
    /* Clean white for professional look */
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.logos-slider-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;
}

/* Side Fading Effect - Makes it look premium */
.logos-slider-container::before,
.logos-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logos-slider-container::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-slider-container::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-slider-track {
    display: flex;
    width: calc(250px * 12);
    /* Card width * Total logos (6 originals + 6 duplicates) */
    animation: scrollLogos 30s linear infinite;
}

/* Animation stops on hover so users can see the partners */
.logos-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-250px * 6), 0, 0);
        /* Moves half the total track length */
    }
}

.associate-logo-card {
    width: 250px;
    /* Fixed width for calculation */
    height: 120px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    flex-shrink: 0;
    /* Prevents logos from squishing */
}

/* Share Market Interactive Effect */
.associate-logo-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
    /* Subtle green glow */
}

.associate-logo {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    /* Professional Grayscale look */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* Logos reveal their color on hover */
.associate-logo-card:hover .associate-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    .logos-slider-container::before,
    .logos-slider-container::after {
        width: 50px;
    }

    .associate-logo-card {
        width: 180px;
        height: 90px;
    }

    .logos-slider-track {
        width: calc(180px * 12);
        animation: scrollLogos 20s linear infinite;
    }

    @keyframes scrollLogos {
        100% {
            transform: translate3d(calc(-180px * 6), 0, 0);
        }
    }
}

.associate-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%);
    border-top: 1px solid var(--border-color);
}

.associate-container {
    max-width: 1000px;
    margin: 0 auto;
}

.associate-header {
    text-align: center;
    margin-bottom: 60px;
}

.associate-header h2 {
    font-size: 2.8rem;
    margin: 16px 0 12px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.associate-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.associate-header h2 .highlight-text {
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
}

.associates-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.associate-logo-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Enhanced Associate Slider --- */

.logos-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    /* Adding a fade effect on edges */
}

/* --- Associate/Partner Section Styles --- */

.associate-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

/* Background Glow Effect */
.ticker-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.partner-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    /* This creates the fade effect on left and right sides */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-ticker-track {
    display: flex;
    width: calc(300px * 6);
    /* (Card width + gap) * total items */
    animation: tickerScroll 25s linear infinite;
}

/* Pause on hover so people can see the brand */
.partner-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 3));
    }

    /* Move by half the track */
}

.associate-logo-card {
    min-width: 270px;
    height: 130px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* Share Market Hover Effect */
.associate-logo-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

.associate-logo {
    max-width: 85%;
    max-height: 75px;
    object-fit: contain;
    /* Starts grayscale like a professional financial terminal */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.associate-logo-card:hover .associate-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partner-slider-container {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .associate-logo-card {
        min-width: 200px;
        height: 100px;
    }

    .partner-ticker-track {
        width: calc(230px * 6);
    }

    @keyframes tickerScroll {
        100% {
            transform: translateX(calc(-230px * 3));
        }
    }
}

/* --- Services Section Refined --- */
.our-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Clean white background */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: #f9fafb;
    /* Very light gray as seen in image */
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    /* Align left to match image */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Entry Animation for cards */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards ease-out;
}

/* Staggered delay for cards */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-gold);
    /* Using your green variable */
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.service-card p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 80px;
    /* Keeps card heights consistent */
}

/* Pill-Shaped Green Button */
.btn-learn-more {
    display: inline-block;
    background-color: #00d084;
    /* Vibrant Green from your image */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-learn-more:hover {
    background-color: #00b371;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 208, 132, 0.2);
    color: white;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* --- High-End Market Services Section --- */

.our-services-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Grid Pattern - Mimics Trading View */
.market-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    z-index: 1;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Stock-like Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.service-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Decorative Sparkline (Stock Chart Line Effect) */
.sparkline {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    opacity: 0.1;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sparkline .line {
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    clip-path: polygon(0% 50%, 10% 40%, 20% 60%, 30% 30%, 40% 70%, 50% 20%, 60% 80%, 70% 40%, 80% 60%, 90% 10%, 100% 50%, 100% 100%, 0% 100%);
}

/* Card Hover State */
.service-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.15);
    background: #ffffff;
}

.service-card:hover .sparkline {
    opacity: 0.4;
}

.service-card:hover .sparkline .line {
    animation: chartFlow 4s linear infinite;
}

@keyframes chartFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Button Styling (Pill shape with icon) */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #10b981;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-learn-more .material-icons-round {
    font-size: 18px;
}

.btn-learn-more:hover {
    background-color: #059669;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Staggered Entrance Animation */
.service-card {
    animation: slideInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add delays for cards */
.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}

.logos-slider-container::before,
.logos-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-slider-container::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #f0fdf4 0%, transparent 100%);
}

.logos-slider-container::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #f0fdf4 0%, transparent 100%);
}

.logos-slider-track {
    display: flex;
    width: calc(300px * 6);
    /* (Card width + gap) * total cards */
    animation: scrollLogos 25s linear infinite;
}

.logos-slider-track:hover {
    animation-play-state: paused;
    /* Allows users to stop it by hovering */
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 3));
        /* Moves exactly half the total width */
    }
}

.associate-logo-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 40px;
    margin: 0 15px;
    /* Spacing between cards */
    min-width: 270px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.associate-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.associate-logo {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    /* Professional look */
    opacity: 0.6;
    transition: all 0.4s ease;
}

.associate-logo-card:hover .associate-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .logos-slider-track {
        width: calc(220px * 6);
    }

    @keyframes scrollLogos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 3));
        }
    }

    .associate-logo-card {
        min-width: 190px;
        padding: 15px 25px;
    }
}

.associate-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
}

.associate-logo {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.associate-logo-card:hover .associate-logo {
    filter: brightness(1) contrast(1.2);
}

@media (max-width: 1024px) {
    .associates-logo-row {
        gap: 30px;
    }

    .associate-logo-card {
        padding: 25px 30px;
        min-width: 180px;
    }

    .associate-logo {
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .associate-section {
        padding: 60px 0;
    }

    .associate-header h2 {
        font-size: 2.2rem;
    }

    .associates-logo-row {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }

    .associate-logo-card {
        width: 100%;
        max-width: 280px;
        padding: 25px 30px;
    }

    .associate-logo {
        max-height: 90px;
    }
}

/* Contact Section */
/* ============================================================
   CONTACT SECTION - TWO COLUMN UI
   ============================================================ */
.contact-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Form is wider than info */
    gap: 40px;
    align-items: start;
}

.text-green {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.side-header p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* --- Form Styling --- */
.contact-form-ui {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-ui input,
.contact-form-ui textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-form-ui input:focus,
.contact-form-ui textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    outline: none;
}

.btn-submit {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--accent-gold-dark);
}

/* --- Info Side Styling --- */
.info-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item .material-icons-round {
    color: var(--accent-gold);
    font-size: 24px;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Map Styling --- */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Section Header Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin: 16px 0 12px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Deep Pockets Hero Section */
.why-choose-hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%);
    border-top: 1px solid var(--border-color);
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 16px 0 24px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.why-choose-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-icon {
    font-size: 32px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.why-choose-feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.why-choose-feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.why-choose-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-hero-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

@media (max-width: 1024px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-content h1 {
        font-size: 2.8rem;
    }

    .why-choose-image {
        order: -1;
    }

    .why-choose-hero-img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-choose-hero-section {
        padding: 60px 0;
    }

    .why-choose-content h1 {
        font-size: 2.2rem;
    }

    .why-choose-description {
        font-size: 1rem;
    }

    .why-choose-hero-img {
        max-width: 100%;
    }

    /* Styling the Select Dropdowns */
    .form-select {
        width: 100%;
        padding: 16px 20px;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: white;
        font-size: 1rem;
        color: var(--text-primary);
        appearance: none;
        /* Removes default arrow */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .form-select:focus {
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        outline: none;
    }

    /* Animation for the appearing dropdown */
    #sub-category-wrapper {
        animation: slideDown 0.4s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ==========================================
   WEALTH MANAGEMENT SECTION 
   ========================================== */
.wealth-management-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%);
    border-top: 1px solid var(--border-color);
}

.wealth-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.wealth-description {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.wealth-description p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .wealth-content {
        flex-direction: column;
    }

    .wealth-description {
        padding: 30px 25px;
    }

    .wealth-description p {
        font-size: 1rem;
        text-align: left;
    }
}

/* ==========================================
   ARIHANT STYLE FINANCIAL PLANNING SECTION 
   (Updated with 4-Tile Interactive Grid)
   ========================================== */
.financial-planning-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.grow-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.grow-title span {
    color: #4d4d4d;
}

/* Proper Grid Structure */
.interactive-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Individual Tile Base Styling */
.feature-tile {
    border-radius: 35px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

/* Background Colors from Arihant Capital UI */
.tile-light-yellow {
    background-color: #F9F2E7;
}

.tile-mint {
    background-color: #C1E8CE;
}

.tile-sage {
    background-color: #D1E4D2;
}

.tile-peach {
    background-color: #FEEFD2;
}

/* Special Layout for Tile 1 and 3 (Horizontal Row style) */
.tile-light-yellow,
.tile-sage {
    flex-direction: row;
    align-items: center;
}

.feature-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Content Styling inside tiles */
.tile-content {
    flex: 1;
    z-index: 2;
}

.tile-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tile-content p {
    font-size: 1.15rem;
    color: #636e72;
    max-width: 280px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Learn More Link Interaction */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.learn-more-link span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-tile:hover .learn-more-link span {
    transform: translateX(8px);
}

/* Image/Icon Box Styling for 3D Assets */
.tile-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-image-box img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* Floating Animations for 3D Share Market Graphics */
.floating-3d {
    animation: floatVertical 4s ease-in-out infinite;
}

.floating-3d-slow {
    animation: floatVertical 6s ease-in-out infinite;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================
   RESPONSIVE DESIGN 
   ========================================== */
@media (max-width: 992px) {
    .interactive-feature-grid {
        grid-template-columns: 1fr;
    }

    .tile-light-yellow,
    .tile-sage {
        flex-direction: column-reverse;
        text-align: center;
    }

    .tile-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-tile {
        padding: 40px;
        min-height: auto;
    }

    .grow-title {
        font-size: 2.5rem;
    }
}

/* Our Services Section */
.our-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%);
    border-top: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--accent-gold);
}

.service-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Modern Growth Section UI --- */
.financial-planning-section {
    padding: 100px 0;
    background-color: #f0faf0;
    /* Very light mint background */
    overflow: hidden;
}

.grow-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
}

.grow-title span {
    color: #444;
}

/* Grid Layout */
.interactive-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: stretch;
}

/* Individual Tile Styling */
.feature-tile {
    border-radius: 40px;
    padding: 60px;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

.tile-yellow {
    background-color: #f7fced;
    /* Pale yellow/green from image */
    flex-direction: row;
    align-items: center;
}

.tile-green {
    background-color: #c2e6cc;
    /* Mint green from image */
    flex-direction: column;
    justify-content: space-between;
}

.feature-tile:hover {
    transform: translateY(-10px);
}

/* Content Styling */
.tile-content {
    z-index: 2;
}

.tile-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.tile-content p {
    font-size: 1.25rem;
    color: #636e72;
    max-width: 320px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Learn More Link Animation */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.learn-more-link .material-icons-round {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-tile:hover .learn-more-link {
    gap: 20px;
}

.feature-tile:hover .learn-more-link .material-icons-round {
    transform: translateX(5px);
}

/* 3D Asset Floating Animation */
.tile-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-yellow .tile-image-box {
    width: 50%;
    margin-right: 20px;
}

.tile-green .tile-image-box {
    margin-top: -20px;
}

.floating-3d {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    animation: floatHand 4s ease-in-out infinite;
}

.floating-3d-slow {
    width: 250px;
    animation: floatCoffee 6s ease-in-out infinite;
}

@keyframes floatHand {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes floatCoffee {

    0%,
    100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(10px, -10px) rotate(5deg);
    }
}

/* --- Arihant Style Financial Section --- */
.financial-planning-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.grow-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.grow-title span {
    color: #4d4d4d;
}

/* Proper Grid Structure */
.interactive-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Individual Tile Base Styling */
.feature-tile {
    border-radius: 35px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

/* Background Colors from Arihant Capital UI */
.tile-light-yellow {
    background-color: #F9F2E7;
}

.tile-mint {
    background-color: #C1E8CE;
}

.tile-sage {
    background-color: #D1E4D2;
}

.tile-peach {
    background-color: #FEEFD2;
}

/* Special Layout for Tile 1 and 3 (Row style) */
.tile-light-yellow,
.tile-sage {
    flex-direction: row;
    align-items: center;
}

.feature-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Content Styling */
.tile-content {
    flex: 1;
    z-index: 2;
}

.tile-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tile-content p {
    font-size: 1.15rem;
    color: #636e72;
    max-width: 280px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Learn More Interaction */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.learn-more-link span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.feature-tile:hover .learn-more-link span {
    transform: translateX(8px);
}

/* Image/Icon Box Styling */
.tile-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-image-box img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* Animations */
.floating-3d {
    animation: floatVertical 4s ease-in-out infinite;
}

.floating-3d-slow {
    animation: floatVertical 6s ease-in-out infinite;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .interactive-feature-grid {
        grid-template-columns: 1fr;
    }

    .tile-light-yellow,
    .tile-sage {
        flex-direction: column-reverse;
        text-align: center;
    }

    .tile-content p {
        max-width: 100%;
    }

    .feature-tile {
        padding: 40px;
        min-height: auto;
    }

    .grow-title {
        font-size: 2.5rem;
    }
}


/* FAQ Section */
/* ============================================================
   FAQ SECTION STYLES
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
    /* Narrower for better readability */
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Default subtle shadow */
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.1);
}


.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    background-color: transparent;
    /* Remove green circle */
    color: var(--text-primary);
    /* Dark arrow */
    width: 24px;
    /* Adjust size */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-size: 28px;
    /* Larger icon */
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Style for Open State */
.faq-item.active {
    border-color: var(--accent-gold);
    background-color: #ffffff;
    /* Keep white background */
    box-shadow: 0 10px 30px -5px rgba(16, 185, 129, 0.15);
    /* Enhanced shadow when open */
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    /* Rotate 180 for smooth effect */
    background: transparent;
    color: var(--accent-gold);
    /* Turn green when active */
}

.faq-answer {
    max-height: 0;
    /* Hidden by default */
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height for animation */
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding-top: 15px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planning-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.about-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--accent-gold);
}

.mission-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.mission-icon {
    font-size: 40px;
    color: white;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.mission-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.value-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
    border-color: var(--accent-gold);
}

.value-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Certificate Section */
.certificate-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

/* 2-Column Grid */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Modern Card Design */
.certificate-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.certificate-card:hover {
    transform: translateY(-5px);
    border-color: #00d094;
    box-shadow: 0 20px 40px rgba(0, 208, 148, 0.05);
}

/* Verified Badge Overlay */
.certificate-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #00d094;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 208, 148, 0.3);
}

.certificate-header {
    margin-bottom: 25px;
}

.certificate-header h3 {
    font-size: 1.4rem;
    color: #1a1e27;
    margin-bottom: 5px;
    font-weight: 700;
}

.certificate-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* PDF Container */
.pdf-container {
    background: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    line-height: 0;
    /* Removes extra bottom space */
}

/* Remove PDF Toolbars in Chrome/Edge using #toolbar=0 in HTML src */
.pdf-container iframe {
    border: none;
    display: block;
}

/* Professional Footer Text (Replaces download button) */
.certificate-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.certificate-footer .material-icons-round {
    font-size: 18px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        /* Stacks on tablet/mobile */
        gap: 40px;
    }

    .certificate-card {
        padding: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
    border-color: var(--accent-gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent-gold);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Page Responsive Styles */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-description {
        font-size: 1.1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mission-card {
        padding: 32px 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .certificate-card {
        padding: 24px;
    }

    .certificate-header {
        flex-direction: column;
        text-align: center;
    }

    .cta-container h2 {
        font-size: 2rem;
    }
}

/* Service Pages Styles */
.service-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.service-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.service-hero-icon {
    font-size: 120px !important;
    color: white;
}

/* Service Features Section */
.service-features-section {
    padding: 80px 0;
    background: white;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.feature-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
    border-color: var(--accent-gold);
}

.feature-card-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.feature-card .icon-wrapper {
    margin: 0 auto 16px auto;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.step-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
    border-color: var(--accent-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Pages Responsive Styles */
@media (max-width: 1024px) {
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-icon-wrapper {
        width: 200px;
        height: 200px;
    }

    .service-hero-icon {
        font-size: 100px !important;
    }

    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-hero-description {
        font-size: 1.1rem;
    }

    .service-icon-wrapper {
        width: 180px;
        height: 180px;
    }

    .service-hero-icon {
        font-size: 90px !important;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Financial Planning Section */
.financial-planning-section {
    padding: 100px 0;
    background: white;
    border-top: 1px solid var(--border-color);
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.planning-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.planning-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    border-color: var(--accent-gold);
}

.planning-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.planning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.planning-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .planning-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-visible {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) scale(1) rotate(0) !important;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animate-slide-rotate-left {
    opacity: 0;
    transform: translateX(-50px) rotateY(-10deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    perspective: 1000px;
}

.animate-slide-rotate-right {
    opacity: 0;
    transform: translateX(50px) rotateY(10deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    perspective: 1000px;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ==========================================
   PREMIUM "MORE EFFECTS" 
   ========================================== */

/* 1. 3D Lift & Glow Hover */
.service-card,
.planning-card,
.why-choose-feature-item,
.associate-logo-card,
.faq-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy feel */
}

.service-card:hover,
.planning-card:hover,
.why-choose-feature-item:hover,
.associate-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* 2. Button Shine Effect */
.btn-open-account,
.btn-learn-more,
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-open-account::after,
.btn-learn-more::after,
.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-open-account:hover::after,
.btn-learn-more:hover::after,
.btn-submit:hover::after {
    left: 100%;
    transition: 0.7s;
}

/* 3. Floating Animation */
@keyframes float-breath {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.why-choose-hero-img {
    animation: float-breath 4s ease-in-out infinite;
}

/* 4. Gradient Text Flow */
@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.highlight-text,
.hero-main-title span {
    /* Apply to key text spans */
    background: linear-gradient(270deg, #10b981, #d97706, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Fallback needs care */
    animation: gradient-flow 3s ease infinite;
}

/* Ensure hero title has color fallback if not span */
.hero-main-title {
    background: linear-gradient(270deg, #1e293b, #334155, #1e293b);
    /* Dark subtle flow */
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: #1e293b;
    /* Fallback */
    animation: gradient-flow 8s ease infinite;
}

/* Hero Image Styling */
.hero-visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
    /* Floating effect is handled by animation classes */
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    /* Soft green glow */
    animation: float-breath 6s ease-in-out infinite;
    /* Reuse floating animation */
}

@media (max-width: 768px) {
    .hero-visual-content {
        margin-top: 40px;
        order: -1;
    }
}

/* Hero Feature List */
.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.check-icon {
    color: var(--primary-green);
    font-size: 20px;
}

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Form is wider than info */
    gap: 40px;
    align-items: center;
}

.text-green {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.side-header p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* --- Form Styling --- */
.contact-form-ui {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-ui input,
.contact-form-ui select,
.contact-form-ui textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-form-ui input:focus,
.contact-form-ui select:focus,
.contact-form-ui textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    outline: none;
}

/* Disabled Subcategory */
.contact-form-ui select:disabled {
    background: #f0f0f0;
    cursor: not-allowed;
    color: #999;
}

/* Button */
.btn-submit {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
}

/* Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-item span {
    font-size: 24px;
    color: var(--accent-gold);
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Map */
.map-container iframe {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.map-container iframe:hover {
    transform: scale(1.01);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Why Choose Us Redesign --- */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    /* Light mint to white */
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Create the image card look */
.why-choose-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    /* max-width: 500px; */
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.why-choose-image-card:hover {
    transform: translateY(-5px);
}

.why-choose-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Content Styling */
.why-choose-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-choose-badge {
    background-color: #d1fae5;
    /* Very light green */
    color: #059669;
    /* Darker green text */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    display: inline-block;
}

.why-choose-badge strong {
    color: #047857;
}

.why-choose-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-choose-title .text-green {
    color: #10b981;
    /* Standard brand green */
}

.why-choose-desc {
    font-size: 1.1rem;
    color: #6b7280;
    /* Gray-600 */
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

/* Feature List */
.why-choose-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.wc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wc-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* No background circle per design, just the icon or simple style */
    color: #10b981;
}

.wc-icon-box .material-icons-round {
    font-size: 28px;
}

.wc-text-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.wc-text-box p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .why-choose-content {
        align-items: center;
    }

    .why-choose-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-features-list {
        align-items: center;
        /* Center items if desired, or keep left aligned */
        max-width: 600px;
        margin: 0 auto;
    }

    .wc-feature-item {
        text-align: left;
    }

    .why-choose-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .why-choose-title {
        font-size: 2rem;
    }

    .wc-feature-item {
        flex-direction: row;
        gap: 15px;
    }

    .wc-icon-box {
        width: 36px;
        height: 36px;
    }

    .wc-icon-box .material-icons-round {
        font-size: 24px;
    }
}

/* --- Gradient Text Style --- */
.highlight-text {
    color: var(--accent-gold);
    font-weight: 800;
}

/* SIP Table Styles */
.sip-table-container {
    margin-top: 40px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sip-table-container h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.table-responsive {
    overflow-x: auto;
}

.sip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.sip-table th,
.sip-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.sip-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.sip-table tr:last-child td {
    border-bottom: none;
}

.sip-table td {
    color: var(--text-primary);
}

.sip-table tr:hover td {
    background-color: #f0fdf4;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    /* Limit width for easier reading */
    margin: 40px auto 0;
    overflow: hidden;
    /* Hide overflow */
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.testimonial-track:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 100%;
    /* Each card takes full width of container */
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Optional: Add a subtle texture or gradient */
    background: linear-gradient(145deg, #ffffff, #f9fafb);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: #e0f2fe;
    /* Light blue/gray bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.author-avatar .material-icons-round {
    font-size: 32px;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background-color: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Enhanced Testimonials Theme */
.testimonials-section {
    background-color: #f8fafc;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

/* Add a subtle fade overlay */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
    z-index: 1;
}

.testimonial-card {
    border: 1px solid rgba(16, 185, 129, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Top colored bar for "active trade" feel */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--success-green));
    opacity: 0.8;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-badge.positive {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-badge.shield {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author {
    margin-top: 0;
    /* Override previous margin */
}

/* Adjust author alignment since it's now in footer */
.author-info {
    text-align: left;
}

.mini-chart {
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.quote-icon {
    margin-bottom: 10px;
}

/* Adjust text size for cleaner look */
.testimonial-text {
    font-size: 1.15rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* Interactive hover effect */
.testimonial-card:hover {
    transform: translateY(-5px) scale(1.005);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
}

.slider-controls {
    margin-top: 40px;
}

.slider-btn {
    border-radius: 8px;
    /* Square off buttons slightly for 'trading' look */
    border-width: 2px;
}

.dot {
    border-radius: 2px;
    /* Square dots */
    width: 20px;
    height: 4px;
}

.dot.active {
    background-color: var(--success-green);
    transform: none;
}

/* Floating Chat Widget */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-widget-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #10b981;
    /* Brand Green */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
}

.chat-widget-btn .material-icons-round {
    font-size: 24px;
}

.chat-widget-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background-color: #059669;
    /* Darker Green on Hover */
}

/* Optional: Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.chat-widget-btn {
    animation: pulse-green 2s infinite;
}

.chat-widget-btn:hover {
    animation: none;
    /* Stop pulse on hover to be less annoying */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .chat-widget-container {
        bottom: 20px;
        right: 20px;
    }

    .chat-widget-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Chatbot end */

/* Chatbot Widget Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* Toggle Button */
.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* WhatsApp Green */
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    outline: none;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.chat-notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: #ef4444;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 480px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    border: 1px solid var(--border-color);
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #0f766e, #10b981);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.header-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.header-info .status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-info .status::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
}

.close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Body */
.chat-body {
    flex: 1;
    padding: 20px;
    background-color: #f3f4f6;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: white;
    color: var(--text-primary);
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-right: auto;
}

.user-message {
    background: #10b981;
    color: white;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.2);
    margin-left: auto;
}

/* Chat Input Styling */
.chat-input-area {
    padding: 10px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input-area input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.chat-input-area input:focus {
    border-color: #10b981;
}

.chat-input-area button {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-input-area button:hover {
    background: #059669;
}

.chat-input-area button i {
    font-size: 1.1rem;
}

/* Quick Options */
.chat-options {
    padding: 15px;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-btn {
    padding: 8px 14px;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: 0.2s;
}

.option-btn:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.option-btn.highlight {
    background: #ecfdf5;
    color: #10b981;
    border-color: #10b981;
}

.option-btn.highlight:hover {
    background: #10b981;
    color: white;
}

@media (max-width: 480px) {
    .chat-window {
        width: 300px;
        right: -20px;
        /* Center relative to button */
        bottom: 70px;
    }
}

/* ==========================================
   MARKET STATUS WIDGET
   ========================================== */
.market-status-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 10px;
}

.market-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #ef4444;
    /* Default red for live tag, can change */
    font-weight: 700;
    text-transform: uppercase;
}

.blink-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: blink-live 1.5s infinite;
}

@keyframes blink-live {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.status-display {
    text-align: center;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.status-display h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.status-display p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Status Colors */
.market-open .status-display {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.market-open h3 {
    color: #059669;
}

.market-open .live-indicator {
    color: #059669;
}

.market-open .blink-dot {
    background-color: #059669;
}

.market-closed .status-display {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.market-closed h3 {
    color: #dc2626;
}

.market-closed .live-indicator {
    color: #dc2626;
}

.market-closed .blink-dot {
    background-color: #dc2626;
}

/* Holidays Section */
.holidays-section h4 {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 10px;
    border-left: 3px solid #10b981;
    padding-left: 10px;
}

.holiday-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.holiday-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #4b5563;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.holiday-list li:last-child {
    border-bottom: none;
}

.holiday-date {
    font-weight: 600;
    color: #1f2937;
}

/* ==========================================
   IPO DASHBOARD STYLES
   ========================================== */
.ipo-dashboard-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.ipo-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ipo-tab {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ipo-tab.active,
.ipo-tab:hover {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.ipo-content-container {
    min-height: 300px;
}

.ipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.ipo-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.ipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ipo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #10b981;
    /* Default Green for open */
}

.ipo-card.upcoming::before {
    background: #3b82f6;
}

/* Blue for Upcoming */
.ipo-card.closed::before {
    background: #94a3b8;
}

/* Grey for Closed */

.ipo-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.ipo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.ipo-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: #ecfdf5;
    color: #059669;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 10px;
}

.ipo-details {
    margin-top: 15px;
}

.ipo-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.ipo-detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #64748b;
}

.detail-value {
    color: #334155;
    font-weight: 600;
}

.loading-state {
    text-align: center;
    padding: 50px;
    color: #64748b;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #10b981;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-message {
    text-align: center;
    padding: 40px;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fee2e2;
    color: #b91c1c;
}