/* Extracted from egitimler.html */
/* KEYFRAMES */
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes floatGlow {
            0% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2); }
            50% { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4); }
            100% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2); }
        }

        /* HERO */
        .page-hero {
            padding: 160px 0 110px;
            background: linear-gradient(-45deg, #051424, #0a2f5e, #031a33, #0047BB);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: -2px;
            border-bottom: 2px solid var(--bg-light);
            z-index: 1;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(0,210,255,0.1) 0%, transparent 70%);
            animation: pulseGlow 8s ease-in-out infinite alternate;
        }
        @keyframes pulseGlow {
            0% { opacity: 0.5; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1.1); }
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -50px; left: 0;
            width: 100%; height: 100px;
            background: var(--bg-light);
            transform: skewY(-2deg);
        }
        .hero-badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: rgba(0,210,255,0.12);
            border: 1px solid rgba(0,210,255,0.3);
            border-radius: 30px;
            color: var(--brand-secondary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: floatGlow 4s ease-in-out infinite;
        }

        .active-programs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        /* ACTIVE PROGRAM (7/24) */
        .active-program {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            text-align: left;
            height: 100%;
        }
        .active-program::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 6px; height: 100%;
            background: linear-gradient(to bottom, var(--brand-primary), var(--brand-secondary));
        }
        .active-program.turquoise::before { background: #00D2FF; }
        .active-program.turquoise .icon-box { background: rgba(0, 210, 255, 0.08) !important; border-color: rgba(0, 210, 255, 0.2) !important; color: #00D2FF !important; }
        .active-program.turquoise .stat-value { color: #00D2FF !important; }
        .active-program.turquoise .btn-outline { border-color: #00D2FF !important; color: #00D2FF !important; }
        .active-program.turquoise .btn-outline:hover { background-color: #00D2FF !important; color: white !important; }
        
        .active-program.orange::before { background: #f26419; }
        .active-program.orange .icon-box { background: rgba(242, 100, 25, 0.08) !important; border-color: rgba(242, 100, 25, 0.2) !important; color: #f26419 !important; }
        .active-program.orange .stat-value { color: #f26419 !important; }
        .active-program.orange .btn-outline { border-color: #f26419 !important; color: #f26419 !important; }
        .active-program.orange .btn-outline:hover { background-color: #f26419 !important; color: white !important; }
        .active-program-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .active-program-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }
        .stat-item {
            background: rgba(0, 71, 187, 0.03);
            border: 1px solid rgba(0, 71, 187, 0.08);
            border-radius: 12px;
            padding: 1rem 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-3px);
            background: rgba(0, 71, 187, 0.06);
            border-color: rgba(0, 71, 187, 0.15);
            box-shadow: 0 4px 10px rgba(0, 71, 187, 0.05);
        }
        .stat-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--brand-primary);
            line-height: 1;
        }
        .stat-value svg {
            width: 24px !important;
            height: 24px !important;
        }
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-main);
            font-weight: 600;
            line-height: 1.3;
        }
        .program-btn-wrapper {
            margin-top: auto;
            width: 100%;
        }
        .program-btn-wrapper .btn {
            width: 100%;
            justify-content: center;
        }
        @media (max-width: 992px) {
            .active-programs-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .active-program { padding: 2rem 1.5rem; }
            .active-program-stats { grid-template-columns: 1fr; }
        }

        /* PROGRAM STRUCTURES */
        .structures-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-top: 3rem;
        }
        .structure-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .structure-card .btn {
            margin-top: auto;
        }
        .structure-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 71, 187, 0.15);
            border-color: rgba(0, 71, 187, 0.2);
        }
        .structure-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-dark); }
        .structure-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
        
        .structure-card .icon-box {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .structure-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
            background-color: var(--brand-primary);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(0, 71, 187, 0.3);
        }

        .structure-details {
            list-style: none;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .structure-details li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .structure-details li:last-child { border: none; }
        .structure-details li strong { color: var(--text-dark); margin-right: 0.5rem; }
        
        .structure-features {
            list-style: none;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 12px;
        }
        .structure-features li {
            padding: 0.3rem 0 0.3rem 1.5rem;
            position: relative;
        }
        .structure-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--brand-secondary);
            font-weight: bold;
        }

        /* UPCOMING TRAININGS */
        .upcoming-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .upcoming-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
            text-align: center;
            position: relative;
            transition: transform 0.4s ease;
        }
        .upcoming-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(0, 71, 187, 0.15); border-color: rgba(0, 71, 187, 0.2); }
        .upcoming-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #f26419, #f6a02b);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(242,100,25,0.3);
        }
        .upcoming-card h4 { font-size: 1.15rem; margin: 1.5rem 0 0.75rem; color: var(--text-dark); }
        .upcoming-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

        /* DECORATIONS */
        .bg-light { position: relative; overflow: hidden; }
        .bg-light::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(0,210,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }
        .bg-dark { position: relative; overflow: hidden; }
        .bg-dark::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(0,210,255,0.15), transparent 60%);
            pointer-events: none;
        }

        @media (max-width: 992px) {
            .upcoming-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .structures-grid, .upcoming-grid { grid-template-columns: 1fr; }
            .active-program { padding: 3rem 1.5rem; }
            .program-highlight-bar { grid-template-columns: 1fr; }
        }
@media (max-width: 768px) {
    .page-hero { padding: 85px 0 50px; }
}
