: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: 14px;
    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.2rem;
            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 {
            padding: 6rem 0;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* hidden */
        .service-info {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, margin-top 0.3s ease;
            font-size: 14px;
            opacity: 0;
        }
        
        /* open */
        .service-card.active .service-info {
            max-height: 200px;   /* adjust if content bigger */
            margin-top: 15px;
            opacity: 1;
        }
        
        /* make title clickable */
        .service-title {
            cursor: pointer;
        }

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

        .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);
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .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: #0b0b0b;
    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: 35px 20px;
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;
}

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

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

/* 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;
}