﻿
:root {
    --nav-bg:#191b22;
    --text:#c8c8ce;
    --purple:#6f27e6;
    --purple-light:#9b63ff;
    --gold:#ffc400;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #111319;
    color: #fff;
    font-family: Arial,Helvetica,sans-serif;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.site-navbar {
    min-height: 84px;
    background: linear-gradient(90deg,#1d1d25,#181a21);
    border-bottom: 1px solid rgba(255,255,255,.05);
    z-index: 1030;
}

.site-logo {
    display: block;
    width: 78px;
    height: auto;
}

.navbar-nav .nav-link {
    color: var(--text)!important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px!important;
    transition: .25s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--gold)!important;
    }

.nav-action {
    min-width: 120px;
    height: 45px;
    padding: 0 24px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: .25s ease;
}

.login-btn {
    color: #fff;
    background: #272a31;
    border: 1px solid #474a53;
}

    .login-btn:hover {
        color: #fff;
        background: #343740;
    }

.register-btn {
    color: #fff;
    background: linear-gradient(90deg,#6423da,#7429ed);
    border: 1px solid #8c55f2;
}

    .register-btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(111,39,230,.35);
    }

.navbar-toggler {
    border: 1px solid rgba(255,255,255,.3);
    padding: 7px 10px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    filter: invert(1);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    min-height: calc(100svh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* Background Video / Image */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    text-align: center;
    padding: 70px 20px;
}

/* Title */
.hero-title {
    margin: 0 0 28px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--purple-light);
}

/* Description */
.hero-description {
    max-width: 730px;
    margin: 0 auto 28px;
    color: #fff;
    font-size: 18px;
    line-height: 1.65;
}

/* PDF Button */
.pdf-btn {
    min-width: 205px;
    min-height: 48px;
    padding: 11px 24px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(90deg, #6423da, #7429ed);
    border: 1px solid #8c55f2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

    .pdf-btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(111, 39, 230, .4);
    }

    .pdf-btn svg {
        width: 21px;
        height: 21px;
        flex: 0 0 auto;
    }

/* Decorative coins */
.crypto-coins {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.coin-one, .coin-two {
    position: absolute;
    opacity: .75;
}

.coin-one {
    left: 3%;
    bottom: 5%;
}

.coin-two {
    right: 3%;
    top: 12%;
}

.crypto-coins img {
    max-width: 90px;
    width: 100%;
    height: auto;
}

/* ================= MOBILE ================= */
@media (max-width:991.98px) {
    .site-navbar {
        min-height: 70px;
    }

    .site-logo {
        width: 68px;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 12px 0 18px;
        background: #191b22;
        border-top: 1px solid rgba(255,255,255,.06);
    }

    .navbar-nav .nav-link {
        padding: 12px 5px!important;
        border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .nav-actions {
        width: 100%;
        margin-top: 15px;
    }

    .nav-action {
        flex: 1 1 0;
    }

    .hero {
        min-height: calc(100svh - 70px);
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-description {
        font-size: 17px;
    }

    .coin-one {
        left: -15px;
    }

    .coin-two {
        right: -15px;
    }
}

@media (max-width:575.98px) {
    .site-navbar {
        padding-left: 12px!important;
        padding-right: 12px!important;
    }

    .site-logo {
        width: 62px;
    }

    .hero-content {
        padding: 45px 16px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .pdf-btn {
        width: 100%;
        max-width: 220px;
    }

    .crypto-coins {
        display: none;
    }
}

@media (max-width:380px) {
    .hero-title {
        font-size: 31px;
    }

    .hero-description {
        font-size: 14px;
    }
}

.partners-slider-container {
    position: relative;
    padding: 10px 55px 55px;
}

.partner-card {
    background: linear-gradient(145deg, #1b1d25, #14161d);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s ease;
}

    .partner-card:hover {
        transform: translateY(-5px);
        border-color: #7d45e8;
        box-shadow: 0 15px 35px rgba(0,0,0,.25);
    }

.partner-logo {
    width: auto;
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
}

.partner-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.partner-card p {
    color: #b9bbc4;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Navigation */
.partner-prev,
.partner-next {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    background: #252832;
    border: 1px solid rgba(255,255,255,.15);
}

    .partner-prev:after,
    .partner-next:after {
        font-size: 16px !important;
        color: #fff;
        font-weight: 700;
    }

/* Pagination */
.myPartnersSwiper .swiper-pagination {
    bottom: 5px !important;
}

@media (max-width: 767px) {

    .partners-slider-container {
        padding: 10px 0 50px;
    }

    .partner-card {
        min-height: auto;
        padding: 25px 18px;
    }

    .partner-logo {
        max-width: 160px;
        height: 70px;
    }

    .partner-card h4 {
        font-size: 20px;
    }

    .partner-card p {
        font-size: 13px;
    }

    .partner-prev,
    .partner-next {
        display: none;
    }
}

.cities-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-label {
    background-color: #ffe4d6;
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}



.nav-controls {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #6b7280;
}

    .nav-btn:hover {
        border-color: #ff6b35;
        color: #ff6b35;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    }

    .nav-btn:active {
        transform: translateY(0);
    }

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.city-card {
    flex: 0 0 320px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .city-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-card:hover .city-image {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: white;
}

.city-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.city-properties {
    font-size: 1rem;
    opacity: 0.9;
}

.dots-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background-color: #ff6b35;
        transform: scale(1.2);
    }
/* Solution 1: Simple nowrap without ellipsis (recommended) */
.section-titlee {
    white-space: nowrap;
}



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

    .city-card {
        flex: 0 0 280px;
        height: 350px;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .city-card {
        flex: 0 0 250px;
        height: 300px;
    }

    .city-name {
        font-size: 1.5rem;
    }
}
/* Add margin bottom to the section */
.payment-gateway {
    margin-bottom: 80px;
}

/* Wrapper for infinite scroll */
.payment-gateway-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    width: 100%;
}

/* Make the grid slide infinitely */
.payment-gateway-grid {
    display: flex;
    animation: infiniteSlide 25s linear infinite;
    gap: 30px;
    width: max-content;
}

/* Individual gateway items */
.payment-gateway-thumb {
    flex-shrink: 0;
    min-width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .payment-gateway-thumb:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .payment-gateway-thumb img {
        max-width: 80px;
        max-height: 40px;
        object-fit: contain;
        filter: brightness(1.2);
    }

/* Keyframe for infinite sliding */
@keyframes infiniteSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.payment-gateway-grid:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-gateway {
        margin-bottom: 60px;
    }

    .payment-gateway-thumb {
        min-width: 100px;
        height: 70px;
        padding: 15px;
    }

        .payment-gateway-thumb img {
            max-width: 70px;
            max-height: 35px;
        }

    .payment-gateway-grid {
        gap: 20px;
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .payment-gateway {
        margin-bottom: 40px;
    }

    .payment-gateway-thumb {
        min-width: 90px;
        height: 60px;
        padding: 10px;
    }

        .payment-gateway-thumb img {
            max-width: 60px;
            max-height: 30px;
        }

    .payment-gateway-grid {
        gap: 15px;
        animation-duration: 18s;
    }
}

/* Popup wrapper (hidden by default, centered with flex) */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* Popup content */
.popup-content {
    position: relative;
    max-width: 400px; /* small on desktop */
    width: 90%; /* responsive on mobile */
    text-align: center;
}

    .popup-content img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 0 12px rgba(0,0,0,0.4);
    }

/* Close button */
.close {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
/* Sky Blue Footer Background */
.footer-section.coinefy-footer {
    background: skyblue !important;
    position: relative;
}

/* Adjust all text colors for sky blue background */
.footer-section h2,
.footer-section h5,
.footer-wg-title h5 {
    color: #1a1a1a !important;
    text-shadow: none;
}

.footer-intro-content,
.footer-links ul li a {
    color: #2d2d2d !important;
    text-shadow: none;
}

    .footer-links ul li a:hover {
        color: #0066cc !important;
    }

/* Update footer featured section for sky blue */
.footer-featured-section {
    background: rgba(255, 255, 255, 0.2) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-images-title {
    color: #1a1a1a !important;
    text-shadow: none;
}

    .footer-images-title::after {
        background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    }

/* Update social media icons for better contrast */
.footer-social a {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .footer-social a:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Keep brand colors on hover but make them darker for better contrast */
    .footer-social a[href*="facebook"]:hover {
        background: #1565c0 !important;
    }

    .footer-social a[href*="twitter"]:hover,
    .footer-social a[href*="x.com"]:hover {
        background: #1a1a1a !important;
    }

    .footer-social a[href*="instagram"]:hover {
        background: linear-gradient(45deg, #d84315 0%, #bf360c 25%, #b71c1c 50%, #880e4f 75%, #4a148c 100%) !important;
    }

    .footer-social a[href*="linkedin"]:hover {
        background: #0d47a1 !important;
    }

    .footer-social a[href*="youtube"]:hover {
        background: #c62828 !important;
    }

    .footer-social a[href*="whatsapp"]:hover {
        background: #1b5e20 !important;
    }

/* Adjust image overlays for better contrast */
.image-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #f1f1f1;
}

/* Widget images adjustments */
.widget-image-item {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .widget-image-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }






/* Existing social media styles */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

        .footer-social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .footer-social a:hover::before {
            left: 100%;
        }

        .footer-social a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

    .footer-social i {
        font-size: 20px;
        color: white;
        z-index: 1;
        position: relative;
    }

    /* Brand colors on hover */
    .footer-social a[href*="facebook"]:hover {
        background: #1877f2;
    }

    .footer-social a[href*="twitter"]:hover,
    .footer-social a[href*="x.com"]:hover {
        background: #000000;
    }

    .footer-social a[href*="instagram"]:hover {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .footer-social a[href*="linkedin"]:hover {
        background: #0077b5;
    }

    .footer-social a[href*="youtube"]:hover {
        background: #ff0000;
    }

    .footer-social a[href*="whatsapp"]:hover {
        background: #25d366;
    }

/* New Footer Images Styles - Better Positioning */
.footer-featured-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    padding: 40px 20px;
}

.footer-images {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-images-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

    .footer-images-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }

.footer-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: white;
    height: auto;
    max-width: 200px;
    margin: 0 auto;
}

    .footer-image-item:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    }

    .footer-image-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.4s ease;
        display: block;
        border-radius: 12px;
        max-height: 120px;
    }

    .footer-image-item:hover img {
        transform: scale(1.05);
    }

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 12px 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.footer-image-item:hover .image-overlay {
    transform: translateY(0);
}

/* Widget Images Styles */
.widget-images {
    margin-top: 25px;
}

.widget-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.widget-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: white;
    height: auto;
}

    .widget-image-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .widget-image-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
        display: block;
        border-radius: 8px;
        max-height: 60px;
    }

    .widget-image-item:hover img {
        transform: scale(1.05);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        max-width: 500px;
    }

    .footer-social {
        margin-bottom: 20px;
    }

    .footer-featured-section {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .footer-images-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .footer-image-item {
        max-width: 160px;
    }

        .footer-image-item img {
            max-height: 100px;
        }

    .widget-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .widget-image-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 400px;
    }

    .footer-image-item {
        max-width: 120px;
    }

        .footer-image-item img {
            max-height: 80px;
        }

    .footer-featured-section {
        margin-top: 30px;
        padding: 20px 10px;
    }

    .footer-images-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .widget-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .widget-image-item img {
        max-height: 40px;
    }
}

.investors-section {
    position: relative !important;
    overflow: hidden;
}

    .investors-section > .investor-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.20);
        z-index: 1;
        pointer-events: none;
    }

    .investors-section > .investor-content {
        position: relative;
        z-index: 2;
    }
/* =========================================
   COUNTER SECTION
   ========================================= */

.counter-section {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
}

/* Overlay ONLY inside counter section */
.counter-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    z-index: 0;
    pointer-events: none;
}

/* Counter content above overlay */
.counter-content {
    position: relative;
    z-index: 1;
}
/* =========================================
   INVESTORS SECTION
   ========================================= */

.investors-section {
    position: relative !important;
    z-index: 20 !important;
    isolation: isolate;
    overflow: hidden !important;
    background: url('img/recent.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 100px;
}


/* -----------------------------------------
   Overlay
   ONLY INSIDE INVESTORS SECTION
   ----------------------------------------- */

.investors-overlay {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0 !important;
    pointer-events: none;
}


/* -----------------------------------------
   Content
   ----------------------------------------- */

.investors-content {
    position: relative !important;
    z-index: 2 !important;
}


/* -----------------------------------------
   Subtitle
   ----------------------------------------- */

.investors-subtitle {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}


/* -----------------------------------------
   Heading
   ----------------------------------------- */

.investors-section .section-title {
    color: #ffffff;
    position: relative;
    z-index: 3;
}


/* -----------------------------------------
   Tables
   ----------------------------------------- */

.investors-section .table-card {
    position: relative;
    z-index: 3;
}


/* -----------------------------------------
   Coins
   ----------------------------------------- */

.investors-section .coin-one,
.investors-section .coin-two,
.investors-section .coin-three,
.investors-section .coin-four,
.investors-section .counter-glow {
    z-index: 3;
}
/* =========================================
   COUNTER SECTION
   ========================================= */

.counter-section {
    position: relative !important;
    min-height: 600px;
    overflow: hidden !important;
    isolation: isolate;
    background: url('counter.jpg') no-repeat center center;
    background-size: cover;
    padding: 0;
}


/* =========================================
   OVERLAY
   ========================================= */

.counter-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.30);
    z-index: 0 !important;
    pointer-events: none;
}


/* =========================================
   CONTENT
   ========================================= */

.counter-section-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 70px 0;
}


