/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #003a2b;
}

h3 {
    font-size: 1.5rem;
    color: #003a2b;
}

h4 {
    font-size: 1.1rem;
    color: #003a2b;
}

p {
    margin-bottom: 15px;
}

a {
    color: #003a2b;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #003a2b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #003a2b;
    color: white;
}

.btn-primary:hover {
    background-color: #006e3e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #00664d;
    color: white;
}

.btn-secondary:hover {
    background-color: #004d39;
    transform: translateY(-2px);
}

.btn-login {
    background-color: transparent;
    color: #00664d;
    border: 2px solid #00664d;
    padding: 8px 20px;
}

.btn-login:hover {
    background-color: #00664d;
    color: white;
}

/* Header & Navigation */
.header {
    background-color: #001a13;
    box-shadow: 0 2px 8px rgba(0, 102, 77, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    max-width: 50%;
    font-weight: bold;
    color: #00664d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00664d;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000a08 0%, #000a08 100%);
    color: white;
    padding: 80px 0;
    text-align: left;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 3.2rem;
    line-height: 1.2;
}

.hero-content h1 .highlight-text {
    color: #00a86b;
    display: block;
}

.hero-content > p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #ccc;
}

.hero-features {
    list-style: none;
    margin: 30px 0 40px 0;
}

