

:root {
    --primary: var(--color-rank-1);
    --primary-dark: var(--color-rank-8);
    --primary-light: var(--color-rank-5);
    --secondary: var(--color-rank-11);
    --secondary-light: var(--color-rank-15);
    --dark: var(--color-rank-3);
    --gray-dark: var(--color-rank-7);
    --gray: var(--color-rank-4);
    --gray-light: var(--color-rank-9);
    --light: var(--color-rank-10);
    --white: var(--color-rank-2);
    --border: var(--color-rank-6);
    --shadow: 0 6px 12px -6px var(--color-rank-18), 0 -6px 12px -6px var(--color-rank-18);
    --shadow-lg: 0 16px 24px -16px var(--color-rank-19), 0 -16px 24px -16px var(--color-rank-19);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:focus-visible, .btn-primary:disabled {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary:focus-visible {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    display: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown toggle için özel stil - alt çizgiyi iptal et */
.navbar-nav .dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    font-size: 12px;
    position: static;
    background: none;
    height: auto;
    transform: none;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Dropdown toggle için alt çizgi - before pseudo-element kullan */
.navbar-nav .dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    display: none;
}

.btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


.navbar-nav .dropdown-toggle:hover::before,
.navbar-nav .dropdown-toggle.active::before {
    transform: scaleX(1);
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]:hover::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    /*border: none;*/
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.lang-dropdown .dropdown-item:hover {
    background: transparent;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark);
    transition: var(--transition);
}

.nav-icon:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-nav {
    padding: 10px 24px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    max-width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border);
}

.offcanvas-body .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}


.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Eğitim Şekilleri */
.hero-shapes {
    position: absolute;
    top: 0;
    left: -80px;
    right: -80px;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.hero-shapes .shape {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 4px 15px var(--color-rank-23);
}

/* Sol üst köşe */
.hero-shapes .shape-1 {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
    width: 55px;
    height: 55px;
    font-size: 22px;
}

/* Sağ üst köşe */
.hero-shapes .shape-2 {
    top: 10px;
    right: 40%;
    animation-delay: 1s;
    width: 60px;
    height: 60px;
    font-size: 24px;
}

/* Sol orta */
.hero-shapes .shape-3 {
    top: 40%;
    left: 20px;
    animation-delay: 2s;
    width: 45px;
    height: 45px;
    font-size: 18px;
}

/* Sağ orta */
.hero-shapes .shape-4 {
    top: 35%;
    right: 25px;
    animation-delay: 3s;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

/* Sol alt */
.hero-shapes .shape-5 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
    width: 42px;
    height: 42px;
    font-size: 17px;
}

/* Sağ alt */
.hero-shapes .shape-6 {
    bottom: -40px;
    right: 30%;
    animation-delay: 5s;
    width: 48px;
    height: 48px;
    font-size: 19px;
}

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

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .swiper-hero {
    padding-bottom: 50px;
}

.hero-section .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-section .swiper-slide-active {
    opacity: 1;
}

.hero-content {
    padding: 20px 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image .main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    max-width: 550px;
}

/* Hero Slider Pagination */
.swiper-hero .swiper-pagination {
    bottom: 0;
}

.swiper-hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
    transition: var(--transition);
}

.swiper-hero .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

.advantages-section {
    background: var(--white);
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    background: var(--primary-light);
}

.advantage-card .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
}

.advantage-card:hover .icon {
    background: var(--primary);
    color: var(--white);
}