/* =========================================
   MAIN WRAPPER
   ========================================= */

.counter-main-wrapper {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   COUNTER GRID
   ========================================= */

.counter-item-grid {
    width: 100%;
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 5;
}


/* =========================================
   COUNTER ITEM
   ========================================= */

.counter-item {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


    /* Vertical separator */

    .counter-item:nth-child(1),
    .counter-item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.35);
    }


    /* Horizontal separator */

    .counter-item:nth-child(1),
    .counter-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.35);
    }


    /* =========================================
   COUNTER CONTENT
   ========================================= */

    .counter-item .counter-content {
        position: relative;
        z-index: 6;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* =========================================
   ICON
   ========================================= */

    .counter-item .icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }


        .counter-item .icon img {
            max-width: 45px;
            max-height: 45px;
            object-fit: contain;
        }


    /* =========================================
   DESCRIPTION
   ========================================= */

    .counter-item .description {
        margin: 0 0 5px;
        color: #bda5ff;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
    }


    /* =========================================
   NUMBER
   ========================================= */

    .counter-item .title {
        margin: 0;
        color: #ffffff;
        font-size: 40px;
        line-height: 1;
        font-weight: 400;
    }


/* =========================================
   COINS
   ========================================= */

.counter-main-wrapper .coin-one,
.counter-main-wrapper .coin-two,
.counter-main-wrapper .coin-three,
.counter-main-wrapper .coin-four {
    position: absolute;
    z-index: 8;
    pointer-events: none;
}


    .counter-main-wrapper .coin-one img,
    .counter-main-wrapper .coin-two img,
    .counter-main-wrapper .coin-three img,
    .counter-main-wrapper .coin-four img {
        width: 100%;
        height: auto;
    }


/* Left Top Coin */

.counter-main-wrapper .coin-one {
    left: 12%;
    top: 7%;
    width: 90px;
}


/* Right Top Coin */

.counter-main-wrapper .coin-two {
    right: 13%;
    top: 3%;
    width: 90px;
}


/* Left Bottom Coin */

.counter-main-wrapper .coin-three {
    left: 7%;
    bottom: 3%;
    width: 95px;
}


/* Right Bottom Coin */

.counter-main-wrapper .coin-four {
    right: 8%;
    bottom: 10%;
    width: 90px;
}


/* =========================================
   GLOW
   ========================================= */

.counter-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}


    .counter-glow img {
        width: 100%;
        height: auto;
    }


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .counter-section {
        min-height: auto;
    }

    .counter-section-content {
        padding: 50px 15px;
    }

    .counter-main-wrapper {
        min-height: 500px;
    }

    .counter-item-grid {
        max-width: 100%;
    }

    .counter-item {
        min-height: 170px;
    }

        .counter-item .title {
            font-size: 32px;
        }

    .counter-main-wrapper .coin-one {
        left: 0;
        top: 5%;
        width: 60px;
    }

    .counter-main-wrapper .coin-two {
        right: 0;
        top: 3%;
        width: 60px;
    }

    .counter-main-wrapper .coin-three {
        left: 0;
        bottom: 5%;
        width: 65px;
    }

    .counter-main-wrapper .coin-four {
        right: 0;
        bottom: 7%;
        width: 65px;
    }

    .counter-glow {
        width: 300px;
    }
}
/* =========================================================
   DREAMWAVES FOOTER
========================================================= */

footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}


/* Main Footer
========================================================= */

.footer-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(112, 43, 220, 0.18), transparent 30%), radial-gradient(circle at 85% 80%, rgba(30, 130, 220, 0.12), transparent 30%), linear-gradient(135deg, #11121b 0%, #171522 50%, #0c0d14 100%);
    color: #ffffff;
    padding: 65px 0 25px;
    z-index: 1;
}


    /* Decorative background
========================================================= */

    .footer-section::before {
        content: "";
        position: absolute;
        left: -150px;
        top: -150px;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(111, 39, 230, 0.08);
        filter: blur(10px);
        pointer-events: none;
    }


    .footer-section::after {
        content: "";
        position: absolute;
        right: -150px;
        bottom: -180px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(0, 180, 255, 0.06);
        filter: blur(15px);
        pointer-events: none;
    }


    /* Container
========================================================= */

    .footer-section .container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
    }


/* =========================================================
   FOOTER INTRO
========================================================= */

.footer-intro-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.footer-intro-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}


.footer-intro-logo img {
    width: 125px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    gap: 70px;
    padding: 45px 0 50px;
}


/* =========================================================
   FOOTER WIDGET
========================================================= */

.footer-widget {
    position: relative;
}


    .footer-widget:first-child {
        max-width: 450px;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-intro-content {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}


    .footer-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.10);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
    }


        .footer-social a:hover {
            color: #ffffff;
            background: linear-gradient( 135deg, #6423da, #8b35f5 );
            border-color: #8b35f5;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(111, 39, 230, 0.30);
        }


/* =========================================================
   WIDGET TITLE
========================================================= */

.footer-wg-title {
    margin-bottom: 20px;
}


    .footer-wg-title h5 {
        position: relative;
        display: inline-block;
        margin: 0;
        color: #ffffff;
        font-size: 17px;
        font-weight: 700;
    }


        .footer-wg-title h5::after {
            content: "";
            display: block;
            width: 32px;
            height: 2px;
            margin-top: 8px;
            border-radius: 5px;
            background: linear-gradient( 90deg, #6423da, #9a52ff );
        }


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.footer-links li {
    margin-bottom: 11px;
}


    .footer-links li:last-child {
        margin-bottom: 0;
    }


.footer-links a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}


    .footer-links a::before {
        content: "›";
        margin-right: 8px;
        color: #7d35e8;
        font-size: 16px;
        transition: all 0.3s ease;
    }


    .footer-links a:hover {
        color: #ffffff;
        transform: translateX(5px);
    }


        .footer-links a:hover::before {
            color: #a56cff;
        }


/* =========================================================
   FOOTER IMAGES
========================================================= */

.widget-images {
    margin-top: 25px;
}


.widget-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 270px;
}


.widget-image-item {
    position: relative;
    height: 65px;
    overflow: hidden;
    border-radius: 8px;
    background: #20212b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


    .widget-image-item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.4s ease;
    }


    .widget-image-item:hover img {
        transform: scale(1.08);
    }


/* =========================================================
   BIG DREAMWAVES TEXT
========================================================= */

.footer-into {
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    text-align: center;
}


    .footer-into::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.10);
    }


    .footer-into .text {
        margin: 30px 0 0;
        font-size: clamp(55px, 10vw, 145px);
        line-height: 0.85;
        font-weight: 900;
        letter-spacing: -5px;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
        background: linear-gradient( 90deg, rgba(255,255,255,0.03), rgba(135,65,240,0.20), rgba(255,255,255,0.03) );
        -webkit-background-clip: text;
        background-clip: text;
        user-select: none;
    }


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr 0.8fr;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-section {
        padding: 55px 0 20px;
    }


    .footer-main {
        grid-template-columns: 1.3fr 1fr;
        gap: 40px;
        padding: 40px 0;
    }


    .footer-widget:first-child {
        max-width: 100%;
    }


    .footer-widget:last-child {
        grid-column: span 1;
    }


    .footer-into .text {
        font-size: 80px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-section {
        padding: 45px 0 15px;
    }


    .footer-intro-main {
        justify-content: center;
        padding-bottom: 25px;
    }


    .footer-intro-logo img {
        width: 110px;
    }


    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 0;
    }


    .footer-widget {
        width: 100%;
    }


        .footer-widget:last-child {
            grid-column: auto;
        }


    .footer-intro-content {
        font-size: 13px;
        line-height: 1.7;
    }


    .footer-social {
        justify-content: flex-start;
    }


    .widget-images-grid {
        max-width: 300px;
    }


    .footer-into .text {
        font-size: 55px;
        letter-spacing: -2px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }


    .footer-wg-title h5 {
        font-size: 16px;
    }


    .footer-links a {
        font-size: 13px;
    }


    .widget-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }


    .widget-image-item {
        height: 58px;
    }


    .footer-into .text {
        font-size: 42px;
        letter-spacing: -1px;
    }
}
/* =========================================================
   DREAMWAVES - ABOUT US SECTION
========================================================= */

.about-us-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 80px 0;
    background-position: center center !important;
    background-size: cover !important;
}


    /* Background Overlay
========================================================= */

    .about-us-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(5, 6, 15, 0.88), rgba(20, 10, 35, 0.78), rgba(5, 12, 25, 0.84) );
        z-index: 1;
        pointer-events: none;
    }


    /* Extra Purple Glow
========================================================= */

    .about-us-section::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -180px;
        top: 100px;
        border-radius: 50%;
        background: rgba(112, 39, 230, 0.15);
        filter: blur(80px);
        z-index: 1;
        pointer-events: none;
    }


    /* Container
========================================================= */

    .about-us-section > .container {
        position: relative;
        z-index: 2;
    }


/* =========================================================
   SECTION HEADING
========================================================= */

.about-us-content .section-heading {
    margin-bottom: 45px !important;
}


.about-us-content .section-title {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.45);
}


    .about-us-content .section-title .emoji {
        display: inline-block;
        margin-right: 10px;
        font-size: 0.8em;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    }


    /* Small underline
========================================================= */

    .about-us-content .section-title::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        margin: 15px auto 0;
        border-radius: 10px;
        background: linear-gradient( 90deg, #6423da, #a04cff );
        box-shadow: 0 0 15px rgba(128, 55, 240, 0.55);
    }


/* =========================================================
   WELCOME CARD
========================================================= */

.welcome-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(28, 27, 43, 0.94), rgba(18, 19, 29, 0.91) );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}


    .welcome-card:hover {
        transform: translateY(-5px);
        border-color: rgba(135, 63, 240, 0.40);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 35px rgba(111, 39, 230, 0.10);
    }


    /* Top purple line */

    .welcome-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #6423da, #a14cff, #6423da );
    }


/* =========================================================
   WELCOME HEADER
========================================================= */

.welcome-header {
    position: relative;
    padding: 35px 40px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.welcome-title {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
}


.welcome-tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}


/* =========================================================
   WELCOME CONTENT
========================================================= */

.welcome-content {
    padding: 22px 40px 0;
}


    .welcome-content:last-child {
        padding-bottom: 35px;
    }


    .welcome-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.65);
        font-size: 15px;
        line-height: 1.85;
    }


/* =========================================================
   DUAL MARKET CARD
========================================================= */

.dual-market-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(25, 27, 42, 0.95), rgba(13, 20, 29, 0.94) );
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}


    .dual-market-card:hover {
        transform: translateY(-5px);
        border-color: rgba(135, 63, 240, 0.40);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 35px rgba(111, 39, 230, 0.10);
    }


    /* Top line */

    .dual-market-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #a14cff, #6423da );
    }


