/* Additional responsive styles for Training page */
        
        /* Training Program Cards */
        .training-program-card {
            background: var(--bg-light);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow-light);
            transition: all 0.4s ease;
            position: relative;
            margin-bottom: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .training-program-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px var(--shadow-medium);
            border-color: var(--primary-gold);
        }
        
        .program-header {
            position: relative;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .program-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(11, 77, 44, 0.9), rgba(27, 94, 63, 0.9));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding: 2rem;
        }
        
        .program-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }
        
        .program-name {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary-gold);
        }
        
        .program-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .program-content {
            padding: 3rem;
        }
        
        .program-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            text-align: center;
        }
        
        .program-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .feature-section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            color: var(--text-gray);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            color: var(--primary-gold);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        /* Course Details */
        .course-details {
            background: var(--bg-gray);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2rem;
        }
        
        .course-details h4 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary-green);
        }
        
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .course-item {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-gold);
        }
        
        .course-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }
        
        .course-level {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .course-duration {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .course-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        .course-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        
        /* Test Preparation Section */
        .test-prep-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .test-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 15px 50px var(--shadow-light);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .test-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .test-card:hover::before {
            left: 100%;
        }
        
        .test-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px var(--shadow-medium);
        }
        
        .test-logo {
            width: 80px;
            height: 80px;
            background: var(--gradient-green);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--text-light);
            font-weight: 700;
        }
        
        .test-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .test-description {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .test-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .test-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .test-features i {
            color: var(--primary-gold);
            width: 16px;
        }
        
        /* Success Stats */
        .success-stats {
            background: var(--gradient-green);
            color: var(--text-light);
            padding: 4rem 0;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-gold);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Instructor Section */
        .instructor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .instructor-card {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px var(--shadow-light);
            transition: all 0.4s ease;
        }
        
        .instructor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px var(--shadow-medium);
        }
        
        .instructor-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--text-light);
        }
        
        .instructor-info {
            padding: 2rem;
            text-align: center;
        }
        
        .instructor-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .instructor-title {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .instructor-bio {
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .instructor-credentials {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .credential-badge {
            background: var(--bg-gray);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        /* Schedule Section */
        .schedule-table {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px var(--shadow-light);
            margin-top: 3rem;
        }
        
        .schedule-header {
            background: var(--primary-green);
            color: var(--text-light);
            padding: 2rem;
            text-align: center;
        }
        
        .schedule-content {
            padding: 2rem;
        }
        
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .schedule-item {
            background: var(--bg-gray);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-gold);
        }
        
        .schedule-course {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .schedule-time {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .schedule-details {
            font-size: 0.9rem;
            color: var(--text-gray);
        }
         .countries-btn a.btn-outline {
    background: transparent;
    color: #000000;
    border: 2px solid #a1a1a1;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
}
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .program-features {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .training-program-card {
                margin-bottom: 2rem;
            }
            
            .program-content {
                padding: 2rem;
            }
            
            .program-header {
                height: 200px;
            }
            
            .program-name {
                font-size: 1.8rem;
            }
            
            .program-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
            
            .course-details {
                padding: 2rem;
            }
            
            .course-grid {
                grid-template-columns: 1fr;
            }
            
            .test-prep-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .instructor-grid {
                grid-template-columns: 1fr;
            }
            
            .schedule-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .program-content {
                padding: 1.5rem;
            }
            
            .program-name {
                font-size: 1.5rem;
            }
            
            .program-icon {
        width: 55px;
        height: auto;
        font-size: 2rem;
        display: inline-block;
    }
    .test-logo {
    width: 120px;
}
            
            .course-details,
            .test-card,
            .instructor-info {
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .schedule-header,
            .schedule-content {
                padding: 1.5rem;
            }
            .countries-btn {
    display: grid;
    gap: 20px;
}
        }
        .countries-btn .btn-primary {
         margin-right: 0 !important;
         text-align: center;
         align-items: center;
         justify-content: center;
        }
        
        /* Animation for training cards */
        .training-program-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .training-program-card:nth-child(1) { animation-delay: 0.1s; }
        .training-program-card:nth-child(2) { animation-delay: 0.2s; }
        .training-program-card:nth-child(3) { animation-delay: 0.3s; }
        .training-program-card:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Floating elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-shape:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-shape:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .floating-shape:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }