/*Header*/


 /* Navbar Styling */
    .navbar {
        background-color: #1e0352; /* Dark purple background */
        padding: 15px;
    }
    .navbar-brand img {
        height: 70px; /* Adjust the logo size */
        position: absolute;
        bottom: 1px;
    }
    .nav-link {
        color: white !important;
        margin: 0 10px;
    }
    .btn-login {
        background-color: #9b5cf0;
        border-radius: 10px;
        color: white;
        padding: 8px 20px;
    }
    .btn-login:hover {
        background-color: #7a44c7;
    }

    /* Sidebar Styling */
    .sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background: #2c0a5e;
        padding: 20px;
        transition: 0.3s;
        z-index: 1000;
    }
    .sidebar.active {
        left: 0;
    }
    .sidebar .close-btn {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
    .sidebar .nav-link {
        display: block;
        padding: 10px;
        color: white;
        font-size: 18px;
    }

    /* Overlay when sidebar is open */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    .overlay.active {
        display: block;
    }

    /* Always show navbar-toggler */
    .navbar-toggler {
        display: block !important;
        border: none;
        background-color: #1e0352; /* Purple Background */
        padding: 8px 12px;
        border-radius: 5px;
    }
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    /* Change the default Bootstrap navbar-toggler-icon */
    .navbar-toggler-icon {
        background-image: none !important; /* Remove default Bootstrap icon */
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Custom Toggler Icon (3 white bars) */
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon div {
        content: "";
        position: absolute;
        width: 20px;
        height: 3px;
        background-color: #875ffc; /* Change Icon Color */
        border-radius: 2px;
    }

    /* Top bar */
    .navbar-toggler-icon::before {
        top: 6px;
    }

    /* Middle bar */
    .navbar-toggler-icon div {
        top: 50%;
        transform: translateY(-50%);
    }

    /* Bottom bar */
    .navbar-toggler-icon::after {
        bottom: 6px;
    }

    /* Hover effect */
    .navbar-toggler:hover {
        background-color: #1a083d;
    }

    /* Align main navigation to the right of sidebarToggle */
    .nav-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }



        @media (max-width: 1024px) {
            .navbar-brand img {
                height: 59px;
            }
    }


    @media (max-width: 400px) {
            .navbar-brand img {
                height: 50px;
            }
    }

    /* Show main nav items only on large screens */
    @media (min-width: 992px) {
        .main-nav {
            display: flex !important;
        }
        .mobile-only {
            display: none !important;
        }
    }

    /* Move main nav items into sidebar on small screens */
    @media (max-width: 991px) {
        .main-nav {
            display: none !important;
        }
        .mobile-only {
            display: block !important;
        }
    }








/* Main Section */


.main_section {
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Container - Mimics Bootstrap Container */
.custom-container {
    width: 100%;
    max-width: 1140px; /* Same as Bootstrap */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    background: transparent !important; /* Ensure no white background */
}

/* Responsive Fix */
@media (max-width: 1200px) {
    .custom-container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .custom-container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .main_section {
        min-height: 100vh; /* Reduce height for smaller screens */
        background-position: center center;
    }

    .custom-container {
        max-width: 540px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .main_section {
        min-height: 90vh; /* Adjust height for smaller screens */
        background-position: center top;
    }

    .custom-container {
        max-width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Wrapper for content */
.content-wrapper {
    width: 100%;
    max-width: 900px;
    padding-top: 8%;
}


/* Responsive Text Styling */
.main_section h1 {
    position: relative;
    color: white;
    font-weight: bold;
    z-index: 2;
    font-size: 2rem; /* Default for mobile */
    line-height: 1.2;
}

/* Responsive font sizes */
@media (min-width: 768px) {
    .main_section h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .main_section h1 {
        font-size: 3.5rem;
    }
}

/* Highlighted text (yellow button style) */
.highlight-text {
    position: relative;
    display: inline-block;
    background: #ffcc00;
    color: #1a083d;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    z-index: 2;
}

/* Responsive Highlight Text */
@media (min-width: 768px) {
    .highlight-text {
        font-size: 1rem;
    }
}




/* Features box */
.feature-box {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #020024 0%, #090979 40%, #000047 100%);
    padding: 30px;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
}

/* Image */
.feature-image img {
    width: 250px;
    height: auto;
}

/* Content */
.feature-content {
    flex: 1;
    padding-left: 20px;
    text-align: left; /* Ensure left alignment */
}

/* Title */
.feature-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: left; /* Align left */
}

/* Description */
.feature-description {
    color: white;
    font-size: 16px;
    margin: 10px 0;
    text-align: left; /* Align left */
}

.feature-description a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

/* Button */
.feature-button {
    display: inline-block;
    background: #9b5cf0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    text-align: left; /* Align left */
}

.feature-button:hover {
    background: #7a44c7;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .feature-content {
        padding-left: 0;
        padding-top: 20px;
    }

    .feature-button {
        align-self: flex-start; /* Align left on smaller screens */
    }
}











/* Feature Card */

/* Section Styling */
.crypto-offerings {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    color: white; /* Set title color to white */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Cards Container */
.cards-container {
    display: flex;
    justify-content: center; /* Center cards */
    align-items: stretch; /* Ensure equal height */
    gap: 30px; /* Space between cards */
    flex-wrap: wrap;
}

/* Feature Card */
.feature-card {
    background: linear-gradient(180deg, #020024 0%, #090979 40%, #000047 100%);
    border-radius: 20px;
    padding: 40px;
    width: 400px; /* Set equal width */
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image */
.feature-card img {
    width: 120px; /* Increased image size */
    height: auto;
    margin-bottom: 20px;
}

/* Title */
.feature-card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Description */
.feature-card-description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button */
.feature-card-button {
    background: #9b5cf0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.feature-card-button:hover {
    background: #7a44c7;
}

/* Responsive */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%; /* Responsive width */
        padding: 35px;
    }

    .feature-card img {
        width: 100px; /* Slightly smaller image on mobile */
    }
}









/*How*/



/* Section Styling */
.cps-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

/* Background Container */
.cps-bg {
    border-radius: 242px;
    padding: 60px 40px;
    text-align: center;
    max-width: 1174px;
    width: 100%;
    height: 695px;
    position: relative;
}

/* Titles */
.cps-subtitle {
    color: #f0a500;
    font-size: 16px;
    font-weight: bold;
}

.cps-title {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}



/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Step Cards */
.step-card {
    background:  #13082a;
    border-radius: 12px;
    padding: 15px 25px;
    width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Step Number (Styled Circle) */
.step-number {
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #9063cd; /* Purple Background */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0; /* Prevents resizing */
}



/* Positioning Steps */
.step-1 {
    align-self: flex-start;
}

.step-2 {
    align-self: center;
}

.step-3 {
    align-self: flex-end;
}

/* Arrows */
.step-arrow {
    width: 60px;  /* Increased size */
    height: 60px;
    position: absolute;
}

.arrow-1 {
    top: 227px;
    left: 34%;
    width: 167px;
    transform: rotate(38deg);
}

.arrow-2 {
    top: 451px;
    left: 53%;
    width: 167px;
    transform: scaleX(-1) rotate(145deg);
}



/* Step Title */
.step-title {
    font-size: 18px;
    font-weight: bold;
    color: #6a0dad; /* Purple Title */
    margin: 0;
}

/* Step Description */
.step-description {
    font-size: 14px;
    color: #333;
    margin: 3px 0 0;
}

/* Text Content Alignment */
.step-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}


@media (min-width: 1024px) and (max-width: 1164px) {

.arrow-1 {
        top: 227px;
        left: 40%;
    width: 167px;
    transform: rotate(38deg);
}

.arrow-2 {
    top: 451px;
    left: 44%;
    width: 167px;
    transform: scaleX(-1) rotate(145deg);
}

}

@media (max-width: 1023px) {
    .arrow-1 {
     display: none;
    }
    .arrow-2 {
     display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        width: 90%;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 90%;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-title,
    .step-description {
        text-align: left;
    }

    .step-arrow {
        display: none; /* Hide arrows on mobile */
    }
}

/* Responsive Fix for Small Screens */
@media (max-width: 420px) {
    .cps-bg {
        border-radius: 50px; /* Reduce border-radius to fit content */
        padding: 40px 20px; /* Reduce padding */
        height: auto; /* Adjust height dynamically */
    }

    .steps-container {
        gap: 20px; /* Reduce spacing between steps */
    }

    .step-card {
        width: 100%; /* Make step cards fully responsive */
        max-width: 300px; /* Prevent them from stretching too much */
        padding: 12px 18px; /* Reduce padding */
        flex-direction: column; /* Stack number & text on small screens */
        text-align: center;
        align-items: center;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 5px; /* Add spacing when stacked */
    }

    .step-text {
        text-align: center;
    }
}

@media (max-width: 380px) {
    .cps-bg {
        border-radius: 30px; /* Further reduce border radius */
        padding: 30px 15px; /* Adjust padding */
        height: auto; /* Let content define height */
    }

    .step-card {
        max-width: 280px; /* Prevent stretching */
        padding: 10px 15px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 12px;
    }
}





/*Additional CPS Offerings*/




/* Section Styling */
.offerings-section {
    background-color: #f9f9f9;
}

/* Card Styling */
.offering-card {
    background: white;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.offering-card:hover {
    transform: translateY(-5px);
}

/* Icon Styling */
.offering-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* Title */
.offering-title {
    font-size: 18px;
    font-weight: bold;
    color: #875cfc;
}

/* Description */
.offering-text {
    font-size: 14px;
    color: #555;
}

/* Read More Link */
.offering-link {
    font-size: 14px;
    font-weight: bold;
    color: #875cfc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.offering-link:hover {
    color: #4b0082;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offering-card {
        padding: 15px;
    }

    .offering-title {
        font-size: 16px;
    }

    .offering-text {
        font-size: 13px;
    }

    .offering-icon {
        width: 50px;
        height: 50px;
    }
}



/*Demo Video*/




/* Section Styling */
.demo-section {
    padding: 80px 0;
    position: relative;
    color: #333;
}

/* Overlay Effect */
.demo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

/* Container Styling */
.demo-section .container {
    position: relative;
    z-index: 2;
}

/* Text Content */
.text-content h2 {
    font-size: 32px;
    color: #2d0456;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.text-content ul {
    padding-left: 0;
}

.text-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #6a0dad;
}

/* Button */
.demo-btn {
    background: #6a0dad;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.demo-btn:hover {
    background: #4b0082;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    display: inline-block;
}

/* Image */
.demo-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.play-button i {
    font-size: 30px;
    color: #6a0dad;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-content {
        text-align: center;
    }

    .demo-btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .video-wrapper {
        margin-top: 20px;
    }
}





/*Subscribe*/

/* Subscription Section */
.subscribe-section {
    padding: 80px 0;
    position: relative;
}

/* Subscribe Box */
.subscribe-box {
    background: transparent;  /* Fully transparent */
    padding: 40px;
    border-radius: 20px;
    border: 2px solid yellow;
    display: inline-block;
    text-align: center;
    max-width: 600px;
    width: 100%;
    color: white;
}

/* Heading */
.subscribe-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subscribe-box h2 span {
    color: #7ac3ff;
    font-weight: bold;
}

/* Input Box */
.subscribe-input {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.subscribe-input .form-control {
    border-radius: 30px;
    padding: 10px 15px;
    width: 60%;
    border: none;
    outline: none;
}

.subscribe-btn {
    background: #9d78ff;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #7a58e5;
}

/* Footer */
.footer-text {
    color: white;  /* White color */
    text-align: center;  /* Center align */
    font-size: 14px;
    padding: 10px 0;
}

/* White Line Above Footer */
.footer-line {
    width: 100%;
    height: 1px;
    background: white;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .subscribe-box {
        width: 90%;
    }

    .subscribe-input {
        flex-direction: column;
    }

    .subscribe-input .form-control {
        width: 100%;
        margin-bottom: 10px;
    }

    .subscribe-btn {
        width: 100%;
    }

    /* Responsive Footer */
    .footer-text {
        font-size: 12px;
        padding: 8px 0;
    }
}
