* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }

        :root {
            --primary-green: #1a5f1a;
            --dark-green: #0d3320;
            --light-green: #90EE90;
            --bright-green: #4CAF50;
            --accent-orange: #FF6B35;
            --text-dark: #1a1a2e;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            background: var(--white);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .nav-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-icons i {
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .btn-explore {
            background: var(--bright-green);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-explore:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-green);
        transition: color 0.3s;
        }

        .menu-toggle:hover {
            color: var(--bright-green);
        }


        /* Hero Section */
        .hero {
            margin-top: 70px;
            background: url('../img/hero-bg.jpg') center/cover no-repeat;
            color: var(--white);
            padding: 4rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .google-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .stars {
            color: #FFD700;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: var(--light-green);
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .btn-get-started {
            background: var(--bright-green);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-get-started:hover {
            background: transparent;
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .floating-coins {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .coin {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        .coin-1 { background: #FFD700; top: 20%; left: 10%; animation-delay: 0s; }
        .coin-2 { background: #C0C0C0; top: 60%; left: 15%; animation-delay: 1s; }
        .coin-3 { background: #CD7F32; top: 30%; right: 15%; animation-delay: 2s; }
        .coin-4 { background: #FFD700; top: 70%; right: 10%; animation-delay: 3s; }
        .coin-5 { background: #4CAF50; top: 50%; left: 5%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .coin-ring img {
            width: 1500px;
            height: 100%;
            animation: rotate 10s linear infinite;
        }

        .coin-ring {
            z-index: -0.9;
        }

        /* Section Styling */
        section {
            padding: 4rem 5%;
        }

        .section-label {
            display: inline-block;
            background: var(--bg-light);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        /* Countries Section */
        .countries {
            background: var(--white);
            text-align: center;
        }

        .countries-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .country-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: var(--bg-light);
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .country-btn:hover {
            border-color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .country-flag {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* How It Works */
        .how-it-works {
            background: var(--bg-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .how-it-works-image {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 20px;
            padding: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
            box-sizing: border-box;
        }
        .how-it-works-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .phone-mockup {
            background: var(--white);
            border-radius: 30px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            max-width: 300px;
            text-align: center;
        }

        .phone-mockup img {
            width: 100%;
            border-radius: 20px;
        }

        .steps-container h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .step {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.3rem;
            color: var(--primary-green);
        }

        .step-content h3 {
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .step-content p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Exchange Rates Table */
        .exchange-rates {
            background: var(--white);
        }

        .rates-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .btn-view-more {
            background: var(--bright-green);
            color: var(--white);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-view-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        .rates-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
            
        }

        .rates-table th,
        .rates-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        .rates-table th {
            background: var(--bg-light);
            font-weight: 600;
            color: var(--text-gray);
        }

        .rates-table tr:hover {
            background: #f8f9fa;
        }

        .pagination {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            justify-content: flex-end;
        }

        .pagination button {
            padding: 0.5rem 1rem;
            border: 1px solid #e0e0e0;
            background: var(--white);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pagination button:hover {
            background: var(--primary-green);
            color: var(--white);
            border-color: var(--primary-green);
        }

        /* Features Section */
        .features {
            background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
            padding: 5rem 5%;
        }

        .features .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-card.large {
            grid-column: span 2;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: #e8f5e9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--primary-green);
            font-size: 1.3rem;
        }

        .feature-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .feature-card p {
            color: var(--text-gray);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .feature-image {
            margin-top: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            display: block;
        }

        /* Stats Section */
        .stats {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .stats-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .stats-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .stats-content p {
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .btn-join {
            background: var(--accent-orange);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-right: 1rem;
            transition: all 0.3s;
        }

        .btn-join:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .profile-images {
            display: inline-flex;
        }

        .profile-images img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid var(--white);
            margin-left: -10px;
            object-fit: cover;
        }

        .stats-circles {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .stat-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .stat-circle:hover {
            transform: scale(1.05);
        }

        .stat-circle.large {
            width: 180px;
            height: 180px;
            background: var(--white);
        }

        .stat-circle h3 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 0.3rem;
        }

        .stat-circle p {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-align: center;
        }

        /* Logos Section */
        .logos {
            background: var(--white);
            text-align: center;
            padding: 3rem 5%;
        }

        .logos p {
            margin-bottom: 2rem;
            color: var(--text-gray);
        }

        .logos span {
            color: var(--accent-orange);
            font-weight: bold;
        }

        .logo-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .logo-grid img {
            height: 30px;
            filter: grayscale(100%);
            transition: all 0.3s;
        }

        .logo-grid img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Testimonials */
        .testimonials {
            background: var(--bg-light);
        }

        .testimonials .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-info h4 {
            margin-bottom: 0.2rem;
        }

        .testimonial-info .date {
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .testimonial-text {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .testimonial-rating {
            color: #FFD700;
        }

        /* App Section */
        .app-section {
            background: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .app-image {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            justify-content: center;
        }

        .app-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .app-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .app-content p {
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .app-buttons {
            display: flex;
            gap: 1rem;
            box-sizing: border-box;
            
        }
        .app-buttons img {
            width: 150px;
            transition: transform 0.3s;
        }

        .app-btn {
            background: var(--text-dark);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s;
        }

        .app-btn:hover {
            transform: translateY(-3px);
        }

        /* Blog Section */
        .blog {
            background: var(--bg-light);
        }

        .blog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
            position: relative;
        }

        .blog-category {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--white);
            color: var(--text-dark);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-content h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .blog-content p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .learn-more {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Price Display */
        .price-display {
            background: var(--white);
            text-align: center;
            padding: 3rem 5%;
        }

        .price-display h2 {
            font-size: 5rem;
            color: var(--dark-green);
            font-weight: bold;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
            text-align: center;
            padding: 4rem 5%;
            border-radius: 30px;
            margin: 2rem 5%;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .btn-start-trading {
            background: var(--text-dark);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-start-trading:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Footer */
        footer {
            background: var(--dark-green);
            color: var(--white);
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--bright-green);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-column ul li a:hover {
            opacity: 1;
        }

        .newsletter {
            margin-top: 2rem;
        }

        .newsletter h4 {
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 50px;
            outline: none;
        }

        .newsletter-form button {
            background: var(--bright-green);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: #45a049;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--white);
            text-decoration: none;
            margin-left: 1rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .how-it-works,
            .stats-container,
            .app-section {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feature-card.large {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
        .navbar {
            padding: 1rem 4%;
        }

        

        .menu-toggle {
            display: block;
            order: 2;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            gap: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 999;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            padding: 1rem 5%;
            border-bottom: 1px solid #e0e0e0;
        }

        .btn-explore {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }

        @media (max-width: 600px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .price-display h2 {
                font-size: 3rem;
            }
        }

        

    @media (max-width: 480px) {
        .navbar {
            padding: 0.8rem 3%;
        }

        .btn-explore {
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem;
        }
        .btn-view-more {
            
            padding: 0.4rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 400;
            display: inline-block;
            transition: all 0.3s;
            font-size: 13px;
        }
        .pagination {
            justify-content: center;
        }
    }