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

:root {
    /* Mirai Academy palette - colors.txt */
    --primary-color: #4825C6;
    --accent-color: #7B2CBF;
    --secondary-color: #3B8DFF;
    --text-color: #1F1A38;
    --light-bg: #F5F6FA;
    --white: #FFFFFF;
    --gray: #5c5c7a;
    --dark-gray: #4825C6;
    --border-color: #E0E2EB;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(72, 37, 198, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(72, 37, 198, 0.6);
    background: linear-gradient(135deg, #3d1fb3 0%, #6a24a8 100%);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Image Protection */
img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Logo is also protected (not clickable) */

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 11px;
    font-weight: 600;
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    line-height: 1.4;
    border-bottom: none;
    z-index: 998;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: 600;
}

.top-bar-right span {
    margin-left: 20px;
    font-weight: 600;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

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

/* Header & Navigation */
.header {
    background-color: #F5F6FA;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    border-top: none;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 78px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    opacity: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    padding: 10px 0;
    list-style: none;
    border-radius: 5px;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-menu li {
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    transition: all 0.3s;
    position: relative;
    color: var(--text-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 40px);
    height: 2px;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
}

.dropdown-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hakkımızda dropdown menu specific styles */
.hakkimizda-dropdown .dropdown-menu li a {
    color: var(--text-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 600;
}

.hakkimizda-dropdown .dropdown-menu li a:hover {
    color: var(--accent-color) !important;
    background-color: var(--light-bg);
}

/* Submenu items (non-clickable) */
.submenu-item {
    padding: 10px 20px;
    display: block;
    color: var(--text-color) !important;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 12px;
    opacity: 1;
    visibility: visible;
}

.submenu-item:hover {
    background-color: var(--light-bg);
    color: var(--accent-color) !important;
}

/* Multi-level Dropdown */
.dropdown-submenu {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-submenu>a:hover {
    color: var(--accent-color) !important;
    background-color: var(--light-bg);
}

.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: calc(100% - 2px);
    top: -10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    padding: 10px 0;
    list-style: none;
    border-radius: 5px;
    margin-left: 0;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu:hover .dropdown-submenu-content,
.dropdown-submenu-content:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Create invisible bridge between menus to prevent closing */
.dropdown-submenu::after {
    content: '';
    position: absolute;
    left: 100%;
    top: -10px;
    width: 10px;
    height: calc(100% + 20px);
    background: transparent;
    display: none;
    z-index: 1;
}

.dropdown-submenu:hover::after {
    display: block;
}

/* Stats Section */
.stats-section {
    position: relative;
    background-color: var(--white);
    padding: 0px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-card {
    padding: 0px;
    transition: transform 0.3s;
}

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

.stat-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 0px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    z-index: 1;
}

.slide:nth-child(1) .slide-content {
    background: transparent;
}

.slide:nth-child(2) .slide-content {
    background: transparent;
}

.slide:nth-child(3) .slide-content {
    background: transparent;
}

.slide:nth-child(4) .slide-content {
    background: transparent;
}

.slide-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text {
    color: var(--white);
    text-align: left;
}

.slide:nth-child(3) .slide-text {
    color: #000000;
}

.slide:nth-child(3) .slide-subtitle,
.slide:nth-child(3) .slide-title,
.slide:nth-child(3) .slide-description {
    color: #000000;
}

.slide-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 1;
}

.slide-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background-color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    transform-origin: center;
}

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

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

.btn-primary:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.btn-secondary:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-course,
.btn-news {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
    text-align: center;
}

.btn-course:hover,
.btn-news:hover {
    background-color: var(--primary-color);
}

.btn-course:hover::after,
.btn-news:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 18px;
    padding: 15px 40px;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-cta:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Featured Sections */
.featured-sections {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.featured-grid .featured-card {
    flex: 0 1 350px;
    max-width: 400px;
}

.featured-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.featured-content {
    padding: 30px;
    text-align: center;
}

.featured-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
}

/* Courses Section */
.courses-section {
    padding: 60px 0 20px 0;
    background-color: var(--light-bg);
}

.course-category {
    padding: 20px 0;
    margin-bottom: 0;
}

.course-category:nth-child(odd) {
    background-color: var(--white);
}

.course-category:nth-child(even) {
    background-color: var(--light-bg);
}

.category-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    text-align: center;
    width: 100%;
    display: block;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.courses-grid .course-card {
    flex: 0 1 350px;
    max-width: 400px;
}

.course-card,
a.course-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease !important;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    will-change: transform;
}

.course-card:hover,
a.course-card:hover {
    transform: translateY(-10px) !important;
    text-decoration: none;
}

a.course-card .btn {
    display: inline-block;
    pointer-events: none;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 10;
}

.course-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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


.course-content {
    padding: 25px;
}

.course-teacher {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.course-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    min-height: 60px;
}

.course-meta {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.news-grid .news-card {
    flex: 0 1 300px;
    max-width: 350px;
}

.news-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    min-height: 60px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonials-grid .testimonial-card {
    flex: 0 1 300px;
    max-width: 350px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.testimonial-image {
    margin-bottom: 20px;
}

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

.testimonial-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-header h2 i {
    color: var(--accent-color);
}

.form-header p {
    color: var(--gray);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.form-group label i {
    color: var(--accent-color);
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

.checkbox-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 37, 198, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-message {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    animation: slideInUp 0.5s ease-out;
}

.success-message i {
    font-size: 48px;
    flex-shrink: 0;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.info-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h3 i {
    color: var(--accent-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.address-info p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.address-info p:first-child {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.faq-preview {
    text-align: center;
}

.faq-preview p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-faq {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-faq:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.field-error {
    color: #c0392b;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: '⚠';
    font-size: 14px;
}

.error-message {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: slideInUp 0.5s ease-out;
}

.error-message i {
    font-size: 24px;
    flex-shrink: 0;
}

.error-message h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.error-message p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-header h2 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .info-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 15px 30px;
        font-size: 16px;
    }

    .success-message {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .success-message i {
        font-size: 36px;
    }
}

/* Partners Section */
.partners-section {
    padding: 10px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

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

.partners-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

    .partners-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .partners-grid {
        gap: 30px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo img {
        max-height: 60px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 30px 0;
    }

    .partners-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        height: 50px;
    }

    .partner-logo img {
        max-height: 50px;
        max-width: 120px;
    }
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
    justify-content: center;
}

.footer-grid .footer-column {
    flex: 0 1 200px;
    max-width: 250px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    font-size: 12px;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
    transform-origin: center;
}

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

.footer-column ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    margin-right: 10px;
}

.social-media-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-media-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar-right span {
        margin-left: 0;
        margin-right: 10px;
    }

    .logo img {
        height: 56px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        color: var(--text-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 10px;
        padding-left: 20px;
    }

    .dropdown-submenu-content {
        position: static;
        box-shadow: none;
        margin-top: 5px;
        margin-left: 20px;
        padding-left: 20px;
    }

    .dropdown-submenu>a .fa-chevron-right {
        transform: rotate(90deg);
    }

    .hero-slider {
        height: auto;
    }

    .slide {
        width: 100%;
        height: auto;
    }

    .slide-content {
        align-items: center;
        justify-content: center;
    }

    .slide-text {
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.4;
    }


    .stats-grid {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .featured-grid,
    .courses-grid,
    .news-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .featured-grid .featured-card,
    .courses-grid .course-card,
    .news-grid .news-card,
    .testimonials-grid .testimonial-card {
        max-width: 100%;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .category-title {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid .footer-column {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 0;
    }

    .logo img {
        height: 48px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .slider-btn {
        font-size: 18px;
        padding: 10px 15px;
    }

    .hero-slider {
        height: auto;
    }

    .slide {
        width: 100%;
        height: auto;
    }

    .slide-content {
        align-items: center;
        justify-content: center;
    }

    .slide-text {
        padding: 0 15px;
    }

    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .slide-subtitle {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .slide-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .category-title {
        font-size: 26px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Course Detail Page Styles */
.course-detail-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 100px 0 100px;
    text-align: center;
}

.course-detail-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.course-detail-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

.course-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.course-info {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Sadece course-info içeren sayfalar için tüm grid sütunlarını kapla ve ortala */
.course-detail-grid:has(.course-info:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}

.course-detail-grid:has(.course-info:only-child) .course-info {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 900px;
    width: 100%;
}

.course-info h1 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    text-align: center;
}

.course-info h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
}

.course-info h3,
.course-info h4 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
}

.course-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-info ul li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
    text-align: justify;
}

.course-info ul li:last-child {
    border-bottom: none;
}

.course-info ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.course-card-detail {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 370px;
    position: relative;
    z-index: 10;
}

.course-card-detail h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.course-card-detail h3 i {
    color: var(--accent-color);
}

.course-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    width: 200px;
    margin: 0 auto;
}

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

.course-info-item i {
    color: var(--accent-color);
    font-size: 20px;
    width: 24px;
}

.course-info-item span {
    font-size: 16px;
    color: var(--text-color);
}

.course-info-item strong {
    display: inline-block;
    width: 90px;
}

.course-image-large {
    width: 370px;
    height: 370px;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

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

.btn-enroll {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 370px;
    text-decoration: none;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 37, 198, 0.4);
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.course-section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
}

/* Course Detail Page Responsive */
@media (max-width: 1024px) {
    .course-detail-grid {
        grid-template-columns: 1fr;
    }

    .course-sidebar {
        order: -1;
    }

    .course-image-large {
        width: 100%;
        max-width: 100%;
    }

    .course-card-detail {
        width: 100%;
    }

    .btn-enroll {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .course-detail-hero {
        padding: 60px 0 40px;
    }

    .course-detail-hero h1 {
        font-size: 32px;
    }

    .course-detail-hero p {
        font-size: 16px;
    }

    .course-detail-section {
        padding: 60px 0;
    }

    .course-info,
    .course-card-detail {
        padding: 25px 20px;
    }

    .course-info h2,
    .course-section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .course-detail-hero h1 {
        font-size: 28px;
    }

    .course-info,
    .course-card-detail {
        padding: 20px 15px;
    }

    .btn-enroll {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Bootcamp Styles */
.bootcamp-intro {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.bootcamp-intro h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.bootcamp-intro h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.bootcamp-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
}

.bootcamp-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

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

.feature-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .bootcamp-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bootcamp-intro {
        padding: 25px 20px;
    }

    .bootcamp-intro h2 {
        font-size: 24px;
    }

    .bootcamp-intro h3 {
        font-size: 20px;
    }
}

/* Construction Page Styles */
.construction-section {
    padding: 150px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.construction-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.construction-section i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

/* Corporate Page Styles */
.corporate-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.corporate-header {
    text-align: center;
    margin-bottom: 40px;
}

.corporate-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.corporate-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.corporate-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.corporate-form .form-group.full-width {
    width: 100%;
    margin-bottom: 20px;
}

.corporate-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.corporate-form input[type="text"],
.corporate-form input[type="email"],
.corporate-form input[type="tel"],
.corporate-form input[type="number"],
.corporate-form input[type="date"],
.corporate-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.corporate-form input:focus,
.corporate-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.course-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-submit {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .corporate-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .corporate-form .form-group {
        margin-bottom: 15px;
    }

    .corporate-content {
        padding: 20px;
    }
}

/* Course Group Styles */
.course-group {
    margin-bottom: 20px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
}

.course-group-title {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.course-selection-grid {
    background: transparent;
    /* Override previous background */
    padding: 0;
    margin-top: 0;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.radio-item label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    color: var(--text-color);
}

/* About Page Styles */
.about-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 37, 198, 0.95) 0%, rgba(123, 44, 191, 0.9) 100%);
    z-index: 1;
}

.about-header .container {
    position: relative;
    z-index: 2;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: var(--secondary-color);
}

.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
    color: var(--white);
}

.breadcrumb li:last-child::after {
    content: '';
}

.story-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.story-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.story-content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.values-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--secondary-color);
}

.value-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(123, 44, 191, 0.12);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--accent-color);
    color: var(--white);
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.why-us-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.why-us-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.why-us-content {
    flex: 1;
    min-width: 300px;
}

.why-us-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--white);
}

.why-us-list {
    list-style: none;
}

.why-us-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
}

.why-us-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 20px;
}

.why-us-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.why-us-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}