@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Reset ve Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-feature-settings: "liga" on, "calt" on;
    font-feature-settings: "liga" on, "calt" on;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
    background: #2d3748;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .social-links {
    display: flex;
    gap: 15px;
}

.top-bar .social-links a {
    color: white;
    font-size: 14px;
    transition: color 0.3s;
    text-decoration: none;
}

.top-bar .social-links a:hover {
    color: #f56500;
}

/* Header Styles */
.header {
    background: #4a5568;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 32px;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    background: #63b3ed;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 25px; /* 30px'ten küçülttüm */
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 6px 12px; /* 8px 16px'ten küçülttüm */
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 14px; /* Bu satırı ekle - font boyutunu küçült */
    font-weight: 500; /* Bu satırı ekle - font kalınlığını azalt */
}


.nav-link.active,
.nav-link:hover {
    background: #f56500;
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.header .email {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language {
    display: flex;
    gap: 5px;
}

.language span {
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.language span.active {
    background: #f56500;
}

.edit-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
/* Hero Section - ESKİ KODU SİL, YERİNE BUNU YAZ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slideshow Styles */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 130px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer Styles */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer .social-links a:hover {
    color: #f56500;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}
/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #f56500;
    color: white;
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}
/* About Page Styles */
.about-section {
    padding: 150px 0 80px;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-left {
    flex: 0 0 30%;
}

.about-right {
    flex: 1;
}

.profile-image {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-placeholder {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
    padding: 40px 20px;
    text-align: center;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-card h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
    border-bottom: 2px solid #f56500;
    padding-bottom: 10px;
}

.about-card h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-card h3 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.bio-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: justify;
}

.web-section, .contact-section {
    margin-bottom: 25px;
}

.web-section h4, .contact-section h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.web-links {
    list-style: none;
    padding: 0;
}

.web-links li {
    margin-bottom: 8px;
}

.web-links a {
    color: #f56500;
    text-decoration: none;
    font-size: 15px;
}

.web-links a:hover {
    text-decoration: underline;
}

.email-link {
    color: #3182ce;
    text-decoration: none;
    font-size: 15px;
}

.email-link:hover {
    text-decoration: underline;
}

/* AKBİS Link Styling */
.akbis-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f56500, #ff8a33);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.akbis-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 101, 0, 0.3);
}

.akbis-link i {
    font-size: 18px;
}
/* Company About Page Styles */
.company-about-section {
    padding: 150px 0 80px;
    background: #f8f9fa;
}

.page-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 700;
}

.company-image-section {
    margin-bottom: 40px;
}

.company-image-placeholder {
    width: 100%;
    height: 300px;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 16px;
    border: 2px dashed #cbd5e0;
}

.company-image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.company-info {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.company-info h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 700;
}

.company-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
    margin: 0;
}

/* Team Page Styles */
.team-section {
    padding: 180px 0 80px;
    background: #f8f9fa;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member-card {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px; /* 30px'ten 20px'e düşürdüm */
    gap: 25px; /* 30px'ten 25px'e düşürdüm */
    align-items: flex-start;
}

.member-photo {
    flex: 0 0 160px;
}

.photo-placeholder {
    width: 160px;
    height: 200px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 14px;
    border: 2px dashed #cbd5e0;
}

.photo-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 6px;
    font-weight: 700;
}

.member-info h4 {
    font-size: 1.1rem;
    color: #f56500;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #3182ce;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive for Team Cards */
@media (max-width: 768px) {
    .team-member-card {
        flex-direction: column;
        text-align: center;
    }
    
    .member-photo {
        flex: none;
        align-self: center;
    }
}
/* AR&GE Page Styles */
.arge-section {
    padding: 180px 0 80px;
    background: #f8f9fa;
}

.arge-header {
    margin-bottom: 40px;
}

.arge-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    font-weight: 700;
    text-align: left;
}

/* Project Tabs */
.project-tabs {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #f56500;
    border-bottom-color: #f56500;
}

.tab-btn:hover {
    color: #f56500;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 120px;
    background: #f7fafc;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 14px;
    border: 2px dashed #e2e8f0;
    background: #f7fafc;
}

.project-image .image-placeholder i {
    font-size: 32px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 6px 12px;
    background: #3182ce;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.project-date i {
    font-size: 12px;
}

.project-info p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}
/* Microorganism Library Page Styles */
.microorganism-section {
    padding: 180px 0 80px;
    background: #f8f9fa;
}

.microorganism-header {
    margin-bottom: 40px;
}

