/* Genel Stiller */
body {
    padding-top: 76px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* Header Stili */
header {
    background: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

header.scrolled {
    background: rgba(0, 180, 219, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
}

.top-bar {
    background: rgba(255,255,255,0.1);
    padding: 5px 0;
    font-size: 14px;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-right: 20px;
}

.top-bar a i {
    margin-right: 5px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    font-size: 15px;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: #fff !important;
    color: #00B4DB;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f8f9fa;
    color: #0083B0;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
}

/* Hero Slider Bölümü */
#heroSlider {
    position: relative;
    margin-top: -76px;
    height: 76vh;
    min-height: 700px;
    background: #000;
}

#heroSlider .carousel-item {
    height: 100vh;
    min-height: 700px;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

#heroSlider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.6) 50%, 
        rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

#heroSlider .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 50%;
    text-align: left;
    z-index: 2;
    padding-top: 76px;
}

#heroSlider h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

#heroSlider p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.3s forwards;
    color: rgba(255,255,255,0.9);
}

#heroSlider .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.6s forwards;
    background: linear-gradient(45deg, #00B4DB, #0083B0);
    border: none;
    box-shadow: 0 5px 20px rgba(0,180,219,0.3);
    transition: all 0.3s ease;
}

#heroSlider .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,180,219,0.4);
    background: linear-gradient(45deg, #0083B0, #00B4DB);
}

/* Slider Kontrolleri */
#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

#heroSlider .carousel-control-prev {
    left: 30px;
}

#heroSlider .carousel-control-next {
    right: 30px;
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    background: rgba(255,255,255,0.2);
}

#heroSlider .carousel-indicators {
    bottom: 50px;
    z-index: 3;
}

#heroSlider .carousel-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators button.active {
    width: 40px;
    background-color: #00B4DB;
}

@media (max-width: 991px) {
    #heroSlider .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    #heroSlider h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #heroSlider,
    #heroSlider .carousel-item {
        height: 90vh;
        min-height: 600px;
    }

    #heroSlider h2 {
        font-size: 2.5rem;
    }

    #heroSlider p {
        font-size: 1rem;
    }

    #heroSlider .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

/* Kurslar Kartları */
.courses-section .card {
    transition: transform 0.3s;
}

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

.courses-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Hakkımızda Bölümü */
.about-section .fas {
    margin-right: 10px;
    color: #0d6efd;
}

.about-section ul li {
    margin-bottom: 10px;
}

/* SSS Bölümü */
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}

/* İletişim Formu */
.contact-section .map-container {
    height: 100%;
    min-height: 450px;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    #heroSlider .carousel-item {
        height: 400px;
    }
    
    .about-section img {
        margin-bottom: 30px;
    }
    
    .contact-section .map-container {
        margin-top: 30px;
        height: 300px;
    }
}

/* Section Başlıkları */
.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    color: #00B4DB;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.title-shape {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.title-shape span {
    width: 30px;
    height: 4px;
    background: #00B4DB;
    border-radius: 2px;
}

.title-shape span:nth-child(2) {
    width: 15px;
}

.title-shape span:nth-child(3) {
    width: 45px;
}

/* Kurs Kartları */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-image {
    position: relative;
    height: 250px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-content p {
    font-size: 14px;
    line-height: 1.5;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.course-meta .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00B4DB;
}

/* Hakkımızda Bölümü */
.about-image {
    position: relative;
    padding-right: 50px;
}

.about-image .main-img {
    border-radius: 15px;
}

.about-image .shape-img {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 200px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    right: -30px;
    top: 30px;
    background: linear-gradient(45deg, #00B4DB, #0083B0);
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    text-align: center;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00B4DB;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    margin: 0;
}

/* SSS Bölümü */
.custom-accordion .accordion-item {
    border: none;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.custom-accordion .accordion-button {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: #fff;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #00B4DB;
    background: #fff;
}

.question-icon {
    width: 30px;
    height: 30px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #00B4DB;
    font-weight: 700;
}

/* İletişim Bölümü */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #00B4DB;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    margin: 0;
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > textarea.form-control {
    height: auto;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        top: -70px;
    }
    
    .contact-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-content .lead {
    font-size: 1rem;
}

.contact-content h2 {
    font-size: 1.8rem;
}

.contact-content .lead {
    font-size: 1rem;
}

/* Ana Sayfa Blog Kartları */
.home-blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.home-blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.05);
}

.home-blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    line-height: 1;
    min-width: 60px;
}

