        :root {
    --primary-blue: #1a73e8;
    --primary-red: #e84545;
    --primary-green: #28a745;
    --primary-purple: #6a11cb;
    --dark-blue: #0d47a1;
    --light-blue: #e8f0fe;
    --dark-gray: #333;
    --light-gray: #f8f9fa;
    --gradient-blue: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    --gradient-red: linear-gradient(135deg, #e84545 0%, #b71c1c 100%);
    --gradient-purple: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-green: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    --gradient-education: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-healthcare: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-ecommerce: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html , body {
            max-width: 100vw;
            overflow-x: hidden;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-blue);
            border-radius: 2px;
        }

        .btn-primary {
            background: var(--gradient-blue);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
        }

        .btn-secondary {
            background: var(--gradient-red);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(232, 69, 69, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(232, 69, 69, 0.4);
        }

        #navbarNav ul {
            align-items: center;
        }

        /* Header Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 28px;
            color: var(--primary-blue) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark-gray) !important;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        /* Micro Banner */
        .micro-banner {
            background: var(--gradient-purple);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .micro-banner .marquee {
            white-space: nowrap;
            overflow: hidden;
        }

        .micro-banner .marquee-content {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Banner Section */
        .banner-section {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .banner-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: var(--gradient-blue);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        .banner-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: var(--gradient-red);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        .banner-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #555;
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }

        .hero-image img:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }

        
                    .carousel-control-prev,
                    .carousel-control-next {
                        width: 50px;
                        height: 50px;
                        background: rgba(102, 126, 234, 0.8);
                        border-radius: 50%;
                        top: 50%;
                        transform: translateY(-50%);
                        margin: 0 1rem;
                        opacity: 0.8;
                        transition: all 0.3s ease;
                    }

                    .carousel-control-prev:hover,
                    .carousel-control-next:hover {
                        opacity: 1;
                        background: #667eea;
                    }

                    .carousel-control-prev {
                        left: 0;
                    }

                    .carousel-control-next {
                        right: 0;
                    }

                    /* Smooth fade transitions for carousel */
#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

#heroCarousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

#heroCarousel.carousel-fade .carousel-item-next.carousel-item-left,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

#heroCarousel.carousel-fade .carousel-item-next,
#heroCarousel.carousel-fade .carousel-item-prev,
#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-left.active,
#heroCarousel.carousel-fade .carousel-item-prev.active {
    transform: translateX(0);
}

/* Ensure proper stacking */
.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

/* Fix for overlapping text */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-right.active {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-left.active,
.carousel-fade .carousel-item-prev.active {
    transform: translateX(0);
}

@supports (transform: translate3d(0, 0, 0)) {
    .carousel-fade .carousel-item {
        transition-property: opacity;
        transform: none;
    }
}




        /* Introduction Section */
        .intro-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-blue);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
        }

        /* About Coins Section */
        .coins-section {
            padding: 100px 0;
            background: white;
        }

        .coin-card {
            border-radius: 20px;
            padding: 40px 30px;
            color: white;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .coin-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .coin-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .vgo-coin {
            background: var(--gradient-blue);
        }

        .tx-coin {
            background: var(--gradient-red);
        }

        .coin-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

       
        
        /* SSI Section */
        .ssi-section {
            padding: 100px 0;
            background: white;
        }

        .ssi-card {
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-red);
        }

        .ssi-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .ssi-icon {
            font-size: 40px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-purple);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
        }

       /* Team Section Enhanced Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-purple);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

/* Team Card Enhanced */
.team-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Founder Card */
.team-card:first-child {
    border-top-color: var(--primary-blue);
}

/* VANTA Card */
.team-card:last-child {
    border-top-color: var(--primary-purple);
}

.team-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.team-img:hover {
    transform: scale(1.05);
}

.founder-img {
    background: var(--gradient-blue);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.vanta-ai {
    background: var(--gradient-purple);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
}

.team-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.08);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

/* Team Content */
.team-content {
    margin-bottom: 30px;
}

.team-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 5px;
    text-align: center;
}

.team-title {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.team-bio {
    line-height: 1.7;
    color: #555;
}

.team-bio p {
    margin-bottom: 15px;
}

.team-bio strong {
    color: var(--dark-gray);
    font-weight: 700;
}

/* Founder Highlights */
.team-highlights {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-blue);
}

