/* Genel Stiller */
:root {
    --primary-color: #003366;
    --secondary-color: #ff6600;
    --text-color: #333;
    --bg-color: #fff;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: #004080;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #ff8533;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    background-color: #ffffff; /* Saf beyaz arka plan */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* Daha yumuşak bir gölge */
    padding: 5px 0; /* Üst-alt 20px, sağ-sol 0 */
    transition: padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#header.scrolled {
    padding: 10px 0; /* Padding'i azaltarak küçülme hissi verir */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Gölg_eyi biraz daha belirgin yap */
}

#header .container {
    max-width: 1200px; /* Sitenizin maksimum genişliği */
    margin: 0 auto; /* Konteyneri yatayda ortalar */
    padding: 0 20px; /* Kenarlara boşluk verir, mobil için önemli */
    
    display: flex;
    justify-content: space-between; /* En önemli kural: Logo sola, menü sağa */
    align-items: center; /* Öğeleri dikeyde ortalar */
}

#header .logo img {
    height: 50px; /* Logonuzun yüksekliğini ayarlayın */
    width: auto;
    display: block; /* Resim altındaki boşluğu kaldırır */
    transition: height 0.3s ease-in-out; /* Küçülme efektine uyum sağlar */
}

#header.scrolled .logo img {
    height: 40px; /* Sayfa kaydırıldığında logo da küçülsün */
}


