/* ========================================
   TRAINING PAGE - PREMIUM DARK THEME REDESIGN
   ======================================== */

/* ========================================
   TRAINING HERO SECTION - DARK THEME
   ======================================== */
.training-hero-modern {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.training-hero-modern .hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.training-hero-modern .hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: heroFloat 25s ease-in-out infinite;
}

.training-hero-modern .hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.training-hero-modern .hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: -100px;
    left: -100px;
    animation-delay: -8s;
}

.training-hero-modern .hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: 50%;
    left: 40%;
    animation-delay: -16s;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(5deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

.training-hero-modern .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.training-hero-modern .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.training-hero-modern .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.training-hero-modern .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.training-hero-modern .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   TRAINING PROGRAMS SECTION - DARK THEME
   ======================================== */
.training-programs-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a3a 100%);
    overflow: hidden;
}

.training-programs-modern .section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.training-programs-modern .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.training-programs-modern .bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -100px;
    right: -150px;
}

.training-programs-modern .bg-shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    bottom: -100px;
    left: -100px;
}

/* Section Header */
.training-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.training-section-header .section-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #ffd700;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.training-section-header .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Remove decorative lines from section titles */
.training-section-header .section-title::before,
.training-section-header .section-title::after {
    display: none;
}

.training-section-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Training Grid */
.training-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Training Category Card */
.training-category-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.training-category-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Category Image */
.category-image-modern {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.category-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.training-category-modern:hover .category-image-modern img {
    transform: scale(1.1);
}

.category-image-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
    pointer-events: none;
}

/* Category Header */
.category-header-modern {
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.95), rgba(13, 13, 43, 0.95));
    padding: 20px 25px;
    position: relative;
}

.category-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 2px;
}

.category-header-modern h2 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.category-header-modern h2 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #ffd700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.training-category-modern:hover .category-header-modern h2 i {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    transform: scale(1.1);
}

/* Category Content */
.category-content-modern {
    padding: 25px;
}

.program-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list-modern li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.program-list-modern li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.program-list-modern li:first-child {
    padding-top: 0;
}

.program-list-modern .check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 0.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.program-details-modern h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.program-details-modern .client {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-style: italic;
}

/* ========================================
   OUR IMPACT SECTION - DARK THEME
   ======================================== */
.training-impact-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3a 0%, #0d0d2b 100%);
    overflow: hidden;
}

.training-impact-modern .impact-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.training-impact-modern .impact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.training-impact-modern .impact-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    top: 10%;
    left: -100px;
}

.training-impact-modern .impact-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    bottom: 10%;
    right: -80px;
}

.training-impact-modern .impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.training-impact-modern .impact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.training-impact-modern .impact-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.training-impact-modern .impact-item:last-child {
    margin-bottom: 0;
}

.training-impact-modern .impact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.training-impact-modern .impact-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CALL TO ACTION SECTION - DARK THEME
   ======================================== */
.training-cta-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
}

.training-cta-modern .cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.training-cta-modern .cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.training-cta-modern .cta-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: -150px;
    left: 20%;
}

.training-cta-modern .cta-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    bottom: -100px;
    right: 10%;
}

.cta-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
}

.cta-content-modern {
    position: relative;
    z-index: 1;
}

.cta-content-modern .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-modern p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-btn-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #000;
}

.cta-image-modern {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.cta-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-image-modern:hover img {
    transform: scale(1.05);
}

.cta-image-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    pointer-events: none;
}

/* ========================================
   MINIMAL TRAINING CARDS
   ======================================== */
.training-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.training-card-minimal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Card Image Wrapper */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.training-card-minimal:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.95), transparent);
    pointer-events: none;
}

/* Card Content Padding */
.training-card-minimal>div:not(.card-image-wrapper) {
    padding: 0 30px;
}

.training-card-minimal h3,
.training-card-minimal .card-tagline,
.training-card-minimal .learn-more-btn {
    margin-left: 0;
    margin-right: 0;
}

.training-card-minimal .card-tagline {
    padding: 0 10px;
}

.training-card-minimal .learn-more-btn {
    margin-bottom: 30px;
}

.training-card-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.training-card-minimal:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.training-card-minimal:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: -40px auto 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: #ffd700;
    transition: all 0.4s ease;
}

.training-card-minimal:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    transform: scale(1.1) rotate(5deg);
}

.training-card-minimal:hover .card-icon-wrapper i {
    color: #000;
}

.training-card-minimal h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.training-card-minimal .card-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.5;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-color: transparent;
    color: #000;
    transform: translateX(5px);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   PROGRAM MODAL POPUP
   ======================================== */
.program-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
    overflow-y: auto;
}

