      /* Genel Ayarlar */
html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
        line-height: 1.6;
        color: #333;
        background-color: #f4f4f4;
    }
    
    a {
        color: #333;
        text-decoration: none;
    }
    
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }
    
    .nav-menu {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        color: #fff;
        text-decoration: none;
    }
    
    .menu-toggle {
        display: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        padding: 15px;
    }
    
    @media screen and (max-width: 768px) {
        .menu-toggle {
            display: block;
        }
    
        .nav-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.8);
        }
    
        .nav-menu.active {
            display: flex;
        }
    
        .nav-link {
            padding: 15px;
            text-align: center;
        }
    }
    
    
    .header:hover {
        background: rgba(0, 0, 0, 0.2); /* Hover ile tam siyah arka plan */
    }
    
    
    
    .nav-menu li {
        margin: 0 20px;
    }
    
  
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 2px;
        background: #ff8c00; /* Alt çizgi rengi (turuncu) */
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::before {
        width: 100%; /* Hover ile alt çizgi genişleme efekti */
    }
    
    .nav-link:hover {
        color: #ff8c00; /* Hover durumunda metin rengi turuncu */
    }
    
    .nav-link.active {
        color: #ff8c00; /* Aktif link rengi (turuncu) */
        font-weight: 700; /* Aktif link için kalın yazı */
    }
    
    /* Responsive Tasarım */
    @media (max-width: 768px) {
        .nav-menu {
            flex-direction: column;
            align-items: flex-start;
            position: absolute;
            top: 70px; /* Menü yüksekliğine göre ayarlama */
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none; /* Başlangıçta gizle */
        }
    
        .nav-menu.active {
            display: flex; /* Menü açıldığında göster */
        }
    
        .nav-link {
            padding: 15px 20px;
            font-size: 20px;
        }
    }
    
    
    
    /* Hizmetler Bölümü */
    .services {
        padding: 80px 0;
        background-color: #f9f9f9;
        text-align: center;
    }
    
    .services .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .services h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: #333;
        position: relative;
    }
    
    .services h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #ff8c00;
        margin: 20px auto 0;
    }
    
    .service-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .card {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: calc(33.333% - 20px);
        margin-bottom: 30px;
        text-align: center;
    }
    
    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    }
    
    .card-icon {
        font-size: 2.5rem;
        color: #ff8c00;
        margin: 20px 0;
    }
    
    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 3px solid #ff8c00;
    }
    
    .card h3 {
        font-size: 1.5rem;
        margin: 20px 0 10px;
        color: #ff8c00;
    }
    
    .card p {
        font-size: 1rem;
        padding: 0 20px 20px;
        color: #666;
    }
    
    @media (max-width: 992px) {
        .card {
            width: calc(50% - 15px);
        }
    }
    
    @media (max-width: 768px) {
        .services h2 {
            font-size: 2rem;
        }
        
        .card {
            width: 100%;
        }
    }
    
    /* Hakkımızda Bölümü */
    .about {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 20px;
    }
    
    .about-content {
        flex: 1;
        padding-right: 50px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
        position: relative;
    }
    
    .about-content h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #ff8c00;
        margin-top: 10px;
    }
    
    .about-content p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .about-features-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .about-features {
        width: 48%; /* İki sütun arasında biraz boşluk bırakmak için */
        padding-left: 0;
    }
    
    .about-features li {
        margin-bottom: 10px;
        list-style-type: none;
    }
    
    .about-features i {
        margin-right: 10px;
        color: #ff8c00; /* veya tercih ettiğiniz bir renk */
    }
    
    @media (max-width: 768px) {
        .about-features-container {
            flex-direction: column;
        }
        
        .about-features {
            width: 100%;
        }
    }
    
    .cta-button {
        display: inline-block;
        padding: 12px 25px;
        background-color: #ff8c00;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    
    .cta-button:hover {
        background-color: #e67e00;
    }
    
    .about-image {
        flex: 1;
        text-align: center;
    }
    
    .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .about-image img:hover {
        transform: scale(1.05);
    }
    
    @media (max-width: 992px) {
        .about-container {
            flex-direction: column;
        }
    
        .about-content {
            padding-right: 0;
            margin-bottom: 40px;
        }
    
        .about-image {
            width: 100%;
        }
    }
    
    /* Harita Bölümü */
    .map-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    .map-section h6.text-orange {
        color: #ff8c00 !important;
    }
    .map-container {
        height: 450px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    .contact-info {
        height: 100%;
        padding: 30px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contact-info h3 {
        margin-bottom: 20px;
        color: #333;
        font-size: 24px;
    }
    
    .contact-info ul {
        margin-bottom: 20px;
        padding-left: 0;
    }
    
    .contact-info li {
        margin-bottom: 15px;
        color: #666;
        font-size: 16px;
        display: flex;
        align-items: center;
    }
    
    .contact-info i {
        margin-right: 15px;
        color: #ff8c00;
        font-size: 20px;
        width: 25px;
        text-align: center;
    }
    
    .contact-info h4 {
        margin-top: 30px;
        margin-bottom: 15px;
        color: #333;
        font-size: 20px;
    }
    
    .contact-info p {
        color: #666;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .contact-info p i {
        margin-right: 15px;
        color: #ff8c00;
        font-size: 18px;
        width: 25px;
        text-align: center;
    }
    
    .btn-orange {
        background-color: #ff8c00;
        border-color: #ff8c00;
        color: #fff;
        padding: 10px 20px;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .btn-orange:hover {
        background-color: #fff;
        border-color: #ff8c00;
        color: #ff8c00;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(230, 126, 0, 0.3);
    }
    
    .btn-orange i {
        margin-right: 10px;
        color: #fff; /* İkonun rengini beyaz yapıyoruz */
    }
    
    .btn-orange:hover i {
        color: #ff8c00; /* Hover durumunda ikonun rengini turuncu yapıyoruz */
    }
    
    @media (max-width: 992px) {
        .map-container {
            height: 350px;
            margin-bottom: 30px;
        }
        
        .contact-info {
            height: auto;
        }
    }
    
    @media (max-width: 768px) {
        .map-section h1 {
            font-size: 2rem;
        }
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes zoomIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
    
    /* Sıkça Sorulan Sorular (FAQ) Bölümü */
    .faq-section {
        background-color: #f8f9fa;
        padding: 80px 0;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-item {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .faq-question {
        padding: 20px;
        cursor: pointer;
        font-weight: 600;
        font-size: 18px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        background-color: #ff8c00; /* Turuncu renk */
        border-radius: 50%;
        display: inline-block;
        margin-right: 15px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background-color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .faq-icon::before {
        width: 2px;
        height: 12px;
    }
    
    .faq-icon::after {
        width: 12px;
        height: 2px;
    }
    
    .faq-question.active .faq-icon {
        transform: rotate(45deg);
        background-color: #ff0000; /* Kırmızı renk */
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.5s ease;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        line-height: 1.6;
    }
    
    .faq-question.active + .faq-answer {
        max-height: 1000px;
    }
    
    /* Öğrenci Yorumları Bölümü */
    .testimonial-section {
        background-color: #fff;
    }
    
    .testimonial-section h6 {
        color: #ff8c00; /* Turuncu */
    }
    
    .testimonial-section h1 {
        color: #333;
    }
    
    .testimonial-item {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
        padding: 30px;
        transition: all 0.3s ease;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-item:hover {
        transform: scale(1.05);
        box-shadow: 0 0 10px 10px rgba(168, 118, 57, 0.1);
    }
    
    .testimonial-item::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(45deg, #e5922c, transparent, #e99a3a);
        z-index: -1;
        filter: blur(5px);
        opacity: 0.7;
        border-radius: 15px;
    }
    
    .testimonial-img-wrapper {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 15px;
        border: 3px solid #ff8c00;
    }
    
    .testimonial-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .testimonial-item h5 {
        color: #333;
        margin-bottom: 5px;
    }
    
    .testimonial-item .student-info {
        color: #ff8c00;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        position: relative;
        padding-top: 20px;
    }
    
    .testimonial-text:before {
        content: '\201C';
        font-size: 60px;
        color: #ff8c00;
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        text-align: center;
        opacity: 0.3;
    }
    
    .testimonial-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }
    
    /* Owl Carousel özel stilleri */
    .owl-dots {
        text-align: center;
        margin-top: 30px;
    }
    
    .owl-dot {
        display: inline-block;
        margin: 0 5px;
    }
    
    .owl-dot span {
        width: 12px;
        height: 12px;
        background-color: #ffe0b3 !important; /* Açık turuncu */
        display: block;
        transition: all 0.3s ease;
        border-radius: 50%;
        border: 2px solid #ff8c00; /* Turuncu çerçeve */
    }
    
    .owl-dot.active span,
    .owl-dot:hover span {
        background-color: #ff8c00 !important; /* Koyu turuncu */
    }
    
    .owl-dots .owl-dot {
        background: none !important;
        border: none !important;
        padding: 0 !important;
        outline: none !important;
    }
    
    .owl-dots .owl-dot:focus {
        outline: none !important;
    }
    
    /* Footer */
    footer {
        background-color: #1a1a1a;
    }
    
    footer h5 {
        color: #ff8c00;
        letter-spacing: 2px;
    }
    
    footer .text-muted {
        color: #a0a0a0 !important;
    }
    
    footer .text-primary {
        color: #1e90ff !important;
    }
    
    footer .text-warning {
        color: #ff8c00 !important;
    }
    
    footer a:hover {
        color: #ff8c00 !important;
        text-decoration: none;
    }
    
    .bg-darker {
        background-color: #151515;
    }
    
    footer .list-inline-item:not(:last-child) {
        margin-right: 1.5rem;
    }
    
    footer .fab {
        font-size: 1.5rem;
    }
    .feedback-popup {
        position: fixed;
        bottom: -300px; /* Başlangıçta gizli olması için */
        right: 20px;
        width: 300px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
        transition: bottom 0.5s ease;
        z-index: 1000;
        font-family: Arial, sans-serif;
    }
    
    .feedback-popup.hidden {
        display: none;
    }
    
    .feedback-popup.show {
        bottom: 20px;
    }
    
    .feedback-content {
        padding: 20px;
    }
    
    .feedback-popup h3 {
        margin: 0 0 15px;
        font-size: 18px;
        color: #333;
    }
    
    .feedback-subtitle {
        margin-bottom: 15px;
        font-size: 14px;
        color: #666;
    }
    
    .star-rating-container {
        text-align: center;
        margin-bottom: 15px;
        height: 50px; /* Sabit bir yükseklik ver */
    }
    
    .star-rating {
        font-size: 30px;
        color: #ddd;
        display: inline-block; /* Inline-block olarak ayarla */
        line-height: 1; /* Line height'ı 1 olarak ayarla */
    }
    
    .star {
        cursor: pointer;
        transition: color 0.2s;
        display: inline-block; /* Inline-block olarak ayarla */
        width: 30px; /* Sabit genişlik */
        text-align: center; /* Metni ortala */
    }
    
    #rating-text {
        margin-top: 10px;
        font-size: 16px;
        font-weight: bold;
        height: 20px; /* Sabit bir yükseklik ver */
        line-height: 20px; /* Line height'ı yükseklikle aynı yap */
    }
    
    
    
    #feedback-message {
        margin-top: 15px;
        font-size: 14px;
        text-align: center;
    }
    
    #close-feedback {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 20px;
        color: #999;
        cursor: pointer;
    }
    