body {
    font-family: 'Outfit', sans-serif;
    background-color: #121212;
    color: #f8f9fa;
}

img {
    max-width: 100%;
    height: auto;
}

.text-gradient {
    background: linear-gradient(90deg, #f8b500, #fceabb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-custom {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #f8b500, #fceabb);
    color: #121212;
    font-weight: 600;
    border: none;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent);
    transform: skewX(-20deg);
    animation: shine-sweep 2.5s infinite;
    pointer-events: none;
}

.btn-primary-custom:hover {
    background: linear-gradient(90deg, #fceabb, #f8b500);
    color: #000;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-c {
    color: #f8b500;
    font-size: 1.5rem;
}

.hero-section {
    padding: 50px 0 60px 0;
    background: radial-gradient(circle at top right, #2a2a2a, #121212);
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: rgb(6, 252, 92);
}

.feature-icon {
    font-size: 2rem;
    color: #f8b500;
    margin-bottom: 1rem;
}

.tab-content {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #333;
    border-top: none;
}

.nav-tabs .nav-link {
    color: #aaa;
    border: 1px solid #333;
    background-color: #1a1a1a;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: rgb(6, 252, 92);
    background-color: #1e1e1e;
    border-color: #333 #333 transparent;
}

.card-custom {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: #444;
}

.trusted-partner-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.trusted-partner-link:hover,
.trusted-partner-link:focus {
    color: #121212 !important;
    background-color: #f8b500 !important;
    border-color: rgb(6, 252, 92) !important;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 30px rgba(248, 181, 0, 0.28), 0 0 18px rgba(6, 252, 92, 0.18) !important;
}

.trusted-partner-link:focus {
    outline: 2px solid rgb(6, 252, 92);
    outline-offset: 4px;
}

.strike-through {
    text-decoration: line-through;
    color: #888;
}

.pricing-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8b500;
}

footer {
    background-color: #0a0a0a;
    border-top: 1px solid #333;
}

.gated-section {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #333;
}

.text-neon {
    color: rgb(6, 252, 92) !important;
}

.btn-outline-neon {
    color: rgb(6, 252, 92);
    border-color: rgb(6, 252, 92);
    background-color: transparent;
}

.btn-outline-neon:hover {
    color: #121212;
    background-color: rgb(6, 252, 92);
}

/* Animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 181, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(248, 181, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 181, 0, 0);
    }
}

.animate-zoom-in {
    opacity: 0;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-pulse {
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, pulseGlow 2s infinite;
    animation-delay: 0.45s, 1.25s;
    opacity: 0;
}

.animate-delay-1 {
    animation-delay: 0.15s;
}

.animate-delay-2 {
    animation-delay: 0.3s;
}

.animate-delay-3 {
    animation-delay: 0.45s;
}

.animate-delay-4 {
    animation-delay: 0.6s;
}

/* Profile Cards */
.profile-card {
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: default;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 252, 92, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgb(6, 252, 92);
    box-shadow: 0 15px 30px rgba(6, 252, 92, 0.15);
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card .icon-box {
    transition: all 0.4s ease;
}

.profile-card:hover .icon-box {
    transform: rotateY(360deg) scale(1.1);
    background-color: rgb(6, 252, 92) !important;
}

.profile-card:hover .icon-box i {
    color: #121212 !important;
}

/* Footer Styles */
.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: rgb(6, 252, 92);
    padding-left: 5px;
}

.btn-neon {
    background-color: rgb(6, 252, 92);
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    background-color: #05d048;
    box-shadow: 0 0 15px rgba(6, 252, 92, 0.4);
    color: #000;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    color: #aaa;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgb(6, 252, 92);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom-link:hover {
    color: rgb(6, 252, 92) !important;
}

.footer-whatsapp-btn {
    transition: all 0.3s ease;
}

.footer-whatsapp-btn:hover {
    border-color: rgb(6, 252, 92) !important;
    background-color: rgba(6, 252, 92, 0.1);
    transform: translateY(-2px);
}

/* Working Professionals Webinar Hero */
.working-webinar-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 92px) 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(248, 181, 0, 0.18), transparent 30%),
        radial-gradient(circle at 12% 18%, rgba(6, 252, 92, 0.12), transparent 26%),
        linear-gradient(135deg, #050505 0%, #141414 55%, #0a0a0a 100%);
}

.working-webinar-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: start;
    gap: clamp(32px, 6vw, 72px);
}

.working-webinar-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    color: rgb(6, 252, 92);
    background: rgba(6, 252, 92, 0.08);
    border: 1px solid rgba(6, 252, 92, 0.28);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.working-webinar-hero__title {
    max-width: 760px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
}

.working-webinar-hero__title span {
    color: #f8b500;
}

.working-webinar-hero__subtitle {
    max-width: 660px;
    margin-bottom: 24px;
    color: #d0d0d0;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    line-height: 1.5;
}

.working-webinar-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.working-webinar-hero__meta div {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: #f8f9fa;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    font-weight: 700;
}

.working-webinar-hero__meta i,
.working-webinar-point i {
    color: rgb(6, 252, 92);
}

.working-webinar-hero__timer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: #d7d7d7;
    font-size: 1.05rem;
}

.working-webinar-hero__timer strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 54px;
    color: #fff;
    background: #000;
    border: 1px solid #f8b500;
    border-radius: 8px;
    box-shadow: 0 0 22px rgba(248, 181, 0, 0.22);
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.working-webinar-hero__cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.working-webinar-hero__button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 64px;
    padding: 18px 30px;
    color: #121212;
    background: linear-gradient(90deg, rgb(6, 252, 92), #f8b500);
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(6, 252, 92, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.working-webinar-hero__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent);
    transform: skewX(-20deg);
    animation: shine-sweep 2.5s infinite;
    pointer-events: none;
}

.working-webinar-hero__button>* {
    position: relative;
    z-index: 1;
}

.webinar-price-old {
    position: relative;
    color: rgba(18, 18, 18, 0.72);
}

.webinar-price-old::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: #dc3545;
    transform: rotate(-10deg);
}

.webinar-price-new {
    padding: 4px 10px;
    color: #fff;
    background: #121212;
    border-radius: 6px;
    box-shadow: 0 0 16px rgba(18, 18, 18, 0.2);
}

.working-webinar-hero__button:hover {
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(6, 252, 92, 0.26);
}

.working-webinar-hero__reviews {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.working-webinar-hero__avatars {
    display: flex;
    padding-left: 12px;
}

.working-webinar-hero__avatars img {
    width: 42px;
    height: 42px;
    margin-left: -12px;
    object-fit: cover;
    border: 2px solid #121212;
    border-radius: 50%;
}

.working-webinar-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    color: #121212;
    background: #fceabb;
    border-radius: 6px;
    font-weight: 800;
}

.working-webinar-hero__rating i {
    color: #000;
}

.working-webinar-hero__reviews p {
    margin: 6px 0 0;
    color: #d7d7d7;
    font-size: 0.98rem;
}

.working-webinar-hero__media {
    position: relative;
    align-self: start;
    min-height: 420px;
}

.working-webinar-hero__media::before {
    content: '';
    position: absolute;
    inset: 12% -3% 5% 22%;
    background: linear-gradient(135deg, #f8b500, #ffe27a);
    border-radius: 34px;
    transform: rotate(-18deg);
    opacity: 0.9;
}

.working-webinar-hero__revenue {
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin-left: auto;
    margin-bottom: 20px;
    color: #fff;
    text-align: right;
}

.working-webinar-hero__revenue strong {
    display: block;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
}

.working-webinar-hero__revenue span {
    color: #d7d7d7;
    font-size: 1.1rem;
}

.working-webinar-video {
    position: relative;
    z-index: 2;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid rgba(6, 252, 92, 0.35);
    border-radius: 18px;
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.55);
    text-decoration: none;
}

.working-webinar-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.working-webinar-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
}

.working-webinar-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ff0000;
    border-radius: 50%;
    font-size: 2.5rem;
    transform: translate(-50%, -50%);
}

.working-webinar-video__bar {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 28px;
    z-index: 3;
    height: 6px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 999px;
}

.working-webinar-video__bar::before {
    content: '';
    display: block;
    width: 28%;
    height: 100%;
    background: rgb(6, 252, 92);
    border-radius: inherit;
}

.working-webinar-video__label {
    position: absolute;
    left: 26px;
    bottom: 46px;
    z-index: 3;
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
}

.working-webinar-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 46px;
}

.working-webinar-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    color: #d7d7d7;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-weight: 600;
}