.advantage-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.courses-section {
    background: var(--light);
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-card .card-img {
    position: relative;
    overflow: hidden;
}

.course-card .card-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .card-img img {
    transform: scale(1.05);
}

.course-card .card-img .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-card .card-body {
    padding: 20px;
}

.course-card .card-body h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.course-card .card-body h5 a:hover {
    color: var(--primary);
}

.course-card .card-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.course-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.course-card .card-meta span {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-card .card-meta .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.about-section {
    background: var(--white);
    overflow-x: hidden;
}

.about-image {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}



.testimonials-section {
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-card .stars {
    color: var(--secondary);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.testimonial-card .author span {
    font-size: 13px;
    color: var(--gray);
}

.gallery-section {
    background: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rank-24);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius);
}

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

.gallery-item .overlay i {
    color: var(--white);
    font-size: 32px;
}

.team-section {
    background: var(--light);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card .card-img {
    position: relative;
    overflow: hidden;
}

.team-card .card-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .card-img img {
    transform: scale(1.05);
}

.team-card .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, var(--color-rank-25));
    transition: var(--transition);
}

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

.team-card .social-links a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-card .social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.team-card .card-body {
    padding: 20px;
}

.team-card .card-body h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .card-body h5 a:hover {
    color: var(--primary);
}

.team-card .card-body span {
    font-size: 14px;
    color: var(--primary);
}

.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 20px 25px;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

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

.accordion-button::after {
    background-size: 16px;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray);
}

.blog-section {
    background: var(--light);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-img {
    position: relative;
    overflow: hidden;
}

.blog-card .card-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card .card-img .date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
}

.blog-card .card-img .date span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.blog-card .card-img .date small {
    font-size: 12px;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .card-body .category {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card .card-body h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .card-body h5 a:hover {
    color: var(--primary);
}

.blog-card .card-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card .read-more:hover {
    gap: 10px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--color-rank-26);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: var(--color-rank-27);
    border-radius: 50%;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    color: var(--color-rank-20);
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn-light {
    background: var(--white);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-buttons .btn-whatsapp {
    background: var(--color-rank-12);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--color-rank-12);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.cta-buttons .btn-whatsapp:hover {
    background: var(--color-rank-13);
    border-color: var(--color-rank-13);
    transform: translateY(-2px);
}


.page-banner {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-rank-28), var(--color-rank-29));
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.banner-content .breadcrumb {
    justify-content: center;
    margin: 0;
}

.banner-content .breadcrumb-item,
.banner-content .breadcrumb-item a {
    color: var(--color-rank-30);
    font-size: 15px;
}

.banner-content .breadcrumb-item.active {
    color: var(--white);
}

.banner-content .breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-31);
}



.footer-main {
    background: var(--dark);
    padding: 60px 0;
}

.footer-brand .brand-icon {
    background: var(--primary);
}

.footer-brand .brand-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-rank-32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-main h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray-light);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact li {
    color: var(--gray-light);
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom {
    background: var(--color-rank-16);
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--gray-light);
    margin: 0;
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: var(--gray-light);
    font-size: 14px;
}

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

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.editor-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.editor-content h1, 
.editor-content h2, 
.editor-content h3, 
.editor-content h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.editor-content ul, 
.editor-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.editor-content li {
    margin-bottom: 10px;
}

.editor-content blockquote {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.editor-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.sidebar-widget .search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
}

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

.sidebar-widget .category-list li {
    margin-bottom: 12px;
}

.sidebar-widget .category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--gray-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-widget .category-list a:hover {
    color: var(--primary);
}

.sidebar-widget .recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.sidebar-widget .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget .recent-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.sidebar-widget .recent-post h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-widget .recent-post h6 a:hover {
    color: var(--primary);
}

.sidebar-widget .recent-post span {
    font-size: 12px;
    color: var(--gray);
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--gray-dark);
    font-weight: 500;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}

.contact-info-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray);
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--color-rank-21);
}

.contact-form textarea {
    min-height: 150px;
    resize: none;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-filter .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
}

