/* infoakademi Stiller */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Barlow:wght@100;500;600&display=swap");
:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #06d6a0;
    --accent-color: #f72585;
    --text-color: #2b2d42;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}
html * {
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    
}

 .hero-left {
        flex: 1;
    }
    
    .hero-left h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: var(--text-color);
    }
    
    .hero-left h1 span {
        color: var(--primary-color);
    }
    
    .hero-left p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        max-width: 90%;
    }
	
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}
.logo span {
    font-size: 1.75rem;
    font-weight:600;
    color: var(--primary-color);
	font-family: 'Barlow', sans-serif;
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 0.95rem;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    width: 35px;
    margin-right: 10px;
}

.tab-nav-next{
   display: none
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #415de4;
}
.course-breadcrumb ol {
       display: inline-flex;
    list-style-type: none;
    margin-block-start: 1em;
    margin-block-end: 10px;
}
.course-breadcrumb i {
      margin-left: 10px;
    margin-right: 10px;
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0rem;
}
    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 12px;
        width: 100%;
        font-size: 16px;
        color: #333;
        cursor: pointer;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
    }

    select:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
    }

    select:disabled {
        background-color: #f5f5f5;
        cursor: not-allowed;
    }

    @supports (-webkit-touch-callout: none) {
        select {
            font-size: 16px;
            padding-right: 30px;
        }
    }

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tab-nav-buttons {
        display: block;
    }

    .tab-nav-next {
        display: block;
        position: absolute;
        right: 10px;
        top: 35%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        cursor: pointer;
        z-index: 2;
        color: var(--primary-color);
    }

    .tab-nav-next i {
		font-size: 16px;
        position: inherit;
        top: 4px;
    }

    .tab-nav-next:hover {
        background: var(--primary-color);
        color: white;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-header::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}


header {
    background-color: rgba(255, 255, 255, 0.8); /* Åeffaf arka plan */
    backdrop-filter: blur(10px); /* Blur efekti */
    -webkit-backdrop-filter: blur(10px); /* Safari iÃ§in destek */
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease; /* YumuÅŸak geÃ§iÅŸ efekti */
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.9); /* Biraz daha opak */
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}



.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.publication-price {
    font-size: 1.1rem;
    margin-top: 0.75rem;
    color: #111827;
}

.video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.video-btn i {
    font-size: 1.2rem;
}

.video-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.video-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-video:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .video-popup-content {
        width: 95%;
    }
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}