.working-testimonials-slider {
    margin-top: 46px;
}

.working-testimonials-slider.testimonials-slider-container {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 6px 0 10px;
    overflow: hidden;
}

.working-testimonials-slider .testimonials-swiper {
    overflow: visible;
}

.working-testimonials-slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: linear !important;
}

.working-testimonials-slider .swiper-slide {
    width: min(420px, calc(100vw - 48px));
    height: auto !important;
}

.working-testimonials-slider .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 176px;
    padding: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #111 0%, #1b1b1b 100%);
    border: 1px solid rgba(6, 252, 92, 0.24);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.working-testimonials-slider .testimonial-card:hover {
    transform: none;
    border-color: rgba(6, 252, 92, 0.48);
    box-shadow: 0 18px 42px rgba(6, 252, 92, 0.12);
}

.working-testimonials-slider .quote-icon,
.working-testimonials-slider h5,
.working-testimonials-slider .swiper-button-next,
.working-testimonials-slider .swiper-button-prev,
.working-testimonials-slider .swiper-pagination {
    display: none;
}

.working-testimonials-slider .testimonial-quote {
    order: 1;
    display: -webkit-box;
    margin-bottom: 20px;
    overflow: hidden;
    color: #e8e8e8;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.working-testimonials-slider .testimonial-author {
    order: 2;
}

.working-testimonials-slider .author-img {
    width: 54px;
    height: 54px;
}

.working-testimonials-slider .author-info h6 {
    font-size: 1rem;
    font-weight: 800;
}

.working-testimonials-slider .author-info span {
    color: #b4b4b4;
}