.home-blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0083B0;
}

.home-blog-date .month {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.home-blog-content {
    padding: 25px;
}

.home-blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.home-blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-blog-content h3 a:hover {
    color: #0083B0;
}

.home-blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.home-blog-content .read-more {
    color: #0083B0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.home-blog-content .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.home-blog-content .read-more:hover {
    color: #00B4DB;
}

.home-blog-content .read-more:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #00B4DB;
}

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

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-list a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #00B4DB;
}

.category-list a:hover,
.category-list a.active {
    color: #00B4DB;
    padding-left: 5px;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f8f9fa;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.post-thumb {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.post-info h5 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-info h5 a:hover {
    color: #00B4DB;
}

.post-info .date {
    font-size: 12px;
    color: #666;
}

/* Pagination */
.pagination {
    gap: 5px;
}

.page-link {
    border: none;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: #00B4DB;
    color: #fff;
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 50px;
    }
}

/* Footer Stili */
footer {
    background: linear-gradient(135deg, #00243C 0%, #004974 100%);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/wave-pattern.png') repeat;
    opacity: 0.03;
}

.footer-widget {
    position: relative;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social .social-link:hover {
    background: #00B4DB;
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #00B4DB;
    transition: transform 0.3s ease;
}

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #00B4DB;
    flex-shrink: 0;
}

.footer-contact .content h5 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-contact .content p {
    font-size: 14px;
    margin: 0;
}

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

.footer-contact .content a:hover {
    color: #00B4DB;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    font-size: 14px;
}

.copyright {
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00B4DB;
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        text-align: left !important;
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* Page Header Stili */
.page-header {
    position: relative;
    z-index: 1;
    margin-top:-2;
    padding: 120px 0 80px;
    background: linear-gradient(45deg, #00B4DB 0%, #0083B0 33%, #2193b0 66%, #6dd5ed 100%);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    margin-bottom: 50px;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") repeat;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 100% 0; }
}

.page-header::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.1'%3E%3Cpath d='M21.84 6.58c-.077.407-.168.803-.263 1.192-.451 1.862-1.143 3.548-1.896 5.286-.753 1.738-1.573 3.43-2.433 5.054-.859 1.625-1.76 3.185-2.686 4.635l-.111.174c-.596.932-1.979.932-2.575 0l-.111-.174c-.926-1.45-1.827-3.01-2.686-4.635-.86-1.624-1.68-3.316-2.433-5.054-.753-1.738-1.445-3.424-1.896-5.286-.095-.389-.186-.785-.263-1.192-.077-.407-.407-.186-.824-.186-1.24 0-1.413.458-2.756 1.29-3.87C6.685.356 7.705-.224 9.01.062c1.205.264 2.436-.246 3.489-.246 1.053 0 2.284.51 3.49.246 1.304-.286 2.324.294 3.158 1.408.832 1.114 1.29 2.457 1.29 3.87 0 .416-.041.833-.118 1.24zm-9.84 4.42c-.883 0-1.6-.717-1.6-1.6 0-.883.717-1.6 1.6-1.6.883 0 1.6.717 1.6 1.6 0 .883-.717 1.6-1.6 1.6z'/%3E%3C/svg%3E") no-repeat center/contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(-50%) translateX(0) rotate(0); }
    50% { transform: translateY(-50%) translateX(20px) rotate(10deg); }
    100% { transform: translateY(-50%) translateX(0) rotate(0); }
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-header .breadcrumb {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    margin: 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.page-header .breadcrumb-item {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Kurslar Sayfası Stilleri */
.page-header {
    background: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.course-filters {
    border: 1px solid rgba(0,0,0,0.1);
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.results-info {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .course-filters {
        margin-bottom: 30px;
        position: static !important;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-main .about-image {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-main .experience-badge {
    position: absolute;
    right: -30px;
    top: 30px;
    background: linear-gradient(45deg, #00B4DB, #0083B0);
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    text-align: center;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.about-main .experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-main .experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* İstatistikler Bölümü */
.statistics-section {
    background: linear-gradient(45deg, #00B4DB 0%, #0083B0 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.stat-item {
    padding: 30px 15px;
    position: relative;
    z-index: 1;
}

.stat-item .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item h4 {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Neden Biz Bölümü */
.why-us-image {
    position: relative;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 300px;
}

.floating-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00B4DB;
    margin-bottom: 15px;
}

.floating-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.floating-card p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* Ekip Kartları */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

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

.team-social a:hover {
    background: #00B4DB;
    transform: translateY(-3px);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-content .position {
    color: #666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .about-main .experience-badge {
        right: 50%;
        transform: translateX(50%);
        top: -70px;
    }
    
    .floating-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 30px;
        max-width: 100%;
    }
}

/* Hakkımızda Liste Stili */
.about-list ul li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.about-list ul li i {
    margin-right: 10px;
    font-size: 18px;
    width: 24px;
    height: 24px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content .description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Kurumsal Hakkımızda Stilleri */
.corporate-about .section-title {
    margin-bottom: 60px;
}

.corporate-about .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.corporate-about .subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.corporate-about .about-image {
    position: relative;
    margin-bottom: 30px;
}

.corporate-about .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.corporate-about .content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.corporate-about .content-text p {
    margin-bottom: 20px;
}

.vision-mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vision-mission-card .card-icon i {
    font-size: 32px;
    color: #00B4DB;
}

.vision-mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.vision-mission-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .corporate-about .section-title h2 {
        font-size: 2rem;
    }
    
    .vision-mission-card {
        margin-bottom: 30px;
    }
}

/* Galeri Stilleri */
.gallery-filters {
    margin-bottom: 40px;
}

.filter-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00B4DB;
    color: #fff;
    transform: translateY(-2px);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,180,219,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-info .category {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* Blog Sayfası Kartları */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
}

.blog-category a {
    background: #00B4DB;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-category a:hover {
    background: #0083B0;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: #00B4DB;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: #00B4DB;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-content .read-more {
    color: #00B4DB;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-content .read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.blog-content .read-more:hover {
    color: #0083B0;
}

.blog-content .read-more:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #00B4DB;
}

/* Blog Pagination */
.pagination {
    gap: 5px;
}

.page-link {
    border: none;
    color: #666;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: #00B4DB;
    color: #fff;
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 50px;
    }
}

/* Slider Animasyonları */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slider İçerik Animasyonları */
.carousel-item.active h2 {
    animation: slideUp 1s ease forwards;
}

.carousel-item.active p {
    animation: slideUp 1s ease 0.3s forwards;
}

.carousel-item.active .btn {
    animation: slideUp 1s ease 0.6s forwards;
}

/* Slider İçerik Stilleri */
#heroSlider .carousel-caption {
    z-index: 2;
    padding-top: 100px;
}

#heroSlider h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#heroSlider p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0;
    color: rgba(255,255,255,0.9);
}

#heroSlider .btn {
    opacity: 0;
}

/* İletişim Sayfası Stilleri */
.contact-page {
    position: relative;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(0,180,219,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #00B4DB;
    transition: all 0.3s ease;
}

.info-card:hover .icon {
    background: #00B4DB;
    color: #fff;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    color: #666;
}

.info-card a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card:hover a {
    color: #00B4DB;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.map-wrapper iframe {
    border: none;
    border-radius: 10px;
    width: 100%;
}

/* Çalışma Saatleri */
.working-hours {
    background: linear-gradient(45deg, #00B4DB 0%, #0083B0 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.working-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.hours-grid {
    display: grid;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.hour-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.hour-item .day {
    font-weight: 600;
}

.hour-item .time {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-bottom: 30px;
    }
}

/* Form Animasyonları */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #00B4DB;
    box-shadow: 0 0 0 0.2rem rgba(0,180,219,0.25);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Footer Çalışma Saatleri Stili */
.footer-working-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.working-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.working-hour-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.working-hour-item .day {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.working-hour-item .time {
    color: #00B4DB;
    font-weight: 600;
}

/* Sayfa İçerik Stilleri */
.content-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #00B4DB;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin: 30px 0 20px;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.content-wrapper ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-wrapper ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.content-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #00B4DB;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
    }
}