/* Temel Ayarlar ve Renk Paleti */
:root {
    --navy-blue: #0A192F; /* Derin Lacivert */
    --navy-light: #112240; /* Açık Lacivert (Bölümler için) */
    --yellow: #FFD700; /* Altın Sarısı */
    --yellow-hover: #FFC107; /* Koyu Sarı (Hover) */
    --white: #F8F9FA; /* Kırık Beyaz (Göz yormayan) */
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* Navbar (Üst Menü) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--navy-blue);
    color: var(--white);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.text-yellow {
    color: var(--yellow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.btn-login {
    border: 1px solid var(--white);
    padding: 8px 15px;
    border-radius: 5px;
}

.btn-login:hover {
    border-color: var(--yellow);
}

.btn-register {
    background-color: var(--yellow);
    color: var(--navy-blue) !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold !important;
}

.btn-register:hover {
    background-color: var(--yellow-hover);
}

/* Karşılama Alanı (Hero Section) */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    background-color: var(--navy-blue);
    color: var(--white);
    min-height: 80vh;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #A8B2D1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--navy-blue);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--yellow);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

/* Taslak CV Görseli (Mockup) */
.hero-image {
    width: 40%;
    display: flex;
    justify-content: center;
}

.mockup-cv {
    background-color: var(--white);
    width: 300px;
    height: 400px;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: rotate(3deg); /* Hafif eğik şık bir duruş */
}

.mockup-line {
    background-color: #E2E8F0;
    height: 12px;
    border-radius: 6px;
    width: 100%;
}

.mockup-line.header {
    height: 40px;
    background-color: var(--navy-light);
    margin-bottom: 20px;
}

.mockup-line.short {
    width: 60%;
}
.feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
            transition: 0.3s;
        }
        .stat-box {
            text-align: center;
            color: var(--white);
        }
        .stat-box h3 {
            font-size: 2.5rem;
            color: var(--yellow);
            margin-bottom: 5px;
        }
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            font-style: italic;
            position: relative;
        }
        .testimonial-card::before {
            content: "\f10d"; /* FontAwesome Quote Left */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: rgba(255, 215, 0, 0.2);
            font-size: 4rem;
            position: absolute;
            top: 10px;
            left: 20px;
            z-index: 0;
        }
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        .step-circle {
            background-color: var(--yellow); 
            color: var(--navy-blue); 
            width: 70px; 
            height: 70px; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 2rem; 
            font-weight: bold; 
            margin: 0 auto 20px auto;
            border: 4px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }