﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0d1b2a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

.container {
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ffff 0%, #00a0a0 100%);
    z-index: 9999;
    transition: width 0.1s ease;
    width: 0;
}

/* Navigation */
nav {
    background: rgba(10, 22, 40, 0.95);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        flex-wrap: wrap;
    }

    nav a {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
    }

        nav a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00ffff;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

    /* Background Image Overlay */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/view-resources/views/home/images/aiImage2.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.5;
        z-index: -1;
    }

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.ai-image-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    background-image: url('/view-resources/views/home/images/acikinovasyonbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ai-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    z-index: 1;
}*/

/* Remove old image styles */
.ai-image {
    display: none;
}

/* Rest of your existing hero styles remain the same */

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 255, 255, 0.2) 1px, transparent 1px), radial-gradient(circle, rgba(0, 212, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.3;
    animation: particleMove 30s linear infinite;
}

@keyframes particleMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero-container {
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: aiFloat 6s ease-in-out infinite;
}

@keyframes aiFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.ai-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ai-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20%;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Rajdhani', sans-serif;
    /*    letter-spacing: 12px;*/
    margin-bottom: 1%;
    margin-top: 0;
    line-height: 1;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    text-align: left;
    /*text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.5);*/
}

@media (max-width: 1850px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero h1 + h1 {
    margin-top: -0.5rem;
}

.hero h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.3;
}

.hero .subtitle {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Rajdhani', sans-serif;
    color: #138295;
    /*letter-spacing: 12px;*/
    margin-bottom: 0;
    line-height: 1;
    /*    text-shadow: 0 0 50px rgba(0, 255, 255, 1), 
                 0 0 70px rgba(0, 255, 255, 0.8), 
                 0 0 100px rgba(0, 255, 255, 0.6),
                 0 0 150px rgba(0, 255, 255, 0.4);*/
    position: relative;
    text-align: left;
    margin-top: -0.5rem;
    filter: brightness(1.5);
}

    .hero .subtitle::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 200px;
        height: 2px;
        background: linear-gradient(90deg, #00ffff, transparent);
        box-shadow: 0 0 20px rgba(0, 255, 255, 1);
    }

.hero .tagline {
    font-size: 3rem;
    font-family: 'Rajdhani', sans-serif;
    color: #a0c8d4;
    letter-spacing: 6px;
    font-weight: bold;
    margin-top: 4%;
    margin-bottom: 1%;
    line-height: 1;
    /*opacity: 0.9;*/
    text-align: left;
}

@media (max-width: 1850px) {
    .hero .tagline {
        font-size: 2rem;
    }
}


@media (max-width: 1850px) {
    .hero .subtitle {
        font-size: 3rem;
    }
}


@media (max-width: 550px) {
    #taglineDiv1 {
        margin-top: 6%;
    }
}

@media (max-width: 380px) {
    #taglineDiv1 {
        margin-top: 10%;
    }
}

@media (max-width: 350px) {
    #taglineDiv1 {
        margin-top: 10%;
    }
}


.hero .tagline:first-of-type {
    margin-top: 2rem;
}

.hero .tagline + .tagline {
    margin-top: -0.3rem;
}

.hero .tagline-description {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: #d0e8f0;
    line-height: 1.6;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    text-align: justify;
    max-width: 100%;
    font-weight: 400;
}