/* =========================================================
   DUAL MARKET HEADER
========================================================= */

.dual-market-header {
    padding: 35px 40px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.dual-market-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}


.dual-market-intro {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   ADVANTAGE CONTENT
========================================================= */

.dual-market-content {
    padding: 30px 40px 35px;
}


/* =========================================================
   ADVANTAGE ITEM
========================================================= */

.advantage-item {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
}


    .advantage-item:hover {
        background: rgba(111, 39, 230, 0.13);
        border-color: rgba(135, 63, 240, 0.35);
        transform: translateX(5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);
    }


/* Check icon */

.advantage-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, #6423da, #913df5 );
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(111, 39, 230, 0.30);
}


/* Advantage text */

.advantage-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}


/* =========================================================
   BOOTSTRAP ROW SPACING
========================================================= */

.about-us-section .row {
    --bs-gutter-x: 24px;
}


.about-us-section .gy-3 {
    --bs-gutter-y: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-us-section {
        padding: 65px 0;
    }


    .welcome-header,
    .dual-market-header {
        padding: 30px 30px 22px;
    }


    .welcome-content {
        padding-left: 30px;
        padding-right: 30px;
    }


    .dual-market-content {
        padding: 25px 30px 30px;
    }


    .welcome-title {
        font-size: 26px;
    }


    .welcome-tagline {
        font-size: 16px;
    }


    .dual-market-title {
        font-size: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-us-section {
        padding: 50px 0;
    }


    .about-us-content .section-heading {
        margin-bottom: 30px !important;
    }


    .about-us-content .section-title {
        font-size: 36px;
    }


    .welcome-card,
    .dual-market-card {
        border-radius: 16px;
    }


    .welcome-header,
    .dual-market-header {
        padding: 25px 20px 20px;
    }


    .welcome-title {
        font-size: 23px;
        line-height: 1.35;
    }


    .welcome-tagline {
        font-size: 14px;
        line-height: 1.65;
    }


    .welcome-content {
        padding: 18px 20px 0;
    }


        .welcome-content:last-child {
            padding-bottom: 25px;
        }


        .welcome-content p {
            font-size: 13px;
            line-height: 1.75;
        }


    .dual-market-title {
        font-size: 22px;
    }


    .dual-market-intro {
        font-size: 13px;
    }


    .dual-market-content {
        padding: 20px;
    }


    .advantage-item {
        min-height: auto;
        padding: 14px;
        gap: 12px;
    }


    .advantage-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 12px;
    }


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


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-us-section {
        padding: 40px 12px;
    }


    .about-us-content .section-title {
        font-size: 31px;
    }


        .about-us-content .section-title .emoji {
            margin-right: 5px;
        }


    .welcome-title {
        font-size: 21px;
    }


    .welcome-tagline {
        font-size: 13px;
    }


    .dual-market-title {
        font-size: 20px;
    }


    .advantage-item {
        align-items: flex-start;
    }


    .advantage-icon {
        margin-top: 2px;
    }
}
/* =========================================================
   REAL ESTATE SECTION
========================================================= */

.real-estate-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background-position: center center !important;
    background-size: cover !important;
    isolation: isolate;
}


    /* Background Overlay
========================================================= */

    .real-estate-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(5, 7, 18, 0.88), rgba(24, 12, 42, 0.78), rgba(5, 15, 28, 0.86) );
        z-index: -1;
    }


    /* Container
========================================================= */

    .real-estate-section > .container {
        position: relative;
        z-index: 2;
    }


    /* =========================================================
   SECTION TITLES
========================================================= */

    .real-estate-section .section-heading {
        margin-bottom: 30px;
    }


    .real-estate-section .section-title {
        color: #ffffff !important;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 800;
        line-height: 1.2;
        margin: 0;
    }


        .real-estate-section .section-title .emoji {
            margin-right: 8px;
        }


/* =========================================================
   WHAT IS REAL ESTATE
========================================================= */

.real-estate-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}


    .real-estate-content .description {
        max-width: 900px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.78);
        font-size: 16px;
        line-height: 1.9;
    }


/* =========================================================
   MAJOR CATEGORIES
========================================================= */

.real-estate-categories {
    margin-top: 25px;
}


    .real-estate-categories > .section-heading {
        margin-bottom: 35px !important;
    }


/* =========================================================
   CATEGORY CARD
========================================================= */

.category-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(29, 28, 45, 0.94), rgba(15, 18, 29, 0.94) );
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


    /* Purple top border */

    .category-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient( 90deg, #6423da, #a04cff );
    }


    /* Hover */

    .category-card:hover {
        transform: translateY(-6px);
        border-color: rgba(145, 75, 255, 0.40);
        box-shadow: 0 25px 65px rgba(0, 0, 0, 0.40), 0 0 30px rgba(111, 39, 230, 0.10);
    }


/* =========================================================
   CATEGORY HEADER
========================================================= */

.category-header {
    padding: 25px 28px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.category-title {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.category-content {
    padding: 22px 28px 27px;
}


    .category-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 14px;
        line-height: 1.8;
    }


/* =========================================================
   SPECIAL FULL WIDTH CARD
========================================================= */

.real-estate-categories .col-lg-12 .category-card {
    margin-top: 0;
}


.real-estate-categories .col-lg-12 .category-title {
    font-size: 21px;
}


/* =========================================================
   BOOTSTRAP SPACING
========================================================= */

.real-estate-section .gy-4 {
    --bs-gutter-y: 24px;
}

.real-estate-section .row {
    --bs-gutter-x: 24px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .real-estate-section {
        padding: 65px 0 80px;
    }

    .real-estate-content .description {
        font-size: 15px;
    }

    .category-header {
        padding: 23px 24px 17px;
    }

    .category-content {
        padding: 20px 24px 24px;
    }

    .category-title {
        font-size: 18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .real-estate-section {
        padding: 50px 15px 65px;
    }


        .real-estate-section .section-title {
            font-size: 30px;
        }


    .real-estate-content .description {
        font-size: 13px;
        line-height: 1.75;
    }


    .real-estate-categories {
        margin-top: 15px;
    }


        .real-estate-categories > .section-heading {
            margin-bottom: 25px !important;
        }


    .category-card {
        border-radius: 15px;
    }


    .category-header {
        padding: 20px 18px 15px;
    }


    .category-title {
        font-size: 17px;
    }


    .category-content {
        padding: 18px;
    }


        .category-content p {
            font-size: 13px;
            line-height: 1.7;
        }


    .real-estate-categories .col-lg-12 .category-title {
        font-size: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .real-estate-section {
        padding: 40px 12px 55px;
    }


        .real-estate-section .section-title {
            font-size: 26px;
        }


    .real-estate-content .description {
        font-size: 12.5px;
    }


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


    .category-content p {
        font-size: 12.5px;
    }
}
/* =========================================================
   CRYPTOCURRENCY SECTION
========================================================= */

.crypto-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background-position: center center !important;
    background-size: cover !important;
    isolation: isolate;
}


    /* =========================================================
   BACKGROUND OVERLAY
========================================================= */

    .crypto-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(5, 7, 18, 0.90), rgba(25, 10, 45, 0.82), rgba(5, 14, 28, 0.88) );
        z-index: -1;
    }


    /* =========================================================
   CONTAINER
========================================================= */

    .crypto-section > .container {
        position: relative;
        z-index: 2;
    }


    /* =========================================================
   SECTION HEADING
========================================================= */

    .crypto-section .section-heading {
        margin-bottom: 30px;
    }


    .crypto-section .section-title {
        margin: 0;
        color: #ffffff !important;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 800;
        line-height: 1.2;
        text-shadow: 0 5px 25px rgba(0, 0, 0, 0.45);
    }


        .crypto-section .section-title .emoji {
            display: inline-block;
            margin-right: 8px;
            font-size: 0.85em;
        }


        /* Heading underline */

        .crypto-section .section-title::after {
            content: "";
            display: block;
            width: 65px;
            height: 4px;
            margin: 14px auto 0;
            border-radius: 10px;
            background: linear-gradient( 90deg, #6423da, #a04cff );
            box-shadow: 0 0 18px rgba(128, 55, 240, 0.45);
        }


/* =========================================================
   CRYPTO INTRO
========================================================= */

.crypto-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}


    .crypto-content .description {
        max-width: 900px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.76);
        font-size: 16px;
        line-height: 1.9;
    }


