/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0bf5da;
    --primary-dark: #2e067f;
    --secondary: #430cea;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-card-hover: #334155;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(245, 158, 11, 0.2);
    --success: #10b981;
    --danger: #0f0f90;
    --emerald: #10b981;
    --blue: #3b82f6;
    --purple: #a855f7;
    --yellow: #eab308;
    
    /* Simplified Investment Colors */
    --inv-bg: #f7f9fb;
    --inv-card: #ffffff;
    --inv-text: #1a202c;
    --inv-text-light: #4a5568;
    --inv-border: #e2e8f0;
    --inv-teal: #20B2AA;
    --inv-blue: #3b82f6;
    --inv-navy: #1e3a5f;
    --inv-grey: #718096;
    --inv-green: #10b981;
    --inv-red: #ef4444;
    --inv-yellow: #fbbf24;
    --inv-purple: #a855f7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 50%, var(--dark-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo img{
    width:70px;
    height:50px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background: var(--dark-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: var(--dark-card-hover);
    color: var(--text-primary);
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 18, 31, 0.574) 0%, rgba(17, 22, 32, 0.682) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Buttons - UPDATED: Black Explore Button */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 8, 89, 0.4);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
}

.service-icon.blue {
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, var(--purple) 0%, #9333ea 100%);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.service-card:hover .service-link {
    transform: translateX(8px);
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--blue);
    border-radius: 6px;
}

.contact-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-note strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    text-decoration: none;
    color: inherit;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   SIMPLIFIED INVESTMENT SECTION STYLES
   ============================================ */

.investment-section {
    padding: 80px 0;
    background: var(--inv-bg);
    color: var(--inv-text);
    position: relative;
    overflow: hidden;
}

/* Animated Blob Background */
.blob-container {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 600px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.blob-svg {
    width: 100%;
    height: 100%;
}

.blob-path {
    filter: blur(40px);
}

.investment-section .container {
    position: relative;
    z-index: 1;
}

/* Search Bar and Navigation Pills */
.investment-search-nav {
    margin: 40px 0;
}

.search-bar-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 25px;
}

.search-bar-container i[data-lucide="search"] {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--inv-grey);
    pointer-events: none;
}

.search-bar {
    width: 100%;
    padding: 14px 50px 14px 45px;
    border: 2px solid var(--inv-border);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    color: var(--inv-text);
    transition: all 0.3s;
}

.search-bar:focus {
    outline: none;
    border-color: var(--inv-teal);
    box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.1);
}

.search-bar::placeholder {
    color: var(--inv-grey);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inv-grey);
    transition: color 0.3s;
}

.clear-search:hover {
    color: var(--inv-text);
}

.clear-search i {
    width: 18px;
    height: 18px;
}

/* UPDATED: Pills keep text on mobile */
.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: white;
    border: 2px solid var(--inv-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--inv-text);
    cursor: pointer;
    transition: all 0.3s;
}

.pill:hover {
    background: var(--inv-teal);
    border-color: var(--inv-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.pill i {
    width: 16px;
    height: 16px;
}

.pill span {
    white-space: nowrap;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--inv-border);
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--inv-text);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inv-grey);
    transition: all 0.3s;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--inv-bg);
    color: var(--inv-text);
}

.modal-close i {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--inv-text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--inv-border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--inv-text);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--inv-teal);
    box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success i {
    width: 80px;
    height: 80px;
    color: var(--inv-green);
    margin-bottom: 20px;
}

.booking-success h3 {
    font-size: 1.75rem;
    color: var(--inv-text);
    margin-bottom: 15px;
}

.booking-success p {
    font-size: 1.05rem;
    color: var(--inv-text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Search Animation */
.searchable {
    transition: opacity 0.3s, display 0.3s;
}

/* Investment Hero */
.investment-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.investment-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--inv-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.investment-hero-subtitle {
    font-size: 1.2rem;
    color: var(--inv-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.investment-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Investment Stats Cards */
.investment-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stat-card-simple {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--inv-border);
    transition: transform 0.2s;
}

.stat-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--inv-teal);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--inv-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Simple Card */
.simple-card {
    background: var(--inv-card);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--inv-border);
}

.simple-card.dark {
    background: linear-gradient(135deg, var(--inv-navy) 0%, #2c5282 100%);
    color: white;
}

.simple-card.centered {
    text-align: center;
}

.card-header-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header-simple.light h3 {
    color: white;
}

.icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-badge.teal { background:  #ffffff; }
.icon-badge.blue { background:  #ffffff; }
.icon-badge.navy { background:  #ffffff; }
.icon-badge.green { background:  #ffffff; }
.icon-badge.red { background:  #ffffff; }
.icon-badge.yellow { background:  #ffffff; }
.icon-badge.purple { background:  #ffffff; }

.icon-badge i {
    width: 24px;
    height: 24px;
    color: white;
}

.simple-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--inv-text);
    margin: 0;
}

.simple-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--inv-text);
    margin: 30px 0 20px;
}

.simple-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--inv-text-light);
    margin-bottom: 15px;
}

.light-text {
    color: rgba(255,255,255,0.95) !important;
}

/* Simple Grid */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

/* Feature Box */
.feature-box {
    padding: 25px;
    background: var(--inv-bg);
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon.blue { background: rgb(193, 239, 255) }
.feature-icon.green { background: rgb(198, 255, 194) }
.feature-icon.purple { background: rgb(190, 213, 255) }
.feature-icon.teal { background: rgb(149, 202, 255) }
.feature-icon.red { background: rgb(255, 173, 173) }

.feature-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--inv-text);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--inv-text-light);
    margin: 0;
}

/* Comparison Box */
.comparison-box {
    background: var(--inv-bg);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.comparison-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--inv-border);
}