.team-highlights h5 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.highlight-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* Founder Quote */
.founder-quote {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(26, 115, 232, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    border-left: 4px solid var(--primary-blue);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: var(--primary-blue);
    opacity: 0.3;
}

.founder-quote blockquote {
    margin: 0;
    padding-left: 30px;
}

.founder-quote blockquote p {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.founder-quote .blockquote-footer {
    color: #666;
    font-weight: 600;
}

/* Team Mission */
.team-mission {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    border-top: 3px solid var(--primary-blue);
}

.mission-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.mission-content h6 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.mission-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* VANTA Capabilities */
.vanta-capabilities {
    background: rgba(106, 17, 203, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    border: 2px solid rgba(106, 17, 203, 0.1);
}

.vanta-capabilities h5 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(106, 17, 203, 0.2);
}

.capability-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.capability-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-top: 3px;
}

.capability-content h6 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.capability-content p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* VANTA Importance */
.vanta-importance {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
}

.vanta-importance h5 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.importance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.importance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.importance-item i {
    font-size: 1.2rem;
    min-width: 24px;
}

.importance-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* VANTA Future */
.vanta-future {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border-top: 3px solid var(--primary-purple);
}

.future-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.future-content h6 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.future-content p {
    color: #666;
    margin: 0 0 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.future-vision {
    color: var(--dark-purple) !important;
    font-size: 1.1rem !important;
    font-weight: 700;
    line-height: 1.4 !important;
}

/* Team Collaboration */
.team-collaboration {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.collaboration-icon {
    display: inline-block;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 50%;
}

.team-collaboration h3 {
    color: var(--dark-gray);
    font-weight: 800;
    font-size: 1.8rem;
}

.team-collaboration .lead {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.stat-badge {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 120px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-badge.result {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-blue);
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.stat-badge.result .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.plus-sign, .equal-sign {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-card {
        padding: 30px;
    }
    
    .team-name {
        font-size: 1.7rem;
    }
    
    .team-title {
        font-size: 1.1rem;
    }
    
    .importance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plus-sign, .equal-sign {
        display: none;
    }
    
    .stat-badge {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .capability-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .capability-icon {
        align-self: center;
    }
    
    .team-mission, .vanta-future {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .mission-icon, .future-icon {
        align-self: center;
    }
    
    .team-collaboration {
        padding: 30px 20px;
    }
    
    .importance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .team-card {
        padding: 20px 15px;
    }
    
    .team-img {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .founder-quote blockquote p {
        font-size: 1rem;
    }
    
    .stat-badge {
        min-width: 100%;
        margin-bottom: 10px;
    }
}

        /* Investors Section */
        .investors-section {
            padding: 100px 0;
            background: white;
        }

        .investor-card {
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-blue);
        }

        .investor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .investor-icon {
            font-size: 40px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* Events Section */
        .events-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .event-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-red);
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .event-date {
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }

        .testimonial-card {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: var(--primary-blue);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-right: 15px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .accordion-button {
            font-weight: 600;
            padding: 20px;
            border: none;
            background: white;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-blue);
            color: var(--primary-blue);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 20px;
        }

        /* Security Section */
        .security-section {
            padding: 100px 0;
            background: white;
        }

        .security-feature {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .security-feature:hover {
            background: var(--light-gray);
            transform: translateY(-5px);
        }

        .security-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
        }

        /* Blogs Section */
        .blogs-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-purple);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .blog-date {
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }

        .contact-form {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
            border-color: var(--primary-blue);
        }

        /* Subscription Section */
        .subscription-section {
            padding: 80px 0;
            background: var(--gradient-blue);
            color: white;
        }

        .subscription-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .subscription-form .form-control {
            border-radius: 50px 0 0 50px;
            border: none;
            padding: 15px 20px;
        }

        .subscription-form .btn {
            border-radius: 0 50px 50px 0;
            padding: 15px 25px;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-blue);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-image img {
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1rem;
            }
        }

       /* Bridge Agents Section - Single Card Layout */
.bridge-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.bridge-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    opacity: 0.05;
    border-radius: 50%;
}

.bridge-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-red);
    opacity: 0.05;
    border-radius: 50%;
}

/* Main Bridge Agent Card */
.bridge-main-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(26, 115, 232, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #e2e8f0;
    transform: perspective(1000px) rotateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.bridge-main-card:hover {
    transform: perspective(1000px) rotateY(2deg);
    box-shadow: 0 35px 80px rgba(26, 115, 232, 0.2);
}

/* Card Header */
.bridge-card-header {
    background: var(--gradient-blue);
    color: white;
    padding: 25px;
    position: relative;
    border-bottom: 3px solid var(--dark-blue);
}



.bridge-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bridge-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bridge-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.divider-icon {
    margin: 0 25px;
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
}

/* Card Body */
.bridge-card-body {
    padding: 25px 20px;
}

.bridge-description .lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    padding: 0 20px;
}

/* Content Cards */
.bridge-content-card {
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bridge-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.1);
    border-color: var(--primary-blue);
}

.content-card-header h5 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.4rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.content-card-header h5 i {
    font-size: 1.3rem;
}

/* Bridge Features */
.bridge-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
}