/* =========================================================
   CORE CHARACTERISTICS
========================================================= */

.crypto-characteristics {
    position: relative;
    margin-top: 15px;
}


/* =========================================================
   CHARACTERISTIC CARD
========================================================= */

.characteristic-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(29, 28, 45, 0.95), rgba(14, 18, 29, 0.94) );
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


    /* Purple top border */

    .characteristic-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient( 90deg, #6423da, #a04cff );
    }


    /* Hover */

    .characteristic-card:hover {
        transform: translateY(-6px);
        border-color: rgba(145, 75, 255, 0.42);
        box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42), 0 0 30px rgba(111, 39, 230, 0.10);
    }


/* =========================================================
   CARD HEADER
========================================================= */

.characteristic-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.characteristic-title {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.characteristic-content {
    padding: 20px 28px 26px;
}


    .characteristic-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 14px;
        line-height: 1.8;
    }


/* =========================================================
   FULL WIDTH LIMITED SUPPLY CARD
========================================================= */

.crypto-characteristics .col-lg-12 .characteristic-card {
    margin-top: 0;
}


.crypto-characteristics .col-lg-12 .characteristic-title {
    font-size: 21px;
}


/* =========================================================
   FLOATING COINS
========================================================= */

.crypto-characteristics .coin-one,
.crypto-characteristics .coin-two {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}


    .crypto-characteristics .coin-one img,
    .crypto-characteristics .coin-two img {
        display: block;
        width: 100%;
        height: auto;
    }


/* Left bottom coin */

.crypto-characteristics .coin-one {
    left: -35px;
    bottom: -35px;
    width: 110px;
    opacity: 0.85;
}


/* Right top coin */

.crypto-characteristics .coin-two {
    right: -25px;
    top: -45px;
    width: 100px;
    opacity: 0.80;
}


/* =========================================================
   ROW SPACING
========================================================= */

.crypto-section .row {
    --bs-gutter-x: 24px;
}


.crypto-section .gy-4 {
    --bs-gutter-y: 24px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .crypto-section {
        padding: 65px 0 80px;
    }

    .crypto-content .description {
        font-size: 15px;
    }

    .characteristic-header {
        padding: 22px 24px 17px;
    }

    .characteristic-content {
        padding: 19px 24px 24px;
    }

    .characteristic-title {
        font-size: 18px;
    }

    .crypto-characteristics .coin-one {
        width: 80px;
    }

    .crypto-characteristics .coin-two {
        width: 75px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .crypto-section {
        padding: 50px 15px 65px;
    }


        .crypto-section .section-title {
            font-size: 30px;
        }


    .crypto-content .description {
        font-size: 13px;
        line-height: 1.75;
    }


    .crypto-characteristics {
        margin-top: 5px;
    }


    .characteristic-card {
        border-radius: 15px;
    }


    .characteristic-header {
        padding: 20px 18px 15px;
    }


    .characteristic-title {
        font-size: 17px;
    }


    .characteristic-content {
        padding: 18px;
    }


        .characteristic-content p {
            font-size: 13px;
            line-height: 1.7;
        }


    .crypto-characteristics .col-lg-12 .characteristic-title {
        font-size: 18px;
    }


    .crypto-characteristics .coin-one {
        left: -25px;
        bottom: -20px;
        width: 65px;
    }


    .crypto-characteristics .coin-two {
        right: -15px;
        top: -25px;
        width: 60px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .crypto-section {
        padding: 40px 12px 55px;
    }


        .crypto-section .section-title {
            font-size: 26px;
        }


    .crypto-content .description {
        font-size: 12.5px;
    }


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


    .characteristic-content p {
        font-size: 12.5px;
    }


    .crypto-characteristics .coin-one {
        width: 55px;
    }


    .crypto-characteristics .coin-two {
        width: 50px;
    }
}
/* =========================================================
   FOUNDER & CEO SECTION
========================================================= */

.main-container {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 80px 25px;
    color: #ffffff;
    background: radial-gradient( circle at 15% 20%, rgba(111, 39, 230, 0.14), transparent 30% ), radial-gradient( circle at 85% 80%, rgba(35, 100, 220, 0.10), transparent 30% );
    overflow: hidden;
}


/* =========================================================
   CONTENT WRAPPER
========================================================= */

.content-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 65px;
    padding: 55px;
    border-radius: 25px;
    background: linear-gradient( 135deg, rgba(27, 26, 43, 0.96), rgba(12, 15, 25, 0.96) );
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.40);
    overflow: hidden;
    z-index: 2;
}


/* =========================================================
   OVERLAY
========================================================= */

.background-overlay,
.dark-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


/* Keep overlay inside wrapper */

.content-wrapper .background-overlay,
.content-wrapper .dark-overlay {
    z-index: 0;
}


/* =========================================================
   LEFT SECTION
========================================================= */

.left-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
}


/* =========================================================
   CEO IMAGE
========================================================= */

.ceo-image {
    position: relative;
    width: 285px;
    height: 365px;
    margin: 0 auto 22px;
    border-radius: 18px;
    /*background-image: url("img/ceo.jpg");*/
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    border: 2px solid rgba(143, 75, 255, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 35px rgba(111, 39, 230, 0.16);
    overflow: hidden;
}


    /* Image gradient */

    .ceo-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, transparent 55%, rgba(5, 6, 15, 0.75) );
    }


/* =========================================================
   NAME BADGE
========================================================= */

.name-badge {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    margin-top: -5px;
    border-radius: 30px;
    background: linear-gradient( 90deg, #6423da, #913df5 );
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(111, 39, 230, 0.35);
    z-index: 4;
}


/* =========================================================
   FOUNDER TITLE
========================================================= */

.founder-title {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-text {
    margin-top: 35px;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}


.contact-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}


    .social-link:hover {
        color: #ffffff;
        background: linear-gradient( 135deg, #6423da, #913df5 );
        border-color: #913df5;
        transform: translateY(-4px);
        box-shadow: 0 8px 22px rgba(111, 39, 230, 0.35);
    }


/* =========================================================
   RIGHT SECTION
========================================================= */

.right-section {
    position: relative;
    z-index: 3;
    padding-top: 5px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.main-title {
    position: relative;
    display: inline-block;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}


    .main-title::after {
        content: "";
        display: block;
        width: 65px;
        height: 4px;
        margin-top: 12px;
        border-radius: 10px;
        background: linear-gradient( 90deg, #6423da, #a04cff );
    }


/* =========================================================
   SUBTITLE
========================================================= */

.subtitle {
    margin-bottom: 25px;
    color: #a76aff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.description-paragraph {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.85;
}


    .description-paragraph:last-child {
        margin-bottom: 0;
    }


/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {
    position: relative;
    margin-top: 55px;
    padding: 45px;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(27, 27, 43, 0.96), rgba(13, 16, 27, 0.96) );
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.32);
    z-index: 2;
}


    /* =========================================================
   STATS TITLE
========================================================= */

    .stats-section > .section-title {
        margin-bottom: 30px;
        text-align: center;
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
    }


        .stats-section > .section-title::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            margin: 12px auto 0;
            border-radius: 10px;
            background: #8138ed;
        }


/* =========================================================
   STATS GRID
========================================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =========================================================
   STAT CARD
========================================================= */

.stat-card {
    padding: 28px 20px;
    text-align: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}


    .stat-card:hover {
        transform: translateY(-5px);
        background: rgba(111, 39, 230, 0.10);
        border-color: rgba(145, 75, 255, 0.35);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }


/* Number */

.stat-number {
    margin-bottom: 8px;
    color: #a56cff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}


/* Label */

.stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   QUOTE SECTION
========================================================= */

.quote-section {
    position: relative;
    margin-top: 35px;
    padding: 45px 55px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient( 135deg, rgba(100, 35, 218, 0.16), rgba(40, 20, 70, 0.25) );
    border: 1px solid rgba(145, 75, 255, 0.20);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 2;
}


    /* Quote symbol */

    .quote-section::before {
        content: "“";
        position: absolute;
        left: 25px;
        top: -15px;
        color: rgba(145, 75, 255, 0.15);
        font-family: Georgia, serif;
        font-size: 130px;
        line-height: 1;
    }


/* Quote */

.quote-text {
    position: relative;
    max-width: 850px;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    z-index: 2;
}


/* Author */

.quote-author {
    position: relative;
    color: #a56cff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .main-container {
        padding: 65px 20px;
    }


    .content-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 40px;
        padding: 40px;
    }


    .ceo-image {
        width: 240px;
        height: 315px;
    }


    .main-title {
        font-size: 31px;
    }


    .subtitle {
        font-size: 17px;
    }


    .description-paragraph {
        font-size: 13px;
    }


    .stats-section {
        padding: 35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .main-container {
        padding: 45px 15px;
    }


    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
        border-radius: 18px;
    }


    .left-section {
        width: 100%;
    }


    .ceo-image {
        width: 230px;
        height: 295px;
    }


    .name-badge {
        font-size: 16px;
        padding: 9px 20px;
    }


    .right-section {
        width: 100%;
    }


    .main-title {
        display: block;
        font-size: 27px;
        text-align: center;
    }


        .main-title::after {
            margin: 12px auto 0;
        }


    .subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 22px;
    }


    .description-paragraph {
        font-size: 13px;
        line-height: 1.75;
        text-align: left;
    }


    /* Stats */

    .stats-section {
        margin-top: 35px;
        padding: 30px 20px;
        border-radius: 18px;
    }


        .stats-section > .section-title {
            font-size: 24px;
        }


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


    .stat-card {
        padding: 22px 15px;
    }


    .stat-number {
        font-size: 34px;
    }


    /* Quote */

    .quote-section {
        margin-top: 25px;
        padding: 35px 20px;
        border-radius: 18px;
    }


    .quote-text {
        font-size: 18px;
        line-height: 1.55;
    }


    .quote-author {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .main-container {
        padding: 35px 10px;
    }


    .content-wrapper {
        padding: 25px 15px;
    }


    .ceo-image {
        width: 200px;
        height: 260px;
    }


    .main-title {
        font-size: 24px;
    }


    .subtitle {
        font-size: 14px;
    }


    .description-paragraph {
        font-size: 12.5px;
    }


    .contact-text {
        margin-top: 28px;
    }


    .stats-section {
        padding: 25px 15px;
    }


        .stats-section > .section-title {
            font-size: 21px;
        }


    .stat-number {
        font-size: 30px;
    }


    .stat-label {
        font-size: 12px;
    }


    .quote-text {
        font-size: 16px;
    }
}
/* =========================================================
   CONTACT SECTION
========================================================= */

