:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #151515;
            --bg-card: #1a1a1a;
            --accent-red: #ff3b3b;
            --accent-green: #00ff88;
            --accent-gold: #ffc107;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --gradient-bull: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
            --gradient-bear: linear-gradient(135deg, #ff3b3b 0%, #cc0000 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Animated background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 59, 59, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        /* Navbar */
        .navbar {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--accent-red), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--text-primary) !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-community {
            background: var(--gradient-bull);
            color: var(--bg-primary);
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        }

        .btn-community:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 30px rgba(0, 255, 136, 0.5);
        }

        /* Hero Section */
.hero {
    padding: 0px 0 80px;
    background: linear-gradient(135deg, #0f172a, #0b1220);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #00ff88;
}

/* BADGES */
.registration-badges {
    margin-bottom: 25px;
}

.badge-item {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    padding: 8px 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #00ff88;
    color: #000;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #00cc6a;
    color: #000;
}

/* TAGLINE */
.tagline {
    margin-top: 10px;
    color: #cbd5e1;
    font-size: 13px;
    max-width: 500px;
}

/* IMAGE */
.hero-image-wrapper {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}


        .registration-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .badge-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 1px;
            backdrop-filter: blur(10px);
        }

        .btn-started {
            background: var(--accent-red);
            color: white;
            font-weight: 700;
            padding: 1rem 3rem;
            border-radius: 30px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(255, 59, 59, 0.4);
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-started:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 59, 59, 0.6);
        }

        .bull-bear-container {
            position: relative;
            height: 400px;
            animation: fadeInRight 1s ease 0.8s both;
        }

        .bull-bear {
            position: absolute;
            font-size: 15rem;
            opacity: 0.8;
            filter: drop-shadow(0 0 30px currentColor);
            animation: float 3s ease-in-out infinite;
        }

        .bear {
            color: var(--accent-red);
            left: -20%;
            top: 0;
        }

        .bull {
            color: var(--accent-green);
            right: -20%;
            top: 0;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .tagline {
            font-size: 1.1rem;
            color: var(--text-secondary);
            font-weight: 400;
            animation: fadeInUp 1s ease 0.8s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: var(--bg-secondary);
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 4rem;
            text-align: center;
            letter-spacing: 2px;
        }

        /* SECTION */
.about-section {
    background: #0f172a;
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* PROFILE CARD */
.profile-card {
    background: #111827;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}

/* NAME */
.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* TITLE */
.profile-title {
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 20px;
}

/* EXPERIENCE */
.experience-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.experience-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.experience-list i {
    color: #00ff88;
}

/* BUTTONS */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary-custom {
    background: #00ff88;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #00cc6a;
    color: #000;
}

.btn-outline-custom {
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: #00ff88;
    color: #000;
}

/* IMAGE */
.image-card {
    padding: 10px;
}

.profile-image {
    width: 100%;
    max-width: 440px;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}


        .experience-list {
            list-style: none;
            padding: 0;
        }

        .experience-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .experience-list li i {
            color: var(--accent-green);
            font-size: 1.2rem;
        }

        .action-buttons {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-secondary-action {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary-action:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-green);
            color: var(--text-primary);
        }

        /* Services Section */
        .services-section {
    position: relative;
    z-index: 1;
}

/* CARD */
.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /*height: 100%;*/
    position: relative;
    overflow: hidden;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}
.services-section .row {
    align-items: flex-start !important;
}

/* Hover only when NOT opened */
.service-card:not(.active):hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
}

/* ICON */
.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

/* TITLE */
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    cursor: pointer;
}

/* ============================= */
/* ACCORDION */
/* ============================= */