.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    font-size: 1.1rem;
    font-family: 'monospace';
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a33 100%);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-buttons {
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.cta-buttons .btn {
    margin: 0 10px;
}

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

/* Öne Çıkan Bölüm */
.featured {
    background-color: var(--light-gray);
}

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

.featured-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.featured-item .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.featured-item .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.featured-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Hakkımızda Bölümü */
.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-img {
    background-color: var(--light-gray);
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Süreç Bölümü */
.process {
    background-color: var(--light-gray);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: calc(50% - 50px);
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

/* Hackathonlar Bölümü */
.hackathons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hackathon-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
}

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

.hackathon-image {
    height: 200px;
    background-color: var(--light-gray);
}

.hackathon-content {
    padding: 20px;
}

.hackathon-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.hackathon-content .date {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.hackathon-content .description {
    margin-bottom: 15px;
}

.hackathon-content .status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hackathon-content .status.upcoming {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.hackathon-content .status.ongoing {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.hackathon-content .status.past {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Hackathon placeholder görselleri */
.hackathon-placeholder-1 {
    background: linear-gradient(45deg, #0073e6, #00c6ff);
}

.hackathon-placeholder-2 {
    background: linear-gradient(45deg, #e91e63, #ff9a8b);
}

.hackathon-placeholder-3 {
    background: linear-gradient(45deg, #43a047, #a5d6a7);
}

.hackathon-placeholder-4 {
    background: linear-gradient(45deg, #7b1fa2, #ce93d8);
}

.hackathon-placeholder-5 {
    background: linear-gradient(45deg, #f57c00, #ffca28);
}

.hackathon-placeholder-6 {
    background: linear-gradient(45deg, #424242, #bdbdbd);
}

/* İletişim Bölümü */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

.success-message {
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin: 10px auto 20px auto;
    animation: fadeIn 0.3s ease;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--error-color);
}

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

/* Altbilgi */
footer {
    background-color: #001a33;
    color: white;
    padding: 80px 0 20px;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter form {
    display: flex;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Roboto', sans-serif;
}

.footer-newsletter button {
    border-radius: 0 30px 30px 0;
}

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

/* Responsive Tasarım */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .featured-grid,
    .hackathons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Modal responsive */
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 5px auto 10px auto;
        max-height: calc(100vh - 10px);
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* iOS zoom önleme */
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    /* Modal küçük ekranlar */
    .modal {
        padding: 2px;
    }
    
    .modal-content {
        padding: 15px;
        margin: 2px auto 5px auto;
        max-height: calc(100vh - 4px);
        border-radius: 8px;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .file-help {
        font-size: 0.8rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Modal başvuru butonu için */
.submit-btn {
    background: #2d1863;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 0;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(44,34,100,0.07);
}
.submit-btn:hover {
    background: #6c5ce7;
}

/* Etkinlik afişi için */
.event-banner {
    width: 100%;
    height: 220px;
    background: #eee url('images/bootcamp-banner.jpg') center/cover no-repeat;
    border-radius: 12px;
    margin-bottom: 32px;
} 


/* Modal Arka Planı */
.modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed; /* Ekranın tamamını kapla */
    z-index: 1050; /* Diğer her şeyin üzerinde */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* İçerik taşarsa kaydırma çubuğu çıksın */
    background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam arka plan */
    justify-content: center; /* Flexbox ile dikeyde ve yatayda ortalama */
    align-items: center; /* Flexbox ile dikeyde ve yatayda ortalama */
}

/* Modal gösterildiğinde */
.modal.show {
    display: flex; /* Flexbox ile göstermek için */
}

/* Modal İçerik Kutusu */
.modal-content {
    background-color: #fefefe;
    margin: auto; /* display:flex ile birlikte auto margin ortalar */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 550px; /* Maksimum genişlik */
    width: 90%; /* Daha küçük ekranlarda duyarlı genişlik */
    max-height: 90vh; /* Ekran yüksekliğinin %90'ını aşmasın */
    overflow-y: auto; /* Modal içeriği taşarsa kendi içinde kaydırma çubuğu çıksın */
    animation: fadeIn 0.3s ease-out; /* Açılış animasyonu */
}

/* Fade In Animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kapatma Butonu */
.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease-in-out;
    background: none;
    border: none;
    padding: 0;
}

.close-modal:hover,
.close-modal:focus {
    color: #333;
    text-decoration: none;
    outline: none;
}

/* Başlık */
.modal-title {
    text-align: center;
    color: #2d1863; /* Başlık rengi */
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-title .fas {
    font-size: 1.5em; /* Font Awesome ikon boyutu */
}

/* Form Grupları */
.form-group {
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #6c5ce7; /* Odaklandığında kenarlık rengi */
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: #bbb;
}

/* Select kutuları için özel stil */
select.form-control {
    appearance: none; /* Varsayılan select stilini kaldır */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="#333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}
select.form-control option[value=""][disabled] {
    color: #999; /* Seçiniz yazısının rengi */
}

/* Dosya Yükleme Alanı */
.file-upload-group {
    margin-bottom: 20px;
}

.custom-file-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden; /* İçerideki elementlerin dışarı taşmasını engelle */
}

.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.file-label {
    background-color: #e9ecef;
    color: #495057;
    padding: 12px 18px;
    cursor: pointer;
    border-right: 1px solid #ddd;
    white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
    transition: background-color 0.2s;
}

.file-label:hover {
    background-color: #dee2e6;
}

.file-name {
    flex-grow: 1; /* Kalan alanı kapla */
    padding: 12px 15px;
    color: #6c757d;
    white-space: nowrap; /* Metnin tek satırda kalmasını sağlar */
    overflow: hidden;    /* Taşan kısmı gizle */
    text-overflow: ellipsis; /* Taşan kısımda ... göster */
}

.file-help {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Checkbox Grubu */
.checkbox-group {
    display: flex;
    align-items: flex-start; /* Metin birden fazla satıra yayılırsa hizalama */
    margin-top: 15px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px; /* Checkbox'ı metinle hizala */
    margin-right: -100px;
    margin-left: -100px;
    min-width: 16px; /* Tıklama alanı için */
    min-height: 16px; /* Tıklama alanı için */
    accent-color: #6c5ce7; /* Modern tarayıcılarda checkbox rengini değiştirir */
}

.checkbox-label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
}

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

/* Submit Butonu */
.submit-btn {
    width: 100%;
    font-size: 1.15rem;
    padding: 16px 0;
    background: linear-gradient(45deg, #2d1863, #6c5ce7); /* Mor-mavi gradient */
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #6c5ce7, #2d1863); /* Hover'da gradient yönünü değiştir */
    transform: translateY(-2px); /* Hafif yukarı kalkma efekti */
}

.submit-btn .fas {
    font-size: 1.1em;
}

/* Başarı Mesajı */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message .success-icon {
    font-size: 4rem;
    color: #28a745; /* Yeşil renk */
    margin-bottom: 20px;
}

.success-message h2 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 2rem;
}

.success-message p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Küçük ekranlar için responsive ayarlar */
@media (max-width: 600px) {
    .modal-content {
        padding: 20px;
        width: 95%; /* Daha küçük ekranlarda daha fazla yer kaplasın */
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-control,
    .file-label,
    .file-name {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .close-modal {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }
}