.hero-features li {
    margin: 15px 0;
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.hero-features li:before {
    content: "✓";
    margin-right: 15px;
    font-weight: bold;
    color: #00a86b;
    font-size: 1.2rem;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #00664d;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Stats Section */
.stats {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 30px 40px;
    background: transparent;
    border-radius: 0px;
    box-shadow: none;
    transition: transform 0.3s;
    border-top: none;
    flex: 1;
    min-width: 200px;
}

.stat-item:hover {
    transform: none;
    box-shadow: none;
}

.stat-label {
    color: #333;
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    font-weight: 400;
}

.stat-number {
    color: #00a86b;
    font-size: 2.5rem;
    margin: 15px 0;
    font-weight: 700;
}

.stat-title {
    color: #333;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background-color: #333;
    margin: 0 20px;
    display: inline-block;
}

/* Trading Products Section */
.trading-products {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.trading-products h2 {
    color: #00664d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    perspective: 1000px;
    height: 200px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.product-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 5px;
}

.flip-card-front {
    background-color: #f0f0f0;
    color: #333;
}

.flip-card-back {
    background-color: #00664d;
    color: white;
    transform: rotateY(180deg);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.flip-card-front h3 {
    color: #00664d;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    color: white;
}

/* Follow Guru Section */
.follow-guru {
    background: linear-gradient(135deg, #000a08 0%, #000a08 100%);
    color: white;
    padding: 60px 0;
}

.guru-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.guru-left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guru-label {
    color: #00a86b;
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.follow-guru h2 {
    color: white;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.3;
}

.follow-guru h2 .highlight-text {
    color: #00a86b;
}

.guru-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guru-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.guru-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00a86b;
    transform: translateX(5px);
}

.guru-image {
    flex: 0 0 80px;
}

.guru-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00a86b;
}

.guru-info {
    flex: 1;
}

.guru-info h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.guru-return {
    color: #00a86b;
    font-size: 0.95rem;
    margin: 0;
}

.guru-return strong {
    color: #00a86b;
    font-weight: 700;
}

.btn-guru-invest {
    flex: 0 0 auto;
    background: #00a86b;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-guru-invest:hover {
    background: #006e3e;
    color: white;
}

/* Trading Tools Section */
.trading-tools {
    padding: 80px 0;
    background-color: white;
}

.trading-tools-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trading-tools-image {
    flex: 0 0 45%;
}

.trading-tools-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 102, 77, 0.15);
}

.trading-tools-content {
    flex: 1;
}

.trading-tools h2 {
    color: #00664d;
    margin-bottom: 30px;
    text-align: left;
    font-size: 2.2rem;
}

.tools-list {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.tools-list li {
    padding: 12px 0 12px 30px;
    margin: 15px 0;
    background: transparent;
    border-radius: 0px;
    border-left: none;
    font-size: 1rem;
    color: #333;
    box-shadow: none;
    position: relative;
    line-height: 1.6;
}

.tools-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00a86b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Deposit & Withdrawal Section */
.deposit-withdrawal {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.deposit-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.deposit-content {
    flex: 1;
}

.deposit-withdrawal h2 {
    color: #00664d;
    margin-bottom: 20px;
    text-align: left;
    font-size: 2.2rem;
}

.deposit-withdrawal p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.8;
    text-align: left;
}

.deposit-methods {
    flex: 0 0 45%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-logo:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 77, 0.1);
}

.payment-logo img {
    max-width: 100%;
    height: auto;
    max-height: 70px;
}

/* Start Trading Section */
.start-trading {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #081f1d 100%);
    color: white;
}

.start-trading h2 {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.start-trading h2 .highlight-text {
    color: #00a86b;
}

.trading-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 166, 107, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    background: rgba(0, 166, 107, 0.1);
    border-color: #00a86b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 166, 107, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    border: 2px solid #00a86b;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    color: white;
    font-size: 1.5rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-number {
    color: #00a86b;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonials h2 {
    color: #00664d;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 2px 12px rgba(0, 102, 77, 0.08);
    transition: all 0.3s;
    border-top: 4px solid #00a86b;
}

.testimonial:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 77, 0.12);
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial h4 {
    color: #00664d;
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #00664d 0%, #004d39 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Markets Section */
.markets {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #081f1d 100%);
    text-align: center;
}

.markets h2 {
    color: #00a86b;
    margin-bottom: 15px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.markets p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
}

.tradingview-widget-container {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.tradingview-widget-container iframe {
    width: 100% !important;
    height: 100% !important;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom p:last-child {
    margin-top: 20px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .product-card {
        height: 180px;
    }

    .product-icon {
        font-size: 2.2rem;
    }

    .flip-card-front h3 {
        font-size: 1rem;
    }

    .flip-card-back p {
        font-size: 0.8rem;
    }

    .guru-container {
        gap: 40px;
    }

    .guru-left {
        flex: 0 0 40%;
    }

    .trading-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .trading-tools-container {
        gap: 40px;
    }

    .trading-tools-image {
        flex: 0 0 50%;
    }

    .deposit-container {
        gap: 50px;
    }

    .deposit-methods {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        height: 180px;
    }

    .product-icon {
        font-size: 2rem;
    }

    .flip-card-front h3 {
        font-size: 0.95rem;
    }

    .flip-card-back p {
        font-size: 0.75rem;
    }

    .guru-container {
        flex-direction: column;
        gap: 40px;
    }

    .guru-left {
        flex: 1;
    }

    .follow-guru h2 {
        text-align: center;
    }

    .trading-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step {
        padding: 30px 20px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .trading-tools-container {
        flex-direction: column;
        gap: 30px;
    }

    .trading-tools-image {
        flex: 1;
    }

    .trading-tools h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .deposit-container {
        flex-direction: column;
        gap: 30px;
    }

    .deposit-content {
        flex: 1;
    }

    .deposit-methods {
        flex: 1;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .deposit-withdrawal h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .deposit-withdrawal p {
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content h1 .highlight-text {
        display: inline;
    }

    .hero-features li {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-item h2 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        height: 160px;
    }

    .product-icon {
        font-size: 2rem;
    }

    .flip-card-front h3 {
        font-size: 0.9rem;
    }

    .flip-card-back p {
        font-size: 0.7rem;
    }

    .guru-container {
        flex-direction: column;
        gap: 30px;
    }

    .guru-left {
        flex: 1;
    }

    .guru-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .guru-image img {
        width: 70px;
        height: 70px;
    }

    .btn-guru-invest {
        width: 100%;
    }

    .trading-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        padding: 20px 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .start-trading h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .trading-tools-container {
        flex-direction: column;
        gap: 20px;
    }

    .trading-tools-image {
        flex: 1;
    }

    .trading-tools h2 {
        font-size: 1.4rem;
    }

    .tools-list li {
        font-size: 0.9rem;
        padding: 10px 0 10px 25px;
        margin: 12px 0;
    }

    .deposit-container {
        flex-direction: column;
        gap: 20px;
    }

    .deposit-content {
        flex: 1;
    }

    .deposit-methods {
        flex: 1;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .payment-logo {
        padding: 15px;
    }

    .payment-logo img {
        max-height: 60px;
    }

    .deposit-withdrawal h2 {
        font-size: 1.4rem;
    }

    section {
        padding: 40px 0 !important;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 5px 20px rgba(0, 102, 77, 0.1);
    transform: translateY(-3px);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #00a86b;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        gap: 30px;
    }

    .testimonials h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }
}