.gallery-filter .btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Gallery Grid Masonry */
.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item-wrapper {
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.gallery-grid-masonry .gallery-item-wrapper {
    margin-bottom: 0;
}

.gallery-item-wrapper.hide {
    display: none;
}

@media (max-width: 767px) {
    .gallery-grid-masonry {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid .gallery-item img {
    aspect-ratio: 1/1;
}

.hr-section {
    background: var(--light);
}

.hr-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hr-content img {
    border-radius: var(--radius-lg);
    max-width: 500px;
}

.hr-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.hr-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.hr-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.hr-form h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
}

.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.file-upload i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}

.file-upload p {
    margin: 0;
    color: var(--gray);
}

.file-upload input {
    display: none;
}

.team-detail-section {
    background: var(--white);
}

.team-detail-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.team-detail-img img {
    border-radius: var(--radius-lg);
    width: 100%;
    transition: var(--transition);
}

.team-thumbnail {
    display: block;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.team-thumbnail:hover,
.team-thumbnail.active {
    border-color: var(--primary);
    transform: translateY(-3px);
    opacity: 1;
}

.team-thumbnail img {
    transition: var(--transition);
    width: 100%;
    height: auto;
    display: block;
}

.team-thumbnail:hover img,
.team-thumbnail.active img {
    transform: scale(1.05);
}

.team-detail-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-detail-info .position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.team-detail-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

.team-detail-info .editor-content {
    margin-bottom: 30px;
}


.team-contact-info {
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.team-contact-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.team-social-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.team-detail-info .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-detail-info .contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.team-detail-info .contact-list li:last-child {
    margin-bottom: 0;
}

.team-detail-info .contact-list i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--color-rank-22);
}

.team-detail-info .contact-list a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: var(--transition);
}

.team-detail-info .contact-list a:hover {
    color: var(--primary);
}

.team-detail-info .contact-list span {
    color: var(--gray-dark);
}

.team-detail-info .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.team-detail-info .social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.team-detail-info .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--color-rank-33);
}

.course-detail-section {
    background: var(--white);
}

.course-gallery {
    margin-bottom: 30px;
}

.course-gallery .main-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 15px;
}

.course-gallery .main-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.course-gallery .thumb-slider .swiper-slide {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.6;
    transition: var(--transition);
}

.course-gallery .thumb-slider .swiper-slide-thumb-active,
.course-gallery .thumb-slider .swiper-slide:hover {
    opacity: 1;
}

.course-gallery .thumb-slider img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.course-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.course-meta span i {
    color: var(--primary);
}

.course-features {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.course-features h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.course-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.course-features li i {
    color: var(--primary);
}

.course-price {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
}

.course-price .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.course-price .btn {
    width: 100%;
}

.values-section {
    background: var(--primary-light);
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 32px;
}

.value-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
    margin: 0;
}

.history-timeline {
    position: relative;
    padding-left: 30px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.timeline-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--gray);
    margin: 0;
}

.make-sticky {
    position: sticky;
    top: 120px;
}

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

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

.accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--border);
}

.text-primary {
    color: var(--primary) !important;
}

@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-shapes {
        left: -50px;
        right: -50px;
    }
    
    .hero-shapes .shape {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Sol üst köşe */
    .hero-shapes .shape-1 {
        top: -15px;
        left: 10%;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Sağ üst köşe */
    .hero-shapes .shape-2 {
        top: -50px;
        right: 35%;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Sol orta */
    .hero-shapes .shape-3 {
        top: 40%;
        left: 15px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    /* Sağ orta */
    .hero-shapes .shape-4 {
        top: 35%;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    /* Sol alt */
    .hero-shapes .shape-5 {
        bottom: 10%;
        left: 12%;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    /* Sağ alt */
    .hero-shapes .shape-6 {
        bottom: -35px;
        right: 28%;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 34px;
    }
    
    .hero-content {
        text-align: center;
        padding: 30px 0 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-bottom: 20px;
    }
    
    .hero-image .main-img {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-shapes .shape {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-shapes {
        left: -30px;
        right: -30px;
    }
    
    /* Sol üst köşe */
    .hero-shapes .shape-1 {
        top: -10px;
        left: 8%;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    /* Sağ üst köşe - gizle */
    .hero-shapes .shape-2 {
        display: none;
    }
    
    /* Sol orta */
    .hero-shapes .shape-3 {
        top: 40%;
        left: 10px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Sağ orta - gizle */
    .hero-shapes .shape-4 {
        display: none;
    }
    
    /* Sol alt */
    .hero-shapes .shape-5 {
        bottom: 10%;
        left: 10%;
        width: 33px;
        height: 33px;
        font-size: 13px;
    }
    
    /* Sağ alt - gizle */
    .hero-shapes .shape-6 {
        display: none;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hr-content {
        flex-direction: column;
    }
    
    .hr-content img {
        max-width: 100%;
    }

    html,body {
        overflow-x: hidden;
    }

    .faq-section {
        position: relative;
        padding-bottom: 100px !important;
    }
    .faq-section .btn-primary{
        position: absolute;
        bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 140px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .hero-shapes .shape {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Sol üst köşe */
    .hero-shapes .shape-1 {
        top: -5px;
        left: 5%;
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    /* Sağ üst köşe - gizle */
    .hero-shapes .shape-2 {
        display: none;
    }
    
    /* Sol orta */
    .hero-shapes .shape-3 {
        top: 40%;
        left: 5px;
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    /* Sağ orta - gizle */
    .hero-shapes .shape-4 {
        display: none;
    }
    
    /* Sol alt */
    .hero-shapes .shape-5 {
        bottom: 10%;
        left: 8%;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Sağ alt - gizle */
    .hero-shapes .shape-6 {
        display: none;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .page-banner {
        padding: 140px 0 80px;
        background-position: left;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cta-buttons .btn-light,
    .cta-buttons .btn-whatsapp {
        padding: 12px 28px;
        font-size: 15px;
        justify-content: center;
    }
    

    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .swiper-hero .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .swiper-hero .swiper-pagination-bullet-active {
        width: 28px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 135px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-shapes {
        left: -15px;
        right: -15px;
    }
    
    .hero-shapes .shape {
        display: none;
    }
    
    /* Sol üst köşe */
    .hero-shapes .shape-1 {
        display: flex;
        top: -5px;
        left: 3%;
        width: 30px;
        height: 30px;
        font-size: 12px;
        opacity: 0.6;
    }
    
    /* Sağ üst köşe - gizle */
    .hero-shapes .shape-2 {
        display: none;
    }
    
    /* Sol orta - gizle */
    .hero-shapes .shape-3 {
        display: none;
    }
    
    /* Sağ orta - gizle */
    .hero-shapes .shape-4 {
        display: none;
    }
    
    /* Sol alt */
    .hero-shapes .shape-5 {
        display: flex;
        bottom: 10%;
        left: 5%;
        width: 28px;
        height: 28px;
        font-size: 11px;
        opacity: 0.6;
    }
    
    /* Sağ alt - gizle */
    .hero-shapes .shape-6 {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .hr-form {
        padding: 25px;
    }
}


.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
}

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

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

/* Main Gallery Slider Navigation */
.main-gallery-slider {
    position: relative;
}

.main-gallery-slider .swiper-button-next,
.main-gallery-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--color-rank-20);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    margin-top: -25px;
    transition: var(--transition);
}

.main-gallery-slider .swiper-button-next::after,
.main-gallery-slider .swiper-button-prev::after {
    font-size: 18px;
    color: var(--primary);
    font-weight: 900;
}

.main-gallery-slider .swiper-button-next:hover,
.main-gallery-slider .swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.main-gallery-slider .swiper-button-next:hover::after,
.main-gallery-slider .swiper-button-prev:hover::after {
    color: var(--white);
}

.main-gallery-slider .swiper-button-prev {
    left: 15px;
}

.main-gallery-slider .swiper-button-next {
    right: 15px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.lang-dropdown .btn-link {
    color: var(--dark);
    text-decoration: none;
    padding: 0;
}

.lang-dropdown .btn-link:hover {
    color: var(--primary);
}

.subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mfp-bg {
    background: var(--color-rank-34);
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: var(--white);
    font-size: 30px;
}

.mfp-arrow {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    opacity: 1;
}

.mfp-arrow::before,
.mfp-arrow::after {
    border: none;
}

.mfp-arrow-left::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-left: 15px;
}

.mfp-arrow-right::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-left: 18px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--color-rank-21);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: var(--color-rank-14);
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--primary);
}

.invalid-feedback {
    font-size: 13px;
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
}

.blog-card .read-more {
    margin-top: auto;
}

.team-card .card-body p {
    font-size: 13px;
}

.course-card,
.blog-card,
.team-card {
    display: flex;
    flex-direction: column;
}

.course-card .card-body,
.blog-card .card-body,
.team-card .card-body {
    flex: 1;
}

.swiper-courses, .swiper-testimonials {
    padding-bottom: 50px;
    padding-top: 30px;
}

.swiper-testimonials .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-testimonials .swiper-slide {
    height: auto;
    display: flex;
}

.swiper-testimonials .swiper-slide > * {
    width: 100%;
}

.courses-section .section-header {
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    /* Main gallery slider butonları mobilde de görünsün */
    .main-gallery-slider .swiper-button-next,
    .main-gallery-slider .swiper-button-prev {
        display: flex;
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .main-gallery-slider .swiper-button-next::after,
    .main-gallery-slider .swiper-button-prev::after {
        font-size: 14px;
    }
    
    .main-gallery-slider .swiper-button-prev {
        left: 10px;
    }
    
    .main-gallery-slider .swiper-button-next {
        right: 10px;
    }
}

.offcanvas-body .dropdown {
    position: relative;
}

.offcanvas-body .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out, opacity 0.3s ease-out;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    display: block;
}

.offcanvas-body .dropdown-menu.show {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1;
}

.offcanvas-body .dropdown-item {
    padding: 8px 12px;
    border-bottom: none;
}

.offcanvas-body .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    font-size: 12px;
    float: right;
    margin-top: 4px;
}

.offcanvas-body .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.contact-form .form-control,
.contact-form .form-select,
.hr-form .form-control,
.hr-form .form-select {
    margin-bottom: 15px;
}

.contact-form .invalid-feedback,
.hr-form .invalid-feedback {
    margin-top: -10px;
    margin-bottom: 15px;
}




/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 60px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 60px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-35);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-17);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-22);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary);

    color: white;

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease-in-out;
}

.cookie-button:hover {
    background-color: var(--primary-dark);
    color: var(--color-rank-2);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-14);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-2);
    background-color: var(--primary-dark);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-2);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.advantage-card .icon img {
    width: auto;
    height: 28px;
    object-fit: contain;
}
.advantage-card:hover .icon img {
    filter: brightness(0) invert(1);
}

.course-card-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;

    border-radius: 6px;
    background: none;
    color: var(--primary);
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: 
        color 0.16s cubic-bezier(.4,0,.2,1),
        background 0.2s,
        box-shadow 0.16s,
        text-decoration-color 0.16s;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.course-card-link::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23005a45" stroke-width="2.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M7 14l5-5-5-5"/></svg>');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.22s cubic-bezier(.4,0,.2,1);
}

.course-card-link:hover,
.course-card-link:focus {
    color: var(--primary-dark);
    outline: none;
    text-decoration: none;
}

.course-card-link:hover::after,
.course-card-link:focus::after {
    transform: translateX(4px) scale(1.08);
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23004839" stroke-width="2.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M7 14l5-5-5-5"/></svg>');
}

.sidebar-widget .category-list a.active {
    color: var(--primary);
}


.btn-outline-primary.second {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-outline-primary.second:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.course-detail-content {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.top-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    line-height: 1.25;
    position: relative;
    text-align: left;
    padding-left: 6px;
}

.top-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 12px 0 0 0;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

.top-section h2:hover::after {
    width: 100px;
}

.top-section h2 span {
    color: var(--secondary);
}

.accordion-item:last-of-type {
    margin-bottom: 0;
}

.sidebar-widget.for-courses {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget.for-courses h5 {
       font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    line-height: 1.25;
    position: relative;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-widget.for-courses h5::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 12px 0 0 0;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

.sidebar-widget.for-courses h5:hover::after {
    width: 100px;
}
.sidebar-widget.for-courses .category-list a {
    color: var(--gray-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-widget.for-courses .category-list a:hover {
    color: var(--primary);
}

.sidebar-widget.for-courses .category-list a.active {
    color: var(--primary);
    font-weight: 600;
}


.custom-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    margin: 0 auto;
    display: block;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.advantage-card:hover .custom-icon {
    background-color: var(--white);
}