@media (max-width: 1850px) {
    .hero .tagline-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .hero .tagline-description {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero .tagline-description {
        font-size: 0.95rem;
        margin-top: 1.2rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero .tagline-description {
        font-size: 0.85rem;
        margin-top: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 380px) {
    .hero .tagline-description {
        font-size: 0.8rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    min-width: 200px;
}

    .hero-btn .btn-icon {
        font-size: 1.4rem;
        transition: transform 0.3s ease;
    }

    .hero-btn:hover .btn-icon {
        transform: scale(1.2) rotate(10deg);
    }

/* Primary Button - Giriş Yap */
.hero-btn-primary {
    background: linear-gradient(135deg, #00ffff 0%, #00a0a0 100%);
    color: #0a1628;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

    .hero-btn-primary:hover {
        background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
        transform: translateY(-3px);
        color: #0a1628;
    }

    .hero-btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .hero-btn-primary:hover::before {
        left: 100%;
    }

/* Secondary Button - Fikrim Var */
.hero-btn-secondary {
    background: rgba(15, 30, 50, 0.8);
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

    .hero-btn-secondary:hover {
        background: rgba(0, 255, 255, 0.1);
        border-color: #00d4ff;
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        transform: translateY(-3px);
        color: #00d4ff;
    }

    .hero-btn-secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .hero-btn-secondary:hover::before {
        left: 100%;
    }

/* Button Animation on Page Load */
@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: buttonSlideIn 0.8s ease-out 0.6s both;
}

/* Responsive Design for Buttons */
@media (max-width: 768px) {
    .hero-buttons {
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 180px;
    }

        .hero-btn .btn-icon {
            font-size: 1.2rem;
        }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;        
        padding-left: 11%;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: unset;
    }
}

@media (max-width: 450px) {
    .hero-buttons {

        padding-left: 9%;
    }
}

@media (max-width: 390px) {
    .hero-buttons {
        padding-left: 2%;
    }
}

/* Content Section */
.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    background: rgba(15, 30, 50, 0.6);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

    .intro-section h2 {
        font-size: 2rem;
        font-family: 'Rajdhani', sans-serif;
        color: #00ffff;
        margin-bottom: 1.5rem;
        text-align: center;
    }

@media (max-width: 768px) {
    .intro-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-section h2 {
        font-size: 1.25rem;
    }
}

.intro-section p {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .intro-section p {
        font-size: 1.0rem;
    }
}

@media (max-width: 480px) {
    .intro-section p {
        font-size: 0.75rem;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ffff 0%, #00a0a0 100%);
    color: #0a1628;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border-radius: 50px;
    margin: 2rem auto;
    display: block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
        background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    }

    .cta-button::before {
        content: '💡 ';
        font-size: 1.2rem;
    }

/* Focus Areas */
.focus-areas {
    margin-top: 4rem;
}

    .focus-areas h2 {
        font-size: 2.5rem;
        font-family: 'Rajdhani', sans-serif;
        color: #00ffff;
        text-align: center;
        margin-bottom: 3rem;
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    }

.focus-area-card {
    background: rgba(15, 30, 50, 0.7);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00ffff;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
}

    .focus-area-card::after {
        content: '→ Öneri Göndermek İçin Tıklayın';
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        color: #00ffff;
        font-size: 0.9rem;
        font-family: 'Inter', sans-serif;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .focus-area-card:hover::after {
        opacity: 1;
    }

    .focus-area-card:hover {
        transform: translateX(10px);
        background: rgba(15, 30, 50, 0.9);
        border-left-width: 6px;
        box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    }

    .focus-area-card h3 {
        font-size: 1.6rem;
        font-family: 'Rajdhani', sans-serif;
        color: #00ffff;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .focus-area-card .number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #00ffff 0%, #00a0a0 100%);
        color: #0a1628;
        font-weight: 900;
        font-family: 'Rajdhani', sans-serif;
        border-radius: 50%;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .focus-area-card p {
        color: #c0c0c0;
        font-size: 1.05rem;
        font-family: 'Inter', sans-serif;
        line-height: 1.7;
    }

/* Form Section */
.form-section {
    background: rgba(15, 30, 50, 0.6);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

    .form-section h2 {
        font-size: 2.2rem;
        font-family: 'Rajdhani', sans-serif;
        color: #00ffff;
        margin-bottom: 2rem;
        text-align: center;
    }

.form-field {
    margin-bottom: 2rem;
}

    .form-field label {
        display: block;
        color: #00d4ff;
        font-size: 1.1rem;
        font-family: 'Inter', sans-serif;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        width: 100%;
        padding: 1rem;
        background: rgba(10, 22, 40, 0.8);
        border: 1px solid rgba(0, 255, 255, 0.3);
        border-radius: 8px;
        color: #e0e0e0;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s ease;
    }

        .form-field input:focus,
        .form-field textarea:focus,
        .form-field select:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

    .form-field textarea {
        min-height: 150px;
        resize: vertical;
    }

.submit-button {
    background: linear-gradient(135deg, #00ffff 0%, #00a0a0 100%);
    color: #0a1628;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }

    .submit-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Form Message */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
    display: none;
}

    .form-message.success {
        background-color: rgba(0, 255, 0, 0.2);
        color: #00ff00;
        border: 1px solid #00ff00;
        display: block;
    }

    .form-message.error {
        background-color: rgba(255, 0, 0, 0.2);
        color: #ff6b6b;
        border: 1px solid #ff6b6b;
        display: block;
    }

/* Statistics Section */
.statistics-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

    .statistics-section h2 {
        font-size: 2rem;
        font-family: 'Rajdhani', sans-serif;
        color: #00ffff;
        text-align: center;
        margin-bottom: 2rem;
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(15, 30, 50, 0.7);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .stat-card:hover::before {
        left: 100%;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: #00ffff;
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    }

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Rajdhani', sans-serif;
    color: #00ffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: #a0d4e8;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-sublabel {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: #808080;
    margin-top: 0.3rem;
    font-style: italic;
}

/* Footer */
footer {
    background: rgba(10, 22, 40, 0.95);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

    footer p {
        color: #a0a0a0;
        font-family: 'Inter', sans-serif;
    }

    footer h3 {
        font-family: 'Rajdhani', sans-serif;
    }

    footer h4 {
        font-family: 'Rajdhani', sans-serif;
    }

/* Responsive Designn */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ai-image-container {
        max-width: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

        .hero h1 {
            font-size: 2.8rem;
            letter-spacing: 6px;
        }

        .hero .subtitle {
            font-size: 2.8rem;
            letter-spacing: 6px;
        }

        .hero .tagline {
            font-size: 1rem;
        }

    .ai-image-container {
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .focus-area-card::after {
        display: none;
    }

    .focus-area-card h3 {
        font-size: 1.3rem;
    }

    .focus-area-card .number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    nav ul {
        gap: 1rem;
        padding: 0 1rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .intro-section,
    .form-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero .subtitle {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .intro-section,
    .form-section {
        padding: 1.5rem 1rem;
    }
}

/*ANASAYFA PDF CARD CSS*/
@media (max-width: 380px) {
    #pdfCard {
        width: 80% !important;
    }
}
/*Hakkında kısmı metni sağa sola yaslama*/
.intro-section p {
    text-align: justify;
}

/* Hero Logo Section - Alt Ortalı */
.hero-logo-section {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.hero-logo-text {
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-logo-section {
        bottom: 1rem;
    }

    .hero-logo {
        max-width: 250px !important;
    }

    .hero-logo-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 100px;
    }

    .hero-logo-text {
        font-size: 0.8rem;
    }
}


/*Son Tarih 6 Nisan Css*/
.deadline-note {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 200px;
    padding-right: 3%;
}

@media (max-width: 768px) {
    .deadline-note {
        font-size: 0.85rem;
        margin-top: 0rem !important;
    }
}

@media (max-width: 480px) {
    .deadline-note {
        font-size: 0.8rem;
        margin-top: 0.6rem;
        max-width: 210px;
        padding-left: 20%;
    }
}

@media (max-width: 320px) {
    .deadline-note {        
        padding-left: 17%;
    }

    .hero-logo-section {
        left: 52%;
    }
}
