<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Genel Stiller */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: #212529 !important; /* Bootstrap'in bg-dark rengi */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(44, 62, 80, 0.9);
    padding: 0.5rem 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo-subtext {
    font-size: 0.8rem;
    color: var(--secondary-color);
    display: block;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

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

.register-button {
    background-color: var(--accent-color);
    border-radius: 5px;
    padding: 0.5rem 1rem !important;
}

.register-button:hover {
    background-color: #c0392b;
    color: white !important;
}

/* Hero Section */

.hero-section {
    background: url('/images/bg3.png') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Daha net gÃ¶rÃ¼nmesi iÃ§in */
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.course-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-image {
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 5px;
    padding: 0.8rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-right: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-outline-light {
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card, .course-card, .contact-info, .contact-form {
        margin-bottom: 2rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* About Section */
.about-content {
    padding-right: 2rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 0.3;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

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

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 2rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 30px;
    margin-right: 10px;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Sosyal Medya MenÃ¼sÃ¼ */
.social-menu {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border-radius: 30px;
    padding: 8px 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
}

.social-link::before {
    content: attr(title);
    position: absolute;
    right: 120%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover::before {
    opacity: 1;
    visibility: visible;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: translateX(-5px);
}

/* Ã–n KayÄ±t Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    color: white;
    opacity: 1;
}

.form-select {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.form-select:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .whatsapp-button {
        bottom: 20px;
        left: 20px;
        height: 50px;
        padding: 0 20px;
    }

    .whatsapp-button i {
        font-size: 24px;
        margin-right: 8px;
    }

    .whatsapp-text {
        font-size: 14px;
    }

    .social-menu {
        right: 20px;
        padding: 10px 8px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* AOS AnimasyonlarÄ± */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Ã–n KayÄ±t Hero Section */
.register-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Ã–zellikler Listesi */
.features-list {
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Ã–n KayÄ±t Form Container */
.register-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.register-form {
    margin-top: 2rem;
}

.register-form .form-control,
.register-form .form-select {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.register-form .form-control:focus,
.register-form .form-select:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.register-form .btn-primary {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 768px) {
    .register-hero {
        text-align: center;
        padding: 2rem 0;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .register-form-container {
        padding: 2rem;
        margin-top: 2rem;
    }
}

/* SÄ±k Sorulan Sorular Stili */
.faq-accordion .accordion-item {
    border: none;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    border: none;
    background: #fff;
    border-radius: 10px !important;
    color: #2c3e50;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #3498db;
    background-color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button i {
    margin-right: 15px;
    font-size: 1.2em;
    color: #3498db;
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.faq-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.faq-list li:before {
    content: "â€¢";
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233498db'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
    .faq-accordion .accordion-button {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    .faq-accordion .accordion-body {
        padding: 15px 20px;
    }

    .faq-list li {
        font-size: 0.9em;
    }
}

/* Footer LogolarÄ± */
.footer-logos {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logos {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        height: 40px;
    }
}

/* Footer Section */
.footer-section {
    background: var(--primary-color);
    color: #fff;
    padding: 70px 0 0;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-hours .day {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Sosyal Medya Linkleri - Footer */
.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.social-media-links .social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-media-links .social-link i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-media-links .social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-media-links .social-link:hover {
    transform: translateX(5px);
}

.social-media-links .facebook:hover {
    background: #1877f2;
}

.social-media-links .instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-links .tiktok:hover {
    background: #000;
}

@media (max-width: 768px) {
    .social-media-links {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .social-media-links .social-link {
        flex: 1;
        justify-content: center;
        padding: 12px;
    }

    .social-media-links .social-link span {
        display: none;
    }

    .social-media-links .social-link:hover {
        transform: translateY(-5px);
    }
} </pre></body></html>