:root {
    --primary-color: #283d55;
    --purple: #a35de3;
    --green: #34c759;
    --blue: #2d9cdb;
    --orange: #ffcc00;
    --white: #fff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #283d55;
}
html, body {
    overflow-x: hidden; /* Yatayda taşan her şeyi gizler */
    width: 100%;
}

/* Navbar */
.nav-link {  font-weight: 500; font-size:0.90em;}
.nav-link.active { color: var(--primary-color) !important; font-weight: 700; }

/* Buttons */


/* Hero */
.hero-section { background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%); }
.search-container {
    background: white;
    padding: 10px;
    border-radius: 10px !important;
    display: flex;
    max-width: 550px;

}
.search-container input {
    border: none;
    padding: 10px 25px;
    flex-grow: 1;
    outline: none;
}

/* Stat Cards */
.stat-card {
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

.icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Renkler */
.bg-soft-purple { background-color: #eddcfc !important; }
 .text-purple { color: var(--purple); }
.bg-soft-green { background-color: #aeffd2 !important; } 
.text-green { color: var(--green); }
.bg-soft-blue { background-color: #cbebfc !important; } 
.text-blue { color: var(--blue); }
.bg-soft-orange { background-color: #ffe98f !important; } 
.text-orange { color: var(--orange); }

/* List Item Cards */
.list-item-card {
    background: white;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}
.list-item-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* News Card */
.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
}

.mt-n4 { margin-top: -3rem; }

/* Popüler Meslekler Kart Tasarımı */
.profession-card {
    background: white;
    border-radius: 18px;
    border: 1px solid #f2f4f7;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.profession-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    border-color: var(--primary-color);
}

.prof-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.extra-small {
    font-size: 0.75rem;
    line-height: 1.5;
}

.go-arrow {
  
    background: #f8f9fa;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    transition: 0.3s;
}

.profession-card:hover .go-arrow {
    background: var(--primary-color);
    color: white;
}

/* Renk Yardımcıları (Eğer yukarıda yoksa) */
.bg-soft-purple { background-color: #f9f5ff; }
.text-purple { color: #7f56d9; }
.bg-soft-blue { background-color: #f0f9ff; }
.text-blue { color: #0086c9; }
.bg-soft-orange { background-color: #fffaf0; }
.text-orange { color: #f79009; }

/* Avantajlar Bandı Özel Stilleri */
.features-wrapper {
    background: #fcfdfe; /* Çok hafif bir arka plan */
}

.feat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* Ek Renk Tonları */
.bg-soft-cyan { background-color: #e0f7f9; }
.text-cyan { color: #20b2aa; }

.extra-small {
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Responsive Düzenleme */
@media (max-width: 991px) {
    .features-wrapper .row > div {
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }

	
    .features-wrapper .row > div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
