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

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1;
    background-color: #f0f2f5;
    font-family: sans-serif;
    font-size: medium;
}

html {
    margin: 0;
    padding: 0;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    transition: all 0.3s ease;
    background-color: rgba(0, 123, 255, 0);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(0, 123, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.menu-item {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
}

.menu-button {
    color: white;
    background-color: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.menu-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .menu-button {
    color: white;
    border-color: transparent;
}

.navbar.scrolled .menu-button:hover {
    background-color: white;
    color: #333;
}

.dropdown-content {
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 4px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.menu-item:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.content {
    text-align: justify;
    max-width: 800px;
    margin: 80px auto 0;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content h1 {
    color: #333;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Slider ana container */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
}

/* Slider içindeki tüm slide'lar */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Her bir slide */
.slide {
    margin: 0;
    padding: 0;
    line-height: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Aktif slide */
.slide.active {
    opacity: 1;
}

/* Slide içindeki resimler */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider kontrol butonları */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.6);
}

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

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

/* Slider nokta göstergeleri */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.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;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.upload-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.upload-info {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.upload-rules {
    list-style-type: none;
    margin-bottom: 30px;
    padding: 0;
}

.upload-rules li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.upload-rules li:before {
    content: "•";
    color: #333;
    position: absolute;
    left: 0;
}

.upload-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.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[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.form-group select:focus {
    border-color: #007bff;
    outline: none;
}

.form-group select option {
    padding: 12px;
}

.submit-button {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #0056b3;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 24px;
    color: #333;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4CAF50;
}

.contact-item .fa-whatsapp {
    color: #25D366;
}

.contact-item .fa-envelope {
    color: #EA4335;
}

.content-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 20px;
    gap: 20px;
}

.news-section, .announcements-section {
    flex: 1;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.news-section h2, .announcements-section h2 {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.news-list, .announcements-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-item, .announcement-item {
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.news-item:hover, .announcement-item:hover {
    background-color: #e9ecef;
    color: #007bff;
}

.news-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.news-detail h1 {
    color: #333;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9em;
}

.news-content {
    line-height: 1.6;
}

.news-content h2 {
    color: #333;
    margin: 20px 0 10px;
}

.news-content p {
    margin-bottom: 15px;
}

.news-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.news-content li {
    margin-bottom: 5px;
}

.news-content a {
    color: #007bff;
    text-decoration: none;
}

.news-content a:hover {
    text-decoration: underline;
}

.features-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    justify-items: center;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 400px;
    height: 350px;
    margin: 0 auto;
}

.feature-card:first-child {
    background-image: url('images/Zafer-logo.jpg');
    background-size: 100% 100%;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.feature-card:nth-child(2) {
    background-image: url('images/UKİGAD_upscaled.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.7);
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 18px;
    max-width: 90%;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 500;
}

.feature-card:first-child h3,
.feature-card:first-child p,
.feature-card:nth-child(2) h3,
.feature-card:nth-child(2) p,
.feature-card:nth-child(3) h3,
.feature-card:nth-child(3) p {
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,123,255,0.2);
    text-decoration: none;
    color: inherit;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.statistics-section {
    padding: 60px 20px;
    background-color: #333;
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

.upcoming-events {
    padding: 60px 20px;
    background-color: white;
}

.events-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.event-date {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Haber ve duyuru sayfaları için stiller */
.page-content {
    margin-top: 100px;
    padding: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-detail {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 200px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-detail h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2em;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #666;
    font-size: 0.9em;
}

.news-content {
    line-height: 1.6;
}

.news-content h2 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.5em;
}

.news-content p {
    margin-bottom: 15px;
    color: #444;
}

.news-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.news-content li {
    margin-bottom: 10px;
    color: #444;
}

.news-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Diğer sayfalar için sabit navbar */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #007bff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Diğer sayfalardaki içeriği navbar'ın altına almak için */
.page-content {
    margin-top: 350px; /* Navbar'ın altında başlaması için */
    padding: 20px;
}

/* Diğer sayfalardaki navbar butonları için */
.navbar-fixed .menu-button {
    color: white;
    border-color: transparent;
}

.navbar-fixed .menu-button:hover {
    color: rgba(255,255,255,0.8);
}


/* Sayfa içeriği için stil */
.page-content {
    padding: 100px 100px;
    margin-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer stili */
.footer {
    background-color: #007bff;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.address-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.address-box h2 {
    color: #007bff;
    margin-bottom: 15px;
}

.address-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.address-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.address-section h2 {
    color: #007bff;
    margin-bottom: 15px;
}

.address-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.address-link {
    color: #333;
    text-decoration: underline;
    transition: color 0.3s ease;
    text-decoration-color: #007bff;
    text-decoration-thickness: 1px;
}

.address-link:hover {
    color: #007bff;
    text-decoration-thickness: 2px;
}

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

.about-container h1 {
    color: #1a237e;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.about-section {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #e0e0e0;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.about-section h3 {
    color: #34495e;
    font-size: 24px;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    text-align: justify;
}

.about-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.about-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 15px;
    position: relative;
}

.about-section ul li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.about-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 40px;
}

.content h1 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 4px solid #3498db;
}

.announcements-section {
    flex: 1;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
}

.announcements-section h2 {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.announcement-item {
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.announcement-item:hover {
    background-color: #e9ecef;
    color: #007bff;
}

.info-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.info-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,123,255,0.1);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,123,255,0.2);
    border-color: rgba(0,123,255,0.3);
}

.info-box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.info-box:hover .info-box-icon {
    transform: scale(1.1);
}

.info-box h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
    transition: color 0.3s ease;
}

.info-box:hover h2 {
    color: #007bff;
}

.info-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.info-box:hover p {
    color: #444;
}

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

.info-box li {
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.info-box li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.info-box:hover li {
    color: #444;
    border-bottom-color: rgba(0,123,255,0.2);
}

.info-box:hover li:before {
    color: #00bcd4;
}

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

.info-box-link {
    color: #007bff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.info-box-link i {
    transition: transform 0.3s ease;
}

.info-box:hover .info-box-link {
    color: #00bcd4;
}

.info-box:hover .info-box-link i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .info-boxes-container {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        padding: 25px;
    }
    
    .info-box-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Sayfa İçeriği Stilleri */
.page-content {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

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

.content-header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.header-icon {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 20px;
}

/* Bilgi Kutuları Stilleri */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-item i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
}

.info-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Sektör Kartları Stilleri */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.sector-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,123,255,0.2);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2em;
}

.sector-card h2 {
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.sector-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sector-features {
    list-style: none;
    padding: 0;
}

.sector-features li {
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.sector-features li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Avantaj Kartları Stilleri */
.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,123,255,0.2);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5em;
}

.advantage-card h2 {
    color: #333;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
}

.advantage-card li {
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.advantage-card li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* CTA Bölümü Stilleri */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #007bff, #00bcd4);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    color: white;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #007bff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-grid,
    .advantages-container {
        grid-template-columns: 1fr;
    }
    
    .content-header h1 {
        font-size: 2em;
    }
}

/* Mobil Uyumluluk için Medya Sorguları */
@media (max-width: 768px) {
    /* Genel Stiller */
    body {
        font-size: 14px;
    }

    /* Navbar */
    .navbar, .navbar-fixed {
        padding: 10px;
    }

    .menu-container {
        flex-direction: column;
        gap: 10px;
    }

    .menu-button {
        width: 100%;
        padding: 10px;
        font-size: 16px;
    }

    /* Slider */
    .slider-container {
        height: 300px;
    }

    .slider-button {
        padding: 10px;
        font-size: 16px;
    }

    /* Sayfa İçeriği */
    .page-content {
        padding: 20px;
        margin-top: 200px;
    }

    .content-header h1 {
        font-size: 1.8em;
    }

    .header-icon {
        font-size: 2em;
    }

    /* Bilgi Kutuları */
    .info-boxes-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .info-box h2 {
        font-size: 1.2em;
    }

    /* Sektör Kartları */
    .sector-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .sector-card {
        padding: 20px;
    }

    .sector-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    /* Avantaj Kartları */
    .advantages-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .advantage-card {
        padding: 20px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }

    /* CTA Bölümü */
    .cta-section {
        padding: 20px;
        margin: 20px 10px;
    }

    .cta-section h2 {
        font-size: 1.5em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Özellikler Bölümü */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }

    .feature-card {
        padding: 20px;
    }

    /* İstatistikler */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 10px;
    }

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

    /* Yaklaşan Etkinlikler */
    .events-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }

    /* Duyurular */
    .announcements-section {
        padding: 15px;
        margin: 10px;
    }

    .announcement-item {
        padding: 8px;
        font-size: 14px;
    }

    /* İletişim Formu */
    .contact-form {
        padding: 20px;
    }

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

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 8px;
        font-size: 14px;
    }

    .submit-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Adres Bölümü */
    .address-box {
        padding: 15px;
        margin: 15px 10px;
    }

    .map-container {
        height: 400px;
        margin: 20px 0;
    }
}

/* Tablet için Medya Sorguları */
@media (min-width: 769px) and (max-width: 1024px) {
    .info-boxes-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-grid,
    .advantages-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Küçük Mobil Cihazlar için Ek Düzenlemeler */
@media (max-width: 480px) {
    .slider-container {
        height: 200px;
    }

    .content-header h1 {
        font-size: 1.5em;
    }

    .header-icon {
        font-size: 1.8em;
    }

    .info-box h2,
    .sector-card h2,
    .advantage-card h2 {
        font-size: 1.2em;
    }

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

    .footer {
        padding: 20px 0 10px 0;
    }

    .copyright {
        font-size: 12px;
    }

    .map-container {
        height: 300px;
        margin: 15px 0;
    }
}

/* Afyon Tanıtım Sayfası Resim Stilleri */
.afyon-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.afyon-image:hover {
    transform: scale(1.02);
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Mobil için resim düzenlemeleri */
@media (max-width: 768px) {
    .afyon-image {
        max-width: 100%;
        margin: 15px 0;
    }

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

    .image-grid img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .image-grid img {
        height: 200px;
    }
}

/* Ödüller Sayfası Stilleri */
.awards-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin: 40px auto;
    flex-wrap: wrap;
    position: relative;
    height: 400px;
    max-width: 1200px;
    padding: 0 20px;
}

.award-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.award-card:first-child {
    background: linear-gradient(145deg, #ffd700, #ffa500);
    color: white;
    border: none;
    transform: translateY(-80px);
    z-index: 3;
    order: 2;
}

.award-card:nth-child(2) {
    background: linear-gradient(145deg, #c0c0c0, #a9a9a9);
    color: white;
    border: none;
    transform: translateY(-40px);
    z-index: 2;
    order: 1;
}

.award-card:nth-child(3) {
    background: linear-gradient(145deg, #cd7f32, #b87333);
    color: white;
    border: none;
    transform: translateY(-20px);
    z-index: 1;
    order: 3;
}

.award-card:hover {
    transform: translateY(-100px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.award-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.award-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.award-card p {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    pointer-events: none;
}

.award-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

@media (max-width: 768px) {
    .awards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        height: auto;
    }

    .award-card {
        width: 100%;
        max-width: 300px;
        transform: none !important;
        order: 0 !important;
    }

    .award-card:hover {
        transform: translateY(-10px) !important;
    }
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.phone-prefix {
    background-color: #f8f9fa;
    padding: 12px;
    border-right: 1px solid #ddd;
    color: #666;
    font-weight: 500;
}

.phone-input-container input {
    border: none;
    border-radius: 0;
    padding: 12px;
    width: 100%;
}

.phone-hint {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 4px;
}
/* Modal Stilleri */
.modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto !important;
    flex-shrink: 0;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.warning-list li {
    color: #666;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.warning-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container label {
    color: #666;
    cursor: pointer;
    user-select: none;
}

.modal-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.modal-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.modal-button:not(:disabled):hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .warning-list li {
        font-size: 14px;
    }
}

/* PDF Önizleme Stilleri */
.pdf-preview {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.preview-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.preview-content h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.preview-item {
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.preview-item strong {
    color: #007bff;
    margin-right: 10px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-buttons .modal-button {
    flex: 1;
}

@media (max-width: 768px) {
    .pdf-preview {
        width: 95%;
        max-height: 90vh;
    }
    
    .preview-content {
        padding: 15px;
    }
    
    .preview-item {
        padding: 8px;
        font-size: 14px;
    }
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    padding-left: 0;
    margin-left: 0;
}

.radio-option input[type="radio"] {
    margin: 0;
}

.radio-option label {
    margin: 0;
    font-weight: normal;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
}

/* Added specific rules to counter potential indentation */
#themeThermal + label,
#themeLocal + label {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
}