.coinefy-contact-area {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
}

    /* Background overlay */
    .coinefy-contact-area::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(4, 27, 66, 0.88), rgba(6, 42, 99, 0.72), rgba(212, 175, 55, 0.20) );
        z-index: 0;
    }

    /* Main container */
    .coinefy-contact-area .container {
        position: relative;
        z-index: 2;
    }

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 45px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #F3D77A !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

/* =========================================================
   CONTACT INFO CARD
========================================================= */

.coinefy-contact-info {
    height: 100%;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-title {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient( 135deg, #D4AF37, #F3D77A );
    color: #041B42;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.contact-info-text {
    flex: 1;
    padding-top: 3px;
}

    .contact-info-text a,
    .contact-info-text span {
        display: block;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.8;
        text-decoration: none;
        word-break: break-word;
    }

        .contact-info-text a:hover {
            color: #F3D77A;
        }

/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.coinefy-contact-wrapper {
    height: 100%;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-title {
    margin: 0;
    color: #062A63;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =========================================================
   INPUTS
========================================================= */

.coinefy-single-input {
    width: 100%;
}

.input-field {
    width: 100%;
}

.box-input,
.coinefy-single-input textarea,
.coinefy-single-input select {
    width: 100%;
    height: 55px;
    padding: 0 18px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    color: #062A63;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    /* Placeholder */
    .box-input::placeholder,
    textarea::placeholder {
        color: #8b95a5;
        opacity: 1;
    }

    /* Focus */
    .box-input:focus,
    .coinefy-single-input textarea:focus,
    .coinefy-single-input select:focus {
        border-color: #D4AF37;
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
    }

/* Select */
.coinefy-single-input select {
    cursor: pointer;
    appearance: auto;
}

/* =========================================================
   TEXTAREA
========================================================= */

.coinefy-single-input textarea {
    height: 150px;
    min-height: 150px;
    padding: 16px 18px;
    resize: vertical;
    line-height: 1.6;
}

/* =========================================================
   FORM SPACING
========================================================= */

.row.gy-24 {
    --bs-gutter-y: 24px;
}

.row.gx-20 {
    --bs-gutter-x: 20px;
}

/* =========================================================
   BUTTON
========================================================= */

.auth-from-btn-wrap {
    width: 100%;
    margin-top: 24px;
}

.site-btn.primary-btn {
    min-height: 55px;
    padding: 0 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient( 135deg, #062A63, #0b4da2 );
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(6, 42, 99, 0.25);
}

    .site-btn.primary-btn:hover {
        background: linear-gradient( 135deg, #D4AF37, #F3D77A );
        color: #041B42;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(212, 175, 55, 0.30);
    }

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .coinefy-contact-area {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .coinefy-contact-info,
    .coinefy-contact-wrapper {
        padding: 28px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 22px;
    }

    .contact-info-item {
        gap: 14px;
    }

    .contact-info-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .coinefy-contact-area {
        min-height: auto;
        padding: 60px 15px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 30px;
    }

    .coinefy-contact-info,
    .coinefy-contact-wrapper {
        padding: 22px;
        border-radius: 16px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 20px;
    }

    .contact-info-content {
        gap: 20px;
    }

    .contact-info-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 16px;
    }

    .contact-info-text a,
    .contact-info-text span {
        font-size: 14px;
        line-height: 1.7;
    }

    .box-input,
    .coinefy-single-input select {
        height: 52px;
        font-size: 14px;
    }

    .coinefy-single-input textarea {
        height: 130px;
        min-height: 130px;
    }

    .site-btn.primary-btn {
        min-height: 52px;
        font-size: 14px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .coinefy-contact-area {
        padding: 45px 10px;
    }

    .section-title {
        font-size: 26px;
    }

    .coinefy-contact-info,
    .coinefy-contact-wrapper {
        padding: 18px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .contact-info-text a,
    .contact-info-text span {
        font-size: 13px;
    }
}

.how-it-works-item .icon i {
    font-size: 22px;
    color: #ffffff;
    line-height: 1;
}
/* =========================================================
   HOW IT WORK SECTION - SCREENSHOT STYLE
========================================================= */

.big-doller-wrapper {
    width: 100%;
    background: #87ceeb !important;
    padding: 20px !important;
    overflow: hidden;
}

.big-dollar-shape {
    display: none !important;
}

.how-it-work-section {
    width: 100%;
}

.how-it-work-main {
    position: relative !important;
    width: 100%;
    max-width: 1220px;
    min-height: 640px;
    margin: 0 auto;
    padding: 78px 92px 55px !important;
    background-image: url("hitworks.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
}


    /* DARK OVERLAY */
    .how-it-work-main::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(8, 15, 35, 0.55);
        z-index: 1;
    }


    /* CONTENT ABOVE OVERLAY */
    .how-it-work-main > div {
        position: relative;
        z-index: 2;
    }


    /* =========================================================
   HEADING
========================================================= */

    .how-it-work-main .section-heading {
        margin-bottom: 42px;
    }

    .how-it-work-main .section-subtitle {
        display: inline-block;
        color: #ffffff !important;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
        margin-bottom: 12px;
        text-shadow: 0 1px 2px rgba(0,0,0,.5);
    }

    .how-it-work-main .section-title {
        color: #ffffff !important;
        font-size: 32px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        max-width: 500px;
        margin: 0 !important;
        text-shadow: 0 2px 5px rgba(0,0,0,.5);
    }


/* =========================================================
   GRID
========================================================= */

.how-it-work-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.how-it-works-item {
    position: relative;
    height: 178px;
    padding: 20px 20px 18px;
    border-radius: 13px;
    background: rgba(91, 100, 125, 0.58);
    border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 20px rgba(0,0,0,.12);
    transition: all .3s ease;
    z-index: 3;
}


    /* CARD HOVER */
    .how-it-works-item:hover {
        transform: translateY(-4px);
        background: rgba(104, 113, 139, 0.68);
        border-color: rgba(255,255,255,.42);
    }


    /* =========================================================
   ICON
========================================================= */

    .how-it-works-item .icon {
        position: relative;
        width: 43px;
        height: 43px;
        margin-bottom: 15px;
    }

        .how-it-works-item .icon span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 43px;
            height: 43px;
            border-radius: 50%;
            background: rgba(255,255,255,.13);
            box-shadow: 0 0 0 5px rgba(255,255,255,.03);
        }

        .how-it-works-item .icon img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }


    /* =========================================================
   CARD TITLE
========================================================= */

    .how-it-works-item .title {
        color: #ffffff !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        margin: 0 0 15px !important;
        letter-spacing: .1px;
    }


    /* =========================================================
   CARD DESCRIPTION
========================================================= */

    .how-it-works-item .description {
        color: rgba(255,255,255,.92) !important;
        font-size: 10px !important;
        line-height: 1.65 !important;
        font-weight: 400;
        margin: 0 !important;
        max-width: 205px;
    }


    /* =========================================================
   CONNECTING ARROWS
========================================================= */

    .how-it-works-item .step {
        position: absolute;
        top: 22px;
        right: -25px;
        width: 25px;
        height: 1px;
        z-index: 10;
    }


        /* horizontal line */
        .how-it-works-item .step::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 24px;
            height: 1px;
            background: rgba(255,255,255,.9);
        }


        /* arrow */
        .how-it-works-item .step .arrow {
            position: absolute;
            right: 0;
            top: -3px;
            width: 7px;
            height: 7px;
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
            transform: rotate(45deg);
        }


    /* =========================================================
   REMOVE ARROW FROM 4TH CARD
========================================================= */

    .how-it-works-item:nth-child(4) .step {
        display: none;
    }


    /* =========================================================
   SECOND ROW - ARROW DIRECTION
========================================================= */

    .how-it-works-item:nth-child(5) .step,
    .how-it-works-item:nth-child(6) .step,
    .how-it-works-item:nth-child(7) .step {
        top: 22px;
    }


    /* =========================================================
   MAKE SECOND ROW FLOW RIGHT TO LEFT
========================================================= */

    .how-it-works-item:nth-child(5) {
        grid-column: 4;
        grid-row: 2;
    }

    .how-it-works-item:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    }

    .how-it-works-item:nth-child(7) {
        grid-column: 2;
        grid-row: 2;
    }

    .how-it-works-item:nth-child(8) {
        grid-column: 1;
        grid-row: 2;
    }


    /* arrows between second row */
    .how-it-works-item:nth-child(5) .step,
    .how-it-works-item:nth-child(6) .step,
    .how-it-works-item:nth-child(7) .step {
        left: -25px;
        right: auto;
    }

        .how-it-works-item:nth-child(5) .step::before,
        .how-it-works-item:nth-child(6) .step::before,
        .how-it-works-item:nth-child(7) .step::before {
            left: auto;
            right: 0;
        }

        .how-it-works-item:nth-child(5) .step .arrow,
        .how-it-works-item:nth-child(6) .step .arrow,
        .how-it-works-item:nth-child(7) .step .arrow {
            left: 0;
            right: auto;
            transform: rotate(225deg);
        }


/* =========================================================
   LARGE CURVED CONNECTOR
   4TH CARD TO SECOND ROW
========================================================= */

.how-it-work-grid::after {
    content: "";
    position: absolute;
    top: 252px;
    right: 110px;
    width: 175px;
    height: 198px;
    border-right: 1px solid rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(255,255,255,.9);
    border-radius: 0 0 95px 0;
    pointer-events: none;
    z-index: 2;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .how-it-work-main {
        padding: 65px 45px 45px !important;
    }

    .how-it-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .how-it-works-item:nth-child(5),
    .how-it-works-item:nth-child(6),
    .how-it-works-item:nth-child(7),
    .how-it-works-item:nth-child(8) {
        grid-column: auto;
        grid-row: auto;
    }

    .how-it-works-item .step {
        display: none;
    }

    .how-it-work-grid::after {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .big-doller-wrapper {
        padding: 10px !important;
    }

    .how-it-work-main {
        min-height: auto;
        padding: 45px 18px 35px !important;
        border-radius: 16px;
    }


        /* heading */

        .how-it-work-main .section-heading {
            margin-bottom: 30px;
        }

        .how-it-work-main .section-subtitle {
            font-size: 12px;
        }

        .how-it-work-main .section-title {
            font-size: 25px !important;
            line-height: 1.3 !important;
        }


    /* one column */

    .how-it-work-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }


    /* reset desktop positions */

    .how-it-works-item:nth-child(1),
    .how-it-works-item:nth-child(2),
    .how-it-works-item:nth-child(3),
    .how-it-works-item:nth-child(4),
    .how-it-works-item:nth-child(5),
    .how-it-works-item:nth-child(6),
    .how-it-works-item:nth-child(7),
    .how-it-works-item:nth-child(8) {
        grid-column: auto !important;
        grid-row: auto !important;
    }


    .how-it-works-item {
        height: auto;
        min-height: 155px;
        padding: 18px;
    }


        .how-it-works-item .title {
            font-size: 14px !important;
        }

        .how-it-works-item .description {
            font-size: 10px !important;
            max-width: 100%;
        }


        .how-it-works-item .step {
            display: none;
        }

    .how-it-work-grid::after {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .how-it-work-main {
        padding: 35px 14px 25px !important;
    }

        .how-it-work-main .section-title {
            font-size: 22px !important;
        }

    .how-it-works-item {
        min-height: 145px;
        padding: 16px;
    }

        .how-it-works-item .icon,
        .how-it-works-item .icon span {
            width: 40px;
            height: 40px;
        }

            .how-it-works-item .icon img {
                width: 38px;
                height: 38px;
            }
}
/* =========================================================
   CRYPTO MARKETPLACE SECTION
========================================================= */

.clients-section {
    position: relative;
    overflow: hidden;
    background: #87ceeb !important;
    padding: 70px 0 45px;
}

.clients-section .container {
    position: relative;
    z-index: 2;
}

.clients-content-wrapper {
    width: 100%;
}

.clients-section .section-heading {
    margin-bottom: 30px;
}

.clients-section .section-title {
    color: #ffffff !important;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .35);
}


/* TradingView */
.tradingview-widget-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1220px;
    margin: 10px auto 0;
    overflow: hidden;
    border-radius: 12px;
}

.tradingview-widget-container__widget {
    width: 100%;
}


/* Glow */
.clients-glow {
    position: absolute;
    left: 0;
    bottom: -80px;
    width: 100%;
    opacity: .25;
    pointer-events: none;
}

.clients-glow img {
    width: 100%;
}


/* =========================================================
   VISION & MISSION SECTION
========================================================= */

.vision-mission-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0;

    /*background:
        radial-gradient(
            circle at 20% 20%,
            rgba(0, 170, 255, .18),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(138, 43, 226, .15),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071a38 0%,
            #0b2852 50%,
            #06152f 100%
        );*/
}


/* =========================================================
   OVERLAY IMAGE
========================================================= */

.vision-mission-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: url("https://images.pexels.com/photos/11538562/pexels-photo-11538562.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.25;

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   CONTENT ABOVE OVERLAY
========================================================= */

.vision-mission-section > .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   INTRO
========================================================= */

.vm-intro {
    max-width: 950px;
    margin: 0 auto;
}

.vm-intro .section-heading {
    margin-bottom: 20px;
}

.vm-intro .vm-title {
    color: #ffffff !important;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.vm-intro .emoji {
    display: inline-block;
    margin-right: 8px;
}

.vm-intro .description {
    color: rgba(255,255,255,.85) !important;

    font-size: 15px;
    line-height: 1.8;

    max-width: 900px;
    margin: 0 auto;
}


/* =========================================================
   MISSION / VISION CARDS
========================================================= */

.vm-card {
    position: relative;

    height: 100%;

    padding: 35px 32px;

    display: flex;
    align-items: flex-start;
    gap: 22px;

    border-radius: 18px;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.20);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.10);

    transition: all .35s ease;

    overflow: hidden;
}


/* top light line */

.vm-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;
    right: 30px;

    height: 2px;

    background: rgba(255,255,255,.55);

    border-radius: 50%;
}


/* hover */

.vm-card:hover {
    transform: translateY(-7px);

    background: rgba(255,255,255,.14);

    border-color: rgba(255,255,255,.35);

    box-shadow:
        0 20px 45px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.15);
}