.comparison-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.comparison-badge.red {
    background: #fee2e2;
    color: #991b1b;
}

.comparison-badge.green {
    background: #d1fae5;
    color: #065f46;
}

.comparison-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--inv-text);
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--inv-teal);
    font-weight: 700;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--inv-text-light);
}

.simple-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--inv-teal);
    font-weight: bold;
}

/* Info Box */
.info-box {
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.info-box.yellow {
    background: #189b8a;
color:white!important;
}

.info-box.teal {
    background: #ffffff;
  
}

.info-box.light {
    background: var(--inv-bg);

}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 0;
}

.info-box p {
    margin-bottom: 12px;
}

/* Highlight Box */
.highlight-box {
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--inv-border);
}

.highlight-box.blue {
    background: #eff6ff;
    border-color: var(--inv-blue);
}

.highlight-box.teal {
    background: #f0fdfa;
    border-color: var(--inv-teal);
}

.highlight-box h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: var(--inv-text);
}

.highlight-box p {
    margin: 0;
    font-size: 1rem;
}

/* Pillars Simple Grid */
.pillars-intro {
    text-align: center;
    color: var(--inv-text-light);
    max-width: 900px;
    margin: 0 auto 35px;
}

.pillars-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pillar-simple {
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--inv-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pillar-simple.teal { background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%); border-color: var(--inv-teal); }
.pillar-simple.blue { background: linear-gradient(135deg, #5178a9 0%, #547db3 100%); border-color: var(--inv-blue); }
.pillar-simple.grey { background: linear-gradient(135deg, #6a6a6a 0%, #535353 100%); border-color: var(--inv-grey); }
.pillar-simple.navy { background: linear-gradient(135deg, #08112e 0%, #09194f 100%); border-color: var(--inv-navy); }

.pillar-simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pillar-num {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--inv-text);
}

.pillar-badge {
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--inv-text-light);
}

.pillar-simple h4 {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    color: var(--inv-text);
}

.pillar-detail {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.pillar-highlight {
    background: rgba(255,255,255,0.7);
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* Returns Showcase */
.returns-showcase {
    margin: 30px 0;
}

.returns-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.return-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.return-box.primary {
    background: rgba(32,178,170,0.2);
    border-color: var(--inv-teal);
}

.return-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.return-big {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 10px 0;
}

.return-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Mechanisms Simple */
.mechanisms-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mechanism-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.mechanism-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mechanism-icon i {
    width: 22px;
    height: 22px;
    color: white;
}

.mechanism-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.mechanism-box p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Terms Simple Grid */
.terms-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.term-box {
    background: var(--inv-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--inv-border);
    transition: transform 0.2s;
}

.term-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.term-icon-simple {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--inv-teal), var(--inv-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.term-icon-simple i {
    width: 28px;
    height: 28px;
    color: white;
}

.term-label {
    font-size: 0.9rem;
    color: var(--inv-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.term-value-big {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--inv-text);
}

/* Binary Section */
.binary-section {
    margin-top: 40px;
}

.choice-simple-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 25px 0;
}

.choice-box {
    background: var(--inv-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--inv-border);
}

.choice-icon-simple {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--inv-teal), var(--inv-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.choice-icon-simple i {
    width: 26px;
    height: 26px;
    color: white;
}

.choice-box h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--inv-text);
    margin-bottom: 10px;
}

.choice-box p {
    font-size: 0.95rem;
    margin: 0;
}

.choice-or {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--inv-teal);
}

/* Compliance Badges */
.compliance-badges-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0 35px;
}

.badge-simple {
    background: #d1fae5;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--inv-green);
}

.badge-simple.green i {
    width: 18px;
    height: 18px;
    color: var(--inv-green);
}

.badge-simple span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #065f46;
}

/* Roadmap Simple */
.roadmap-simple {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
}

.roadmap-step {
    background: var(--inv-bg);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--inv-border);
}

.roadmap-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.roadmap-badge.teal { background: var(--inv-teal); }
.roadmap-badge.blue { background: var(--inv-blue); }
.roadmap-badge.navy { background: var(--inv-navy); }

.roadmap-step h4 {
    font-size: 1.2rem;
    margin: 0 0 12px 0;
}

.roadmap-step p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.roadmap-arrow-simple {
    font-size: 1.8rem;
    color: var(--inv-teal);
    font-weight: 700;
}

/* Quote Box */
.quote-box {
    background: #eef2ff;
  
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.quote-box p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--inv-text);
    margin: 0;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--inv-navy) 0%, #2c5282 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-card h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-card > p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-list {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: white;
}

.cta-item i {
    width: 20px;
    height: 20px;
    color: var(--inv-teal);
    flex-shrink: 0;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .comparison-grid,
    .choice-simple-grid,
    .roadmap-simple {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* HIDE arrows on mobile instead of rotating them */
    .comparison-arrow,
    .choice-or,
    .roadmap-arrow-simple {
        display: none;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-pills {
        gap: 8px;
    }
    
    .pill {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    /* KEEP TEXT VISIBLE ON MOBILE */
    .pill span {
        display: inline !important;
    }
    
    .pill i {
        margin: 0;
    }
    
    /* MOBILE ONLY: Make explore button black border and text */
    .btn-secondary {
        background: transparent !important;
        color: #000000 !important;
        border-color: #000000 !important;
    }
    
    .btn-secondary:hover {
        background: rgba(0, 0, 0, 0.1) !important;
        border-color: #000000 !important;
        color: #000000 !important;
    }
}

@media (max-width: 768px) {
    .investment-hero-title {
        font-size: 2rem;
    }
    
    .investment-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .simple-card {
        padding: 25px;
    }
    
    .simple-card h3 {
        font-size: 1.5rem;
    }
    
    .return-big {
        font-size: 2.2rem;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .cta-card h3 {
        font-size: 1.6rem;
    }
    
    /* Make section headings smaller on mobile */
    h3 {
        font-size: 1.4rem !important;
    }
    
    .investment-overview > h3 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .simple-grid,
    .two-col-grid,
    .pillars-simple-grid,
    .returns-simple-grid,
    .terms-simple-grid,
    .mechanisms-simple {
        grid-template-columns: 1fr;
    }
    
    /* Make section headings even smaller on very small screens */
    h3 {
        font-size: 1.2rem !important;
    }
    
    .investment-overview > h3 {
        font-size: 1.2rem !important;
    }
}

.info-box .yellow{

    color:white
}

.image-section {
  position: relative;
  width: 800px;
  height: 500px;
  margin: 80px auto;
  max-width: 90%; /* Prevent overflow on smaller screens */
}

/* Blue circle UNDER the image */
.circle-under {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #1e6bff;
  border-radius: 50%;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Image on top */
.image-section img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  z-index: 2;
}

/* Tablet styles */
@media (max-width: 768px) {
  .image-section {
    width: 600px;
    height: 375px;
    margin: 60px auto;
  }
  
  .circle-under {
    width: 320px;
    height: 320px;
    bottom: -30px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .image-section {
    width: 100%;
    height: 280px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .circle-under {
    width: 220px;
    height: 220px;
    bottom: -20px;
  }
  
  .image-section img {
    border-radius: 12px;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .image-section {
    height: 240px;
    margin: 30px auto;
  }
  
  .circle-under {
    width: 180px;
    height: 180px;
    bottom: -15px;
  }
}

.image-invest h4 {
    color: white;
  

    font-size: 18px;
    font-weight: 600;
text-align: center;
}

.pill-content1{
    background-color: white;
    color:rgb(0, 0, 0);
    padding:20px;
    top:10%;
    border-radius: 20px;

    width:200px;
    height:50px;
    text-align: center;
}

.pill-content2{
    background-color: white;
    color:rgb(0, 0, 0);
    padding:20px;
    top:20%;
    border-radius: 20px;
left: 60% !important;;
    width:200px;
    height:50px;
    text-align: center;
}



h3{
    color: #00928d;
    font-size: 30px;
        text-align: center;
        margin-bottom:20px;
}

/* WhatsApp Float and Modal */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-modal-content {
    max-width: 450px;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f7f9fb;
    border-radius: 12px;
    text-decoration: none;
    color: var(--inv-text);
    transition: all 0.3s;
    border: 2px solid var(--inv-border);
}

.whatsapp-option:hover {
    background: #e8f5e9;
    border-color: #25D366;
    transform: translateX(5px);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 28px;
    color: white;
}

.whatsapp-details {
    flex: 1;
}

.whatsapp-label {
    font-weight: 600;
    color: var(--inv-text);
    margin-bottom: 4px;
    font-size: 1rem;
}

.whatsapp-number {
    color: var(--inv-text-light);
    font-size: 0.95rem;
}

.whatsapp-option i.fa-arrow-right {
    color: var(--inv-grey);
    font-size: 18px;
}

.footer{
    background-color: #040830;
}