@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at top left, #001a13, #000000);
    color: #fff;
    overflow-x: hidden;
}

header {
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #00ff99;
    font-weight: 700;
}

nav a {
    color: #ccc;
    margin-left: 30px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #00ff99;
}

.hero {
    height: 90vh;
    background: url('../assets/images/hero-crypto.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay {
    background: rgba(0,0,0,0.7);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-primary {
    background: #00ff99;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.section {
    padding: 100px 80px;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.crypto-board {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.crypto-card {
    background: rgba(0,255,153,0.08);
    border: 1px solid rgba(0,255,153,0.3);
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: 0.3s;
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #00ff99;
}

.whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #25D366;
    padding: 18px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
}

/* ABOUT HERO */
.about-hero {
    height: 70vh;
    background: url('../assets/images/blockchain.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.about-overlay {
    background: rgba(0,0,0,0.75);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
}

.glass-card {
    background: rgba(0,255,153,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    line-height: 1.8;
    border: 1px solid rgba(0,255,153,0.2);
}

.dark-section {
    background: linear-gradient(to right, #000000, #001a13);
}

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

.strategy-box {
    background: rgba(0,255,153,0.07);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.strategy-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #00ff99;
}









/* CONTACT FORM STYLING */



/* CONTACT HERO */

.contact-hero {
    height: 60vh;
    background: url('../assets/images/contact-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero-overlay {
    background: rgba(0,0,0,0.6);
    padding: 60px;
    text-align: center;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-hero-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-hero-overlay p {
    font-size: 18px;
    color: #ccc;
}

/* CONTACT FORM SECTION */

.contact-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.modern-form {
    width: 100%;
    max-width: 700px;
    padding: 60px;
    background: #3f4a9d; /* purple tone like image */
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* INPUT GROUP STYLE */

.input-group {
    position: relative;
    margin-bottom: 50px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #00d4ff;
    padding: 10px 0;
    color: white;
    font-size: 16px;
    outline: none;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #00d4ff;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
}

/* Floating Effect */

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -18px;
    font-size: 12px;
    color: #ffffff;
}

/* BUTTON */

.btn-wrapper {
    text-align: center;
}

.btn-wrapper button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-wrapper button:hover {
    background: white;
    color: #3f4a9d;
}




/* LEADERS SECTION */

.leaders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    justify-items: center;
    margin-top: 40px;
}

.leader {
    text-align: center;
    transition: 0.3s ease;
}

.leader:hover {
    transform: translateY(-10px);
}

/* ROUND IMAGE FRAME */

.leader img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00ff99;
    padding: 6px;
    background: rgba(0, 255, 153, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.4);
    transition: 0.3s ease;
}

.leader img:hover {
    box-shadow: 0 0 40px #00ff99;
}

.leader h3 {
    margin-top: 20px;
    font-size: 18px;
}

.leader p {
    color: #aaa;
    font-size: 14px;
    margin-top: 5px;
}


/* =============================== */
/* GRAND EXCHANGE FEATURES */
/* =============================== */

.gx-features {
    padding: 120px 80px;
    text-align: center;
}

/* HEADER */

.gx-features-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gx-features-header p {
    max-width: 750px;
    margin: 0 auto 80px auto;
    color: #b5cfc7;
    font-size: 17px;
    line-height: 1.8;
}

/* GRID */

.gx-features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Responsive */

@media (max-width: 992px) {
    .gx-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gx-features-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */

.gx-feature-card {
    background: #0b231e;
    padding: 45px 30px;
    border-radius: 18px;
    text-align: left;
    transition: 0.3s ease;
}

.gx-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,255,153,0.15);
}

/* ICON */

.gx-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

/* TITLE */

.gx-feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* TEXT */

.gx-feature-card p {
    font-size: 15px;
    color: #9fc2b8;
    line-height: 1.7;
}




/* ========================= */
/* NEWSLETTER SECTION */
/* ========================= */

.newsletter-section {
    padding: 120px 20px;
    background: #031f1a; /* dark page background */
    display: flex;
    justify-content: center;
}

.newsletter-card {
    background: linear-gradient(135deg, #19c79a, #11b48c);
    border-radius: 25px;
    width: 100%;
    max-width: 1150px;
    padding: 70px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Left Image */

.newsletter-left img {
    width: 320px;
    max-width: 100%;
}

/* Right Content */

.newsletter-right {
    flex: 1;
}

.newsletter-right h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003f35;
}

.blue-text {
    color: #1e57d8;
}

.newsletter-right p {
    font-size: 18px;
    color: #003f35;
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.6;
}

/* Form */

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 20px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 18px 35px;
    border-radius: 12px;
    border: none;
    background: #1e57d8;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #1848b5;
}

/* Responsive */

@media (max-width: 992px) {
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-right h2 {
        font-size: 36px;
    }
}



/* =============================== */
/* SERVICES SECTION */
/* =============================== */

.services-section {
    padding: 120px 40px;
    background: #031f1a;
    text-align: center;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.green-text {
    color: #18e0b5;
}

.services-header p {
    color: #a7c8c0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 80px auto;
    line-height: 1.6;
}

/* Cards Container */

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card */

.service-card {
    background: linear-gradient(145deg, #0d2c25, #123a31);
    border-radius: 25px;
    padding: 60px 40px;
    width: 350px;
    transition: 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Active Card (Right One Glow) */

.service-card:hover {
    border: 1px solid #18e0b5;
    box-shadow: 0 0 25px rgba(24, 224, 181, 0.25);
    transform: translateY(-8px);
}

/* Icon Circle */

.service-icon {
    width: 120px;
    height: 120px;
    background: #0a2b24;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 60px;
}

/* Text */

.service-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    color: #9fc2b8;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}