/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigasyon */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: auto;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    width: auto;
    margin: 0;
    line-height: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 9999;
    outline: none;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Ana Navigasyon */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.main-nav ul li a:hover {
    color: #007bff;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 9999;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        transition: all 0.3s ease-in-out;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 998;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        font-size: 1.1rem;
        padding: 10px;
        display: block;
    }

    /* Hamburger menü animasyonu */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    background-size: cover;
    background-position: center;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    opacity: 1;
    transform: none;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 1;
    transform: none;
}

/* About Page Section */
.about-page {
    padding: 0;
    background-color: #f8f9fa;
    margin-top: 0;
}

/* About Section */
.about {
    padding: 0;
    background-color: transparent;
    margin-top: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 0;
    padding: 0 5px;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 0;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-text {
    flex: 1.2;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.about-text::-webkit-scrollbar {
    width: 8px;
}

.about-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.about-text::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    border-radius: 10px;
}

.about-text::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0056b3, #0097a7);
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.text-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    padding: 0 10px;
    margin: 0;
    line-height: 1.2;
}

.text-content p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #666;
    margin-bottom: 15px;
    text-indent: 20px;
    text-align: justify;
    hyphens: auto;
    word-wrap: break-word;
}

.gradient-text {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0 10px;
    margin: 0;
    text-align: center;
    position: relative;
    width: 100%;
    font-weight: bold;
}

.gradient-text::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    margin-top: 10px;
    position: relative;
    top: 5px;
}