.working-testimonials-slider .star-rating {
    order: 3;
    margin: 10px 0 0 69px;
    color: #f8b500;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.testimonials-slider-container {
    position: relative;
    padding: 0 45px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    color: rgb(6, 252, 92) !important;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #121212 !important;
    background: rgb(6, 252, 92);
    border-color: rgb(6, 252, 92);
    box-shadow: 0 0 15px rgba(6, 252, 92, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-button-prev {
    left: 0 !important;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    background: #555 !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 25px;
    background: rgb(6, 252, 92) !important;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(6, 252, 92, 0.4);
}

.swiper-slide {
    height: auto !important;
}

.swiper-slide .testimonial-card {
    height: 100%;
}

.working-results-section {
    padding: clamp(48px, 7vw, 84px) 0;
    background: #050505;
}

.working-results-header {
    max-width: 820px;
    margin: 0 auto 34px;
}

.working-results-header h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
}

.working-results-header p {
    margin: 0;
    color: #d0d0d0;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.55;
}

.working-results-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.working-result-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-result-item img {
    /* width: 100%; */
    /* max-width: 380px; */
    height: auto;
    border: 1px solid rgba(8, 8, 8, 0.12);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.working-pain-section {
    padding: clamp(52px, 7vw, 92px) 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(6, 252, 92, 0.1), transparent 28%),
        linear-gradient(135deg, #050505 0%, #121212 56%, #070707 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.working-pain-copy h2 {
    max-width: 560px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
}

.working-pain-copy p {
    max-width: 520px;
    margin: 0;
    color: #d0d0d0;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.55;
}

.working-pain-cards {
    display: grid;
    gap: 14px;
}

.pain-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 20px;
    color: #f8f9fa;
    text-align: left;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(6, 252, 92, 0.24);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pain-card:hover,
.pain-card:focus,
.pain-card.active,
.pain-card.selected {
    color: #fff !important;
    background: rgba(6, 252, 92, 0.15) !important;
    border-color: rgba(6, 252, 92, 0.8) !important;
    box-shadow: 0 0 15px rgba(6, 252, 92, 0.25) !important;
    outline: none;
    transform: translateY(-2px);
}

.pain-card.active i,
.pain-card.selected i {
    background: #06fc5c !important;
    color: #000 !important;
    box-shadow: 0 0 10px rgba(6, 252, 92, 0.6);
}

.pain-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #121212;
    background: rgb(6, 252, 92);
    border-radius: 50%;
    font-size: 1.25rem;
}

.pain-card-text {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    font-weight: 700;
}

.working-pain-cta {
    max-width: 860px;
    margin: 22px auto 0;
}

.working-pain-cta h5 {
    margin-bottom: 22px;
    color: #f8b500;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 800;
}

.working-students-section {
    padding: clamp(52px, 7vw, 92px) 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.working-students-copy h2 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
}

.working-students-copy p {
    max-width: 680px;
    margin: 0 auto 34px;
    color: #d0d0d0;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.55;
}

.working-students-tabs {
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px;
    background: linear-gradient(145deg, #111 0%, #191919 100%);
    border: 1px solid rgba(6, 252, 92, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.working-students-nav {
    gap: 12px;
    margin-bottom: 18px;
}

.working-students-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    color: #f8f9fa;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-weight: 800;
}

.working-students-nav .nav-link.active,
.working-students-nav .show>.nav-link {
    color: #121212;
    background: rgb(6, 252, 92);
    border-color: rgb(6, 252, 92);
    box-shadow: 0 0 18px rgba(6, 252, 92, 0.22);
}

.student-video-card,
.student-message-card {
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.student-video-card {
    aspect-ratio: 9 / 16;
}

.student-video-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.student-message-card img {
    display: block;
    width: 100%;
    height: auto;
}

.working-learn-section {
    padding: clamp(52px, 7vw, 92px) 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(248, 181, 0, 0.12), transparent 28%),
        linear-gradient(135deg, #070707 0%, #111 58%, #050505 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.working-learn-header {
    max-width: 900px;
    margin: 0 auto 34px;
}

.working-learn-header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
}

.working-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.working-learn-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 108px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(6, 252, 92, 0.22);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.working-learn-card:hover {
    background: linear-gradient(135deg, rgba(6, 252, 92, 0.12), rgba(248, 181, 0, 0.08));
    border-color: rgba(6, 252, 92, 0.72);
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(6, 252, 92, 0.14), 0 10px 26px rgba(0, 0, 0, 0.28);
}

.working-learn-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #121212;
    background: rgb(6, 252, 92);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 900;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.working-learn-card:hover span {
    color: #fff;
    background: #f8b500;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.34);
}

.working-learn-card p {
    margin: 0;
    color: #f1f1f1;
    font-size: clamp(0.98rem, 1.25vw, 1.12rem);
    font-weight: 700;
    line-height: 1.4;
}

.working-masterclass-section {
    padding: clamp(40px, 5vw, 64px) 0;
}

.working-masterclass-copy h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
}

.working-masterclass-image {
    position: relative;
    width: 100%;
    text-align: center;
}

.working-masterclass-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 991.98px) {

    .working-webinar-hero__grid,
    .working-webinar-points {
        grid-template-columns: 1fr;
    }

    .working-learn-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .working-webinar-hero__media {
        min-height: auto;
    }

    .working-webinar-hero__revenue {
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .working-webinar-hero {
        padding: 38px 0;
    }

    .working-webinar-hero__meta,
    .working-webinar-hero__cta-row,
    .working-webinar-hero__reviews {
        align-items: stretch;
        flex-direction: column;
    }

    .working-webinar-hero__button {
        width: 100%;
        min-height: 56px;
        padding: 16px;
        text-align: center;
    }

    .working-webinar-video__play {
        width: 58px;
        height: 58px;
        font-size: 2rem;
    }

    .working-learn-grid {
        grid-template-columns: 1fr;
    }
}

/* Webinar Sticky CTA */
.webinar-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: linear-gradient(90deg, #050505, #141414);
    border-top: 1px solid rgba(6, 252, 92, 0.45);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.45);
}

.webinar-sticky-cta__inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.4fr) minmax(170px, 0.55fr);
    align-items: center;
    gap: 28px;
    padding: 20px 0;
}

.webinar-sticky-cta__price {
    color: #f8f9fa;
}

.webinar-sticky-cta__old-price {
    color: #9a9a9a;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 700;
    text-decoration: line-through;
    margin-right: 8px;
}

.webinar-sticky-cta__new-price {
    color: rgb(6, 252, 92);
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    font-weight: 800;
}

.webinar-sticky-cta__price p {
    color: #d7d7d7;
    font-size: 1rem;
}

.webinar-sticky-cta__details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
    color: #f8f9fa;
}

.webinar-sticky-cta__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: clamp(1.05rem, 2.2vw, 1.8rem);
    font-weight: 800;
}

.webinar-sticky-cta__item i {
    color: rgb(6, 252, 92);
    font-size: 0.95em;
}

.webinar-sticky-cta__action {
    position: relative;
    justify-self: end;
}

.webinar-sticky-cta__badge {
    position: absolute;
    top: -18px;
    right: 16px;
    background: #f8f9fa;
    color: #121212;
    border: 1px solid rgba(6, 252, 92, 0.7);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.webinar-sticky-cta__button {
    position: relative;
    overflow: hidden;
    min-width: 180px;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    color: #121212;
    background: linear-gradient(90deg, rgb(6, 252, 92), #f8b500);
    border: 1px solid rgba(6, 252, 92, 0.9);
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(6, 252, 92, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.webinar-sticky-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent);
    transform: skewX(-20deg);
    animation: shine-sweep 2.5s infinite;
    pointer-events: none;
}

.webinar-sticky-cta__button>* {
    position: relative;
    z-index: 1;
}

.webinar-sticky-cta__button:hover {
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 252, 92, 0.28);
}

@media (max-width: 991.98px) {
    .webinar-sticky-cta__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
        padding: 16px 0;
        text-align: center;
    }

    .webinar-sticky-cta__details {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .webinar-sticky-cta__action {
        justify-self: center;
    }
}

@media (max-width: 575.98px) {
    .webinar-sticky-cta__inner {
        align-items: stretch;
    }

    .webinar-sticky-cta__details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .webinar-sticky-cta__item {
        justify-content: center;
        gap: 6px;
        font-size: 0.82rem;
    }

    .webinar-sticky-cta__button {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .webinar-sticky-cta__badge {
        right: 14px;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: rgb(6, 252, 92);
    border-color: rgb(6, 252, 92);
}

.resource-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: rgb(6, 252, 92);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background-color: #0d0d0d;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
}

.sidebar-menu .nav-link {
    color: #ccc;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.sidebar-menu .nav-link:hover {
    background-color: #333;
    color: #fff;
}

.sidebar-menu .nav-link.active {
    background-color: rgb(6, 252, 92);
    color: #000;
    font-weight: 600;
}

.sidebar-menu .bi-chevron-right {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.sidebar-menu .nav-link[aria-expanded="true"] .bi-chevron-right {
    transform: rotate(90deg);
}

.submenu {
    padding-left: 1.5rem;
    margin-top: 0.25rem;
}

.submenu .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.order-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: rgb(6, 252, 92);
    transform: translateY(-3px);
}

.status-completed {
    background-color: rgba(6, 252, 92, 0.1);
    color: rgb(6, 252, 92);
    border: 1px solid rgba(6, 252, 92, 0.2);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status-cancelled {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #333 !important;
    }
}

.btn-check:checked+.btn-outline-secondary {
    background-color: rgba(6, 252, 92, 0.1);
    color: rgb(6, 252, 92);
    border-color: rgb(6, 252, 92);
}

/* Premium Portfolio Card Style */
.premium-portfolio-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%), radial-gradient(circle at top right, rgba(248, 181, 0, 0.1), transparent);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-portfolio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 181, 0, 0.05), transparent);
    z-index: 0;
}

.premium-portfolio-card:hover {
    transform: translateY(-8px);
    border-color: #f8b500;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.badge-portfolio {
    border: 1px solid #444;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-portfolio-dark {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.btn-portfolio-dark:hover {
    background-color: #111;
    border-color: #f8b500;
    color: #f8b500;
}

.btn-portfolio-light {
    background-color: #fff;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-portfolio-light:hover {
    background-color: #f8b500;
    color: #000;
    transform: scale(1.05);
}