.program-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.program-modal {
    background: linear-gradient(135deg, rgba(26, 26, 58, 0.98), rgba(13, 13, 43, 0.98));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    margin: auto;
}



.program-modal-overlay.active .program-modal {
    transform: scale(1) translateY(0);
}



.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px 35px 35px;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}

body.modal-open .program-modal-overlay {
    overflow-y: auto;
}



.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.modal-title h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.modal-title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.modal-programs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-programs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.modal-programs-list .program-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.2), rgba(0, 206, 201, 0.1));
    border: 1px solid rgba(0, 184, 148, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b894;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-programs-list .program-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.modal-programs-list .program-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

.modal-cta {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    font-size: 0.9rem;
}

.modal-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #000;
}

/* ========================================
   TRAINING VIDEOS SECTION
   ======================================== */
.training-videos-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a3a 100%);
    overflow: hidden;
}

.training-videos-modern .section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.training-videos-modern .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.training-videos-modern .bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    top: -100px;
    left: -100px;
}

.training-videos-modern .bg-shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    bottom: -80px;
    right: -100px;
}

/* Video Dual Container - Side by Side */
.video-dual-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #0a0a1a;
}

.video-panel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.panel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Vignette Overlay */
.video-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            transparent 30%,
            rgba(10, 10, 26, 0.4) 70%,
            rgba(10, 10, 26, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Big Text Overlay */
.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.overlay-text {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 15px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    line-height: 1.1;
    animation: textPulse 4s ease-in-out infinite;
}

.overlay-text:nth-child(2) {
    font-size: 4rem;
    letter-spacing: 20px;
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.2);
    animation-delay: 2s;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Bottom Gradient */
.video-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #0d0d2b 0%, transparent 100%);
    pointer-events: none;
    z-index: 6;
}

/* Center divider line */
.video-dual-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 215, 0, 0.5) 50%,
            transparent 100%);
    z-index: 15;
}

/* Corner accents for full container */
.video-dual-container::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    pointer-events: none;
    z-index: 8;
}

/* ========================================
   OUR EXPERTISE SECTION
   ======================================== */
.our-expertise-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3a 0%, #0d0d2b 100%);
    overflow: hidden;
}

.our-expertise-modern .section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.our-expertise-modern .bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.our-expertise-modern .bg-shape-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 20%;
    right: -100px;
}

.our-expertise-modern .bg-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: 10%;
    left: -80px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.expertise-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.expertise-icon i {
    font-size: 1.2rem;
    color: #ffd700;
}

.expertise-item:hover .expertise-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.expertise-item:hover .expertise-icon i {
    color: #000;
}

.expertise-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .training-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .training-hero-modern {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .training-hero-modern .hero-title {
        font-size: 2.8rem;
    }

    .training-section-header .section-title {
        font-size: 2.3rem;
    }

    .cta-card-modern {
        padding: 40px;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .cta-image-modern {
        min-height: 250px;
        margin-top: 30px;
    }

    .program-modal {
        max-width: 90%;
    }

    .modal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .training-hero-modern {
        padding: 100px 0 50px;
    }

    .training-hero-modern .hero-title {
        font-size: 2.2rem;
    }

    .training-hero-modern .hero-subtitle {
        font-size: 1rem;
    }

    .training-programs-modern,
    .training-impact-modern,
    .training-cta-modern,
    .our-expertise-modern,
    .training-videos-modern {
        padding: 60px 0;
    }

    .training-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stacked videos on mobile */
    .video-dual-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .video-panel {
        aspect-ratio: 9 / 16;
        height: auto;
        max-height: 60vh;
    }

    .video-dual-container::before {
        display: none;
        /* Hide center divider */
    }

    .overlay-text {
        font-size: 3rem;
        letter-spacing: 8px;
    }

    .overlay-text:nth-child(2) {
        font-size: 2rem;
        letter-spacing: 10px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .training-section-header {
        margin-bottom: 40px;
    }

    .training-card-minimal {
        padding: 30px 25px;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .card-icon-wrapper i {
        font-size: 1.6rem;
    }

    .training-impact-modern .impact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cta-card-modern {
        padding: 30px;
    }

    .cta-content-modern h2 {
        font-size: 1.8rem;
    }

    .program-modal {
        max-width: 95%;
        border-radius: 20px;
    }

    .modal-content {
        padding: 35px 25px;
    }

    .modal-header {
        flex-direction: column;
        text-align: center;
    }

    .modal-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .training-hero-modern .hero-title {
        font-size: 1.8rem;
    }

    .training-section-header .section-title {
        font-size: 1.6rem;
    }

    .training-card-minimal h3 {
        font-size: 1.2rem;
    }

    .learn-more-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .modal-close-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-programs-list .program-info h4 {
        font-size: 1rem;
    }
}