.microorganism-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    font-weight: 700;
    text-align: left;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.category-tab {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.category-tab.active {
    color: #f56500;
    border-bottom-color: #f56500;
}

.category-tab:hover {
    color: #f56500;
}

/* Category Content */
.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

/* Microorganisms Grid */
.microorganisms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Microorganism Card */
.microorganism-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.microorganism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.microorganism-image {
    height: 150px;
    background: #f7fafc;
}

.microorganism-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 14px;
    border: 2px dashed #e2e8f0;
    background: #f7fafc;
}

.microorganism-image .image-placeholder i {
    font-size: 32px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.microorganism-info {
    padding: 20px;
}

.microorganism-info h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.info-field:last-child {
    border-bottom: none;
}

.info-field label {
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
}

.info-field span {
    color: #2d3748;
    font-size: 14px;
}

.category-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.bakteri {
    background: #e6f3ff;
    color: #0066cc;
}

.category-badge.maya {
    background: #f0f9ff;
    color: #0284c7;
}

.category-badge.faj {
    background: #fef3e2;
    color: #ea580c;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #718096;
}

.empty-icon {
    margin-bottom: 20px;
}

.empty-icon i {
    font-size: 64px;
    opacity: 0.3;
    color: #a0aec0;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-state p {
    font-size: 16px;
    color: #718096;
    margin: 0;
}
/* Laboratory Page Styles */
.laboratory-section {
    padding: 180px 0 80px;
    background: #f8f9fa;
}

.laboratory-header {
    text-align: center;
    margin-bottom: 50px;
}

.laboratory-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.laboratory-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Media Tabs */
.media-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.media-tab {
    background: none;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin: 0 10px;
}

.media-tab.active {
    color: #f56500;
    border-bottom-color: #f56500;
}

.media-tab:hover {
    color: #f56500;
}

/* Media Content */
.media-section {
    display: none;
}

.media-section.active {
    display: block;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Gallery Item */
.gallery-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Media Placeholder */
.media-placeholder {
    height: 200px;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 14px;
    border: 2px dashed #e2e8f0;
    position: relative;
    transition: all 0.3s;
}

.media-placeholder:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.media-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.6;
}

/* Video Placeholder */
.video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    position: relative;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.video-placeholder i {
    font-size: 50px;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: transform 0.3s;
}

.video-placeholder:hover i {
    transform: scale(1.1);
}

/* Media Info */
.media-info {
    padding: 20px;
}

.media-info h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.media-info p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Video Duration */
.video-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #718096;
    font-size: 12px;
    font-weight: 500;
}

.video-duration i {
    font-size: 10px;
}

/* Video Item Specific */
.video-item .media-info {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .media-tab {
        margin: 5px 0;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0;
        width: 200px;
        text-align: center;
    }
    
    .laboratory-header h1 {
        font-size: 2rem;
    }
    
    .laboratory-header p {
        font-size: 1rem;
    }
}