.portfolio-mockup {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.mockup-screen {
    width: 240px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

.mockup-phone {
    width: 60px;
    height: 110px;
    position: absolute;
    bottom: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    background: #000 !important;
}

@media (max-width: 991px) {
    .premium-portfolio-card {
        text-align: center;
    }

    .premium-portfolio-card .d-flex {
        justify-content: center;
    }

    .premium-portfolio-card .border-end {
        border-end: none !important;
        border-bottom: 1px solid #333;
        padding-bottom: 1rem;
    }
}

/* Testimonials Section */
.testimonial-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: rgb(6, 252, 92);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(6, 252, 92, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(6, 252, 92);
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

.star-rating {
    color: #f8b500;
    margin-bottom: 1rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: rgba(6, 252, 92, 0.1);
}

.bg-gray-900 {
    --bs-bg-opacity: 1;
    background-color: #222222 !important;
}

/* Audience Cards */
.audience-section {
    background: radial-gradient(circle at top right, #242424, #121212 58%);
    color: #f8f9fa;
}

.audience-heading {
    color: #f8f9fa;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.audience-heading span {
    color: #f8b500;
}

.audience-subtitle {
    color: #aaa;
}

.audience-card {
    height: 100%;
    min-height: 255px;
    padding: 42px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: rgb(6, 252, 92);
    box-shadow: 0 22px 42px rgba(6, 252, 92, 0.12);
}

.audience-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.audience-title i {
    flex: 0 0 auto;
    color: rgb(6, 252, 92);
    font-size: 2.6rem;
    line-height: 1;
}

.audience-section .row>div:nth-child(even) .audience-title i {
    color: #f8b500;
}

.audience-title h3 {
    margin: 0;
    color: #f8f9fa;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
}

.audience-card p {
    margin: 0;
    color: #b8b8b8;
    font-size: 1.15rem;
    line-height: 1.55;
}

@media (max-width: 575px) {
    .audience-card {
        min-height: auto;
        padding: 30px;
    }

    .audience-title {
        gap: 16px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 3rem 0;
    background-color: #050505;
    padding-bottom: 250px !important;
}

.faq-section .accordion-item {
    background: #1e1e1e;
    border: 1px solid rgba(6, 252, 92, 0.24);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: rgba(6, 252, 92, 0.48);
    box-shadow: 0 8px 20px rgba(6, 252, 92, 0.12);
}

.faq-section .accordion-button {
    background: #1e1e1e;
    color: #fff;
    font-weight: 600;
    padding: 1rem 1.5rem;
    position: relative;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(6, 252, 92, 0.12);
    box-shadow: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #212529;
    color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(1);
    margin-left: auto;
}

.faq-section .accordion-button:hover {
    background: #212529;
    color: rgb(6, 252, 92);
}

.faq-section .accordion-body {
    background: #121212;
    color: #d0d0d0;
    padding: 1.5rem 1.5rem;
    border-top: 1px solid rgba(6, 252, 92, 0.12);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(6, 252, 92, 0.25);
    border: none;
    outline: none;
}

/* Add subtle animation on scroll */
.faq-section .accordion-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    animation-delay: 0.2s;
}

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

/* YouTube Channel Cards in about.html */
.youtube-card {
    display: flex;
    flex-direction: column;
}

.youtube-card-title {
    width: 100%;
    margin-bottom: 1.5rem;
}

.youtube-thumbnail-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-card:hover .youtube-thumbnail {
    transform: scale(1.05);
}

.youtube-card-desc {
    width: 100%;
    color: #b3b3b3;
    margin-bottom: 1.5rem;
}

/* Ensure symmetric heights for titles and descriptions on grid layouts */
@media (min-width: 768px) {
    .youtube-card-title {
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .youtube-card-desc {
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile responsive padding for Hero Section */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 20px 0 40px 0 !important;
    }

    .hero-section h1 {
        font-size: 1.65rem !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 1.25rem !important;
    }

    .hero-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 2.25rem !important;
    }
}

/* Shining Green Button & Text Animations */
.btn-shine-green {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(6, 252, 92);
    color: #0b1120 !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(6, 252, 92, 0.4);
    cursor: pointer;
}

.btn-shine-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transform: skewX(-20deg);
    animation: shine-sweep 2.5s infinite;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 140%;
    }
}

.btn-shine-green:hover {
    color: #000 !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 25px rgba(6, 252, 92, 0.7);
}

.text-shine-green {
    color: rgb(6, 252, 92);
    background: linear-gradient(90deg, #06fc5c 0%, #ffffff 50%, #06fc5c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


/* Google Review button - Mobile Fix only */
@media (max-width: 480px) {
    .google-review-btn {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .google-review-stars {
        font-size: 0.85rem !important;
        gap: 2px !important;
        margin-right: 8px !important;
    }

    .google-review-text {
        font-size: 0.82rem !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 360px) {
    .google-review-stars {
        font-size: 0.75rem !important;
    }

    .google-review-text {
        font-size: 0.75rem !important;
    }
}