 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
 * {
    
     box-sizing: border-box;
 }
 html, body {
    overflow-x: hidden;
}

 body {
       margin: 0;
     padding: 0;
     background: #020817;
     font-family: "Playfair Display", serif;
 }
 

 /* Navbar */
 .custom-navbar {
     background: linear-gradient(90deg, #20252f 0%, #0d293e 50%, #1f3b38 100%);
     padding: 5px 0;
    
    position: sticky;
    top: 0;
    z-index: 9999;

    /* Premium Glass Effect */
    backdrop-filter: blur(10px);

    /* Dark Shadow */
    box-shadow:
        0 4px 10px rgba(0,0,0,0.4),
        0 10px 30px rgba(0,0,0,0.5);

    border-bottom: 1px solid rgba(255,255,255,0.05);
 }

 /* Logo */
 .navbar-brand img {

    max-width: 100px;
 }

 .navbar-brand span {
     color: #99E39E;
 }

 .logo-icon {
     color: white;
     font-size: 28px;
 }

 /* Nav Links */
 .navbar-nav .nav-link {
     color: #d8d8d8;
     font-size: 18px;
     font-weight: 500;
     margin: 0 10px;
     transition: 0.3s;
 }

 .navbar-nav .nav-link:hover {
     color: #99E39E;
 }

 /* Buttons */
 .btn-custom {
     padding: 10px 28px;
     border-radius: 12px;
     font-size: 15px;
     font-weight: 500;
     transition: 0.3s;
 }

 .btn-signin {
     border: 1px solid #99E39E;
     color: #99E39E;
     background: transparent;
 }

 .btn-signin:hover {
     background: #99E39E;
     color: #000;
 }

 .btn-signup {
     background: #99E39E;
     color: #000;
     border: 1px solid #99E39E;
 }

 .btn-signup:hover {
     background: transparent;
     color: #99E39E;
 }

 /* Mobile Toggle */
 .navbar-toggler {
     border: none;
     box-shadow: none !important;
 }

 .navbar-toggler i {
     color: white;
     font-size: 30px;
 }

 @media(max-width:991px) {

     .navbar-nav {
         margin-top: 20px;
         text-align: center;
     }

     .navbar-nav .nav-link {
         margin: 10px 0;
     }

     .nav-buttons {
         margin-top: 20px;
         display: flex;
         flex-direction: column;
         gap: 15px;
     }

     .btn-custom {
         width: 40%;
     }

     .hero-section-custom {
         padding: 70px 0;
         text-align: center;
     }

     .hero-title-custom {
         font-size: 20px!important;
     }

     .hero-text-custom {
         margin: auto;
         margin-bottom: 30px;
     }

     .hero-btn-wrapper-custom {
         justify-content: center;
         flex-wrap: wrap;
     }

     .hero-feature-wrapper-custom {
         justify-content: center;
     }

 }

 /* 
   HERO SECTION 
 */

 .hero-section-custom {
     width: 100%;
     padding: 90px 0;
     background: linear-gradient(90deg, #020817 0%, #0b1f2d 50%, #1f3b38 100%);
     overflow: hidden;
 }

 /* Badge */
 .hero-badge-custom {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 18px;
     border: 1px solid rgba(141, 245, 143, 0.3);
     border-radius: 50px;
     background: rgba(255, 255, 255, 0.03);
     margin-bottom: 25px;
 }

 .hero-badge-custom img {
     width: 18px;
 }

 .hero-badge-custom span {
     color: #99E39E;
     font-size: 15px;
     font-weight: 500;
 }

 /* Title */
 .hero-title-custom {
     font-size: 50px;
     line-height: 1.2;
     font-weight: 700;
     color: #fff;
     margin-bottom: 25px;
 }

 /* Text */
 .hero-text-custom {
     color: #cfcfcf;
     font-size: 18px;
     line-height: 1.8;
     max-width: 550px;
     margin-bottom: 35px;
 }

 /* Buttons */
 .hero-btn-wrapper-custom {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 45px;
 }

 .hero-btn-primary-custom {
     padding: 14px 34px;
     background: #99E39E;
     color: #000;
     border-radius: 12px;
     text-decoration: none;
     font-size: 17px;
     font-weight: 600;
     transition: 0.3s;
 }

 .hero-btn-primary-custom:hover {
     background: transparent;
     color: #99E39E;
     border: 1px solid #99E39E;
 }

 .hero-btn-secondary-custom {
     padding: 14px 34px;
     border: 1px solid #99E39E;
     color: #99E39E;
     border-radius: 12px;
     text-decoration: none;
     font-size: 17px;
     font-weight: 600;
     transition: 0.3s;
 }

 .hero-btn-secondary-custom:hover {
     background: #99E39E;
     color: #000;
 }

 /* Features */
 .hero-feature-wrapper-custom {
     display: flex;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .hero-feature-box-custom {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 20px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
 }

 .hero-feature-box-custom img {
     width: 22px;
 }

 .hero-feature-box-custom span {
     color: #fff;
     font-size: 15px;
     font-weight: 500;
 }

 /* Right Image */
 .hero-image-wrapper-custom {
     text-align: center;
 }

 .hero-image-wrapper-custom img {
     max-width: 100%;
     animation: heroFloatCustom 4s ease-in-out infinite;
 }

 /* Animation */
 @keyframes heroFloatCustom {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 @media(max-width:576px) {

     .hero-title-custom {
         font-size: 34px;
     }

     .hero-text-custom {
         font-size: 16px;
     }

     .hero-btn-primary-custom,
     .hero-btn-secondary-custom {
        width: 60%;
     }

     .hero-feature-box-custom {
         width: 100%;
         justify-content: center;
     }
 }
 /* =========================
   CRYPTO SLIDER CSS
========================= */

.crypto-ticker-section-custom{
    width: 100%;
    padding: 30px 0 60px;
    background: #020817;
    overflow: hidden;
    margin-top: 10px;
}

.crypto-slider-custom{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.crypto-track-custom{
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;

    animation: cryptoTickerMoveCustom 20s linear infinite;
}

.crypto-card-custom{
    width: 320px;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.04);
}

.crypto-card-custom:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.09);
}

.crypto-top-custom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.crypto-left-custom{
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-left-custom img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.crypto-left-custom h5{
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 600;
}

.crypto-left-custom span{
    color: #aaa;
    font-size: 13px;
}

.crypto-bottom-custom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crypto-bottom-custom h4{
    color: #fff;
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.crypto-bottom-custom p{
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* Red / Green */
.crypto-negative-custom{
    color: #ff4d4d;
}

.crypto-positive-custom{
    color: #99E39E;
}

/* Infinite Animation */
@keyframes cryptoTickerMoveCustom{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){

    .crypto-card-custom{
        width: 260px;
        padding: 20px;
    }

    .crypto-left-custom h5{
        font-size: 18px;
    }

    .crypto-bottom-custom h4{
        font-size: 22px;
    }
}
/* ===================================
   BLOCKCHAIN SECTION CSS
=================================== */

.blockchain-section-custom{
    width: 100%;
    padding: 60px 0;
    background: #020817;
    overflow: hidden;
}

/* LEFT CONTENT */
.blockchain-content-custom{
    max-width: 560px;
}

/* Subtitle */
.blockchain-subtitle-custom{
    color: #d9d9d9;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

/* Title */
.blockchain-title-custom{
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 50px;
}

/* SERVICES WRAPPER */
.blockchain-services-wrapper-custom{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* SERVICE ITEM */
.blockchain-service-item-custom{
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 240px;
}

/* ICON BOX */
.blockchain-icon-box-custom{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.blockchain-icon-box-custom:hover{
    transform: translateY(-5px);
    background: rgba(141,245,143,0.12);
}

.blockchain-icon-box-custom img{
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* TEXT */
.blockchain-service-text-custom h4{
    color: #fff;
    font-size: 25px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* RIGHT IMAGE */
.blockchain-image-wrapper-custom{
    text-align: center;
}

.blockchain-image-wrapper-custom img{
    max-width: 100%;
    animation: blockchainFloatCustom 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes blockchainFloatCustom{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }
}


@media(max-width:991px){

    .blockchain-section-custom{
        padding: 70px 0;
    }

    .blockchain-content-custom{
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .blockchain-title-custom{
        font-size: 42px;
        margin-bottom: 35px;
    }

    /* MOBILE = ONE BELOW ANOTHER */
    .blockchain-services-wrapper-custom{
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .blockchain-service-item-custom{
        width: 100%;
        justify-content: center;
    }
}

@media(max-width:576px){

    .blockchain-title-custom{
        font-size: 34px;
    }

    .blockchain-subtitle-custom{
        font-size: 20px;
    }

    .blockchain-service-item-custom{
        flex-direction: column;
        text-align: center;
    }

    .blockchain-service-text-custom h4{
        font-size: 24px;
    }
}


.development-timeline-section-custom{
    width: 100%;
    padding: 60px 0;
    background: #020817;
    overflow: hidden;
}

/* CONTENT */
.development-timeline-content-custom{
    text-align: center;
}

/* SMALL HEADING */
.development-timeline-subtitle-custom{
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

.development-timeline-subtitle-custom span{
    color: #8df58f;
}

/* MAIN TITLE */
.development-timeline-title-custom{
    color: #ffffff;
    font-size: 45px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
}


@media(max-width:1200px){

    .development-timeline-title-custom{
        font-size: 62px;
    }
}

@media(max-width:991px){

    .development-timeline-section-custom{
        padding: 90px 0;
    }

    .development-timeline-title-custom{
        font-size: 48px;
        line-height: 1.35;
    }

    .development-timeline-subtitle-custom{
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media(max-width:576px){

    .development-timeline-section-custom{
        padding: 70px 0;
    }

    .development-timeline-title-custom{
        font-size: 34px;
        line-height: 1.5;
    }

    .development-timeline-subtitle-custom{
        font-size: 20px;
        text-align: center;
    }
}


.center-image-section-custom{
    width: 100%;
    padding: 50px 0;
    background: #020817;
    overflow: hidden;
    position: relative;
}

/* WRAPPER */
.center-image-wrapper-custom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* MAIN IMAGE */
.center-main-image-custom{
    width: 100%;
    max-width: 950px;
    object-fit: contain;
    position: relative;

    /* Animation */
    animation: imageFloatCustom 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes imageFloatCustom{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-18px);
    }

    100%{
        transform: translateY(0px);
    }
}


@media(max-width:991px){

    .center-image-section-custom{
        padding: 70px 0;
    }

    .center-main-image-custom{
        max-width: 100%;
    }
}

@media(max-width:576px){

    .center-image-section-custom{
        padding: 50px 0;
    }

    .center-main-image-custom{
        width: 100%;
    }
}

.upgrade-section {
            padding: 50px 0;
            position: relative;
        }

        .section-tagline {
            color: #99E39E; /* Green tagline color */
            font-weight: 500;
            margin-bottom: 10px;
        }

        .section-title {
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 2.0rem; /* Large heading */
        }

        .section-desc {
            color: #9ca3af;
            font-size: 1.1rem;
            max-width: 550px;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .feature-icon {
            color: #d1d5db;
            border: 1.5px solid #4b5563; /* Light grey border circle */
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1rem;
            flex-shrink: 0; /* Prevents icon from shrinking in smaller containers */
        }

        .feature-text {
            color: #e5e7eb;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Styling for the floating images container */
        .mockup-container {
            position: relative;
            height: 100%;
            min-height: 450px;
            overflow: hidden; /* Space for images on mobile */
        }

        /* Global image styling for glow and border radius */
        .floating-mockup {
            position: absolute;
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(110, 231, 183, 0.15);
            /*Greenishglow*/opacity: 0.9;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
}

        /* Specific positions from the reference image */
        .mockup-main {
            width: 90%;
            top: 20px;
            left: -10%; /* Offset left to match original overlap */
            z-index: 1;
        }

        .mockup-card-right {
            width: 45%;
            top: -50px;
            right: -10%;
            z-index: 2;
        }

        .mockup-card-left {
            width: 45%;
            bottom: -30px;
            left: -20%;
            z-index: 3;
        }

        /* --- Keyframes for Floating Animation --- */
        @keyframes floatEffect {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(0.5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        @keyframes floatEffectAlt {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(10px) rotate(-0.3deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* --- Applying Animations to specific images --- */
        .float-main {
            animation: floatEffect 7s ease-in-out infinite;
        }

        .float-right {
            animation: floatEffectAlt 9s ease-in-out infinite;
            animation-delay: 1s; /* Slight delay to break synchronicity */
        }

        .float-left {
            animation: floatEffect 8s ease-in-out infinite;
            animation-delay: 2s; /* Slight delay to break synchronicity */
        }

        /* --- Responsive Styles for Mobile/Tablet --- */
        @media (max-width: 991.98px) {
            .section-title { font-size: 2.2rem; }
            .mockup-container {
                margin-top: 50px;
                min-height: 400px;
            }
            .floating-mockup {
                position: relative;
                left: auto;
                right: auto;
                max-width: 100%;
                width: 100%;
                padding: 0 !important;
            }
            .mockup-main { width: 100%; left: 0; }
            .mockup-card-right { width: 50%; right: 0; top: -30px; }
            .mockup-card-left { width: 50%; left: 0; bottom: -10px; }
        }
        @keyframes floatEffect {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
    .animate-img {
        animation: floatEffect 5s ease-in-out infinite;
        max-width: 100%;
        height: auto;
    }
    .section-padding {
        padding: 50px 0;
    }
    .footer-section {
        background-image: radial-gradient(circle at top right, #232223 0%, #110d14 100%);
    }

    .social-icon {
        width: 45px;
        height: 45px;
        background-color: #123a1e;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .social-icon:hover {
        background-color: #99E39E; /* Hover par green glow */
        color: #140b1d;
        transform: translateY(-3px);
    }

    .footer-bottom strong {
        color: #ffffff;
    }