.about-btn {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 3px;
    align-self: center;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
    font-size: 0.8rem;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* Works Section */
.works {
    padding: 30px 0 50px;
    background-color: #f8f9fa;
}

.service-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-header {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.service-header i {
    font-size: 2.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-content ul li {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-content ul li:hover {
    transform: translateX(5px);
    background: #e9ecef;
}

.service-content ul li i {
    color: #007bff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-content ul li:hover i {
    background: #007bff;
    color: white;
    transform: rotate(360deg);
}

@media (max-width: 768px) {
    .service-header {
        padding: 20px;
    }
    
    .service-header i {
        font-size: 2rem;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content ul {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #6e8efb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: #a777e3;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .service-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* Footer Stilleri */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    color: #fff;
    padding: 15px 0 8px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-section {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Başlık stili */
.footer-section h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.footer-section h4 i {
    display: block;
    font-size: 1.5rem;
    margin: 0 auto 8px;
    color: #00f2fe;
}

/* İçerik alanı */
.footer-content-area {
    display: none;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
}

.footer-section.active {
    background: rgba(255, 255, 255, 0.08);
}

.footer-content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.footer-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: left;
    line-height: 1;
}

.footer-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.footer-item i {
    color: #00f2fe;
    font-size: 0.8rem;
    min-width: 16px;
    text-align: center;
    background: rgba(0, 242, 254, 0.1);
    padding: 3px;
    border-radius: 4px;
}

.footer-item span,
.footer-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.footer-item a:hover {
    color: #00f2fe;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.4;
}

.footer-bottom p br {
    display: block;
    content: "";
    margin: 3px 0;
}

.footer-bottom a {
    color: #00f2fe;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
    font-size: 0.65rem;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 576px) {
    .footer-top-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-section {
        min-width: 100px;
        padding: 10px 5px;
    }
    
    .footer-section h4 {
        font-size: 0.75rem;
    }
    
    .footer-section h4 i {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
}

/* Hero Slider Styles */
.hero-slider {
    height: 20vh;
    margin-top: 80px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    display: none; /* Slider resimlerini gizle */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 85%;
    max-width: 700px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 15vh;
        margin-top: 80px;
        margin-bottom: 15px;
    }

    .slide-content {
        padding: 8px 12px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 12vh;
        margin-top: 80px;
        margin-bottom: 10px;
    }

    .slide-content {
        padding: 6px 10px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

.mission-box h3, .vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
}

.mission-box ul, .vision-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.mission-box li, .vision-box li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.mission-box h3 i, .vision-box h3 i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #007bff;
}

.mission-box ul li i, .vision-box ul li i {
    color: #007bff;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .mission-vision-content {
        flex-direction: column;
    }
    
    .mission-box, .vision-box {
        margin-bottom: 30px;
    }
    
    .mission-box h3, .vision-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-box ul li, .vision-box ul li {
        font-size: 1rem;
    }
}

/* Principles Section */
.principles {
    padding: 10px 0;
    background-color: #f8f9fa;
    margin-top: 10px;
}

.principles .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.principle-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.principle-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.principle-card:hover i {
    transform: scale(1.2);
    color: #00bcd4;
}

.principle-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #007bff;
    position: relative;
    padding-bottom: 10px;
}

.principle-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
}

.principle-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team {
    padding: 10px 0;
    background-color: #f8f9fa;
    margin-top: 10px;
}

.team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h3 {
    font-size: 0.8rem;
    margin: 0;
    color: #333;
    line-height: 1.2;
}

.member-info p {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .member-image img {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .member-image img {
        height: 100px;
    }
}

/* Galeri Bölümü */
.gallery {
    padding: 10px 0;
    background-color: #f9f9f9;
    margin-top: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-item .overlay h3,
.gallery-item .overlay p {
    display: none;
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .gallery-item {
        height: 140px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .gallery-item {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item {
        height: 110px;
    }
    .gallery-overlay h3 {
        font-size: 0.7rem;
    }
    .gallery-overlay p {
        font-size: 0.65rem;
    }
}

/* İletişim Bölümü */
.contact {
    padding: 10px 0;
    background-color: #f9f9f9;
    margin-top: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 24px;
    color: #007bff;
    margin-top: 5px;
}

.contact-item h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

.map {
    padding: 10px 0;
    background-color: #fff;
    margin-top: 10px;
}

.map-container {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 24px;
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item div h3 {
        margin-bottom: 8px;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header .container {
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .text-content {
        padding: 30px;
    }
    
    .text-content h2 {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        padding: 0 10px;
        margin: 0;
        line-height: 1.2;
    }
    
    .text-content p {
        font-size: 1rem;
    }
}

/* Sondaki tüm mobil menü stilleri kaldırıldı */
@media (max-width: 768px) {
    .about-page, .services, .values, .mission-vision, .principles, .team, .gallery, .contact, .map {
        padding: 10px 0;
    }
}

/* Yeni Servis Bölümü Stilleri */
.new-service-container {
    margin-top: 20px;
}

.new-service-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.new-service-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    flex: 1;
    width: 48%;
}

.new-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.new-service-item i {
    font-size: 2.5rem;
    color: #6e8efb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.new-service-item:hover i {
    color: #a777e3;
    transform: scale(1.1);
}

.new-service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
}

.new-service-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
}

.new-service-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Yeni Değerler Bölümü Stilleri */
.new-values-container {
    margin-top: 20px;
}

.new-values-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.new-values-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    width: 48%;
}

.new-values-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.new-values-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.new-values-item:hover::before {
    transform: scaleX(1);
}

.new-values-item i {
    font-size: 2.5rem;
    color: #6e8efb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.new-values-item:hover i {
    color: #a777e3;
    transform: scale(1.1);
}

.new-values-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    color: #333;
}

.new-values-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
}

.new-values-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobil için Responsive Ayarlar */
@media (max-width: 992px) {
    .new-service-row, .new-values-row {
        flex-direction: row;
        gap: 15px;
    }
    
    .new-service-item, .new-values-item {
        width: 48%;
    }
}

@media (max-width: 576px) {
    .new-service-container, .new-values-container {
        gap: 15px;
    }
    
    .new-service-row, .new-values-row {
        flex-direction: row;
        gap: 10px;
    }
    
    .new-service-item, .new-values-item {
        width: 48%;
        padding: 15px 10px;
    }
    
    .new-service-item i, .new-values-item i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .new-service-item h3, .new-values-item h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .new-service-item p, .new-values-item p {
        font-size: 0.8rem;
    }
}

/* Akordeon Menü Stilleri */
.accordion-container {
    width: 100%;
    margin: 20px 0;
}

.accordion-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.accordion-item {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.accordion-header i:first-child {
    font-size: 24px;
    margin-right: 15px;
    color: #007bff;
}

.accordion-header h3 {
    flex: 1;
    margin: 0;
    font-size: 18px;
    color: #333;
}

.toggle-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.accordion-content ul {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.accordion-content li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #555;
    transition: all 0.3s ease;
}

.accordion-content li:hover {
    color: #007bff;
}

.accordion-content li i {
    margin-right: 10px;
    color: #007bff;
    font-size: 16px;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .accordion-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-header i:first-child {
        font-size: 20px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .accordion-content p {
        padding: 15px;
    }
    
    .accordion-content ul {
        padding: 0 15px 15px;
    }
}

/* Lightbox Stilleri */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
}

.lightbox.active {
    display: block;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    color: white;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-item div h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .contact-item div p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
}

.about-text .text-content h2.gradient-text {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 10px 0;
    padding: 0;
}

/* Yeni Kayan Resim (Simple Slider) */
.simple-slider {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 300px;
}

.slide-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.slide-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.slider-nav i {
    color: #333;
    font-size: 16px;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Mobil Uyumlu Stiller */
@media (max-width: 768px) {
    .slider-container {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .slider-track {
        height: 250px;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .slider-nav i {
        font-size: 14px;
    }
    
    .slide-overlay {
        padding: 10px 15px;
        max-width: 300px;
    }
    
    .slide-overlay h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .simple-slider {
        padding: 15px 0;
    }
    
    .slider-track {
        height: 200px;
    }
    
    .slider-nav {
        width: 32px;
        height: 32px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .slide-overlay {
        padding: 8px 12px;
        max-width: 260px;
    }
    
    .slide-overlay h3 {
        font-size: 1rem;
    }
} 