.bridge-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.2);
}

.feature-content h6 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-content h6::before {
    font-size: 1.2rem;
    margin-right: 5px;
}

.feature-content p {
    color: #4a5568;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    padding-left: 5px;
}

/* Benefits List */
.benefits-list {
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-check {
    color: #10b981;
    font-size: 22px;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 24px;
}

.benefit-text p {
    color: #2d3748;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Agent Stats */
.agent-stats {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e2e8f0;
}

.agent-stats h6 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.agent-stats h6 i {
    color: var(--primary-blue);
}

.stat-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.stat-item:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.bridge-cta {
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--gradient-blue);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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: 0.5s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bridge-main-card {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .bridge-section {
        padding: 60px 0;
    }
    
    .bridge-card-header {
        padding: 40px 20px 30px;
    }
    
    .bridge-title {
        font-size: 2.2rem;
    }
    
    .bridge-subtitle {
        font-size: 1.2rem;
    }
    
    .bridge-card-body {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    .feature-content h6 {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .bridge-title {
        font-size: 2rem;
    }
    
    .divider-line {
        width: 50px;
    }
    
    .bridge-description .lead {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .content-card-header h5 {
        font-size: 1.2rem;
    }
    
    .bridge-content-card {
        padding: 20px;
    }
}

/* Mining Section */
.mining-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 50%, #1a73e8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mining-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,208C672,213,768,203,864,181.3C960,160,1056,128,1152,128C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

#mining-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Left Column Styles */
.mining-intro-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.mining-intro-card .intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.mining-benefits {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.benefit-check {
    color: #4CAF50;
    font-size: 1.2rem;
    min-width: 24px;
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mining Devices Grid */
.mining-devices-grid {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mining-devices-grid h4 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.device-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.device-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.device-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.device-card h6 {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Right Column Styles */
.mining-features-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.features-header h3 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.features-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Feature Items */
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

.feature-content h5 {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Mining Flow */
.mining-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.mining-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: white;
}

.flow-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: white;
}

.flow-arrow {
    position: absolute;
    right: -15px;
    top: 25px;
    color: rgba(255, 255, 255, 0.5);
}

.flow-item:last-child .flow-arrow {
    display: none;
}

/* CTA Section */
.mining-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.mining-cta h4 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.mining-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.btn-primary {
    background: var(--gradient-blue);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mining-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mining-flow {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .flow-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }
    
    .flow-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .mining-section {
        padding: 60px 0;
    }
    
    .mining-intro-card,
    .mining-features-card {
        padding: 30px 20px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-number {
        align-self: flex-start;
    }
    
    .feature-tags {
        flex-direction: column;
        gap: 5px;
    }
    
    .mining-cta {
        padding: 30px 20px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .device-card {
        padding: 15px 10px;
    }
    
    .device-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .flow-item {
        flex: 0 0 100%;
    }
}
    


/* ============================================
   VGO PAYMENT SYSTEM FOR RETAILERS SECTION
   ============================================ */

/* Main Section Container */
.payment-system-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.payment-system-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.payment-system-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-green);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

/* Section Title */
.payment-system-section .section-title {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-system-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
}

/* Main Card Container */
.payment-system-section .payment-main-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #e2e8f0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.payment-system-section .payment-main-card:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.payment-system-section .payment-card-header {
    background: var(--gradient-green);
    color: white;
    padding: 40px 30px 30px;
    position: relative;
    border-bottom: 3px solid var(--dark-green);
}

.payment-system-section .payment-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.payment-system-section .payment-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-system-section .header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.payment-system-section .divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.payment-system-section .divider-icon {
    margin: 0 25px;
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
}

/* Card Body */
.payment-system-section .payment-card-body {
    padding: 40px 30px;
}

/* Benefit Cards */
.payment-system-section .benefit-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px 20px;
    border: 2px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-system-section .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.1);
    border-color: var(--primary-green);
}

.payment-system-section .benefit-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--gradient-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.payment-system-section .benefit-content h5 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.payment-system-section .benefit-content p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* How It Works Steps */
.payment-system-section .steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.payment-system-section .steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.payment-system-section .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.payment-system-section .step:last-child {
    margin-bottom: 0;
}

.payment-system-section .step-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.payment-system-section .step-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.payment-system-section .step-content h5 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.payment-system-section .step-content p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
}

/* Content Cards */
.payment-system-section .payment-content-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    height: 100%;
}

.payment-system-section .content-card-header h5 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.payment-system-section .benefit-item {
    padding: 15px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.payment-system-section .benefit-item:last-child {
    border-bottom: none;
}

.payment-system-section .benefit-item span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.payment-system-section .business-type {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.payment-system-section .business-type:last-child {
    border-bottom: none;
}

.payment-system-section .business-type i {
    font-size: 1.2rem;
    margin-top: 3px;
    color: var(--primary-blue);
}

.payment-system-section .business-type h6 {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

/* B2B Section */
.payment-system-section .b2b-section {
    margin-bottom: 3rem;
}

.payment-system-section .b2b-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-system-section .b2b-header h4 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.5rem;
}

.payment-system-section .b2b-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
}

.payment-system-section .b2b-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.payment-system-section .b2b-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.payment-system-section .b2b-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Future Points */
.payment-system-section .future-point {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.payment-system-section .future-point:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-system-section .future-point i {
    font-size: 1.2rem;
    min-width: 24px;
    color: var(--primary-blue);
}

.payment-system-section .future-point span {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* CTA Section */
.payment-system-section .payment-cta {
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.payment-system-section .cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.payment-system-section .cta-title {
    color: var(--dark-green);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.payment-system-section .cta-subtitle {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.payment-system-section .cta-button {
    background: var(--gradient-green);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.payment-system-section .cta-button::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: 0.5s;
}

.payment-system-section .cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.4);
    color: white;
}

.payment-system-section .cta-button:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .payment-system-section .payment-main-card {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .payment-system-section {
        padding: 60px 0;
    }
    
    .payment-system-section .payment-card-header {
        padding: 30px 20px 25px;
    }
    
    .payment-system-section .payment-title {
        font-size: 1.8rem;
    }
    
    .payment-system-section .payment-card-body {
        padding: 30px 20px;
    }
    
    .payment-system-section .benefit-card {
        padding: 20px 15px;
    }
    
    .payment-system-section .steps-container::before {
        left: 25px;
    }
    
    .payment-system-section .step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    .payment-system-section .step-content {
        padding: 15px;
    }
    
    .payment-system-section .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .payment-system-section .payment-title {
        font-size: 1.6rem;
    }
    
    .payment-system-section .divider-line {
        width: 50px;
    }
    
    .payment-system-section .benefit-content h5 {
        font-size: 1rem;
    }
    
    .payment-system-section .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .payment-system-section .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .payment-system-section .steps-container::before {
        left: 50%;
        transform: translateX(-50%);
        height: calc(100% - 60px);
    }
    
    .payment-system-section .future-point {
        padding: 12px;
    }
}


/* Services Investment Section */
.services-investment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.services-investment-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.services-investment-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-purple);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

/* Section Title */
.services-investment-section .section-title {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-investment-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

/* Service Investment Cards */
.services-investment-section .service-investment-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.services-investment-section .service-investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.services-investment-section .education-card {
    border-top-color: #667eea;
}

.services-investment-section .healthcare-card {
    border-top-color: #f5576c;
}

.services-investment-section .ecommerce-card {
    border-top-color: #4facfe;
}

/* Card Header */
.services-investment-section .service-card-header {
    padding: 30px 25px 20px;
    position: relative;
}

.services-investment-section .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.services-investment-section .education-card .service-icon {
    background: var(--gradient-education);
}

.services-investment-section .healthcare-card .service-icon {
    background: var(--gradient-healthcare);
}

.services-investment-section .ecommerce-card .service-icon {
    background: var(--gradient-ecommerce);
}

.services-investment-section .service-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.services-investment-section .service-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.services-investment-section .service-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Card Body */
.services-investment-section .service-card-body {
    padding: 0 25px 20px;
}

.services-investment-section .service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Investment Info */
.services-investment-section .investment-info {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.services-investment-section .stock-status {
    margin-bottom: 10px;
}

.services-investment-section .status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.services-investment-section .status-badge.open {
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.services-investment-section .stock-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services-investment-section .price-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.services-investment-section .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.services-investment-section .price-note {
    font-size: 11px;
    color: #888;
    font-style: italic;
}

/* Hover Details Panel */
.services-investment-section .service-hover-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.services-investment-section .service-investment-card:hover .service-hover-details {
    /* opacity: 1;
    visibility: visible;
    transform: translateY(0); */
    /* Remove the default card hover effect */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.services-investment-section .hover-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.services-investment-section .hover-content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--dark-blue);
}

.services-investment-section .hover-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.services-investment-section .hover-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px;
}

.services-investment-section .hover-content ul li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.services-investment-section .hover-content ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.services-investment-section .hover-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
}

.services-investment-section .hover-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Card Footer */
.services-investment-section .service-card-footer {
    padding: 20px 25px 30px;
    border-top: 1px solid #e2e8f0;
}

.services-investment-section .invest-btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px;
    background: var(--gradient-blue);
    border: none;
    transition: all 0.3s ease;
}

.services-investment-section .invest-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

/* Show hover details only when button is hovered or active */
/*.services-investment-section .service-card-footer .invest-btn:hover + .service-hover-details,*/
/*.services-investment-section .service-card-footer .invest-btn:focus + .service-hover-details,*/
/*.services-investment-section .service-hover-details:hover {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*    pointer-events: auto;*/
/*}*/

/* When hovering the details panel itself, keep it visible */
/*.services-investment-section .service-hover-details:hover {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transform: translateY(0);*/
/*}*/

/* Add a small triangle/arrow pointing to the button */
.services-investment-section .service-hover-details::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

/* Ensure the button has relative positioning for z-index stacking */
.services-investment-section .invest-btn {
    position: relative;
    z-index: 101; /* Higher than hover details */
}

/* Ensure hover details don't affect card hover */
.services-investment-section .service-investment-card:hover {
    transform: translateY(-5px);
}

.services-investment-section .service-investment-card:hover .service-hover-details {
    transform: translateY(10px);
}

/* CTA Section */
.services-investment-section .investment-cta {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.services-investment-section .investment-cta h4 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.services-investment-section .investment-cta p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.services-investment-section .investment-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-investment-section .service-hover-details {
        position: relative;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        margin-top: 20px;
        transition: all 0.4s ease;
    }
    
    .services-investment-section .service-investment-card.active .service-hover-details {
        opacity: 1;
        max-height: 500px;
        padding: 25px;
        margin-top: 20px;
    }
    
    .services-investment-section .service-investment-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .services-investment-section {
        padding: 60px 0;
    }
    
    .services-investment-section .service-card-header {
        padding: 25px 20px 15px;
    }
    
    .services-investment-section .service-card-body {
        padding: 0 20px 15px;
    }
    
    .services-investment-section .service-card-footer {
        padding: 15px 20px 25px;
    }
    
    .services-investment-section .investment-cta {
        padding: 30px 20px;
    }
    
    .services-investment-section .investment-cta h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-investment-section .service-name {
        font-size: 1.3rem;
    }
    
    .services-investment-section .price-value {
        font-size: 1.3rem;
    }
    
    .services-investment-section .investment-cta .btn {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Sticky Navbar Styles */
#main-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: white;
    transition: all 0.3s ease;
}

/* Optional: Add shadow when scrolled */
#main-navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Ensure proper spacing */
body {
    padding-top: 0 !important; /* Remove if you have padding-top set elsewhere */
}

.bridge-content-card .feature-content p {
    color: black;
}