/* =========================================================
   ICON
========================================================= */

.vm-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.20);

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);
}

.icon-symbol {
    font-size: 31px;
    line-height: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.vm-content {
    flex: 1;
}

.vm-content .vm-title {
    color: #ffffff !important;

    font-size: 21px;

    font-weight: 700;

    margin: 3px 0 13px;
}

.vm-description {
    color: rgba(255,255,255,.82) !important;

    font-size: 13px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   MISSION / VISION DIFFERENT GLOW
========================================================= */

.mission-card {
    background:
        linear-gradient(
            135deg,
            rgba(0, 150, 255, .14),
            rgba(255,255,255,.07)
        );
}

.vision-card {
    background:
        linear-gradient(
            135deg,
            rgba(153, 80, 255, .14),
            rgba(255,255,255,.07)
        );
}


/* =========================================================
   KEY FEATURES
========================================================= */

.key-features {
    padding: 25px;

    border-radius: 18px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.15);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.15);
}


/* Feature item */

.feature-item {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px;

    border-radius: 12px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    transition: all .3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,.13);

    border-color: rgba(255,255,255,.25);
}


/* Feature Icon */

.feature-icon {
    font-size: 26px;

    line-height: 1;
}


/* Feature Text */

.feature-text {
    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   REMOVE UNNECESSARY OLD SPACING
========================================================= */

.vision-mission-section .row {
    position: relative;
    z-index: 2;
}

.vision-mission-section .section-space-top {
    padding-top: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .clients-section {
        padding: 60px 0 40px;
    }

    .clients-section .section-title {
        font-size: 28px;
    }

    .vision-mission-section {
        padding: 65px 0;
    }

    .vm-intro .vm-title {
        font-size: 30px;
    }

    .vm-card {
        padding: 28px 24px;
    }

    .feature-item {
        min-height: 70px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .clients-section {
        padding: 45px 0 30px;
    }

    .clients-section .section-title {
        font-size: 23px !important;
        line-height: 1.35;

        white-space: normal !important;
    }

    .clients-content-wrapper {
        display: block !important;
    }

    .clients-section .section-heading {
        text-align: center !important;
    }


    /* Vision Mission */

    .vision-mission-section {
        padding: 50px 0;
    }

    .vm-intro {
        padding: 0 10px;
    }

    .vm-intro .vm-title {
        font-size: 27px;
    }

    .vm-intro .description {
        font-size: 13px;
        line-height: 1.7;
    }


    /* Cards */

    .vm-card {
        padding: 25px 20px;

        gap: 17px;

        border-radius: 15px;
    }

    .vm-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        border-radius: 13px;
    }

    .icon-symbol {
        font-size: 26px;
    }

    .vm-content .vm-title {
        font-size: 18px;
        margin-bottom: 9px;
    }

    .vm-description {
        font-size: 12px;
        line-height: 1.7;
    }


    /* Features */

    .key-features {
        padding: 15px;
    }

    .feature-item {
        min-height: 65px;

        justify-content: flex-start;

        padding: 13px 15px;
    }

    .feature-icon {
        font-size: 23px;
    }

    .feature-text {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .clients-section .section-title {
        font-size: 21px !important;
    }

    .vm-intro .vm-title {
        font-size: 24px;
    }

    .vm-card {
        display: block;
        padding: 23px 18px;
    }

    .vm-icon {
        margin-bottom: 17px;
    }

    .vm-content .vm-title {
        font-size: 18px;
    }

    .vm-description {
        font-size: 12px;
    }

    .key-features {
        padding: 12px;
    }
}
/* Counter Icons */
.counter-item .icon i {
    font-size: 36px;
    line-height: 1;
}

/* Icon container একটু বড় */
.counter-item .icon span {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
@media (max-width: 576px) {
    .counter-item .icon i {
        font-size: 30px;
    }

    .counter-item .icon span {
        width: 58px;
        height: 58px;
    }
}
  /* Page Banner */
        .page-banner {
            background: linear-gradient(135deg, #071f49, #1261a8);
            padding: 70px 15px;
            text-align: center;
            color: #fff;
        }

        .page-banner h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .page-banner p {
            margin: 0;
            font-size: 16px;
            opacity: 0.9;
        }

        /* Terms Section */
        .terms-section {
            padding: 70px 0;
        }

        .terms-wrapper {
            background: #fff;
            border-radius: 12px;
            padding: 45px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
        }

        .terms-title {
            font-size: 30px;
            font-weight: 700;
            color: #071f49;
            margin-bottom: 8px;
        }

        .effective-date {
            color: #777;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .terms-intro {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .terms-item {
            margin-bottom: 30px;
        }

        .terms-item h3 {
            font-size: 20px;
            font-weight: 700;
            color: #071f49;
            margin-bottom: 12px;
        }

        .terms-item h3 i {
            color: #0d6efd;
            margin-right: 8px;
        }

        .terms-item p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 10px;
        }

        .terms-item ul {
            padding-left: 25px;
            margin-top: 10px;
        }

        .terms-item ul li {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 5px;
        }

        .highlight-box {
            background: #f1f7ff;
            border-left: 4px solid #0d6efd;
            padding: 18px 20px;
            border-radius: 5px;
            margin-top: 15px;
        }

        .highlight-box p {
            margin: 0;
        }

        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, #071f49, #1261a8);
            color: #fff;
            padding: 25px;
            border-radius: 10px;
            margin-top: 35px;
        }

        .contact-box h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .contact-box p {
            margin-bottom: 8px;
        }

        .contact-box a {
            color: #fff;
            text-decoration: none;
        }
        /* ================================
   TOTAL USER SECTION
================================ */

.total-user-section {
    background: #101116;
    padding: 55px 0;
    position: relative;
}


/* Card */

.total-user-card {
    width: 280px;
    min-height: 210px;

    padding: 28px 25px;

    text-align: center;

    border-radius: 20px;

    background: linear-gradient(
        145deg,
        rgba(32, 35, 48, 0.98),
        rgba(18, 20, 30, 0.98)
    );

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    position: relative;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* Blue / Purple glow */

.total-user-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    background: #1769ff;

    border-radius: 50%;

    filter: blur(70px);

    opacity: 0.18;

    top: -50px;
    right: -40px;

    pointer-events: none;
}


.total-user-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    background: #7628ff;

    border-radius: 50%;

    filter: blur(65px);

    opacity: 0.15;

    bottom: -45px;
    left: -35px;

    pointer-events: none;
}


/* Hover */

.total-user-card:hover {
    transform: translateY(-7px);

    border-color: rgba(72, 125, 255, 0.5);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(48, 101, 255, 0.12);
}


/* Icon */

.user-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 16px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #1677ff,
        #5b2cff
    );

    color: #fff;

    font-size: 27px;

    box-shadow:
        0 8px 25px rgba(40, 100, 255, 0.35);

    position: relative;
    z-index: 2;
}


/* Number */

.user-number {
    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;

    color: #fff;

    letter-spacing: 0.5px;

    position: relative;
    z-index: 2;
}


/* Title */

.user-title {
    margin-top: 7px;

    color: #aeb4c2;

    font-size: 15px;

    font-weight: 500;

    letter-spacing: 0.5px;

    position: relative;
    z-index: 2;
}


/* Mobile */

@media (max-width: 575px) {

    .total-user-section {
        padding: 40px 15px;
    }

    .total-user-card {
        width: 260px;
        min-height: 200px;
    }

    .user-number {
        font-size: 34px;
    }

}
.copyright-text {
    text-align: center;
    padding: 18px 15px;
    color: #9da3b4;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #101116;
}

.copyright-text span {
    color: #ffffff;
    font-weight: 600;
}

.copyright-text:hover span {
    color: #6d35ff;
    transition: 0.3s ease;
}