
/* RESET */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ROOT */
:root {
    --primary:#0d6efd;
    --dark:#111;
    --text:#333;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.site-header {
    background:#ffffff;
    border-bottom:1px solid #eee;
}

.header-inner {
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

/* LOGO */
.logo img {
    height:60px;
}

.logo a {
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    color:var(--dark);
}

/* NAV */
.main-nav ul {
    list-style:none;
    display:flex;
    align-items:center;
    gap:35px;
}

.main-nav ul li a {
    position:relative;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    color:var(--text);
    padding:6px 0;
    transition:0.3s ease;
}

/* Hover renk */
.main-nav ul li a:hover {
    color:var(--primary);
}
.main-nav ul li a.active {
    color: var(--primary);
}

.main-nav ul li a.active::after {
    width:100%;
}

/* Alt çizgi animasyonu */
.main-nav ul li a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:0.3s ease;
}

.main-nav ul li a:hover::after {
    width:100%;
}

/* HEADER BASE */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Scroll sonrası efekt */
.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Header yüksekliği animasyon */
.header-inner {
    transition: all 0.3s ease;
}
.site-header {
    padding: 0 0;
}

.site-header.scrolled .header-inner {
    height: 70px;
}

.header-inner {
    height: 90px;
}
/* HERO */
.hero {
    padding:100px 0;
    background:#f8f9fc;
}

.hero-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text {
    flex:1;
}

.hero-badge {
    display:inline-block;
    background:#e7f1ff;
    color:var(--primary);
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:20px;
}

.hero-text h1 {
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
    color:var(--dark);
}

.hero-text p {
    font-size:16px;
    color:#555;
    margin-bottom:30px;
    max-width:500px;
}

.hero-buttons {
    display:flex;
    gap:15px;
}

.btn-primary {
    background:var(--primary);
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn-outline {
    border:2px solid var(--primary);
    color:var(--primary);
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn-outline:hover {
    background:var(--primary);
    color:#fff;
}

.hero-image {
    flex:1;
}

.hero-image img {
    width:100%;
    border-radius:12px;
}
@media(max-width: 992px) {

    .hero-inner {
        flex-direction:column;
        text-align:center;
    }

    .hero-text p {
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons {
        justify-content:center;
    }
}
.home-slider img {
    width:100%;
    height:auto;
    display:block;
}
/* SLIDER */
.home-slider {
    width:100%;
    overflow:hidden;
}

.home-slider .slide {
    width:100%;
    height:500px; /* Slider yüksekliği */
    overflow:hidden;
}

.home-slider .slide img {
    width:100%;
    height:100%;
    object-fit:cover; /* Oranı bozmadan kırpar */
    display:block;
}
/* SLIDER */
.home-slider {
    position:relative;
}

.home-slider .slide {
    position:relative;
    height:550px;
    overflow:hidden;
}

.home-slider .slide img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Dark overlay */
.slider-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

/* Hero content */
.slider-content {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#fff;
    max-width:800px;
    padding:50px;
    backdrop-filter: blur(10px);
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.3);
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.slider-content h1 {
    font-size:42px;
    margin-bottom:20px;
}

.slider-content p {
    font-size:16px;
    margin-bottom:30px;
    opacity:0.95;
}

/* Light outline button */
.btn-outline-light {
    border:2px solid #fff;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.btn-outline-light:hover {
    background:#fff;
    color:#000;
}
@media(max-width:992px){
    .slider-content {
        padding:30px;
    }

    .slider-content h1 {
        font-size:28px;
    }

    .home-slider .slide {
        height:450px;
    }
}
/* FOOTER */
.site-footer {
    background:#111827;
    color:#d1d5db;
    padding:80px 0 30px;
}

.footer-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3,
.footer-col h4 {
    color:#fff;
    margin-bottom:20px;
}

.footer-col p {
    font-size:14px;
    line-height:1.6;
}

.footer-col ul {
    list-style:none;
    padding:0;
}

.footer-col ul li {
    margin-bottom:10px;
}

.footer-col a {
    color:#d1d5db;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-col a:hover {
    color:#fff;
}

.footer-social {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    font-size:13px;
    color:#9ca3af;
}

/* Responsive */
@media(max-width:992px){
    .footer-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){
    .footer-grid {
        grid-template-columns:1fr;
        text-align:center;
    }
}
/* FEATURES */
.features-v2 {
    padding:100px 0;
    background:#f8f9fc;
}

.feature-grid-v2 {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-item {
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-item:hover {
    transform:translateY(-6px);
}

.feature-item .icon {
    font-size:32px;
    margin-bottom:15px;
}

.feature-item h4 {
    margin-bottom:10px;
}
.programs-v2 {
    padding:100px 0;
}

.section-head {
    text-align:center;
    margin-bottom:50px;
}

.program-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.program-card {
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.program-card:hover {
    transform:translateY(-5px);
}

.program-card img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.program-body {
    padding:20px;
}

.link-btn {
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}
.cta-v2 {
    padding:100px 0;
    background:linear-gradient(135deg,#0d6efd,#1e3a8a);
    color:#fff;
    text-align:center;
}

.cta-inner h2 {
    margin-bottom:20px;
}

.btn-accent {
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#fff;
    color:#0d6efd;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}
@media(max-width:992px){
    .feature-grid-v2 {
        grid-template-columns:1fr 1fr;
    }

    .program-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){
    .feature-grid-v2,
    .program-grid {
        grid-template-columns:1fr;
    }
}
.center {
    text-align:center;
    margin-top:50px;
}
/* ============================= */
/* ABOUT HERO */
/* ============================= */

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}


.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 1;
}


.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}


.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
}
/* ============================= */
/* ABOUT STORY */
/* ============================= */

.section {
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-story-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}
/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .about-hero {
        height: auto;
        padding: 80px 0;
    }

    .about-hero-content {
        padding: 30px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        padding: 70px 0;
    }
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.mv-card:hover {
    border-color: #ddd;
}

.mv-icon {
    width: 48px;
    height: 48px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.mv-card p {
    line-height: 1.7;
    color: #555;
}
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}
.about-story-image {
    width: 100%;
    height: 100%;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-story-image {
    min-height: 400px;
}
@media (max-width: 992px) {
   ...
}
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }


}
/* HAMBURGER */


/* Responsive */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
        z-index: 999;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .main-nav.active {
        display: block;
    }
}
/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Masaüstü görünüm */
.main-nav {
    display: block;
}

/* Mobil */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    /* Menü gizlenir */
    .main-nav {
        display: none !important;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        border-top: 1px solid #eee;
        z-index: 999;
    }

    /* Menü açıldığında */
    .main-nav.active {
        display: block !important;
    }

    /* UL flexi kaldır */
    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}




