/* -------------------------------------
 *  CSS RESET & CUSTOM VARIABLES
 * ------------------------------------- */

:root {
    --primary-blue: #061B3B;     /* Deep navy blue from the brand */
    --primary-green: #C5F805;    /* Bright lime/neon green from the brand */
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #F8F9FA;
    --bg-main: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #061B3B;
    --border-color: #E2E8F0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------
 *  LAYOUT & UTILITIES
 * ------------------------------------- */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.bg-light { background-color: var(--bg-light); }
.dark-section { 
    background-color: var(--bg-dark); 
    color: var(--text-light);
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--text-muted); }
.text-lg { font-size: 1.125rem; line-height: 1.8; }
.fw-bold { font-weight: 700; }
.color-primary { color: var(--primary-blue) !important; }

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.pt-5 { padding-top: 3rem; }
.pb-4 { padding-bottom: 2rem; }

.max-w-800 { max-width: 800px; margin: 0 auto; }
.align-center { align-items: center; }
.align-top { align-items: flex-start; }
.relative { position: relative; }

/* -------------------------------------
 *  BUTTONS
 * ------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-blue);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-green);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(197, 248, 5, 0.4);
}

/* -------------------------------------
 *  HEADER NAVIGATION
 * ------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-mark {
    position: relative;
    width: 32px;
    height: 32px;
}

.mark-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 24px;
    background-color: var(--primary-blue);
    border-radius: 2px 8px 2px 2px;
    transform: skewX(-15deg);
}

.mark-green {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: var(--primary-green);
    border-radius: 2px 8px 2px 2px;
    transform: skewX(-15deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-blue);
    position: relative;
}

.desktop-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.desktop-nav a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-blue);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-overlay ul {
    text-align: center;
}

.mobile-nav-overlay li {
    margin: 2rem 0;
}

.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* -------------------------------------
 *  HERO SECTION
 * ------------------------------------- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, rgba(197, 248, 5, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); opacity: 0.6; }
    100% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.hero-logo-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.logo-mark.large {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.logo-mark.large .mark-blue {
    width: 50px;
    height: 60px;
    border-radius: 4px 20px 4px 4px;
}

.logo-mark.large .mark-green {
    width: 35px;
    height: 35px;
    border-radius: 4px 20px 4px 4px;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.title-divider {
    width: 100%;
    max-width: 500px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 1.5rem 0;
}

.tagline {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--primary-blue);
}

.subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s 0.6s both, bounce 2s infinite 2s;
}

.scroll-indicator i {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--primary-green);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* -------------------------------------
 *  TYPOGRAPHY / SECTIONS
 * ------------------------------------- */

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 60px;
    height: 6px;
    background-color: var(--primary-green);
}

/* -------------------------------------
 *  SERVICES & FEATURES GRIDS
 * ------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-main);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card-header.highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .card-header.highlight {
    background-color: var(--primary-green);
    height: 6px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.features-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.features-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--bg-main);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 248, 5, 0.3);
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-green);
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Two col image cards */
.card-image {
    background: var(--bg-main);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.card-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 2.5rem;
    text-align: center;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* -------------------------------------
 *  DATA TABLES
 * ------------------------------------- */

.table-container {
    width: 100%;
    overflow-x: auto;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.data-table th, 
.data-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--primary-blue);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.data-table tbody tr {
    transition: background-color 0.2s;
}

.data-table tbody tr:hover {
    background-color: rgba(197, 248, 5, 0.05);
}

.data-table td.fw-bold {
    color: var(--primary-blue);
}

/* -------------------------------------
 *  SPLIT LAYOUTS
 * ------------------------------------- */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-list.spacing-large li {
    margin-bottom: 2.5rem;
}

.icon-list i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: var(--primary-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.image-side img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

.image-side.circle-image img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 80%;
    margin: 0 auto;
    border: 10px solid white;
    box-shadow: var(--shadow-lg);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--primary-green);
    background: var(--primary-blue);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* -------------------------------------
 *  SPECIFIC SECTIONS
 * ------------------------------------- */

.forex-graph-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 200%;
    background-image: url('https://images.unsplash.com/photo-1611327310892-0b2a59a96e5d?auto=format&fit=crop&q=80&w=1000'); /* Placeholder stock chart */
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    mix-blend-mode: overlay;
}

.dark-section .icon-list i {
    color: var(--primary-green);
    background: transparent;
    font-size: 2rem;
}

.dark-section .icon-list li {
    position: relative;
    z-index: 1;
}

.strategy-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.massive-text {
    font-size: 8rem;
    line-height: 1;
    color: var(--primary-blue);
    font-weight: 900;
    letter-spacing: -2px;
}

.strategy-right {
    flex: 1;
    max-width: 600px;
    border-left: 4px solid var(--primary-green);
    padding-left: 2rem;
}

/* -------------------------------------
 *  FOOTER
 * ------------------------------------- */

.footer {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.footer-title {
    font-size: 3.5rem;
}

.footer-divider {
    width: 120px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 1.5rem auto;
}

.footer-services {
    color: var(--text-muted);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 4rem;
}

.contact-card {
    border: 3px solid var(--primary-blue);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    background: white;
}

.contact-logo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-logo p {
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-details {
    text-align: left;
    margin-top: 2rem;
    font-family: var(--font-body);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 4px;
}

.contact-item a {
    color: var(--text-main);
}

.contact-item a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    background-color: var(--primary-blue);
    color: white;
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin-left: 1.5rem;
}

.social-links a:hover {
    color: var(--primary-green);
}

/* -------------------------------------
 *  ANIMATIONS (Scroll Reveal)
 * ------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }

.reveal.left.active, 
.reveal.right.active {
    transform: translateX(0);
}

/* -------------------------------------
 *  RESPONSIVE DESIGN
 * ------------------------------------- */

@media (max-width: 1024px) {
    .main-title { font-size: 4rem; }
    .features-grid.three-cols { grid-template-columns: repeat(2, 1fr); }
    .split-layout { gap: 2rem; }
    .massive-text { font-size: 5rem; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    
    .main-title { font-size: 3rem; }
    .tagline { font-size: 1.2rem; letter-spacing: 4px; }
    
    .section { padding: 4rem 0; }
    .section-title { font-size: 2rem; margin-bottom: 3rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .features-grid.three-cols, .features-grid.two-cols { grid-template-columns: 1fr; }
    
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .image-side.circle-image img { max-width: 60%; }
    
    .strategy-layout { flex-direction: column; text-align: center; gap: 2rem; }
    .strategy-right { border-left: none; border-top: 4px solid var(--primary-green); padding-left: 0; padding-top: 2rem; }
    
    .footer-title { font-size: 2.5rem; }
    .contact-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .main-title { font-size: 2.5rem; }
    .image-side.circle-image img { max-width: 80%; }
    .massive-text { font-size: 4rem; }
    .flex-between { flex-direction: column; gap: 1rem; text-align: center; }
}