/* hidden */
.service-info {
    /*height: 0;*/
    /*overflow: hidden;*/
    /*opacity: 0;*/
    transform: translateY(-10px);
    /*transition: height 0.9s ease, opacity 0.4s ease, transform 0.4s ease;*/
    transition: height 0.1s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* open look */
.service-card.active .service-info {
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

/* ============================= */
/* SCROLL ANIMATION */
/* ============================= */

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}


        .disclaimer {
            background: var(--accent-red);
            color: white;
            padding: 1rem;
            text-align: center;
            font-size: 0.9rem;
            margin-top: 3rem;
            border-radius: 10px;
        }

        /* Community Section */
        .community-section {
            padding: 6rem 0;
            position: relative;
            z-index: 1;
        }

        .community-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
        }

        .community-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .community-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .community-list li {
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .community-list li i {
            color: var(--accent-green);
        }

        .btn-join {
            width: 100%;
            padding: 1rem;
            border-radius: 25px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-telegram {
            background: #0088cc;
            color: white;
        }

        .btn-whatsapp {
            background: #25d366;
            color: white;
        }

        .btn-telegram:hover,
        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Complaints Table */
        .complaints-section {
            padding: 6px 0;
            background: var(--bg-secondary);
            position: relative;
            z-index: 1;
        }

        .table-container {
            /* background: var(--bg-card); */
            /* border-radius: 20px; */
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .custom-table {
            margin: 0;
        }

        .custom-table thead {
            background: var(--accent-gold);
            color: var(--bg-primary);
        }
        .custom-table thead th {
          background: #c28a43;
          color: #fff;
          padding: 16px 12px;
          font-size: 14px;
          font-weight: 600;
          border: 1px solid #2a2a2a;
        }

        .custom-table th {
            padding: 1.5rem 1rem;
            font-weight: 700;
            border: none;
        }

        .custom-table tbody td {
          padding: 14px 12px;
          font-size: 14px;
          border: 1px solid #222;
          color: #eaeaea;
        }

        .custom-table tbody tr {
            background: var(--bg-card);
            transition: all 0.3s ease;
        }

        .custom-table tbody tr:hover {
            background: rgba(255, 193, 7, 0.1);
        }

        /* Footer */
        .footer {
            padding: 4rem 0 2rem;
            background: var(--bg-primary);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 1;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-green);
            padding-left: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-green);
            color: var(--bg-primary);
            transform: translateY(-3px);
        }

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

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .bull-bear {
                font-size: 8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .navbar-brand {
                font-size: 1.3rem;
            }
        }
.profile-carousel {
    position: relative;
}

/* navigation wrapper */
.carousel-nav {
    position: absolute;
    top: -60px;   /* upar shift */
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* buttons */
.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: #000;
}
.certification-section {
    background: #171616;
    color: #fff;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
}

.section-title p {
    color: #bfbfbf;
    margin-top: 10px;
}

.section-title .icon i {
    font-size: 32px;
    color: #d4a017;
}

/* CARD */
.cert-card {
    background: #111;
    /*padding: 30px 30px;*/
    border-radius: 100px;
    transition: 0.3s;
    height: 100%;
}

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

/* IMAGE */
.cert-card img {
    /*background: #fff;*/
    padding: 15px;
    border-radius: 12px;
    max-width: 150px;
    /*margin-bottom: 20px;*/
    /*box-shadow: 0 0 15px rgba(212, 160, 23, 0.6);*/
    /*height: 135px;*/
}

/* TITLE */
.cert-card h5 {
    margin: 15px 0 20px;
    font-weight: 600;
}

/* BUTTON BADGE */
.badge-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(90deg, #3a2b0f, #6b4b16);
    color: #d4a017;
    font-weight: 600;
    font-size: 14px;
}

.badge-btn i {
    margin-right: 6px;
}

    .telegram-modal {
    background: linear-gradient(135deg, #0d0f10 60%, #0f1f1a 100%);
    border-radius: 30px;
    border: 1.5px solid rgba(212, 168, 106, 0.6);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

/* Left green glow effect */
.telegram-modal::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 170, 0.25) 0%, transparent 70%);
    filter: blur(80px);
}

/* Close button */
.custom-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
}

/* Heading */
.modal-heading {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Description */
.modal-description {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

/* Button */
.join-btn {
    background: linear-gradient(135deg, #d4a86a 0%, #c8934f 100%);
    color: #ffffff;
    border: none;
    padding: 20px 25px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 168, 106, 0.4);
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 168, 106, 0.5);
}

.arrow {
    margin-left: 10px;
    font-size: 20px;
}

/* Dark backdrop */
.modal-backdrop.show {
    background: #000;
    opacity: 0.9;
}

        
        /* Demo trigger button */
        .trigger-btn {
            background: linear-gradient(135deg, #d4a86a 0%, #c8934f 100%);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
        }
        
        .trigger-btn:hover {
            background: linear-gradient(135deg, #e0b376 0%, #d4a05b 100%);
            color: white;
        }
        
        .combo-card::before {
            background: linear-gradient(90deg, #00d4ff, #00ff88);
        }

        .combo-card:hover {
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
            border-color: #00ff88;
        }

        .service-title {
            color: #ffd700;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .combo-card .service-title {
            color: #00ff88;
        }

        .service-subtitle {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .price-section {
            margin: 15px 0;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            border-left: 3px solid #ffd700;
        }

        .combo-card .price-section {
            border-left-color: #00ff88;
        }

        .price-label {
            color: #888;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .price {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            line-height: 1;
            text-align: center;
        }

        .price-currency {
            font-size: 1.5rem;
            color: #ffd700;
        }

        .combo-card .price-currency {
            color: #00ff88;
        }
        .features-list {
            list-style: none;
            padding: 0;
            margin: 12px 0;
        }

        .features-list li {
            color: #ccc;
            padding: 5px 0;
            border-bottom: 1px solid #2a2a2a;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list i {
            color: #ffd700;
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .combo-card .features-list i {
            color: #00ff88;
        }

        @media (max-width: 768px) {
            .pricing-card {
                margin-bottom: 30px;
            }
        }
        
        
        