/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --gold-light: #FFEC8B;
    --gold-dark: #DAA520;
    --background-dark: #0A0E17;
    --background-navy: #0F1A30;
    --background-purple: #1A0B2E;
    --text-light: #FFFFFF;
    --text-gray: #B0B7C3;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 215, 0, 0.2);
    --shadow-gold: rgba(255, 215, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 1s ease;
}

/* Canvas for Coin Animation (Fallback) */
#coinCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: none; /* Hidden by default, shown if video fails */
}

/* Gradient Overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 23, 0.85) 0%, 
        rgba(15, 26, 48, 0.75) 50%, 
        rgba(26, 11, 46, 0.85) 100%);
    z-index: -1;
}

/* Container - Reduced margins for desktop */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

p {
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    gap: 12px;
    font-size: 1rem;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-login {
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 58px;              /* Desktop size */
    width: auto;
    max-width: 180px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover animation */
.logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 34px;
        max-width: 130px;
    }
}




.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}





/* Hero Section - Completely Redesigned */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--background-dark) 0%,
        var(--background-navy) 50%,
        var(--background-purple) 100%);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 11, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(15, 26, 48, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content Styles */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease forwards;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease 0.2s forwards;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.title-line.accent:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease 0.4s forwards;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease 0.6s forwards;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.highlight:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.highlight i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease 1s forwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}

.stat-value:after {
    content: '+';
    position: absolute;
    right: -12px;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    height: 600px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease 0.5s forwards;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.main-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.8s ease;
}

.visual-container:hover .main-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(10, 14, 23, 0.4) 0%,
        rgba(255, 215, 0, 0.1) 100%
    );
    border-radius: 20px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: 1px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.8s ease forwards;
}

.floating-card.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 1s;
}

.floating-card.card-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1.2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 1.4s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: var(--background-dark);
    font-size: 1.2rem;
}

.card-content h5 {
    font-size: 0.9rem;
    color: var(--background-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin: 0;
}

/* Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: -50px;
    animation: float 30s infinite ease-in-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 1.6s forwards;
    z-index: 2;
}

.scroll-indicator p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: var(--primary-gold);
    border-radius: 3px;
    margin-top: 10px;
    animation: scroll 2s infinite;
}

/* New Animations */
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-highlights {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .highlight {
        min-width: 200px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        transform: scale(0.9);
    }
    
    .floating-card.card-1 {
        left: 10px;
    }
    
    .floating-card.card-2 {
        right: 10px;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        padding: 10px;
        transform: scale(0.8);
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}









/* Partners Section */
.partners {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--primary-gold);
    opacity: 1;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.service-card.featured {
    border: 2px solid var(--primary-gold);
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.services-cta a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.services-cta a:hover {
    text-decoration: underline;
}

/* Investments Section */
.investments {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.investments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.investment-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.investment-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.investment-card.featured {
    border: 2px solid var(--primary-gold);
    position: relative;
}

.investment-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-category {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.investment-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--background-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 5px;
}

.investment-body {
    padding: 25px;
}

.investment-return {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.return-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.return-label {
    font-size: 1rem;
    color: var(--text-gray);
}

.investment-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.detail {
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.investment-features {
    list-style: none;
    margin-bottom: 25px;
}

.investment-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.investment-features i {
    color: var(--primary-gold);
    min-width: 20px;
}

.investment-footer {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-invest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    color: var(--background-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition);
    gap: 10px;
}

.btn-invest:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-gold);
}

.investment-link {
    color: var(--text-gray);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.investment-link:hover {
    color: var(--primary-gold);
}

.investments-note {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.investments-note i {
    color: var(--primary-gold);
    margin-right: 10px;
}




/* Strategies Section */

.strategies {
    padding: 100px 0;
}

.strategies-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Single image container */
.single-visual {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single-visual:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.single-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 25px;
}

.image-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.image-caption i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.image-caption span {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
}

/* Strategy details styling remains the same */
.strategy-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.strategy {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.strategy:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.strategy h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy h3 i {
    color: var(--primary-gold);
}

.strategy p {
    line-height: 1.7;
}

/* Responsive design */
@media (max-width: 768px) {
    .strategies-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-visual {
        padding: 30px;
    }
    
    .single-visual img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .single-visual img {
        max-width: 100%;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.testimonial-content {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--background-dark);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(26, 11, 46, 0.1));
    z-index: -1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.feature i {
    color: var(--primary-gold);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-description {
    margin-bottom: 30px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-gold);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--background-dark);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--background-dark);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--card-border);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-gold);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-feature {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 50px;
    }
    
    .feature-card {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .investments-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategies-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        transition: var(--transition);
        z-index: 999;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid,
    .investments-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .video-background video {
        display: none; /* Hide video on mobile for performance */
    }
    
    #coinCanvas {
        display: block; /* Show canvas animation on mobile */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .return-value {
        font-size: 2.8rem;
    }
}