/* Genel ve Head Stilleri */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif}
body{background-color:#0c1424;color:#fff;overflow-x:hidden}

/* Navbar Stilleri */
:root{--primary:#2d4a65;--primary-light:#2d4a651a;--primary-dark:#1e3550;--text:#333;--white:#fff;--gray-light:#f5f7fa;--gray:#e6e9ed;--shadow:0 4px 12px #00000014;--shadow-hover:0 8px 18px #0000001f;--transition:all .3s ease;--font-primary:Poppins,sans-serif}
.navbar{display:flex;justify-content:space-between;align-items:center;padding:1rem 6%;height:90px;background-color:#f8f9fa;box-shadow:var(--shadow);position:sticky;top:0;z-index:1000;transition:var(--transition);border-bottom:1px solid var(--gray);font-family:var(--font-primary)}
.navbar.scrolled{padding:.8rem 6%;height:80px;box-shadow:var(--shadow-hover)}
.logo img{width:25%;height:auto;object-fit:cover}
.nav-container{display:flex;align-items:center;margin-left:auto}
.nav-links{display:flex;list-style:none;margin:0 1.5rem 0 0;padding:0}
.nav-links li{margin:0 .2rem}
.nav-links a{color:var(--text);text-decoration:none;font-weight:500;text-transform:uppercase;font-size:.9rem;letter-spacing:.5px;padding:.8rem;transition:var(--transition)}
.nav-links a:hover,.nav-links a.active{color:var(--primary)}
.auth-buttons{display:flex;gap:.8rem}
.auth-button{display:flex;align-items:center;justify-content:center;padding:.8rem 1.6rem;border-radius:6px;text-decoration:none;font-weight:500;font-size:.95rem;transition:var(--transition)}
.auth-button i{margin-right:.6rem}
.login-btn{color:var(--primary);border:2px solid var(--gray);background-color:transparent}
.login-btn:hover{background-color:var(--primary-light);border-color:var(--primary);transform:translateY(-2px)}
.signup-btn{color:var(--white);background-color:var(--primary);border:2px solid var(--primary)}
.signup-btn:hover{background-color:var(--primary-dark);transform:translateY(-2px)}
.user-menu{position:relative}.user-menu-trigger{display:flex;align-items:center;padding:.6rem 1.4rem .6rem .8rem;border-radius:50px;cursor:pointer;color:var(--primary);border:2px solid var(--gray);background:transparent;transition:var(--transition)}
.user-menu-trigger:hover{background-color:var(--primary-light);border-color:var(--primary);transform:translateY(-2px)}
.avatar{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background-color:var(--primary);color:var(--white);font-weight:700;margin-right:.8rem;font-size:1rem}
.username{margin-right:.5rem;font-weight:500}
.user-dropdown{position:absolute;top:120%;right:0;background-color:var(--white);border-radius:8px;box-shadow:var(--shadow);width:200px;opacity:0;visibility:hidden;transform:translateY(10px);transition:var(--transition);z-index:100;overflow:hidden}
.user-menu:hover .user-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.user-dropdown a{display:flex;align-items:center;padding:1rem 1.5rem;color:var(--text);text-decoration:none;transition:var(--transition);border-left:3px solid transparent}
.user-dropdown a:hover{background-color:var(--primary-light);border-left-color:var(--primary);color:var(--primary)}
.user-dropdown a i{margin-right:1rem;color:var(--primary);width:22px;text-align:center}
.language-select{margin-right:15px}
.language-dropdown{appearance:none;background-color:transparent;color:var(--primary);border:2px solid var(--gray);border-radius:6px;padding:.6rem 2rem .6rem 1rem;font-family:var(--font-primary);font-weight:500;font-size:.95rem;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232d4a65' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .7rem center;transition:var(--transition);min-width:90px}
.language-dropdown:hover{background-color:var(--primary-light);border-color:var(--primary);transform:translateY(-2px)}
.hamburger{display:none;flex-direction:column;justify-content:space-between;width:30px;height:21px;cursor:pointer;z-index:100}
.hamburger span{display:block;height:3px;width:100%;background-color:var(--primary);border-radius:3px;transition:var(--transition)}
@media screen and (max-width: 768px){.hamburger{display:flex}.navbar{height:80px;padding:1rem 5%}.navbar.scrolled{height:70px;padding:.8rem 5%}.nav-container{position:fixed;top:0;right:-100%;height:100vh;width:85%;max-width:420px;background-color:var(--white);flex-direction:column;justify-content:flex-start;padding:6rem 2.5rem;box-shadow:-5px 0 20px #00000026;transition:right .4s ease;z-index:90;border-left:1px solid var(--gray)}.nav-container.active{right:0}.nav-links{flex-direction:column;margin-right:0;margin-bottom:2rem;width:100%}.nav-links li{margin:.8rem 0;width:100%}.nav-links a{display:block;font-size:1.1rem;padding:.8rem 0}.auth-buttons{flex-direction:column;width:100%}.auth-button{width:100%;margin-bottom:.8rem}.user-menu{width:100%}.user-menu-trigger{width:100%;justify-content:center;padding:.8rem}.user-dropdown{position:static;box-shadow:none;width:100%;margin-top:.5rem;border:1px solid var(--primary-light);border-radius:4px}.language-select{margin:15px 0;width:100%}.language-dropdown{width:100%;text-align:center}}

/* Hero Section Stilleri */
@media (min-width: 768px){head::after{content:'';position:absolute;width:0;height:0;overflow:hidden;z-index:-1;background-image:url("assets/hero/hero.webp")}}
.hero{position:relative;width:100%;height:100vh;min-height:600px;overflow:hidden;color:#fff;display:flex;align-items:center;justify-content:center}
.background-image{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:1;filter:brightness(0.5);max-width:1920px;max-height:1080px;margin:0 auto;right:0}
.hero-content{position:relative;z-index:2;max-width:900px;margin:0 auto;padding:30px;text-align:center;width:100%;height:100%}
.button-container{position:absolute;bottom:17%;left:0;right:0;display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
.simulation-button,.watch-lesson-button,.watch-stream-button{display:flex;align-items:center;text-decoration:none;font-weight:600;transition:all .3s ease;gap:10px;z-index:10;background-color:#00000080;border:2px solid #fff;color:#fff;padding:16px 30px;border-radius:50px;font-size:16px}
.simulation-button:hover,.watch-lesson-button:hover,.watch-stream-button:hover{background-color:#ffffff1a;transform:translateY(-2px)}
.watch-lesson-button{border-color:#f2c94c}.watch-lesson-button:hover{border-color:#fff;background-color:#f2c94c1a}
.watch-stream-button{border-color:#ff6b6b}.watch-stream-button:hover{border-color:#fff;background-color:#ff6b6b1a}
.arrow-icon,.play-icon,.stream-icon{background-color:#fff;color:#000;width:32px;height:32px;border-radius:50%;font-size:18px;display:flex;align-items:center;justify-content:center;font-weight:700}
.play-icon{background-color:#f2c94c;color:#000}
.stream-icon{background-color:#ff6b6b;color:#000;font-size:16px}
.simulation-text,.lesson-text,.stream-text{white-space:nowrap}
.popup{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000000d9;z-index:1000;overflow:auto;align-items:center;justify-content:center}
.popup-content{position:relative;background-color:#1a1a1a;padding:15px;width:70%;max-width:1000px;border-radius:8px;box-shadow:0 0 20px #00000080}
.language-popup-content{max-width:600px;padding:30px;text-align:center}
.language-popup-content h2{color:#fff;margin-bottom:25px;font-size:28px;font-weight:600}
.language-buttons{display:flex;justify-content:center;flex-wrap:wrap;gap:20px;margin-top:30px}
.language-button{display:flex;flex-direction:column;align-items:center;background-color:#2a2a2a;border:2px solid #3a3a3a;border-radius:12px;padding:20px 30px;color:#fff;text-decoration:none;transition:all .3s ease;min-width:120px}
.language-button:hover{background-color:#3a3a3a;transform:translateY(-5px);box-shadow:0 5px 15px #0000004d;border-color:#f2c94c}
.flag-icon{font-size:32px;margin-bottom:10px}
.close-popup{position:absolute;top:5px;right:15px;color:#fff;font-size:28px;font-weight:700;cursor:pointer;z-index:1001;transition:color .3s;text-shadow:0 0 5px #000000b3}
.close-popup:hover{color:#ff4d4d}
.video-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden}
.video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:4px}
@media (max-width: 992px){.simulation-button,.watch-lesson-button,.watch-stream-button{padding:15px 25px;font-size:15px}.language-buttons{gap:15px}.language-button{padding:15px 25px}.button-container{gap:15px}}
@media (max-width: 768px){.button-container{bottom:15%;flex-direction:column;align-items:center;gap:15px}.simulation-button,.watch-lesson-button,.watch-stream-button{padding:12px 25px;font-size:14px;width:80%;max-width:280px;justify-content:center}.language-buttons{flex-direction:column;align-items:center}.language-button{width:80%}}
@media (max-width: 480px){.button-container{bottom:13%}.simulation-button,.watch-lesson-button,.watch-stream-button{padding:10px 20px;font-size:13px}.language-popup-content{width:90%;padding:20px}.language-button{width:100%}}
@media (max-width: 360px){.simulation-button,.watch-lesson-button,.watch-stream-button{width:85%;padding:10px 15px;font-size:12px}}

/* About Section Stilleri */
.youtube-playlist-btn {display: inline-flex;align-items: center;gap: 8px;padding: 10px 20px;background-color: #ff0000;color: white;text-decoration: none;border-radius: 5px;font-weight: bold;margin-top: 10px;transition: background-color 0.3s;}
.youtube-playlist-btn:hover {background-color: #cc0000;}
.youtube-playlist-btn i {font-size: 16px;}
.about-section{padding:80px 0;background-color:#f8f9fa}.about-container{max-width:1140px;margin:0 auto;padding:0 20px;text-align:center}
.about-title{font-size:16px;font-weight:600;letter-spacing:2px;color:#1a3c5f;text-transform:uppercase;margin-bottom:10px}
.about-subtitle{font-size:36px;font-weight:700;color:#222;margin-bottom:20px}.divider{width:60px;height:3px;background-color:#1a3c5f;margin:0 auto 30px}
.about-description{font-size:18px;line-height:1.8;color:#555;max-width:800px;margin:0 auto 50px}
.more-info-button{display:inline-block;background-color:#1a3c5f;color:#fff;padding:12px 30px;border-radius:4px;text-decoration:none;font-weight:600;font-size:16px;letter-spacing:.5px;transition:background-color .3s ease}
.more-info-button:hover{background-color:#0e2a4a}
.free-training-highlight,.certification-highlight,.streaming-highlight{border-radius:10px;padding:30px;margin:0 auto 30px;max-width:800px;display:flex;align-items:center;text-align:left;box-shadow:0 10px 25px #0000001f;position:relative;overflow:hidden;z-index:1;border:3px solid}
.free-training-highlight::before,.certification-highlight::before,.streaming-highlight::before{content:'';position:absolute;top:0;left:0;width:100%;height:6px;background-size:200% 100%;z-index:2}
.free-training-highlight{background:linear-gradient(135deg,#28a74526 0%,#28a74540 100%);border-color:#28a745}.free-training-highlight::before{background:linear-gradient(90deg,#28a745,#5ad078,#28a745)}
.free-training-icon-wrapper{margin-right:30px;flex-shrink:0}.free-training-icon{background-color:#28a745;width:70px;height:70px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 5px 15px #28a74566}
.free-training-icon .icon{color:#fff;font-size:32px;filter:drop-shadow(0 2px 4px #0000004d)}.free-training-content{flex:1}
.free-training-title{font-size:20px;font-weight:800;color:#28a745;margin:0 0 12px;letter-spacing:.7px;text-shadow:0 1px 2px #0000001a;text-transform:uppercase}
.free-training-text{font-size:18px;line-height:1.6;color:#333;margin:0;font-weight:600}
.free-training-tag{position:absolute;top:0;right:0;width:120px;height:120px;overflow:hidden;z-index:3}
.free-training-tag span{position:absolute;display:block;width:160px;padding:8px 0;background-color:#28a745;box-shadow:0 5px 10px #0000001a;color:#fff;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;transform:rotate(45deg);right:-40px;top:30px;letter-spacing:1px}
.certification-highlight{background:linear-gradient(135deg,#1a3c5f26 0%,#1a3c5f40 100%);border-color:#1a3c5f;margin-bottom:50px}.certification-highlight::before{background:linear-gradient(90deg,#1a3c5f,#3a6fa2,#1a3c5f)}
.certification-badge-wrapper{margin-right:30px;flex-shrink:0}.certification-badge{background-color:#1a3c5f;width:70px;height:70px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 5px 15px #1a3c5f66}
.certification-icon{color:#fff;font-size:32px;filter:drop-shadow(0 2px 4px #0000004d)}.certification-content{flex:1}
.certification-title{font-size:20px;font-weight:800;color:#1a3c5f;margin:0 0 12px;letter-spacing:.7px;text-shadow:0 1px 2px #0000001a;text-transform:uppercase}
.certification-text{font-size:18px;line-height:1.6;color:#333;margin:0;font-weight:600}
.certification-ribbon{position:absolute;top:0;right:0;width:120px;height:120px;overflow:hidden;z-index:3}
.certification-ribbon span{position:absolute;display:block;width:160px;padding:8px 0;background-color:#e8b923;box-shadow:0 5px 10px #0000001a;color:#1a3c5f;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;transform:rotate(45deg);right:-40px;top:30px;letter-spacing:1px}
.streaming-highlight{background:linear-gradient(135deg,#dc354526 0%,#dc354540 100%);border-color:#dc3545;margin-bottom:50px}.streaming-highlight::before{background:linear-gradient(90deg,#dc3545,#f56565,#dc3545)}
.streaming-icon-wrapper{margin-right:30px;flex-shrink:0}.streaming-icon{background-color:#dc3545;width:70px;height:70px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 5px 15px #dc354566}
.streaming-icon .icon{color:#fff;font-size:32px;filter:drop-shadow(0 2px 4px #0000004d)}.streaming-content{flex:1}
.streaming-title{font-size:20px;font-weight:800;color:#dc3545;margin:0 0 12px;letter-spacing:.7px;text-shadow:0 1px 2px #0000001a;text-transform:uppercase}
.streaming-text{font-size:18px;line-height:1.6;color:#333;margin:0;font-weight:600}
.streaming-tag{position:absolute;top:0;right:0;width:120px;height:120px;overflow:hidden;z-index:3}
.streaming-tag span{position:absolute;display:block;width:160px;padding:8px 0;background-color:#dc3545;box-shadow:0 5px 10px #0000001a;color:#fff;font-size:14px;font-weight:700;text-align:center;text-transform:uppercase;transform:rotate(45deg);right:-40px;top:30px;letter-spacing:1px}
@media (max-width: 992px){.about-subtitle{font-size:32px}}
@media (max-width: 768px){.about-section{padding:60px 0}.certification-highlight,.free-training-highlight,.streaming-highlight{flex-direction:column;text-align:center;padding:40px 20px 25px}.certification-badge-wrapper,.free-training-icon-wrapper,.streaming-icon-wrapper{margin:0 0 20px}.certification-title,.free-training-title,.streaming-title{margin-bottom:15px}.certification-ribbon,.free-training-tag,.streaming-tag{width:100px;height:100px}.certification-ribbon span,.free-training-tag span,.streaming-tag span{width:140px;padding:6px 0;font-size:12px;right:-35px;top:25px}}
@media (max-width: 480px){.about-subtitle{font-size:28px}.about-description{font-size:16px}.more-info-button{padding:10px 20px;font-size:14px}}

/* Partners Section Stilleri */
/* ======================== */
/* == Partners Section   == */
/* ======================== */
.partners-section {
    padding: 80px 20px;
    background-color: #0c1424; /* Koyu arkaplan */
}

/* Partner bölümü için başlıklar (opsiyonel, gerekirse kullanın) */
.partners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.partners-section .section-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.partners-section .section-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.partners-section .divider {
    width: 60px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto;
}
/* Başlık stilleri sonu */


.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.partner-card {
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-card .card-top {
    min-height: 200px; /* Logo ve başlık için sabit bir alan */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.partner-card .partner-logo {
    max-height: 120px; /* Logonun maksimum yüksekliği */
    width: auto;
    max-width: 100%; /* Kart genişliğini aşmasını engeller */
    object-fit: contain; /* En/boy oranını korur */
    margin-bottom: 1.5rem;
}

.partner-card .partner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.partner-card .partner-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.partner-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.partner-card .feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2b5bad;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.partner-card .feature-icon i {
    font-size: 0.8rem;
}

.partner-card .feature-text {
    flex: 1;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .partners-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}


@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
    }
    .partners-container {
        grid-template-columns: 1fr;
    }
}

/* Learning Framework Stilleri */
.learning-framework-section{padding:100px 0;background-color:#fff;position:relative;overflow:hidden;width:100%}
.framework-container{max-width:1400px;margin:0 auto;display:flex;align-items:center;gap:6rem;position:relative;z-index:1;padding:0 40px}
.framework-image-container{flex:1;overflow:hidden;box-shadow:0 10px 30px #0000001a;max-width:600px;min-width:450px}
.framework-image{width:100%;height:auto;display:block;transition:transform .3s ease}
.framework-image:hover{transform:scale(1.03)}
.framework-content{flex:1;max-width:650px}
.framework-title{font-size:38px;font-weight:700;color:#0c1424;margin-bottom:30px}
.framework-description{font-size:18px;line-height:1.8;color:#555;text-align:justify}
@media screen and (max-width: 1200px){.framework-container{gap:4rem}.framework-image-container{min-width:400px}.framework-title{font-size:34px}}
@media screen and (max-width: 992px){.framework-container{flex-direction:column;gap:3.5rem;text-align:center}.framework-image-container{width:80%;min-width:unset;margin:0 auto}.framework-content{max-width:90%}.framework-description{text-align:justify}}
@media screen and (max-width: 768px){.learning-framework-section{padding:80px 0}.framework-title{font-size:30px}.framework-description{font-size:16px}.framework-image-container{width:90%}}
@media screen and (max-width: 480px){.learning-framework-section{padding:60px 0}.framework-title{font-size:26px}.framework-image-container{width:100%}}

/* Metrics Section Stilleri */
.success-metrics-section{padding:80px 20px;background:#f8fafc;position:relative;overflow:hidden}
.metrics-container{max-width:1200px;margin:0 auto;text-align:center;position:relative;z-index:1}
.metrics-title{font-size:42px;font-weight:700;color:#1e293b;margin-bottom:20px;letter-spacing:-.025em}
.metrics-subtitle{font-size:20px;line-height:1.6;color:#64748b;max-width:700px;margin:0 auto 70px;font-weight:400}
.metrics-grid{display:flex;justify-content:center;align-items:stretch;gap:40px;flex-wrap:wrap}
.metric-card{background:#fff;border-radius:16px;padding:50px 40px;min-width:280px;flex:1;max-width:320px;transition:all .4s cubic-bezier(0.4,0,0.2,1);position:relative;overflow:hidden;box-shadow:0 4px 20px #00000014;border:1px solid #e2e8f0}
.metric-card::before{content:'';position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,#3b82f6,#1d4ed8,#1e40af);background-size:200% 100%;animation:shimmer 4s ease-in-out infinite}
.metric-card:hover{transform:translateY(-8px);box-shadow:0 15px 35px #0000001f}
.metric-number{font-size:80px;font-weight:800;color:#1e293b;line-height:1;margin-bottom:20px;text-shadow:0 2px 4px #0000001a;font-family:'Georgia',serif}
.metric-divider{width:80px;height:4px;background:linear-gradient(90deg,#3b82f6,#1d4ed8);margin:0 auto 25px;border-radius:2px}
.metric-label{font-size:18px;font-weight:600;color:#475569;letter-spacing:1.5px}
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
@keyframes countUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.metric-number.animated{animation:countUp .8s cubic-bezier(0.4,0,0.2,1)}
@media (max-width: 1024px){.metrics-grid{gap:30px}.metric-card{min-width:250px;max-width:280px}}
@media (max-width: 768px){.success-metrics-section{padding:60px 20px}.metrics-grid{flex-direction:column;align-items:center;gap:25px}.metrics-title{font-size:36px}.metrics-subtitle{font-size:18px;margin-bottom:50px}.metric-card{padding:40px 30px;min-width:100%;max-width:400px}.metric-number{font-size:70px}}
@media (max-width: 480px){.success-metrics-section{padding:50px 15px}.metrics-title{font-size:28px}.metrics-subtitle{font-size:16px}.metric-card{padding:35px 25px}.metric-number{font-size:60px}.metric-label{font-size:16px}}

/* Featured Programs Stilleri */
.featured-programs{padding:7rem 2rem;background:linear-gradient(135deg,#fff,#f5f7fa);color:#333}
.featured-programs .container{max-width:1200px;margin:0 auto}
.featured-section-header{text-align:center;margin-bottom:4rem}
.featured-section-header h2{font-size:2.75rem;font-weight:800;margin:0 0 1rem;background:#2c3e50;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent}
.courses-container{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:2.5rem}
.course-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px #0000000d;transition:all .4s ease;min-height:380px;display:flex;flex-direction:column;border:1px solid #0000000d;position:relative}
.course-card:hover{transform:translateY(-3px);box-shadow:0 20px 40px #00000014;border-color:#2563eb4d}
.course-icon{position:absolute;top:1.5rem;right:1.5rem;width:50px;height:50px;border-radius:12px;background:linear-gradient(135deg,#152038,#183057);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem;box-shadow:0 10px 15px #2563eb33}
.course-details{padding:2rem;display:flex;flex-direction:column;flex:1}
.course-title{font-size:1.4rem;font-weight:700;color:#1e3a8a;margin:0 0 1.2rem;line-height:1.4;padding-right:60px}
.course-description{font-size:1rem;color:#4b5563;margin-bottom:1.5rem;line-height:1.7;flex:1}
.course-meta{display:flex;flex-wrap:wrap;gap:1.2rem;padding-top:1.5rem;border-top:1px solid #e5e7eb;margin-top:auto}
.meta-item{display:flex;align-items:center;font-size:.95rem;color:#6b7280;font-weight:500}
.meta-item i{margin-right:.6rem;color:#0d1d38;font-size:1.1rem}
.more-courses-action{margin-top:3.5rem;text-align:center}
.more-details-button{display:inline-flex;align-items:center;justify-content:center;padding:1rem 2.5rem;background:linear-gradient(135deg,#152038,#183057);color:#fff;border-radius:50px;text-decoration:none;font-weight:600;font-size:1.1rem;transition:all .3s ease;box-shadow:0 10px 25px #2563eb40}
.more-details-button:hover{transform:translateY(-2px);box-shadow:0 15px 30px #2563eb59}
.more-details-button span{margin-right:.75rem}
.more-details-button i{transition:transform .3s ease}
.more-details-button:hover i{transform:translateX(3px)}
@media screen and (max-width: 992px){.courses-container{grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}
@media screen and (max-width: 768px){.featured-programs{padding:5rem 1.5rem}.featured-section-header h2{font-size:2.2rem}.course-card{min-height:350px}}
@media screen and (max-width: 576px){.courses-container{grid-template-columns:1fr}.course-card{max-width:450px;margin:0 auto}.featured-section-header h2{font-size:2rem}}

/* ======================== */
/* == Our Team Section   == */
/* ======================== */
.team-section {
    padding: 6rem 2rem;
    background-color: #0c1424;
    background-image: linear-gradient(135deg, #0c1424e6 0%, #141e32e6 100%);
    position: relative;
    overflow: hidden;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-section .section-header h5 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.team-section .section-header h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700; /* Daha belirgin başlık için 700 */
    margin: 0 0 1.5rem;
    position: relative;
    display: inline-block;
}

.team-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #26a69a, #2bbbad);
    border-radius: 2px;
}

.team-section .section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ccd;
    line-height: 1.7;
}

.team-slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.team-slider {
    display: flex;
    overflow-x: hidden; /* JavaScript ile kontrol edilecek */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 60px; /* Oklar için yan boşluklar */
    width: 100%;
    will-change: transform;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(38, 166, 154, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.team-member {
    flex: 0 0 100%;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.08); /* Hafif şeffaf arkaplan */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 15px; /* Kartlar arası boşluk */
}

.member-image-container {
    position: relative;
    overflow: hidden;
}

.member-image {
    height: 320px; /* İstenen sabit yükseklik */
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kırparak sığdırır */
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .5rem;
}

.member-position {
    font-size: 1rem;
    color: #26a69a;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.member-specialization { /* Bu sınıfı member-description yerine kullanıyoruz */
    font-size: .95rem;
    color: #ccd;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: .8rem;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #26a69a;
    border-radius: 50%;
    color: #fff;
    font-size: .9rem;
    box-shadow: 0 5px 15px rgba(38, 166, 154, 0.3);
}

/* Responsive Stiller */
@media screen and (min-width: 768px) {
    .team-member {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media screen and (min-width: 1024px) {
    .team-member {
        flex: 0 0 calc(33.333% - 30px);
        max-width: calc(33.333% - 30px);
    }
}

@media screen and (max-width: 992px) {
    .member-image {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .team-section {
        padding: 4rem 1.5rem;
    }
    .team-section .section-header h2 {
        font-size: 1.8rem;
    }
    .team-section .section-description {
        font-size: 1rem;
    }
    .member-image {
        height: 260px;
    }
    .team-member {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    .team-slider {
        margin: 0 50px;
    }
}

/* Footer Stilleri */
.cybershield-footer{background-color:#0c1424;color:#ccd;padding:4rem 0 1rem;background-image:linear-gradient(135deg,#0c1424f7 0%,#141e32f7 100%)}
.cybershield-container{max-width:1200px;margin:0 auto;padding:0 2rem}
.cybershield-footer-content{display:grid;grid-template-columns:2fr 1fr 1.5fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid #ffffff1a;margin-bottom:1.5rem}
.cybershield-footer-logo{color:#fff;font-size:1.8rem;font-weight:700;margin:0 0 1.2rem}
.cybershield-footer-description{font-size:1rem;line-height:1.6;margin-bottom:1.5rem;opacity:.8}
.cybershield-footer-heading{color:#fff;font-size:1.2rem;font-weight:600;margin:0 0 1.5rem;padding-bottom:.8rem}
.cybershield-footer-heading::after{content:'';position:absolute;left:0;bottom:0;width:40px;height:3px;background:#1a3c5f}
.cybershield-footer-menu{list-style:none;padding:0;margin:0}.cybershield-footer-menu-item{margin-bottom:.8rem}
.cybershield-footer-menu-link{color:#ccd;text-decoration:none;display:flex;align-items:center}
.cybershield-footer-menu-link i{font-size:.8rem;margin-right:.8rem;color:#1a3c5f}
.cybershield-contact-list{list-style:none;padding:0;margin:0}.cybershield-contact-item{display:flex;margin-bottom:1.2rem}
.cybershield-contact-item i{color:#1a3c5f;font-size:1.1rem;margin-right:1rem;margin-top:.3rem}
.cybershield-contact-item p{margin:0;line-height:1.6}
.cybershield-footer-bottom{display:flex;justify-content:center;align-items:center;padding:1.5rem 0}
.cybershield-footer-credits{text-align:center}.cybershield-copyright{margin:0 0 .5rem;font-size:.9rem}
.cybershield-tech-lead{margin:0;font-size:.85rem;opacity:.8}
.cybershield-tech-lead-link{color:#4a9eff;text-decoration:none;font-weight:500;transition:color .3s ease}
.cybershield-tech-lead-link:hover{color:#66b3ff;text-decoration:underline}
.cybershield-social-media-container{display:flex;gap:1.2rem;margin-top:1.8rem}
.cybershield-social-circle{display:flex;justify-content:center;align-items:center;width:50px;height:50px;border-radius:50%;background-color:#1e4a74;color:#fff;text-decoration:none;transition:all .3s ease}
.cybershield-social-circle:hover{background-color:#2a6caa;transform:translateY(-3px)}
.cybershield-social-circle i{font-size:1.3rem}
@media screen and (max-width: 992px){.cybershield-footer-content{grid-template-columns:1fr 1fr;gap:2rem}.cybershield-footer-brand{grid-column:1 / -1}}
@media screen and (max-width: 768px){.cybershield-footer{padding:3rem 0 1rem}.cybershield-footer-content{grid-template-columns:1fr;gap:2rem}}
@media screen and (max-width: 576px){.cybershield-container{padding:0 1.5rem}.cybershield-footer-bottom{text-align:center}}

/* Scroll To Top Stilleri */
.scroll-top-section{position:fixed;bottom:30px;right:30px;z-index:999}
.scroll-top-button{width:60px;height:60px;background-color:#af534c;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 10px #0000001a 0 0 15px #af4c4c4d;opacity:0;visibility:hidden;transition:all .3s ease}
.scroll-top-button.active{opacity:1;visibility:visible}
.scroll-top-button:hover{transform:translateY(-5px);box-shadow:0 5px 15px #0003 0 0 20px #4caf5066}
.scroll-top-button i{color:#fff;font-size:24px}
@media screen and (max-width: 576px){.scroll-top-button{width:50px;height:50px}.scroll-top-button i{font-size:20px}}

/* ======================================= */
/* == Watch Content CTA Section Styles  == */
/* ======================================= */
.cta-watch-section {
    padding: 80px 20px;
    background-color: #0c1424;
    background-image: linear-gradient(135deg, #0c1424e6 0%, #141e32e6 100%);
    text-align: center;
}

.cta-watch-section .section-header {
    margin-bottom: 3rem;
}

.cta-watch-section .section-header .section-title,
.cta-watch-section .section-header .section-subtitle {
    color: #fff;
}

.cta-watch-section .section-header .divider {
    width: 80px;
    height: 3px;
    background-color: #fff;
    margin: 1rem auto 0;
}

/* YENİ GRID KONTEYNERİ */
.cta-grid-container {
    display: grid;
    /* Masaüstünde 2 sütun oluşturur */
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* Kartlar arası boşluk */
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ccd;
    background-color: #141e32;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #2a6caa;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Farklı ikonlar için renkler */
.cta-icon .fa-video { color: #4ecdc4; }
.cta-icon .fa-youtube { color: #FF0000; }
.cta-icon .fa-broadcast-tower { color: #3498db; }
.cta-icon .fa-globe-americas { color: #2ecc71; }

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* Butonların en altta hizalanmasını sağlar */
}

.cta-button {
    display: inline-block;
    background-color: #1e4a74;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: center; /* Butonu ortalar */
    width: fit-content;
}

.cta-card:hover .cta-button {
    background-color: #2a6caa;
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-button i {
    transform: translateX(5px);
}

/* RESPONSIVE AYARLAMA */
@media (max-width: 768px) {
    .cta-grid-container {
        /* Mobil cihazlarda tek sütuna düşürür */
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* == Course Notes & Resources Section    == */
/* ========================================= */

.notes-section {
    padding: 80px 20px;
    background: #f8fafc; /* Açık ve temiz bir arkaplan */
    color: #334155; /* Açık arkaplan için okunabilir metin rengi */
}

.notes-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Bu bölüme özel başlık stilleri (renkleri açık arkaplana uyarlamak için) */
.notes-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.notes-section .section-title {
    color: #1e293b; /* Koyu mavi başlık */
    font-size: 36px;
    font-weight: 700;
}

.notes-section .section-subtitle {
    color: #475569; /* Daha yumuşak alt başlık rengi */
    font-size: 20px;
    margin-top: 0.5rem;
}

.notes-section .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1a3c5f, #2a6caa); /* Sitenin ana renkleriyle uyumlu */
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.notes-grid-container {
    display: grid;
    /* Ekran boyutuna göre otomatik sığdırma */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 900px; /* Kartların çok genişlemesini önler */
    margin: 0 auto;
}

.note-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(20, 30, 50, 0.05);
    transition: all 0.3s ease;
}

.note-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(20, 30, 50, 0.1);
    border-color: #2a6caa;
}

.note-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #2a6caa); /* Ana tema mavisi */
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(42, 108, 170, 0.3);
}

.note-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.note-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* Butonun her zaman altta kalmasını sağlar */
}

.note-card-button {
    color: #1a3c5f;
    font-weight: 600;
    align-self: center;
    transition: color 0.3s ease;
}

.note-card:hover .note-card-button {
    color: #2a6caa;
}

.note-card-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.note-card:hover .note-card-button i {
    transform: translateX(5px);
}

/* Daha küçük ekranlar için */
@media (max-width: 768px) {
    .notes-grid-container {
        grid-template-columns: 1fr;
    }

    .notes-section {
        padding: 60px 15px;
    }
}


/* ============================================= */
/* == More Information Page (Program Details) == */
/* ============================================= */

body.program-details-page {
    font-family: 'Poppins', sans-serif;
    color: #334155; /* --text-color */
    background-color: #f8fafc; /* --light-bg */
    line-height: 1.6;
    font-size: 16px;
}

.program-details-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.program-details-page .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* --dark-bg to --secondary-color */
    color: #fff;
    text-align: center;
    padding: 6rem 0 5rem;
    margin-bottom: 3rem;
    position: relative;
}

.program-details-page .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTIwIDM1YzguMjg0IDAgMTUtNi43MTYgMTUtMTUgMC04LjI4NC02LjcxNi0xNS0xNS0xNS04LjI4NCAwLTE1IDYuNzE2LTE1IDE1IDAgOC4yODQgNi43MTYgMTUgMTUgMTV6bTAtMmM3LjE4IDAgMTMtNS44MiAxMy0xM3MtNS44Mi0xMy0xMy0xMy0xMyA1LjgyLTEzIDEzIDUuODIgMTMgMTMgMTN6Ii8+PC9nPjwvZz48L3N2Zz4=);
    opacity: .6;
}

.program-details-page .hero-section .container {
    position: relative;
    z-index: 2;
}

.program-details-page .hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.program-details-page .subtitle {
    color: #cbd5e1;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.program-details-page .badge {
    display: inline-block;
    padding: .7rem 2rem;
    border: 1px solid #3b82f6; /* --accent-color */
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    background-color: #3b82f61a;
}

.program-details-page .section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 5rem;
    position: relative;
}

.program-details-page .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b; /* --secondary-color */
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.program-details-page .divider {
    display: block;
    width: 60px;
    height: 3px;
    background: #3b82f6; /* --accent-color */
    margin: 1rem auto 0;
}

.program-details-page .section-subtitle {
    text-align: center;
    color: #64748b; /* Lighter than #94a3b8 for better readability on light bg */
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-details-page .content-box {
    background-color: #fff;
    border-radius: 8px; /* --border-radius */
    box-shadow: 0 4px 20px #0000000f;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid #3b82f6; /* --accent-color */
}

.program-details-page .content-box h3 {
    color: #1e293b; /* --secondary-color */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.program-details-page .content-box h3 i {
    margin-right: 1rem;
    color: #3b82f6; /* --accent-color */
    font-size: 1.4rem;
}

.program-details-page .features-grid,
.program-details-page .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-details-page .feature-card,
.program-details-page .outcome-card {
    background-color: #fff;
    border-radius: 8px; /* --border-radius */
    padding: 2rem;
    box-shadow: 0 4px 20px #0000000f;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-details-page .feature-icon,
.program-details-page .outcome-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.program-details-page .feature-icon {
    background-color: #3b82f6; /* --accent-color */
}

.program-details-page .outcome-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.program-details-page .feature-icon i,
.program-details-page .outcome-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.program-details-page .feature-card h4,
.program-details-page .outcome-card h4 {
    color: #1e293b; /* --secondary-color */
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-details-page .feature-card p,
.program-details-page .outcome-card p {
    color: #64748b; /* --light-text */
    font-size: 1rem;
    flex-grow: 1; /* Kartların aynı boyutta kalmasına yardımcı olur */
}

.program-details-page .audience-box {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px #0000000f;
    margin-bottom: 4rem;
    overflow: hidden;
}

.program-details-page .audience-image {
    background-color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-width: 180px;
}

.program-details-page .audience-image i {
    font-size: 4rem;
    color: #fff;
}

.program-details-page .audience-content {
    padding: 2.5rem;
}

.program-details-page .plan-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.program-details-page .phases-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.program-details-page .phase-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px #0000000f;
    margin-bottom: 2rem;
    overflow: hidden;
}

.program-details-page .phase-number {
    background: #3b82f6;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    flex-shrink: 0;
}

.program-details-page .phase-content {
    padding: 2rem;
}

.program-details-page .phase-content h4 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-details-page .phase-content p {
    color: #64748b;
    margin: 0;
}

.program-details-page .phase-connector {
    width: 4px;
    height: 40px;
    background-color: #3b82f6;
    margin: 0 0 1rem 38px;
}

@media (max-width: 768px) {
    .program-details-page .hero-section h1 {
        font-size: 2.5rem;
    }
    .program-details-page .subtitle {
        font-size: 1.2rem;
    }
    .program-details-page .audience-box {
        flex-direction: column;
    }
    .program-details-page .audience-image {
        min-height: 150px;
        min-width: auto;
    }
    .program-details-page .phase-card {
        flex-direction: column;
    }
    .program-details-page .phase-number {
        min-height: 80px;
        min-width: auto;
        border-radius: 8px 8px 0 0;
    }
    .program-details-page .phase-connector {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ======================================= */
/* == Training Calendar Page Styles     == */
/* ======================================= */

body.training-calendar-page {
    --primary-color: #1a3c5f;
    --secondary-color: #0c1424;
    --accent-color: #4ecdc4;
    --text-color: #f0f0f0;
    --card-bg: #1a3c5f4d;
    --card-hover: #1a3c5f80;
    --highlight-color: #f39c12;
    background-color: var(--secondary-color);
    color: var(--text-color);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgo8ZGVmcz4KICA8cGF0dGVybiBpZD0icGF0dGVybl9RTlM1IiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPgogICAgPGxpbmUgeDE9IjAiIHkxPSIwIiB4Mj0iMCIgeTI9IjEwIiBzdHJva2U9IiMxYTNjNWYiIHN0cm9rZS13aWR0aD0iMC41Ii8+CiAgPC9wYXR0ZXJuPgo8L2RlZnM+CjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiMwYzE0MjQiLz4KPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuX1FOUzUpIi8+Cjwvc3ZnPg==);
    background-attachment: fixed;
    position: relative;
}

body.training-calendar-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 15% 50%, #4ecdc41a 0%, transparent 25%), radial-gradient(circle at 85% 30%, #4ecdc41a 0%, transparent 25%);
    pointer-events: none;
    z-index: -1;
}

.training-calendar-page .container { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.training-calendar-page header { text-align: center; margin-bottom: 3rem; }
.training-calendar-page .page-title { font-size: 2.5rem; color: var(--text-color); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 10px #4ecdc480; }
.training-calendar-page .subtitle { font-size: 1.2rem; color: var(--accent-color); margin-bottom: 2rem; }
.training-calendar-page .total-hours { font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent-color); display: inline-block; padding: 0.5rem 2rem; border: 2px solid var(--accent-color); border-radius: 50px; }
.training-calendar-page .section-header { text-align: center; margin-bottom: 3rem; }
.training-calendar-page .section-title { font-size: 2rem; color: var(--text-color); margin-bottom: 1rem; text-align: center; position: relative; padding-bottom: 1rem; }
.training-calendar-page .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--accent-color); }
.training-calendar-page .section-subtitle { font-size: 1.2rem; color: var(--accent-color); margin-bottom: 1rem; }
.training-calendar-page .divider { width: 80px; height: 3px; background-color: var(--accent-color); margin: 0 auto; }
.training-calendar-page .section-desc { text-align: center; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.training-calendar-page .courses-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.training-calendar-page .course-card { background: var(--card-bg); border-radius: 10px; padding: 1.5rem; transition: all 0.3s ease; backdrop-filter: blur(10px); border: 1px solid #ffffff1a; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.training-calendar-page .course-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); background: var(--card-hover); }
.training-calendar-page .course-card::before { content: ''; position: absolute; width: 100px; height: 100px; background: var(--accent-color); filter: blur(50px); opacity: 0.2; top: -50px; right: -50px; transition: all 0.3s ease; }
.training-calendar-page .course-card:hover::before { width: 150px; height: 150px; opacity: 0.3; }
.training-calendar-page .course-header { display: flex; align-items: center; margin-bottom: 1rem; }
.training-calendar-page .course-icon { font-size: 1.5rem; margin-right: 1rem; color: var(--accent-color); }
.training-calendar-page .course-title { font-size: 1.2rem; font-weight: 600; line-height: 1.4; color: var(--text-color); /* YAZI RENGİ DÜZELTMESİ */ }
.training-calendar-page .course-hours { font-size: 1.8rem; font-weight: 700; color: var(--accent-color); margin: 1rem 0; display: flex; align-items: center; }
.training-calendar-page .course-hours i { font-size: 1.2rem; margin-right: 0.5rem; }
.training-calendar-page .course-description { margin-bottom: 1.5rem; line-height: 1.6; opacity: 0.9; flex-grow: 1; color: var(--text-color); /* YAZI RENGİ DÜZELTMESİ */ }
.training-calendar-page .course-topics { list-style: none; padding-left: 0; }
.training-calendar-page .course-topics li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.training-calendar-page .course-topics li::before { content: '▸'; position: absolute; left: 0; color: var(--accent-color); }
.training-calendar-page .calendar-section { margin-top: 4rem; background: #0c142499; padding: 2rem; border-radius: 10px; backdrop-filter: blur(10px); border: 1px solid #ffffff1a; }
.training-calendar-page .month-selector { display: flex; justify-content: center; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.training-calendar-page .month-btn { padding: 0.8rem 1.5rem; background: #1a3c5f80; border: 1px solid #4ecdc44d; color: var(--text-color); border-radius: 5px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; }
.training-calendar-page .month-btn:hover { background: #4ecdc433; border-color: var(--accent-color); }
.training-calendar-page .month-btn.active { background: var(--primary-color); border-color: var(--accent-color); box-shadow: 0 0 15px #4ecdc44d; }
.training-calendar-page .calendar-container { display: none; }
.training-calendar-page .calendar-container.active { display: block; }
.training-calendar-page .timeline-item { display: flex; margin-bottom: 2rem; position: relative; }
.training-calendar-page .timeline-item:last-child { margin-bottom: 0; }
.training-calendar-page .timeline-item::before { content: ''; position: absolute; top: 0; left: 60px; height: 100%; width: 2px; background: #4ecdc44d; z-index: 0; }
.training-calendar-page .timeline-item:last-child::before { display: none; }
.training-calendar-page .timeline-date { min-width: 120px; text-align: center; padding: 1rem; background: #1a3c5fb3; border-radius: 8px; position: relative; z-index: 1; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; justify-content: center; margin-right: 2rem; }
.training-calendar-page .timeline-date::after { content: ''; position: absolute; top: 50%; right: -10px; transform: translateY(-50%); width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 10px solid #1a3c5fb3; }
.training-calendar-page .day { font-size: 1.5rem; font-weight: 700; color: var(--highlight-color); }
.training-calendar-page .month { font-size: 0.9rem; opacity: 0.8; }
.training-calendar-page .time { font-size: 0.8rem; margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid #ffffff1a; }
.training-calendar-page .timeline-content { flex: 1; background: #1a3c5f33; border-radius: 8px; padding: 1.5rem; border: 1px solid #4ecdc41a; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.training-calendar-page .timeline-title { font-size: 1.3rem; margin-bottom: 0.5rem; display: flex; justify-content: space-between; align-items: center; }
.training-calendar-page .duration { font-size: 0.9rem; background: var(--accent-color); color: var(--secondary-color); padding: 0.2rem 0.8rem; border-radius: 20px; font-weight: 500; }
.training-calendar-page .timeline-desc { margin-bottom: 1rem; opacity: 0.9; }
.training-calendar-page .timeline-instructor, .training-calendar-page .timeline-location { display: block; font-size: 0.9rem; margin-top: 0.5rem; opacity: 0.8; }
.training-calendar-page .timeline-instructor i, .training-calendar-page .timeline-location i { color: var(--accent-color); margin-right: 0.5rem; }
.training-calendar-page .calendar-note { background: #f39c121a; border-left: 3px solid var(--highlight-color); padding: 1rem; margin-top: 2rem; display: flex; align-items: flex-start; border-radius: 0 5px 5px 0; }
.training-calendar-page .calendar-note i { color: var(--highlight-color); font-size: 1.5rem; margin-right: 1rem; }
.training-calendar-page .calendar-note p { margin: 0; line-height: 1.5; }
.training-calendar-page .learn-more-btn { display: block; width: fit-content; margin: 3rem auto; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; padding: 1rem 2rem; border-radius: 50px; background: linear-gradient(45deg, var(--primary-color), var(--accent-color)); box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3); text-decoration: none; color: var(--text-color); border: none; cursor: pointer; transition: all 0.3s ease; }
.training-calendar-page .learn-more-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4); background: linear-gradient(45deg, var(--accent-color), var(--primary-color)); }

@media (max-width: 768px) {
    .training-calendar-page .container { padding: 1.5rem; }
    .training-calendar-page .page-title { font-size: 2rem; }
    .training-calendar-page .courses-container { grid-template-columns: 1fr; }
    .training-calendar-page .timeline-item { flex-direction: column; }
    .training-calendar-page .timeline-item::before { left: 20px; }
    .training-calendar-page .timeline-date { margin-bottom: 1rem; margin-right: 0; flex-direction: row; justify-content: flex-start; align-items: center; padding: 0.5rem 1rem; width: 100%; }
    .training-calendar-page .timeline-date::after { display: none; }
    .training-calendar-page .day, .training-calendar-page .month { margin-right: 0.5rem; }
    .training-calendar-page .time { margin-top: 0; padding-top: 0; border-top: none; margin-left: auto; }
}

