@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

:root {
    --primary-color: #8257E6;
    --secondary-color: #6F48C9;
    --dark-color: #303030;
    --white: #ffffff;
    --bg-gray: #f6f6f6;
}

/* Header Top Styles */
.header-top {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}
.navbar-toggler:focus{
    box-shadow: none;
}

/* Search Box Styles */
.input-group {
    max-width: 100%;
}

.input-group .form-control {
    border-right: 0;
    padding: 12px 15px;
    font-size: 14px;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.input-group .btn-outline-secondary {
    border-left: 0;
    background-color: var(--white);
    color: #666;
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover,
.input-group .btn-outline-secondary:focus {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Primary Button Style */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Navigation Styles */
.navbar {
    padding: 0; 
    background-color: var(--primary-color);
}

.navbar-nav {
    padding: 0;
}

.nav-link {
    color: var(--white) !important;
    padding: 15px 25px !important;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--secondary-color) !important;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding:0;
}

.navbar-toggler-icon {
    background-image: url("../img/nav.svg");
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: var(--white);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0;
    margin-top: 0;
    min-width: 220px; /* Set minimum width for dropdown menu */
}
.dropdown-item {
    color: var(--dark-color);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Submenu styles for multi-level dropdown */
.dropdown-menu {
    background-color: var(--primary-color) !important;
    color: var(--white);
}
.dropdown-menu .dropdown-item {
    color: var(--white);
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--secondary-color);
    color: var(--white);
}

.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu.sub-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    background-color: var(--primary-color) !important;
    min-width: 200px;
    border-radius: 0 6px 6px 6px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    position: absolute;
}
.dropdown-submenu:hover > .dropdown-menu.sub-menu,
.dropdown-submenu:focus-within > .dropdown-menu.sub-menu {
    display: block;
}
.dropdown-submenu > a:after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

/* Dropdown menu varsayılan olarak kapalı */
.nav-item.dropdown .dropdown-menu {
    display: none;
}

/* Sadece hover olunca açılır (masaüstü) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    .dropdown-submenu > .dropdown-menu.sub-menu {
        display: none;
    }
    .dropdown-submenu:hover > .dropdown-menu.sub-menu {
        display: block;
    }
    .dropdown-submenu.show > .dropdown-menu.sub-menu {
        display: none; /* Masaüstünde .show class'ı etkisiz */
    }
}

/* Mobilde Bootstrap'ın kendi tıklama davranışı çalışır, sub-menu için JS gerekir */
@media (max-width: 991.98px) {
    .dropdown-menu {
        display: none;
    }
    .dropdown-menu.show {
        display: block;
    }
    .dropdown-submenu > .dropdown-menu.sub-menu {
        display: none;
    }
    .dropdown-submenu.show > .dropdown-menu.sub-menu {
        display: block;
    }
}

/* Mobilde sub-menu alta açılır */
@media (max-width: 991.98px) {
    .dropdown-menu {
        width: 100%;
        min-width: auto;
        text-align: center;
        background-color: var(--primary-color) !important;
    }
    
    .dropdown-submenu > .dropdown-menu.sub-menu {
        position: static !important;
        left: 0;
        width: 100%;
        margin-left: 0;
        border-radius: 0;
        background-color: var(--secondary-color) !important;
        padding: 0;
    }    .dropdown-submenu > a:after {
        display: inline-block;
        float: none;
        margin-left: 8px;
        transform: rotate(0);
    }
    
    .dropdown-item {
        color: var(--white);
        padding: 10px;
        text-align: left;
    }

    .dropdown-menu  {
        padding-left: 20px;
    }
    .dropdown-menu.sub-menu  {
        padding-left: 40px !important;
    }
    .dropdown-menu.sub-menu li  {
        background-color: transparent !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--secondary-color);
    }

    .dropdown-submenu .dropdown-item:hover,
    .dropdown-submenu .dropdown-item:focus {
        background-color: var(--primary-color);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) { 

    .nav-link {
        padding: 12px 15px !important;
        text-align: left;
    }

    .navbar-nav {
        padding: 10px 0;
        padding-top: 10px;
    }
    .navbar-nav li{
        background-color: var(--primary-color);
    }
    
    .dropdown-menu {
        width: 100%;
        min-width: auto;
        text-align: center;
        background-color: var(--white); /* Beyaz arka plan */
    }
    
    .dropdown-item {
        color: var(--white); /* Yazı rengini beyaz yap */
        padding: 10px;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
        color: var(--white);
    }
}