.hero-subscribe {
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.subscribephone {
    display: flex;
    position: relative;
    height: 50px;
    margin-bottom: 0.5rem;
    width: 358px;
}

.subscribephone input {
    flex: 1;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0 1rem;
    font-size: 0.95rem;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.subscribephone input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.subscribephone button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: calc(var(--radius) - 2px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribephone button:hover {
    background-color: var(--primary-dark);
    transform: translateX(2px);
}

.subscribe-info {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    padding-left: 0.5rem;
}

@media (max-width: 992px) {
    .hero-subscribe {
        margin-left: auto;
        margin-right: auto;
    }
}

.categories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
}

.popular-courses {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.course-search {
    margin: 20px auto 30px;
    text-align: center;
    padding: 0 15px;
    max-width: 600px;
}

.course-search .search-input {
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px;
}

.course-search .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.course-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.course-image img[data-skeleton] {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.course-image.loaded img[data-skeleton] {
    opacity: 1;
}

.course-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #f1f5f9 0%, #e2e8f0 40%, #f8fafc 70%);
    background-size: 200% 100%;
    animation: courseSkeleton 1.5s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.course-image.loaded::after {
    opacity: 0;
    visibility: hidden;
    animation: none;
}

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

.course-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-content {
    padding: 1.5rem;
}

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rating, .level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating i {
    color: #fbbf24;
}

.course-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

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

.instructor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instructor img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.instructor span {
    font-size: 0.875rem;
    font-weight: 500;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.view-all {
    text-align: center;
}

.instructors {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.instructor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
	margin-bottom:75px
}


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

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
    .instructor-card {
        padding: 1.5rem;
    }
    
    .instructor-avatar {
        width: 120px;
        height: 120px;
    }
    
    .instructor-stats {
        padding: 0.75rem;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .instructor-avatar {
        width: 100px;
        height: 100px;
    }
    
    .instructor-name {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.instructor-bio {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

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

.instructor-courses {
    margin-top: 3rem;
}

.instructor-courses h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}


.mini-course-card {
    display: flex;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.mini-course-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.mini-course-info {
    padding: 1rem;
    flex: 1;
}

.mini-course-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.mini-course-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.85rem;
}

.mini-course-rating {
    color: #ffc107;
}

@media (max-width: 992px) {
    .instructor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .instructor-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .course-cards {
        grid-template-columns: 1fr;
    }
    
    .mini-course-card {
        flex-direction: column;
    }
    
    .mini-course-card img {
        width: 100%;
        height: 150px;
    }
}

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

.instructor-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.instructor-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.instructor-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: all 0.3s ease;
}

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


.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
	    margin-bottom: 50px;
}



footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}
.footer-logo span::after {
    content: '';
    width: 47px;
    height: 6px;
    background: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}


.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    

    .course-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .instructor-cards {
        grid-template-columns: 1fr;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: flex;
    padding: 1.5rem;
}

.dropdown-column {
    flex: 1;
    padding: 0 1rem;
}

.dropdown-column:first-child {
    border-right: 1px solid var(--border-color);
}

.dropdown-column h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-column ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    transition: color 0.2sease;
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
}

.dropdown-column ul li a i {
    color: var(--primary-color);
    font-size: 1rem;
}

.dropdown-courses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-course {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

.dropdown-course:hover {
    background-color: var(--bg-light);
}

.dropdown-course img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.dropdown-course h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}


.dropdown-footer {
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.view-all-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-content {
        flex-direction: column;
    }
    
    .dropdown-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 1rem 0;
    justify-content: space-around;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.bottom-bar-item i {
    font-size: 1.25rem;
}

.bottom-bar-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.bottom-bar-item:hover, .bottom-bar-item.active {
    color: var(--primary-color);
}

.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.message-overlay.active {
    opacity: 1;
    visibility: visible;
}

.message-form-container {
    background-color: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.message-overlay.active .message-form-container {
    transform: translateY(0);
}

.message-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.message-form-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.close-message-form {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-message-form:hover {
    color: var(--text-color);
}

.contact-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    footer {
        padding-bottom: 5rem;
    }
    
    .message-form-container {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    width: 100%;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-color);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-mobile-menu:hover {
    color: var(--text-color);
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav ul li a {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.mobile-nav ul li a.active,
.mobile-nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 1rem;
    margin: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block !important;
    max-height: 500px;
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.5rem;
}

.mobile-dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.95rem !important;
    padding: 0.25rem 0 !important;
}

.mobile-dropdown-menu li a i {
    color: var(--primary-color) !important;
}

.mobile-menu-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.call-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.2s ease;
}

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

.mobile-menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.preloader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.preloader {
    text-align: center;
    color: white;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

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

.preloader p {
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary:disabled {
    background-color: #a5a5a5;
    border-color: #a5a5a5;
    cursor: not-allowed;
    opacity: 0.7;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-message {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.success-overlay.active .success-message {
    transform: translateY(0);
}

.success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.success-icon-form {
    margin-bottom:auto;
}

.container-breadcrumb {
    margin: 0 auto;
    padding: 20px 15px;
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
}


ul {
    list-style: none;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #415de4;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

header {
    background-color: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease; 
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.9); 
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    display: flex
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.video-btn i {
    font-size: 1.2rem;
}

.video-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.video-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-video:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .video-popup-content {
        width: 95%;
    }
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-subscribe {
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.subscribephone {
    display: flex;
    position: relative;
    height: 50px;
    margin-bottom: 0.5rem;
    width: 358px;
}

.subscribephone input {
    flex: 1;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0 1rem;
    font-size: 0.95rem;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.subscribephone input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.subscribephone button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: calc(var(--radius) - 2px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribephone button:hover {
    background-color: var(--primary-dark);
    transform: translateX(2px);
}

.subscribe-info {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    padding-left: 0.5rem;
}

@media (max-width: 992px) {
    .hero-subscribe {
        margin-left: auto;
        margin-right: auto;
    }
}

.categories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
}

.popular-courses {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.course-search {
    margin: 20px auto 30px;
    text-align: center;
    padding: 0 15px;
    max-width: 600px;
}

.course-search .search-input {
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px;
}

.course-search .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-header h1 {
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        margin-bottom: 0;
    }
    
    .course-search {
        margin: 0;
        width: 100%;
        max-width: 100%;
        padding: 0;
        order: 3;
    }
    
    .course-search .search-input {
        font-size: 14px;
        padding: 10px 15px 10px 40px;
        background-size: 18px;
        background-position: 12px center;
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
}

.course-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.course-card.hidden {
    display: none;
}

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

.course-image {
    position: relative;
    height: 267px;
    overflow: hidden;
}

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

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rating, .level {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating i {
    color: #fbbf24;
}

.course-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

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

.instructor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instructor img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.instructor span {
    font-size: 0.875rem;
    font-weight: 500;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.view-all {
    text-align: center;
}

.instructors {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
    .instructor-card {
        padding: 1.5rem;
    }
    
    .instructor-avatar {
        width: 120px;
        height: 120px;
    }
    
    .instructor-stats {
        padding: 0.75rem;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .instructor-avatar {
        width: 100px;
        height: 100px;
    }
    
    .instructor-name {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.instructor-bio {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

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

.instructor-courses {
    margin-top: 3rem;
}

.instructor-courses h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 0.1fr));
    gap: 1rem;
	margin-bottom: 3rem;
}

.mini-course-card {
    display: flex;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.mini-course-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.mini-course-info {
    padding: 1rem;
    flex: 1;
}

.mini-course-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.mini-course-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.85rem;
}

.mini-course-rating {
    color: #ffc107;
}

@media (max-width: 992px) {
    .instructor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .instructor-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .course-cards {
        grid-template-columns: 1fr;
    }
    
    .mini-course-card {
        flex-direction: column;
    }
    
    .mini-course-card img {
        width: 100%;
        height: 150px;
    }
}

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

.instructor-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.instructor-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.instructor-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-color);
}


.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.quote {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.newsletter {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form .btn-primary {
    background: aliceblue;
    color: var(--primary-color);
    border-color: white;
}

.newsletter-form .btn-primary:hover {
    background-color: var(--bg-light);
}

footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}



@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.75rem;
		        margin: auto;
    }
	.section-header h1 {
        font-size: 1.75rem;
        margin: auto;
    }
	
	.margin-auto {
        margin: auto;
    }

    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .instructor-cards {
        grid-template-columns: 1fr;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: flex;
    padding: 1.5rem;
}

.dropdown-column:first-child {
    border-right: 1px solid var(--border-color);
}

.dropdown-column h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
}

.dropdown-column ul li a i {
    color: var(--primary-color);
    font-size: 1rem;
}

.dropdown-courses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-course {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

.dropdown-course:hover {
    background-color: var(--bg-light);
}

.dropdown-course img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.dropdown-course h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.dropdown-course p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.dropdown-footer {
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.view-all-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-content {
        flex-direction: column;
    }
    
    .dropdown-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}


.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.bottom-bar-item i {
    font-size: 1.25rem;
}

.bottom-bar-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.bottom-bar-item:hover, .bottom-bar-item.active {
    color: var(--primary-color);
}

.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.message-overlay.active {
    opacity: 1;
    visibility: visible;
}

.message-form-container {
    background-color: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.message-overlay.active .message-form-container {
    transform: translateY(0);
}

.message-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.message-form-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.close-message-form {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-message-form:hover {
    color: var(--text-color);
}

.contact-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    footer {
        padding-bottom: 5rem;
    }
    
    .message-form-container {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    width: 100%;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-color);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-mobile-menu:hover {
    color: var(--text-color);
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav ul li a {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.mobile-nav ul li a.active,
.mobile-nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 1rem;
    margin: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block !important;
    max-height: 500px;
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.5rem;
}

.mobile-dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.95rem !important;
    padding: 0.25rem 0 !important;
}

.mobile-dropdown-menu li a i {
    color: var(--primary-color) !important;
}

.mobile-menu-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.call-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.2s ease;
}

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


.mobile-menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.preloader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.preloader {
    text-align: center;
    color: white;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

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

.preloader p {
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary:disabled {
    background-color: #a5a5a5;
    border-color: #a5a5a5;
    cursor: not-allowed;
    opacity: 0.7;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-message {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.success-overlay.active .success-message {
    transform: translateY(0);
}


.success-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.success-message p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.close-success {
    min-width: 120px;
}

.blog-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
    width: 100%;
}

.blog-section .container {
    max-width: 1280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.blog-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    width: 100% !important;
    max-width: 100% !important;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 auto 2rem;
    width: 100%;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f4f4;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: #fff;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

.blog-pagination .page-numbers:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.student-reviews .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem auto 0;
    width: 100%;
}

.student-reviews .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f4f4;
    color: var(--text-color);
    font-weight: 500;
    padding: 0 0.75rem;
    transition: all 0.2s ease;
}

.student-reviews .pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: #fff;
}

.student-reviews .pagination .page-numbers.prev,
.student-reviews .pagination .page-numbers.next {
    border-radius: 999px;
    padding: 0.5rem 1rem;
    min-width: auto;
    height: auto;
}

.student-reviews .pagination .page-numbers:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.blog-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-action {
    text-align: center;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.navigation.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 3rem;
}

.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f4f4;
    color: var(--text-color);
    font-weight: 500;
    padding: 0 0.75rem;
    transition: all 0.2s ease;
}

.navigation.pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: #fff;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next,
.navigation.pagination .page-numbers:last-child {
    border-radius: 999px;
}

.navigation.pagination .page-numbers:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .blog-section {
        padding: 3rem 0 !important;
    }
    
    .blog-pagination {
        gap: 0.5rem;
    }
    
    .blog-pagination .page-numbers {
        width: 36px;
        height: 36px;
    }
    
    .navigation.pagination .page-numbers {
        min-width: 36px;
        height: 36px;
    }
    
    .student-reviews .pagination .page-numbers {
        min-width: 36px;
        height: 36px;
    }
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-slide-2 {
    position: relative;
    padding: 5rem 0;
    color: white;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.hero-slide-2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-content-2 {
    flex: 1;
}

.hero-content-2 h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content-2 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-form-container {
    flex: 1;
    max-width: 450px;
}

.hero-form {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-form h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.hero-form p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.signup-form .form-group {
    margin-bottom: 1rem;
}

.signup-form input,
.signup-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

.signup-form input:focus,
.signup-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-privacy {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .hero-slide-2 .container {
        flex-direction: column;
    }
    
    .hero-content-2 {
        text-align: center;
    }
    
    .hero-form-container {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content-2 h1 {
        font-size: 2.25rem;
    }
    
    .hero-content-2 p {
        font-size: 1.1rem;
    }
}

.hero-content-2 .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid white;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-content-2 .hero-buttons {
        justify-content: center;
    }
}

.fullscreen-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fullscreen-form-container {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.close-fullscreen-form {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.close-fullscreen-form:hover {
    color: var(--primary-color);
}

.features-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: var(--primary-color);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 80%;
    max-width: 700px;
    position: relative;
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    padding: 0.5rem;
    color: var(--text-color);
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.close-search:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .search-container {
        width: 90%;
    }
    
    .search-form input {
        font-size: 1.2rem;
    }
}

.search-suggestions {
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    transform-origin: top center;
    animation: fadeInDown 0.3s ease forwards;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    animation: fadeIn 0.2s ease forwards;
    animation-delay: calc(0.05s * var(--item-index, 0));
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: rgba(79, 70, 229, 0.05);
    transform: translateX(5px);
}

.suggestion-icon {
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.suggestion-item:hover .suggestion-icon {
    transform: scale(1.1);
    background-color: rgba(79, 70, 229, 0.15);
}

.suggestion-content {
    flex: 1;
}

.suggestion-title {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.suggestion-item:hover .suggestion-title {
    color: var(--primary-color);
}

.suggestion-category {
    font-size: 0.8rem;
    color: var(--text-light);
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background-color: rgba(203, 213, 225, 0.3);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.suggestion-item:hover .suggestion-category {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.suggestion-highlight {
    background-color: rgba(79, 70, 229, 0.1);
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 2px;
    border-radius: 2px;
}

.no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
    animation: fadeIn 0.3s ease forwards;
}

.no-results i {
    font-size: 2rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: block;
}

.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.course-header {
    background-color: var(--bg-light);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.course-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.course-info {
    flex: 2;
    padding-right: 2rem;
}

.course-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

.course-breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 20px;
    padding-bottom: 30px;
}

.course-breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.course-breadcrumb a:hover {
    color: var(--primary-color);
}

.course-breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-light);
}

.course-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.course-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.course-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}


.course-preview {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
}

.preview-image {
    position: relative;
    height: 200px;
}

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


.preview-play:hover {
    background-color: var(--primary-color);
    color: white;
}

.preview-content {
    padding: 1.5rem;
}

.preview-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.preview-features {
    margin-bottom: 1.5rem;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.preview-feature i {
    color: var(--secondary-color);
}

.preview-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.share-course {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.share-course:hover {
    color: var(--primary-color);
}

.course-content-section {
    padding: 3rem 0;
    background-color: var(--bg-color);
}

.course-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.course-tabs::-webkit-scrollbar {
    display: none;
}

.course-tab {
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.course-tab:hover {
    color: var(--primary-color);
}

.course-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.curriculum-section {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.section-title i {
    color: var(--primary-color);
}

.section-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.section-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.curriculum-section.active .section-toggle {
    transform: rotate(180deg);
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.curriculum-section.active .section-content {
    max-height: 1000px;
    border-top: 1px solid var(--border-color);
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.lesson-title i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.lesson-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.lesson-preview {
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lesson-preview:hover {
    text-decoration: underline;
}

.curriculum-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.curriculum-summary {
    display: flex;
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.summary-item i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .curriculum-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .curriculum-summary {
        flex-direction: column;
        gap: 0.75rem;
    }
}


.btn-primary {
    color: white;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    background: linear-gradient(135deg, #43b6ee, #a83ad4);
}



.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: rgba(67, 97, 238, 0.05);
    transform: translateY(-2px);
}
.course-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(6, 214, 160, 0.05) 50%, rgba(247, 37, 133, 0.05) 100%);
    transform: rotate(45deg);
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumbs i {
    font-size: 0.7rem;
    color: var(--text-light);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.course-info h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.course-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233, 236, 239, 0.5);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    background: rgba(67, 97, 238, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233, 236, 239, 0.5);
    transition: var(--transition);
}

.course-instructor:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.course-instructor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.course-instructor .label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.course-instructor a {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 236, 239, 0.5);
    transition: var(--transition);
}

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

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(6, 214, 160, 0.05) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.price-header {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 1rem;
    font-size: 1.25rem;
}

.discount {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(6, 214, 160, 0.3);
    z-index: 2;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.price-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.price-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.money-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(6, 214, 160, 0.1);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 0.9rem;
}

.money-back i {
    color: var(--secondary-color);
}

.course-details {
    padding-top: 1rem;
	padding-bottom: 4rem;
    background: var(--bg-color);
}

.details-wrapper {
    display: grid;
    grid-template-columns: 2fr .8fr;
    gap: .5rem;
    margin-top: .2rem;
}

.main-content {
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.course-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
}

.tab-btn {
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
	min-width: 90px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding-top: 0.5rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 2.5rem;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}
.tab-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.tab-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.learning-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.learning-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.learning-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.learning-list li i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

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

.course-preview {
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.preview-image:hover img {
    transform: scale(1.05);
}



.preview-play:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.preview-play:hover i {
    color: white;
}

.preview-content {
    padding: 2rem;
}

.preview-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size:24px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.preview-features {
    margin: 1.5rem 0;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.preview-feature:last-child {
    border-bottom: none;
}

.preview-feature i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.preview-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.share-course {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.share-course:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .details-wrapper {
        grid-template-columns: 1fr;
    }
    
    .course-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    /* Hesaplama aracı sayfasında sidebar içerikten sonra gelsin */
    .calculator-sidebar {
        order: 1;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .preview-content {
        padding: 1.5rem;
    }
    
    .current-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .preview-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .preview-play {
        width: 50px;
        height: 50px;
    }
    
    .preview-play i {
        font-size: 1.25rem;
    }
}

    .hero-alternative {
        padding: 2rem 0;
        background-color: var(--bg-color);
        overflow: hidden;
        position: relative;
    }
    
    .hero-alternative .container {
        display: flex;
        align-items: center;
        gap: 4rem;
        position: relative;
        z-index: 2;
    }
    
    .hero-alternative::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 50%;
        height: 120%;
        background-color: #f3f4ff;
        border-top-left-radius: 3820px;
    border-bottom-left-radius: 3820px;
        z-index: 1;
    }
    
   
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-subscribe {
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        display: flex;
        gap: 2.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .stat-item p {
        font-size: 1rem;
        color: var(--text-light);
        margin-bottom: 0;
    }
    
    .hero-right {
        flex: 1;
        position: relative;
        min-height: 500px;
    }
    
    .hero-card {
        background-color: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 1.5rem;
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .hero-card-1 {
        top: 0;
        left: 0;
        width: 180px;
        z-index:3;
		border-radius: 100%;
    height: 180px;
    text-align: center;
    
    }
    
    .hero-card-2 {
        bottom: 0;
        right: 0;
        width: 180px;
        z-index: 2;
		border-radius: 100%;
    height: 180px;
    text-align: center;
    }
    
    .hero-card-icon {
        width: 35px;
        height: 35px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;

		margin: auto;
    }
    
    .icon-blue {
        background-color: #e0e7ff;
        color: var(--primary-color);
    }
    
    .icon-green {
        background-color: #d1fae5;
        color: var(--secondary-color);
    }
    
    .hero-card h3 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0.5rem;
		padding-top: 10px;
    }
    
    .hero-card p {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-bottom: 0;
    }
    
    .hero-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 320px;
        height: 320px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        z-index: 2;
    }
	.hero-single {
            left: 69%!important;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .floating-shape {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
    }
    
    .shape-1 {
        width: 80px;
        height: 80px;
        background-color: rgba(79, 70, 229, 0.1);
        top: 10%;
        right: 20%;
    }
    
    .shape-2 {
        width: 40px;
        height: 40px;
        background-color: rgba(16, 185, 129, 0.1);
        bottom: 15%;
        left: 10%;
    }

    @media (max-width: 1200px) {
        .hero-left h1 {
            font-size: 3rem;
        }
        
        .hero-card-1 {
            width: 250px;
        }
        
        .hero-card-2 {
            width: 270px;
        }
        
        .hero-image {
            width: 280px;
            height: 280px;
        }
    }
    
    @media (max-width: 992px) {
        .hero-alternative .container {
            flex-direction: column;
            text-align: center;
        }
        .hero-left {
            max-width: 400px;
        }
        .subscribephone {

width: unset!important;
}
        .hero-left p {
            max-width: 100%;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        .hero-stats {
            overflow: auto;
        }
        
        .hero-right {
            width: 100%;
            margin-top: 3rem;
        }
        
        .hero-alternative::before {
            width: 100%;
            height: 50%;
            top: auto;
            bottom: 0;
            right: 0;
            border-radius: 62% 62% 0 0;
        }
    }
    
    @media (max-width: 768px) {
        .hero-left h1 {
            font-size: 2.5rem;
        }
        
        .hero-right {
            min-height: 600px;
        }
        
        .hero-card-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 300px;
        }
        
        .hero-card-2 {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 300px;
        }
        
        .hero-image {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
        }
    }

    .features-section {
        padding: 5rem 0;
        background-color: #f8fafc;
        position: relative;
        overflow: hidden;
    }

    .features-section::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
        border-radius: 50%;
        top: -150px;
        left: -150px;
        z-index: 0;
    }

    .features-section::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
        border-radius: 50%;
        bottom: -100px;
        right: -100px;
        z-index: 0;
    }

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

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        background-color: white;
        border-radius: 16px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(229, 231, 235, 0.5);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

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

    .feature-card:hover::before {
        opacity: 1;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        background-color: #f3f4ff;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
    }

    .icon-certificate {
        background-color: #eef2ff;
        color: #4f46e5;
    }

    .icon-consultant {
        background-color: #ecfdf5;
        color: #10b981;
    }

    .icon-payment {
        background-color: #fff7ed;
        color: #f97316;
    }

    .icon-online {
        background-color: #eff6ff;
        color: #3b82f6;
    }

    .feature-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--text-color);
    }

    .feature-content p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.6;
    }

    @media (max-width: 1200px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }

    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
            max-width: 450px;
            margin: 0 auto;
        }
    }

    .student-reviews {
        padding: 4rem 0;
        background-color: var(--bg-light);
    }

    .student-reviews .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--text-color);
    }

    .reviews-summary {
        display: flex;
        gap: 3rem;
        margin-bottom: 3rem;
        align-items: flex-start;
    }

    .rating-overview {
        flex: 1;
        text-align: center;
    }

    .rating-big {
        font-size: 4rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .rating-stars {
        color: #ffc107;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .rating-count {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    .rating-bars {
        flex: 2;
    }

    .rating-bar-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.75rem;
    }

    .rating-label {
        width: 70px;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .rating-bar {
        flex: 1;
        height: 8px;
        background-color: #e5e7eb;
        border-radius: 4px;
        overflow: hidden;
    }

    .rating-fill {
        height: 100%;
        background-color: #ffc107;
        border-radius: 4px;
    }

    .rating-percent {
        width: 40px;
        font-size: 0.9rem;
        color: var(--text-light);
        text-align: right;
    }

    .reviews-list {
        margin-bottom: 2rem;
    }

.manual-reviews-section {
    padding: 2rem;
    background: #fff;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.manual-reviews-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--text-color);
}

.manual-reviews-section .reviews-list {
    margin-bottom: 0;
}

    .review-card {
        background-color: white;
        border-radius: var(--radius);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-sm);
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .reviewer {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .reviewer-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
    }

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

    .reviewer-info h4 {
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--text-color);
    }

    .reviewer-info p {
        font-size: 0.85rem;
        color: var(--text-light);
        margin: 0;
    }

    .review-rating {
        color: #ffc107;
    }

    .review-content {
        color: var(--text-light);
        line-height: 1.7;
    }

    .reviews-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .pagination-prev,
    .pagination-next {
        background: none;
        border: none;
        color: var(--primary-color);
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pagination-prev.disabled,
    .pagination-next.disabled {
        color: var(--text-light);
        cursor: not-allowed;
    }

    .pagination-numbers {
        display: flex;
        gap: 0.5rem;
    }

    .pagination-numbers span {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pagination-numbers span.active {
        background-color: var(--primary-color);
        color: white;
    }

    .pagination-numbers span:hover:not(.active) {
        background-color: rgba(79, 70, 229, 0.1);
    }

    @media (max-width: 992px) {
        .reviews-summary {
            flex-direction: column;
            gap: 2rem;
        }
        
        .rating-overview {
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .review-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
    }

    @media (max-width: 576px) {
        .reviewer {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .pagination-numbers span {
            width: 28px;
            height: 28px;
        }
    }

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preview-image {
    position: relative;
    cursor: pointer;
}

.preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.preview-play:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.curriculum-sections {
    margin-bottom: 2rem;
}

.curriculum-section {
    margin-bottom: 1rem;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.section-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.section-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.curriculum-section.active .section-toggle {
    transform: rotate(180deg);
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(249, 250, 251, 0.5);
}

.curriculum-section.active .section-content {
    max-height: 1000px;
    border-top: 1px solid var(--border-color);
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: background-color 0.2s ease;
}

.lesson-item:hover {
    background-color: rgba(79, 70, 229, 0.03);
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.lesson-title i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.lesson-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.lesson-preview {
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lesson-preview:hover {
    text-decoration: underline;
}

.curriculum-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.btn-expand-all {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.curriculum-summary {
    display: flex;
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.summary-item i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .course-sidebar .course-preview {
        display: none;
    }
    
    .course-sidebar {
        position: static;
        width: 100%;
    }
    
    .mobile-sticky-preview {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 0.75rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-preview-image {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .mobile-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-preview-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background-color: rgba(79, 70, 229, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.8rem;
        cursor: pointer;
    }
    
    .mobile-preview-content {
        display: flex;
        align-items: center;
        flex: 1;
    }
    
    .mobile-preview-info {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-preview-title {
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.25rem;
        color: var(--text-color);
    }
    
    .mobile-preview-price {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.25rem;
    }
    
    .mobile-preview-button {
        width: auto;
    }
}

@media (max-width: 576px) {
    .mobile-sticky-preview {
        padding: 0.75rem;
        display: flex!important;
    }
    
    .mobile-preview-image {
        width: 50px;
        height: 50px;
    }
    
    .mobile-preview-play {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .mobile-preview-title {
        font-size: 12px;
    }
   
    .mobile-preview-price {
        font-size: 1.1rem;
    }
    
    .mobile-preview-button .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.instructors-section .instructor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.instructors-section .instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.instructors-section .instructor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(79, 70, 229, 0.1);
}

.instructor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(79, 70, 229, 0.1);
margin:auto
}
.avatar {
    width: 100%;
    height: 100%;
    background-color: #2b67f6;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 49px;
    border-radius: 50%;
    text-transform: uppercase;
}

.instructors-section .instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructors-section .instructor-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.instructors-section .instructor-title {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.instructors-section .instructor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.instructors-section .instructor-rating i {
    color: #ffc107;
}

.instructors-section .instructor-rating span {
    font-weight: 500;
}

.instructors-section .instructor-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.instructors-section .instructor-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructors-section .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.instructors-section .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.instructors-section .instructor-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.instructors-section .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        z-index: 1000;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        width: 100% !important;
        padding-left: 1rem !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: flex;
    padding: 1.5rem;
}


.dropdown-column:first-child {
    border-right: 1px solid var(--border-color);
}

.dropdown-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.dropdown-column ul li {
    margin-bottom: 0.75rem;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
}

.dropdown-courses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown-course {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.dropdown-course:hover {
    background-color: var(--bg-light);
}

.dropdown-course img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.dropdown-course h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
}


.dropdown-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
}

.course-privileges {
    padding: 20px 0;
    background: white;
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
	padding: 1rem;
    scroll-behavior: smooth;
    position: relative;
}


.privilege-card {
    background: var(--white);
    padding: 1rem;
     border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 90px;
	    box-shadow: 0 2px 6px #379dff47;
    min-width: 250px;
    flex-shrink: 0;
}

.privilege-card:hover {
    border-color: #4361ee;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.15);
}

.privilege-icon {
    width: 44px;
    height: 44px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.privilege-card:hover .privilege-icon {
    background: #4361ee;
}

.privilege-icon i {
    font-size: 18px;
    color: #4361ee;
    transition: all 0.3s ease;
}

.privilege-card:hover .privilege-icon i {
    color: #ffffff;
	filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7488%) hue-rotate(277deg) brightness(126%) contrast(101%);
}

.privilege-content {
    flex: 1;
}

.privilege-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #374151;
    line-height: 1.4;
}

.privilege-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .privileges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    
    .privilege-card {
        padding: 10px;
    }
}

/* Kurs Ä°Ã§eriÄŸi Stilleri */
.course-modules {
    margin-top: 30px;
}

.module-item {
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.module-header {
    background: #f9fafb;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.module-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.module-duration {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.module-lessons {
    padding: 0;
}

.lesson-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}

.lesson-row:last-child {
    border-bottom: none;
}

.lesson-row:hover {
    background: #f9fafb;
}

.lesson-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lesson-info i {
    color: #4361ee;
    font-size: 16px;
}

.lesson-info span {
    font-size: 15px;
    color: #374151;
}

.lesson-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lesson-duration {
    font-size: 14px;
    color: #6b7280;
}

.video-preview-btn {
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-preview-btn:hover {
    background: rgba(67, 97, 238, 0.2);
}

.video-preview-btn.active {
    background: #4361ee;
    color: white;
}

@media (max-width: 768px) {
	.privileges-container {
    position: relative;
  }
  
	.privileges-grid {
    display: grid!important;
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 12px!important;
    overflow-x: visible!important;
    scroll-snap-type: none!important;
    padding: 0!important;
    margin-top: 0!important;
  }

  .privilege-card {
    scroll-snap-align: none!important;
    flex-shrink: 1!important;
    min-width: auto!important;
    width: 100%!important;
    padding: 12px!important;
    min-height: auto!important;
    flex-direction: column!important;
    align-items: flex-start!important;
    gap: 8px!important;
  }
  
  .privilege-icon {
    width: 40px!important;
    height: 40px!important;
    margin-bottom: 0!important;
  }
  
  .privilege-icon i {
    font-size: 16px!important;
  }
  
  .privilege-content {
    width: 100%!important;
  }
  
  .privilege-card h3 {
    font-size: 14px!important;
    margin-bottom: 4px!important;
    line-height: 1.3!important;
  }
  
  .privilege-card p {
    font-size: 12px!important;
    line-height: 1.4!important;
    margin: 0!important;
  }
  
  .slider-arrow.right {
    display: none!important;
  }
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.9);
    padding: 0.7rem;
    border-radius: 50%;
    cursor: pointer;
	box-shadow: 1px 1px 0px 6px #ffffffb8;
  }


  .slider-arrow.right {
    right: 0;
	display:block!important
  }

  /* SVG ikon boyutlarÄ± */
  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }
    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .lesson-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .lesson-actions {
        width: 100%;
        justify-content: space-between;
    }
}
.mobile-sticky-preview {
    display: none;
}

.hero-image-mobile {
    display: none;
    width: 100%;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-mobile img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-right {
        display: none;
    }
    
    .hero-image-mobile {
        display: flex;
    }
    
    .hero-left {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    .navigation.pagination .nav-links {
        display: contents !important;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-container {
        transform: translateX(0);
    }
}

.contact-page {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}


.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    background: rgba(65, 93, 228, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
	min-width: 45px;
    min-height: 45px;
}


.contact-info-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.contact-info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-info-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eef0f6;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(65, 93, 228, 0.1);
    outline: none;
}

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

.contact-form .btn-block {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 12px;
    margin-top: 10px;
}

.contact-map {
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    opacity: 0.1;
    pointer-events: none;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
	.contact-info-text {
    margin:auto
}
    
    .contact-info-item i {
        margin: 0 auto;
    }
    
    .contact-form-card h3 {
        text-align: center;
    }
    
    .contact-form-card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-map {
        height: 350px;
    }
}

.directions-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.directions-btn i {
    font-size: 16px;
}

.course-gallery {
    margin: 3rem 0;
}

.course-gallery h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.gallery-thumbnails br {
    display: none;
}

.gallery-thumb {
    width: calc(23.333% - 1rem);
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gallery-modal.active {
    display: flex;
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.gallery-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-close,
.gallery-prev,
.gallery-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-close:hover,
.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-close {
    top: 20px;
    right: 20px;
}

.gallery-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .gallery-thumb {
        width: calc(50% - 0.75rem);
        height: 180px;
    }
}

@media (max-width: 768px) {
    .gallery-thumbnails {
        gap: 1rem;
    }
    
    .gallery-thumb {
        width: calc(50% - 0.5rem);
        height: 150px;
    }
    
    .gallery-close,
    .gallery-prev,
    .gallery-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .gallery-thumb {
        height: 80px;
    }
    
    .gallery-thumbnails {
        gap: 0.75rem;
    }
}

/* Kayıt formu CSS'i orijinal styles.css dosyasında zaten mevcut */

.blog-post {
    padding: 60px 0;
    background: white;
}

.blog-post .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-main {
    width: 100%;
}

.post-header {
    margin-bottom: 30px;
}

.post-meta {
    margin-bottom: 15px;
}

.post-category {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 15px;
}

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

.post-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.read-time {
    font-size: 14px;
    color: #666;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
	    border-radius: 12px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}
.post-content h2 {
    margin-bottom: 20px;
}
.post-content h3 {
    margin-bottom: 20px;
}
.post-content p {
    margin-bottom: 20px;
}
.post-tags {
    margin-bottom: 30px;
	line-height: 55px
}
.auth-btn-phone i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 22px;
}
.tag {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: #fff;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.author-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.author-card .author-image {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.author-card .author-name {
    margin-bottom: 10px;
}

.author-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.author-social a {
    color: #666;
    transition: color 0.3s ease;
}

.author-social a:hover {
    color: var(--primary-color);
}

.related-posts {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.related-posts h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.related-post-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .post-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-post {
        padding: 40px 0;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .post-meta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .post-category {
        display: inline-block;
        margin-bottom: 5px;
		        width: fit-content;
    }
    .course-breadcrumb {
        padding-left: 5px
    }
}

.register-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.register-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
}

.register-content {
    width: 100%;
}

.register-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-color);
}

.btn-block {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .register-wrapper {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .register-section {
        padding: 40px 0;
    }

}

.options-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-label:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
}

.option-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    top: 4px;
    position: relative;
}

.option-label span {
    font-size: 14px;
    color: var(--text-color);
}

.agreements-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

.agreement-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.agreement-link:hover {
    color: var(--primary-dark);
}

@media (max-width: 576px) {
    .options-group {
        grid-template-columns: 1fr;
    }
    
    .agreements-section {
        padding: 15px;
    }
}

.text-page {
    padding: 60px 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h1 {
    margin-bottom: 30px;
    color: var(--text-color);
}

.text-content h2 {
    margin: 30px 0 15px;
    color: var(--text-color);
}

.text-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.text-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.text-content a:hover {
    color: var(--primary-dark);
}


.topics-container {
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px;
}

.topics-list {
    flex: 1; list-style-type: none; padding-left: 0;
}
.topics-list li{
    margin-bottom: 10px;
}
.course-tabs-wrapper {
    position: relative;
    overflow: hidden;
}

.course-tabs {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 40px;
	padding-left: 20px;
}

.course-tabs::-webkit-scrollbar {
    display: none;
}

.tab-nav-buttons {
    display: none;
}

.auth-button-group {
    display: flex;
    border-radius: 26px;
    overflow: hidden;
    margin-left: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.auth-button-group:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.auth-btn-login {
    padding: 10px 16px;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3sease;
    background: rgb(67 97 238);
    position: relative;
    overflow: hidden;
    border-right: .9px solid #fdfdfd;
}

.auth-btn-register {
    padding: 10px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-btn-login:hover {
    background: #233277;
    color: white;
}

.auth-btn-register:hover {
    background:#c9d1f7;
    color: var(--primary-color);
}

.auth-btn-login:before, .auth-btn-register:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); 
    transition: all 0.6s ease;
}

.auth-btn-login:hover:before, .auth-btn-register:hover:before {
    left: 100%;
}

.bg-angle_right{
	background-image: url(../img/online-icon.svg);
	width: 24px;
    height: inherit;
    background-repeat: no-repeat;
    background-position: center; 
} 
.certificate{
	background-image: url(../img/certificate.svg);
	width: 24px;
    height: inherit;
    background-repeat: no-repeat;
    background-position: center; 
}
.certificate-a{
	filter: brightness(0) saturate(100%) invert(45%) sepia(59%) saturate(6473%) hue-rotate(221deg) brightness(95%) contrast(96%);
	background-image: url(../img/certificate.svg);
	width: 24px;
    height: inherit;
    background-repeat: no-repeat;
    background-position: center;
}
.search{
	background-image: url(../img/search.svg);
	width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center; 
	display: inline-block;
}
.close{
	background-image: url(../img/close.svg);
	width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
	display: inline-block;	
}
.close-gallery{
	background-image: url(../img/close.svg);
	width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
	display: inline-block;	
	filter: brightness(0) saturate(100%) invert(93%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}
.close:hover{
	filter: invert(34%) sepia(52%) saturate(1352%) hue-rotate(9deg) brightness(119%) contrast(119%);
}
.send{
	background-image: url(../img/send.svg);
	width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center; 
	display: inline-block;
}
.down{
	background-image: url(../img/down.svg);
	width: 10px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center; 
}
.right{
	background-image: url(../img/right.svg);
	width: 15px;
    height: 18px; 
    background-repeat: no-repeat;
    background-position: center; 
}
.right-arrow{
	    background-image: url(../img/right-arrow.svg);
    width: 11px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    top: 1px;
    position: relative;
}
.clock{
	background-image: url(../img/clock.svg);
	width: 22px;
    height: 24px; 
    background-repeat: no-repeat;
    background-position: center; 
}
.update{
	background-image: url(../img/update.svg);
	width: 22px;
    height: 24px; 
    background-repeat: no-repeat;
    background-position: center; 
}
.support{
	background-image: url(../img/support.svg);
	width: 22px;
    height: 24px; 
    background-repeat: no-repeat;
    background-position: center; 
}
.check{
	background-image: url(../img/check.svg);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
}
.check-green{
	background-image: url(../img/check.svg);
    width: 20px;
    height: 16px;
    background-repeat: no-repeat;
    display: inline-block;
    top: 3px;
    position: relative;
	filter: brightness(0) saturate(100%) invert(79%) sepia(33%) saturate(7187%) hue-rotate(117deg) brightness(98%) contrast(95%);
}
.location{
	background-image: url(../img/location.svg);
    width: 20px;
    height: 16px;
    background-repeat: no-repeat;
    display: inline-block;
}
.play{
	background-image: url(../img/play.svg);
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
}
.check-circle{
	background-image: url(../img/check-circle.svg);
    width: 20px;
    height: 16px;
    background-repeat: no-repeat;
}
.play-circle{
	background-image: url(../img/play-circle.svg);
    width: 20px;
    height: 16px;
    background-repeat: no-repeat;
}
.star{
	background-image: url(../img/star.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.star-half{
	background-image: url(../img/star-half.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.star-o{
	background-image: url(../img/star-o.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.more-comments{
	background-image: url(../img/more-comment.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.chevron-right{
	background-image: url(../img/chevron-right.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.chevron-right-page {
    background-image: url(../img/chevron-right.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(30%) sepia(98%) saturate(2942%) hue-rotate(224deg) brightness(98%) contrast(91%);
}
.chevron-left{
	background-image: url(../img/chevron-left.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.menu-bar{
	background-image: url(../img/menu-bar.svg);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    display: inline-block;
}
.facebook{
	background-image: url(../img/facebook.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.brand-x{
	background-image: url(../img/brand-x.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.instagram{
	background-image: url(../img/instagram.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.linkedin{
	background-image: url(../img/linkedin.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.youtube{
	background-image: url(../img/youtube.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.down-menu {
    background-image: url(../img/down.svg);
    width: 10px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
	position: relative;
    top: 3px;
}
.comment{
	background-image: url(../img/comment.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    display: inline-block;
}

.phone{
	background-image: url(../img/phone.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    display: inline-block;
	position: relative;
    top: 5px;
}
.check-circle-form {
    background-image: url(../img/check-circle.svg);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    display: inline-block;
}
.lock{
	background-image: url(../img/lock.svg);
	width: 18px;
    height: 18px; 
    background-repeat: no-repeat;
    background-position: center; 
    display: inline-block;
}
.share{
	background-image: url(../img/share.svg);
	width: 18px;
    height: 18px; 
    background-repeat: no-repeat;
    background-position: center; 
    display: inline-block;
}
.user{
	background-image: url(../img/user.svg);
	width: 18px;
    height: 18px; 
    background-repeat: no-repeat;
    background-position: center; 
    display: inline-block;
	position: relative;
    top: 5px;
}
.location-pin{
	background-image: url(../img/location-pin.svg);
	width: 18px;
    height: 18px; 
    background-repeat: no-repeat;
}
.mail{
	background-image: url(../img/mail.svg);
	width: 18px;
    height: 18px; 
    background-repeat: no-repeat;
}
.phone-pin {
    background-image: url(../img/phone.svg);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
	filter: brightness(0) saturate(100%) invert(76%) sepia(0%) saturate(497%) hue-rotate(273deg) brightness(102%) contrast(88%);
}
.calendar{
	background-image: url(../img/calendar.svg);
	width: 18px;
    height: 18px; 
    background-repeat: no-repeat;
}
.quote-ico{
	background-image: url(../img/quote.svg);
	width: 35px;
    height: 35px; 
    background-repeat: no-repeat;
	display:block
}

        .skeleton-loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
            border-radius: 8px;
            z-index: 1;
        }
        
        @keyframes skeleton-loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        
  
        .hero-image-mobile {
            position: relative;
            width: 390px;
            height: 260px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .hero-image-mobile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
        }
        
        .hero-image .skeleton-loader,
        .hero-image-mobile .skeleton-loader {
            display: block;
            opacity: 1;
        }
        
        .hero-image img.loaded ~ .skeleton-loader,
        .hero-image-mobile img.loaded ~ .skeleton-loader {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .hero-image-mobile .skeleton-loader {
                display: block;
                width: 100%;
                height: 260px;
            }
            
            .hero-image .skeleton-loader {
                display: none;
            }
        }
        
        @media (min-width: 769px) {
            .hero-image .skeleton-loader {
                display: block;
                width: 100%;
                height: 100%;
            }
            
            .hero-image-mobile .skeleton-loader {
                display: none;
            }
        }
        
        .preview-image {
            position: relative;
        }
        
        .hero-image img, .preview-image img {
            position: relative;
            z-index: 2;
        }
        
        .faq-container {
            margin-top: 30px;
        }

        .load-more-reviews {
            text-align: center;
            margin-top: 30px;
            margin-bottom: 40px;
        }

        .load-more-btn {
            padding: 12px 30px;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 8px;
            cursor: pointer;
			    line-height: 25px;
        }

        .load-more-btn:hover {
            background:#4361ee24;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .load-more-btn i {
            margin-right: 8px;
			top: 2px;
    position: relative;
        }

        .review-card.new {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        

        .mobile-message-button {
            display: flex;
            position: fixed;
            bottom: 120px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 9;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-message-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }
        
        @media (max-width: 768px) {
            .mobile-message-button {
                display: flex;
            }
    
        }
     .faq-section {
        margin-top: 30px;
    }
    
    .faq-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-item-new {
        background: #fff;
        border-radius: 12px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e2e8f0;
        overflow: hidden;
    }
    
    .faq-item-new:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: var(--primary-color);
    }
    
    .faq-question-new {
        padding: 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        position: relative;
        background: #fff;
        z-index: 2;
    }
    
    .faq-question-new h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        line-height: 1.5;
        padding-right: 40px;
        transition: color 0.3s ease;
    }
    
    .faq-item-new.active .faq-question-new h3 {
        color: var(--primary-color);
    }
    
    .faq-toggle-new {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .faq-item-new.active .faq-toggle-new {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .faq-answer-new {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: #f8fafc;
        transform: translateY(-10px);
    }
    
    .faq-item-new.active .faq-answer-new {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .faq-answer-new p {
        margin: 0;
        padding: 0 24px 20px;
        line-height: 1.6;
        color: #4a5568;
        font-size: 15px;
		margin-top: 20px;
    }
	.faq-answer-new li {
        margin: 0;
        padding-left:24px;
		padding-right:24px;
		padding-bottom:24px;
        line-height: 1.6;
        color: #4a5568;
        font-size: 15px;
    }

    @media (max-width: 768px) {
        .faq-question-new {
            padding: 16px 20px;
        }
        
        .faq-question-new h3 {
            font-size: 15px;
            padding-right: 32px;
        }
        
        .faq-toggle-new {
            right: 20px;
        }
        
        .faq-answer-new p {
            padding: 0 20px 16px;
            font-size: 14px;
        }
    }
        
        .modern-hero {
            position: relative;
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            overflow: hidden;
        }
        
        .modern-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbc5d7' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .modern-hero-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .modern-hero-content {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }
        
        .modern-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(90deg, var(--primary-color), #6c5ce7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
    
        }
        
        .modern-hero-subtitle {
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: 32px;
            line-height: 1.6;
        }
        
        .modern-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .modern-hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: white;
            padding: 10px 16px;
            border-radius: 50px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .modern-hero-feature:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        }
        
        .modern-hero-feature i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .modern-hero-feature span {
            font-weight: 500;
            color: #2d3748;
        }
        
        .modern-hero-form {
            background: white;
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 450px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .modern-hero-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), #6c5ce7);
        }
        
        .modern-hero-form h3 {
            font-size: 1.5rem;
            margin-bottom: 24px;
            color: #2d3748;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4a5568;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
            outline: none;
        }
        
        .form-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        
        .form-submit:hover {
            background: #3182ce;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
        }
        
        .modern-hero-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 24px;
        }
        
        .modern-stat-item {
            text-align: center;
            flex: 1;
        }
        
        .modern-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modern-stat-label {
            color: #4a5568;
            font-weight: 500;
        }
        
        .modern-hero-image {
            position: relative;
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }
        
        .main-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            position: relative;
            z-index: 2;
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 16px;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 3;
        }
        
        .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
 
        }

        
        .card-content h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: #2d3748;
        }
        
        .card-content p {
            font-size: 0.8rem;
            color: #718096;
            margin: 0;
        }
        
        .card-1 {
            top: -20px;
            left: -30px;
        }
        
        .card-2 {
            bottom: 40px;
            right: -40px;
        }
        
        .card-3 {
            bottom: -30px;
            left: 20px;
        }
        
        .shape {
            position: absolute;
            z-index: 1;
        }
        
        .shape-1 {
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(66, 153, 225, 0.2), rgba(49, 130, 206, 0.2));
            border-radius: 50%;
        }
        
        .shape-2 {
            bottom: -80px;
            left: -60px;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, rgba(159, 122, 234, 0.15), rgba(128, 90, 213, 0.15));
            border-radius: 50%;
        }
        
        @media (max-width: 992px) {
            .modern-hero-container {
                flex-direction: column;
            }
            
            .modern-hero-content, .modern-hero-form, .modern-hero-image {
                max-width: 100%;
            }
            
            .modern-hero-title {
                font-size: 2.5rem;
            }
            
            .floating-card {
                position: relative;
                margin: 10px 0;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
            }
            
            .card-1, .card-2, .card-3 {
                position: static;
                margin-bottom: 16px;
            }
            
            .modern-hero-image {
                order: -1;
            }
        }

        .simple-dropdown {
            max-width: 220px;
            padding: 10px 0;
            background: white;
            border-radius: 17px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

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

        .simple-dropdown-list li a {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            color: var(--text-color);
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 14px;
			line-height: normal;
			font-weight: 400;
        }

        .simple-dropdown-list li a:hover {
            background-color: rgba(79, 70, 229, 0.1);
            color: var(--primary-color);
        }

        .simple-dropdown-list li i {
            margin-right: 10px;
            width: 20px;
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .simple-dropdown {
                position: static;
                box-shadow: none;
                border-radius: 0;
                background: transparent;
            }

            .simple-dropdown-list li a {
                padding: 12px 15px;
                color: var(--text-color);
            }
        }
.btn-whatsapp-pulse {
    background: #25d366;
    color: #fff;
    position: fixed;
    bottom: 195px;
    right: 15px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    animation-name: pulse;
    z-index: 99;
}
.btn-whatsapp-pulse, .btn-whatsapp-pulse-border::before {
    border-radius: 50%;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}	
.btn-whatsapp-pulse img	{	
		    max-width: fit-content;
	}	
	@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5)
    }
    80%{
        box-shadow:0 0 0 14px rgba(37,211,102,0)
    }
}
.btn-whatsapp-pulse-border{
    bottom:120px;
    right:20px;
    animation-play-state:paused
}
@keyframes pulse-border{
    0%{
        padding:25px;
        opacity:.75
    }
    75%{
        padding:50px;
        opacity:0
    }
    100%{
        opacity:0
    }
}
.course-info-form {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .course-info-form h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .course-info-form p {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }
        

        
        .btn-block {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            font-weight: 600;
        }
        
        .form-footer {
            margin-top: 15px;
            text-align: center;
        }
        
        .form-footer p {
            font-size: 12px;
            color: #777;
        }
        
        .form-footer i {
            position: relative;
    top: 4px;
        }
        
        @media (max-width: 768px) {
            .course-info-form {
                display: none;
            }
        }
        .course-info-form {
            position: relative;
        }

        .cookie-modal {
            position: fixed;
            bottom: 30px;
            right: 30px;
            max-width: 400px;
            width: calc(100% - 60px);
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            z-index: 9999;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            border: 2px solid var(--primary-color);
        }
        
        .cookie-modal.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cookie-content {
            padding: 20px;
        }
        
        .cookie-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .cookie-header h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }
        
        .cookie-close {
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
            font-size: 16px;
            padding: 5px;
            transition: color 0.2s ease;
        }
        
        .cookie-close:hover {
            color: #1f2937;
        }
        
        .cookie-body {
            margin-bottom: 20px;
        }
        
        .cookie-body p {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .cookie-footer {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        
        @media (max-width: 768px) {
            .cookie-modal {
                bottom: 20px;
                right: 20px;
                width: calc(100% - 40px);
            }
        }
        
        .desktop-popup {
            position: fixed;
            bottom: 30px;
            right: 30px;
            max-width: 400px;
            width: auto;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            z-index: 9998;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            border: 2px solid var(--primary-color);
            overflow: hidden;
        }
        
        .desktop-popup.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .desktop-popup img {
            display: block;
            width: 100%;
            height: auto;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            color: #1f2937;
            cursor: pointer;
            font-size: 16px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
            z-index: 1;
        }
        
        .popup-close:hover {
            background-color: rgba(255, 255, 255, 1);
        }
        
        @media (max-width: 991px) {
            .desktop-popup {
                display: none !important;
            }
        }
		    .partners-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 40px;
        align-items: center;
        justify-items: center;
        margin-top: 40px;
    }

    .partner-item {
        width: 100%;
        max-width: 160px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .partner-item img {
        max-width: 100%;
        max-height: 50px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .partner-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .partner-item {
            max-width: 140px;
            height: 70px;
        }
    }

    @media (max-width: 480px) {
        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .partner-item {
            max-width: 120px;
            height: 60px;
        }
    }

    .course-detail-btn {
        display: inline-block;
        padding: 8px 16px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .course-detail-btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
    }

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

    .price {
        font-weight: 600;
        font-size: 14px;
        color: var(--primary-color)
    }
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--primary-color);
    position: relative;
    z-index: 1000;
}

.mobile-search-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .mobile-search-toggle {
        display: block;
        position: absolute;
        right: 60px;
        top: 53%;
        transform: translateY(-50%);
		        background: #f0f8ff;
        width: 45px;
        height: 45px;
        border-radius: 30px;
    }

    .search-toggle {
        display: none;
    }

    .auth-buttons {
        margin-left: auto;
    }

    .auth-button-group {
        display: none;
    }
}

@media (max-width: 576px) {
    .mobile-search-toggle {
        right: 80px;
    }
	        .topics-container {
    display: inline-block!important;
}
}
.padding {
    padding: 1.5rem;
}
        .breadcrumbs-area {
            padding: 1.5rem 0;
        }
        
        .breadcrumbs-area h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .breadcrumb {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 0.5rem;
        }
        
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        
        
        .breadcrumb a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s;
			font-size: 14px;
        }
        
        .breadcrumb a:hover {
            color: #4f46e5;
        }
        
        .breadcrumb a.active {
            color: #4f46e5;
            font-weight: 500;
        }
        
        .min-container {
            max-width: 1000px;
            padding-left: 0px;
        }
.rightcards {
    background-image: url(../img/right.svg);
    width: 15px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
}
.slider-arrow.right {
        display:none;
    }
	.privileges-container {
        position: relative;
    }

/* ============================================
   SHORTCODE STİLLERİ
   ============================================ */

/* Learning List Shortcode */
.learning-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.learning-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.learning-list li:last-child {
    border-bottom: none;
}

/* .check-green için temel tanım yukarıda (satır 7598-7607) zaten mevcut */
/* Learning list öğeleri için ek stil gerekirse buraya eklenebilir */

/* Info Box Shortcode */
.info-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius);
    border-left: 4px solid;
}

.info-box-info {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.info-box-success {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.info-box-warning {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.info-box-danger {
    background: #ffebee;
    border-left-color: #f44336;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-box-content p:last-child {
    margin-bottom: 0;
}

/* Button Shortcode */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Price Table Shortcode */
.price-table {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    transition: var(--transition);
}

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

.price-table-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.price-table-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.price-table-featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.price-table-body ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-table-body li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-table-featured .price-table-body li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Course Detail Grid Layout */
.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .course-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Course Sidebar Widgets */
.course-sidebar {
    position: sticky;
    top: 100px;
}

.course-sidebar .widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

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

.sidebar-education-widget .sidebar-education-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-education-widget .sidebar-education-menu li a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius);
    color: var(--text-color);
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-education-widget .sidebar-education-menu li a:hover,
.sidebar-education-widget .sidebar-education-menu li.current-menu-item > a {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.calculator-sidebar .info-widget h4 {
    margin-bottom: 0.5rem;
}

.calculator-sidebar .info-widget p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.course-sidebar .widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.course-info-widget .course-meta-list {
    list-style: none;
    padding: 0;
}

.course-info-widget .course-meta-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.course-info-widget .course-meta-list li:last-child {
    border-bottom: none;
}

.course-info-widget .course-meta-list li i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-widget .btn {
    margin-bottom: 0.75rem;
}

.cta-widget .btn:last-child {
    margin-bottom: 0;
}

/* ============================================
   GALERİ STİLLERİ
   ============================================ */

/* Course Gallery */
.course-gallery {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.course-gallery-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.course-gallery-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.course-gallery-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.gallery-item-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.gallery-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(67, 97, 238, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-zoom {
    font-size: 3rem;
    color: white;
}

.gallery-item-title {
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.gallery-item-desc {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Lightbox Gallery */
.lightbox-gallery {
    display: grid;
    margin: 2rem 0;
}

.lightbox-gallery-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.lightbox-gallery-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lightbox-gallery-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.lightbox-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    padding-top: 75%;
}

.lightbox-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.lightbox-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation: lightboxZoom 0.3s;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-caption {
    margin: auto;
    display: block;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.1rem;
}

/* WordPress Default Gallery Overrides */
.wp-block-gallery {
    gap: 1.5rem !important;
    margin: 2rem 0;
}

.wp-block-gallery .wp-block-image {
    margin: 0 !important;
}

.wp-block-gallery .wp-block-image img {
    border-radius: var(--radius);
    transition: var(--transition);
}

.wp-block-gallery .wp-block-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .course-gallery,
    .lightbox-gallery {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .gallery-item-image {
        padding-top: 60%;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}
/* Comments Section */
.comments-area {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.comments-title {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.comment-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.comment-list .comment {
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.comment-body {
    width: 100%;
}

.comment-author {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.comment-author .avatar {
    border-radius: 50% !important;
    margin-right: 15px !important;
    flex-shrink: 0;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--text-color);
}

.comment-author .says {
    margin-left: 5px;
    color: var(--text-light);
}

.comment-meta,
.comment-metadata {
    font-size: 14px !important;
    color: var(--text-light) !important;
    margin-bottom: 10px !important;
}

.comment-content {
    line-height: 1.6 !important;
    color: var(--text-color) !important;
}

.comment-content p {
    margin-bottom: 10px;
}

.reply {
    margin-top: 10px !important;
}

.reply a,
.comment-reply-link {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px;
}

.reply a:hover,
.comment-reply-link:hover {
    color: var(--primary-dark) !important;
}

/* Comment Form */
.comment-respond {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: var(--radius);
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.comment-form {
    margin-top: 20px;
}

.comment-form p {
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100% !important;
    padding: 10px 15px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius) !important;
    font-family: inherit !important;
    font-size: 14px !important;
    transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
}

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

.comment-form input[type="submit"],
.comment-form .submit {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 12px 30px !important;
    border: none !important;
    border-radius: var(--radius) !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: background 0.3s;
}

.comment-form input[type="submit"]:hover,
.comment-form .submit:hover {
    background: var(--primary-dark) !important;
}

.no-comments {
    text-align: center;
    color: var(--text-light);
    padding: 30px;
    font-style: italic;
}

@media (max-width: 768px) {
    .comments-area {
        padding: 20px;
    }
    
    .comment-respond {
        padding: 20px;
    }
}

/* WordPress Body Class Override - Search sayfası düzeltmesi */
body.search,
body.search-results,
body.search-no-results {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.search .container,
body.search-results .container,
body.search-no-results .container {
    max-width: 1280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

body.search .courses,
body.search-results .courses,
body.search-no-results .courses {
    width: 100% !important;
    max-width: 100% !important;
}

/* Blog Post Sidebar - Benzer Yazılar ve Son Yazılar */
.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.post-content-wrapper {
    width: 100%;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.related-posts {
    background: #f9f9f9;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.related-posts h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.related-post-info {
    flex: 1;
}

.related-post-info h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text-color);
}

.related-post-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-info a:hover {
    color: var(--primary-color);
}

.related-post-info .post-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .post-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Footer MEB Logo */
.footer-meb-logo {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.footer-meb-logo img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-meb-logo img:hover {
    opacity: 1;
}

/* Header Telefon Butonu */
.auth-btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px !important;
    min-width: auto;
}

.auth-btn-phone svg {
    flex-shrink: 0;
}

/* Telefon hover efekti */
.auth-btn-phone:hover {
    transform: scale(1.05);
}