/* Hover Effects for Gallery Items */
@media (min-width: 769px) {
    .gallery-item:hover .media-placeholder i,
    .gallery-item:hover .video-placeholder i {
        transform: scale(1.2);
    }
    
    .gallery-item:hover .media-info h4 {
        color: #f56500;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .microorganisms-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
    }
    
    .category-tab {
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}
    /* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.nav-menu.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #4a5568;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    padding-top: 50px;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.mobile-menu.active {
    left: 0;
}

.nav-menu.mobile-menu .nav-link {
    font-size: 18px;
    padding: 15px 30px;
    margin: 10px 0;
    width: 80%;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Updated Mobile Responsive Rules */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile-menu {
        display: flex;
    }
    
    /* Adjust header layout for mobile */
    .header .container {
        justify-content: space-between;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    /* Hero section mobile fixes */
    .hero-content {
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* About page mobile fixes */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-left {
        flex: none;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card h1 {
        font-size: 1.8rem;
    }
    
    .about-card h2 {
        font-size: 1.5rem;
    }
    
    /* General mobile improvements */
    .page-title {
        font-size: 2rem;
    }
    
    .team-header h1,
    .arge-header h1,
    .microorganism-header h1 {
        font-size: 2rem;
    }
    
    /* Mobile padding adjustments */
    .about-section,
    .company-about-section,
    .team-section,
    .arge-section,
    .microorganism-section,
    .laboratory-section {
        padding: 120px 0 60px;
    }
}
/* Ana website'in CSS dosyasına (styles.css) ekle */

/* Dynamic Microorganisms Styles */
.microorganisms-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.microorganism-item-dynamic {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.microorganism-item-dynamic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #f56500;
}

.microorganism-image-dynamic {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.micro-image-placeholder {
    transition: all 0.3s ease;
}

.microorganism-item-dynamic:hover .micro-image-placeholder {
    background: #fef5e7 !important;
    border-color: #f56500 !important;
}

.microorganism-details-dynamic .info-field {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.microorganism-details-dynamic .info-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.microorganism-details-dynamic .info-field label {
    display: block;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 14px;
}

.microorganism-details-dynamic .info-field span,
.microorganism-details-dynamic .info-field p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.scientific-name-text {
    font-style: italic;
    font-weight: 600;
    color: #2d3748 !important;
}

.strain-code-text {
    font-family: 'Courier New', monospace;
    background: #f7fafc;
    padding: 2px 6px;
    border-radius: 4px;
    color: #2d3748 !important;
    font-weight: 600;
}

.category-badge-dynamic {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white !important;
}

.category-badge-dynamic.bakteri {
    background: #38a169;
}

.category-badge-dynamic.maya {
    background: #d69e2e;
}

.category-badge-dynamic.faj {
    background: #e53e3e;
}

.micro-description-text {
    text-align: justify;
}

.usage-areas-dynamic {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.usage-area-tag {
    background: #3182ce;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.special-notes-text {
    background: #fef5e7;
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid #f56500;
    color: #744210 !important;
    font-size: 13px !important;
    margin-top: 5px;
}

.empty-microorganism-state {
    animation: fadeIn 0.5s ease-in;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .microorganisms-dynamic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .microorganism-item-dynamic {
        padding: 15px;
    }
    
    .microorganism-image-dynamic {
        height: 120px;
        margin-bottom: 15px;
    }
    
    .usage-areas-dynamic {
        gap: 6px;
    }
    
    .usage-area-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* Animation for new content */
.microorganism-item-dynamic {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced hover effects */
.microorganism-item-dynamic .usage-area-tag {
    transition: transform 0.2s ease;
}

.microorganism-item-dynamic:hover .usage-area-tag {
    transform: scale(1.05);
}

.microorganism-item-dynamic .category-badge-dynamic {
    transition: transform 0.2s ease;
}

.microorganism-item-dynamic:hover .category-badge-dynamic {
    transform: scale(1.1);
}

/* Loading state styles */
.microorganisms-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #718096;
}

.microorganisms-loading i {
    animation: spin 1s linear infinite;
    font-size: 24px;
    margin-right: 10px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* Company Image Display Styles */
.company-image-display {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f7fafc;
}

.company-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.company-image-display .no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 18px;
}

.company-image-display .no-image-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .company-image-display {
        height: 250px;
    }
    
    .company-image-display .no-image-placeholder {
        font-size: 16px;
    }
    
    .company-image-display .no-image-placeholder i {
        font-size: 48px;
    }
}
/* Profile Image Display Styles */
.profile-image {
    width: 100%;
    max-width: 300px;
    height: 350px;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f7fafc;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.profile-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 16px;
}

.profile-image .image-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-image {
        height: 280px;
    }
    
    .profile-image .image-placeholder i {
        font-size: 36px;
    }
}

/* Hakkımda Sayfası - Bio Tabs */
.bio-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0 20px 0;
    border-bottom: 2px solid #e2e8f0;
}

.bio-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #718096;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
}

.bio-tab:hover {
    color: #f56500;
}

.bio-tab.active {
    color: #f56500;
    font-weight: 600;
    border-bottom-color: #f56500;
}

.bio-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.bio-tab-content.active {
    display: block;
}

.bio-text {
    margin: 20px 0;
    line-height: 1.8;
    color: #2d3748;
}

.bio-text p {
    margin-bottom: 15px;
}

.bio-text ul, .bio-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.bio-text li {
    margin-bottom: 8px;
}

.bio-text strong {
    color: #1a202c;
    font-weight: 600;
}

.bio-text em {
    font-style: italic;
    color: #4a5568;
}

/* Akademik Profil Bölümü */
.academic-profile-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.academic-profile-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.akbis-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f56500, #ff8a33);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.akbis-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 101, 0, 0.3);
}

.akbis-link i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .bio-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .bio-tab {
        border-bottom: 1px solid #e2e8f0;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 12px 16px;
    }
    
    .bio-tab.active {
        border-left-color: #f56500;
        border-bottom-color: #e2e8f0;
        background: #fff5f0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}