@media (max-width: 767.98px) {
    .header-top {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .btn-primary {
        width: 100%;
        margin-top: 15px;
    }
    
    .fiyathesapla{
        position: relative;
        height: 20px;
    }
    .fiyathesapla .btn{
        position: absolute;
        display: block;
        top: -16px;
        right: 0;
        left: 0;
        width: auto;
        padding: 8px 10px !important;
        text-align: center;
        font-size: 14px;
    }
    .navbar-brand img{
        max-height: 30px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 15px; /* Header yüksekliği kadar margin */
}

.swiper {
    width: 100%;
    /* height: 600px !important;*/
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 60px 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.slider-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
}

.slider-buttons .btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Slider */
@media (max-width: 991.98px) {
    .hero-slider {
        margin-top: 80px;
    }
    
    .swiper {
        height: 400px !important;
    }

    .swiper-text {
        padding: 40px 30px;
    }

    .swiper-text h1 {
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
    }
    .swiper-text p {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .swiper {
        height: 400px !important;
    }
    .hero-slider {
        margin-top: 0px;
    }

    .slider-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .slider-buttons .btn {
        width: 100%;
    }
    
}

/* Right Cards */
.slider-cards {
    height: 100%;
    padding: 0 15px;
}

.slider-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    height: 600px; /* Ana slider ile aynı yükseklik */
}

.slider-card img {
    height: 100%;
    object-fit: cover;
}

.slider-card .card-img-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
    padding: 30px 20px;
}

.slider-card .card-title {
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-card .card-text {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-card a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.slider-card a i {
    transition: transform 0.3s ease;
}

.slider-card:hover a i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .slider-cards {
        padding: 15px;
    }

    .slider-card {
        height: 300px;
    }
    
    .slider-card .card-img-overlay {
        padding: 15px;
    }
    
    .slider-card .card-title {
        font-size: 16px;
    }
    
    .slider-card .card-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
}

@media (max-width: 767.98px) {
    .slider-cards {
        padding: 15px 0;
    }
    
    .slider-card {
        height: 250px;
        margin-bottom: 0;
    }
}

/* Language Schools Section */
.language-schools {
    background-color: #f8f9fa;
}



.language-schools .section-header * {
    color: var(--dark-color);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.school-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.school-card:hover {
    transform: translateY(-5px);
}

.school-card .card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.country-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.flag-icon {
    width: 50px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    color: white;
}

.card-overlay h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Responsive Adjustments for Language Schools */
@media (max-width: 991.98px) {
    .school-card .card-img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

/* Statistics Section */
.statistics {
    background-color: var(--bg-gray);
}

.statistics .section-header * {
    color: var(--dark-color);
}

.stat-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover, .stat-card.active {
    background-color: var(--primary-color);
    cursor: pointer;
}

.stat-card:hover *, .stat-card.active * {
    color: var(--white);
}


.stat-card:hover img {
    filter: brightness(0) invert(1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.stat-card:hover .icon-wrapper, .stat-card.active .icon-wrapper {
    background-color: rgba(255,255,255,0.2);
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.stat-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* Responsive Adjustments for Statistics */
@media (max-width: 991.98px) {
    .stat-card {
        padding: 20px 15px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-text {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .stat-card {
        margin-bottom: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
}

.testimonials .section-header {
    text-align: left;
}

.testimonials .section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 1rem;
}

.testimonials .section-header p.text-primary {
    font-size: 18px;
    color: var(--primary-color) !important;
}

.testimonials .section-header p.text-muted {
    font-size: 14px;
    line-height: 1.6;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.student-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-content {
    padding: 25px;
}

.student-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.school {
    font-size: 12px;
    color: #666;
    text-align: right;
    line-height: 1.4;
}

/* Responsive Adjustments for Testimonials */
@media (max-width: 991.98px) {
    .student-img {
        height: 250px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .student-name {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        margin-bottom: 30px;
    }

    .student-img {
        height: 200px;
    }
}

.content h3{
    color: var(--primary-color  );
}
.content  h2{
    color: var(--secondary-color);  
}

/* Schools Slider */
.schools-slider {
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}

.schools-track {
    display: flex;
    transition: transform 0.5s ease;
}

.school-slide {
    flex: 0 0 auto;
    width: 25%;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.schools-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.schools-nav .nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #8257E6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schools-nav .nav-btn:hover {
    background-color: #6f48c9;
}

@media (max-width: 991.98px) {
    .school-slide {
        width: 33.333%;
    }
}

@media (max-width: 767.98px) {
    .school-slide {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .school-slide {
        width: 100%;
    }
}

/* References Section */
.references {
    background-color: var(--white); 
    overflow: hidden;
}

.references-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.references-track {
    display: flex;
    transition: transform 0.1s ease;
    cursor: grab;
}

.references-track:active {
    cursor: grabbing;
}

.reference-slide {
    flex: 0 0 auto;
    width: 200px;
    padding: 0 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.reference-slide:hover {
    opacity: 1;
}

.reference-logo {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.swiper-slide:hover .reference-logo {
    filter: grayscale(0%);
}

/* Responsive Adjustments for References */
@media (max-width: 991.98px) {
    .reference-slide {
        width: 160px;
        padding: 0 20px;
    }
}

@media (max-width: 767.98px) {
    .reference-slide {
        width: 140px;
        padding: 0 15px;
    }
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.newsletter-wrapper {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 5px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0;
}

.newsletter-content i {
    font-size: 48px;
    color: var(--white);
    opacity: 0.9;
}

.newsletter .input-group {
    max-width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter .form-control {
    height: 46px;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    background: transparent;
    box-shadow: none;
}

.newsletter .form-control:focus {
    outline: none;
    box-shadow: none;
}

.newsletter .btn-light {
    min-width: 120px;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter .btn-light:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

.newsletter .form-message {
    min-height: 60px;
}

.newsletter .alert {
    border-radius: 8px;
}

/* Newsletter Responsive */
@media (max-width: 991.98px) {
    .newsletter-content {
        margin-bottom: 20px;
        text-align: center;
        flex-direction: column;
    }
    
    .newsletter-content i {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
    
    .newsletter .form-control {
        font-size: 14px;
        height: 42px;
        width: 100%;
    }

    .newsletter .btn-light {
        font-size: 14px;
        padding: 8px 20px;
    }

    .newsletter .input-group {
        flex-direction: column;
        padding: 4px;
    }

    .newsletter .btn-light {
        width: 100%;
        margin-top: 8px;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--white);
    color: #666;
}

.footer-logo img {
    filter: none;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #666;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-phone i {
    color: var(--primary-color);
}

.footer-phone a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--primary-color);
}

.footer-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links .footer-title {
    margin-bottom: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Copyright Section */
.copyright {
    background-color: #f5f5f5;
    color: #666;
    font-size: 13px;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-title {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-phone {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-links .d-flex {
        justify-content: center;
    }

    .copyright p {
        margin-bottom: 10px !important;
    }
        
    .navbar { 
        position: absolute;
        z-index: 999;
        width: 100%;
        top: 50px;
        background-color: transparent;
    }

} 

@media (min-width: 1800px) {
    .container-edu {
        max-width: 1690px !important;
    }
    .mySwiper  {
        height: 400px !important;
    }
}

.refSwiper {
    height: auto !important;
    padding-bottom: 30px;
}
.refSwiper img{
    height: 150px;
    object-fit: contain;
}

/* İletişim Sayfası (page_iletisim.php) */
.contact-hero {
    background: #f7f8fa;
    padding: 80px 0;
}

.contact-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(130,87,230,0.08);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(130,87,230,0.12);
}

.contact-icon {
    color: #8257E6;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.contact-title {
    font-size: 1.2rem;
    color: #303030;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(130,87,230,0.08);
    padding: 50px 40px;
    margin: 40px auto;
    border: 1px solid #e8e8e8;
}

.contact-form label {
    font-weight: 600;
    color: #8257E6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    border: 1.5px solid #e0d7f7;
    font-size: 1rem;
    padding: 12px 16px;
    background: #f7f5fd;
    color: #303030;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #8257E6;
    box-shadow: 0 0 0 4px rgba(130,87,230,0.1);
    background: #fff;
}

.contact-form .form-control::placeholder {
    color: #b3a6d6;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    background: linear-gradient(90deg, #8257E6 0%, #6F48C9 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(130,87,230,0.15);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(130,87,230,0.2);
    background: linear-gradient(90deg, #6F48C9 0%, #8257E6 100%);
}

.contact-form .form-check-input {
    border: 1.5px solid #e0d7f7;
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
}

.contact-form .form-check-input:checked {
    background-color: #8257E6;
    border-color: #8257E6;
}

.contact-form .form-check-label {
    font-size: 0.95rem;
    color: #666;
    padding-left: 8px;
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .contact-box {
        padding: 20px;
        min-height: 180px;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-desc {
        font-size: 0.9rem;
    }
}




.option-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.option-card {
    flex: 1;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.option-card-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-right: 15px;
}
.option-card-text strong {
    display: block;
    color: #212529;
    margin-bottom: 5px;
}
.option-card-arrow {
    color: #6f42c1;
    font-size: 1.5rem;
}
.contact-info {
    text-align: center;
    margin-bottom: 30px;
}
.contact-info h2 {
    color: #343a40;
    margin-bottom: 10px;
}
.contact-info p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}
.form-section h3 {
    color: #343a40;
    margin-bottom: 20px;
    text-align: center;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.form-label {
    font-size: 0.9rem;
    color: #495057;
}
.form-contact .form-control {
    border: 1px solid #6f42c1;}
.form-control {
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
}
.form-select {
    border: 1px solid #6f42c1;
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%204%205%22%3E%3Cpath%20fill%3D%22%23343a40%22%20d%3D%22M2%200L0%202h4L2%200z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.8em 0.6em;
}
.form-textarea {
    border: 1px solid #6f42c1;
    border-radius: 4px;
    padding: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
    min-height: 100px;
}
.form-check {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    border-radius: 0.25em;
}
.form-check-label {
    font-size: 0.9rem;
    color: #495057;
    margin-left: 0.5rem;
}
.btn-primary {
    background-color: #6f42c1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.btn-primary:hover {
    background-color: #563d7c;
}





.page-hero-breadcrumb {
    background: #e3e9ef;
    padding:  18px 0;
    margin-bottom: 0;
} 
.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    margin-top: 0;
}
.breadcrumb-nav {
    font-size: 1rem;
    color: #444;
}
.breadcrumb-nav span {
    color: #444;
    font-size: 1rem;
}
@media (max-width: 767.98px) {
    .page-title {
        font-size: 1.2rem;
    }
    .breadcrumb-nav {
        font-size: 0.95rem;
    }
    .page-hero-breadcrumb {
        padding: 18px 0 10px 0;
    }
}


/* --- Hero Banner --- */
.page-hero-banner {
    position: relative;
    background: #e3e9ef; 
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    z-index: 1;
    overflow: hidden;
}
.page-hero-banner-bg {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat;
    opacity: 0.35;
    z-index: 1;
}
.page-hero-banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 80px 0;
    text-align: center;
}
.page-hero-banner .page-title {
    color: #222;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.page-hero-desc {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.page-hero-banner .breadcrumb-nav {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}
.page-hero-banner .breadcrumb-nav span {
    color: #444;
    font-size: 1rem;
}
@media (max-width: 767.98px) {
    .page-hero-banner-content {
        padding: 30px 0 15px 0;
    }
    .page-hero-banner .page-title {
        font-size: 1.2rem;
    }
    .page-hero-desc {
        font-size: 0.95rem;
    }
    .page-hero-banner {
        min-height: 120px;
    }
}

/* --- Kurumsal Sayfa İçerik --- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}
.section-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.2rem;
    }
    .section-desc {
        font-size: 0.95rem;
    }
}

/* --- Program Kartları --- */
.program-card {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    transition: box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 12px rgba(130,87,230,0.03);
    cursor: pointer;
}
.program-card:hover {
    border-color: #8257E6;
    box-shadow: 0 4px 24px rgba(130,87,230,0.10);
}
.program-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}
.program-card-arrow {
    color: #222;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: color 0.2s;
}
.program-card:hover .program-card-arrow {
    color: #8257E6;
}
@media (max-width: 991.98px) {
    .program-card {
        padding: 24px 16px;
        min-height: 90px;
    }
}
@media (max-width: 767.98px) {
    .program-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 10px;
        min-height: 70px;
    }
    .program-card-title {
        font-size: 1rem;
    }
}



        .swiper {
        width: 100%;
        height: 300px;
        }