
.text-757575 {
    color: #757575;
}

.phone-area {
    display: inline-block;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    height: 60px;
    background: white;
    width: 100%;
    padding: 5px;
    z-index: 2;
    position: relative;
}

.theme-primary-btn {
    border-radius: 30px;
    height: 48px;
    border: none;
    padding: 10px 30px 10px 30px;
    float: right;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(to right, #e20c40, #e20c40);
    transition: 300ms;
}

.theme-primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ececec;
    color: #757575;
}

.theme-input {
    font-size: 18px;
    border: none;
    padding: 10px;
    background: none;
    outline: none;
    padding-left: 18px;
    width: 100%;
}

.forgot-password-link {
    font-size: 13px;
    color: #757575;
    text-decoration: none;
    display: block;
    margin-top: 8px;
    float: right;
    padding-right: 10px;
}

.login-logo {
    width: 50%;
    height: 100px;
    margin: 50px auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#errorMessage {
    color: #dc3545;
    width: 100%;
    background: #ffefec;
    margin: 0 auto;
    padding: 24px;
    top: -21px;
    font-size: 13px;
    height: 65px;
    z-index: 1;
    position: relative;
    border-radius: 0px 0px 20px 30px;
    padding-top: 30px;
}

.selection-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    margin: 15px;
    background-color: #fce4e8;
    /* Açık kırmızı arka plan */
}

.selection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #e10e40;
    background-color: #fce4e8;
    /* Hover sırasında daha koyu mavi */
}

.selection-card i {
    color: #e10e40;
}

.selection-card h3 {
    color: #e10e40;
    /* Başlık rengi */
}

.selection-card p {
    color: #e10e40;
    /* Açıklama metni rengi */
}

.selection-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: #007bff;
    /* SVG rengi */
    transition: color 0.3s ease;
}

.selection-card:hover .selection-icon {
    color: #e10e40;
    /* Hover durumunda SVG rengi */
}

.minimal-hero-section {
    padding: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.hero-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.hero-content-col {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    background-color: #fff;
}

.hero-visual-col {
width: 45%;
position: relative;
overflow: hidden;
padding-top: 4%;
}

.pre-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
}

.minimal-hero-section h1 {
font-size: 6.5rem;
font-weight: 700;
color: #000;
line-height: 1.2;
margin-bottom: 20px;
}

.minimal-hero-section h1 .highlight {
    color: #e13651;
    position: relative;
}

.minimal-hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(225, 54, 81, 0.2);
    z-index: -1;
}

.minimal-hero-section p {
font-size: 1.8rem;
color: #000;
margin-bottom: 40px;
line-height: 1.6;
}

.search-area {
    margin-bottom: 30px;
}

.smart-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    max-width: 100%;
}

.search-field {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #626262;
    z-index: 2;
}

.search-input, .sector-select {
    width: 100%;
    height: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 20px 0 45px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-input:focus, .sector-select:focus {
    border-color: #e13651;
    box-shadow: 0 5px 15px rgba(225, 54, 81, 0.1);
    outline: none;
}

.sector-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    cursor: pointer;
}

.search-submit {
    min-width: 120px;
    height: 60px;
    background-color: #e13651;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(225, 54, 81, 0.2);
}

.search-submit:hover {
    background-color: #c4293f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 54, 81, 0.3);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.search-submit:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.tags-label {
    color: #626262;
    font-size: 14px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 30px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background-color: #e13651;
    color: white;
    transform: translateY(-2px);
}

.hero-action {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #e13651;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 54, 81, 0.2);
}

.action-button:hover {
    background-color: #c4293f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 54, 81, 0.3);
    color: white;
}

.employer-button {
    background-color: #333333;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
}

.employer-button:hover {
    background-color: #061627;
    box-shadow: 0 6px 15px rgba(10, 37, 64, 0.3);
}

.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.action-separator {
    color: #aaa;
    font-size: 14px;
}

.visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle-element {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(225, 54, 81, 0.2) 0%, rgba(225, 54, 81, 0.1) 100%);
    top: -150px;
    right: -150px;
    animation: pulse 8s infinite alternate ease-in-out;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.05) 100%);
    bottom: -100px;
    left: -100px;
    animation: pulse 8s infinite alternate-reverse ease-in-out;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    top: 20%;
    left: 15%;
    animation: float 6s infinite ease-in-out;
}

.dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 1s ease;
}

.hero-visual-col:hover .hero-image {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@media (max-width: 1200px) {
    .hero-content-col {
        padding: 60px 40px 60px 5%;
    }
    
    .minimal-hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-row {
        flex-direction: column;
    }
    
    .hero-content-col, .hero-visual-col {
        width: 100%;
    }
    
    .hero-content-col {
        padding: 60px 40px;
    }
    
    .hero-visual-col {
        min-height: 400px;
    }
    
    .hero-inner {
        max-width: 100%;
    }
    
    .stats-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 15px;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .minimal-hero-section h1 {
        font-size: 3.5rem;
    }
    
    .search-field {
        width: 100%;
    }
    
    .smart-search-form {
        flex-direction: column;
    }
    
    .search-submit {
        width: 100%;
    }
}

.slider-items2 {
    display: flex;
    width: 130px;
    height: 130px;
    align-items: center;
    justify-content: center;
    float: left;
    margin-right: 23px;
    margin-top: 10px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.slider-items2:hover {
    filter: grayscale(0%);
}

.slider-items2 img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.statistics-section {
	position: relative;
	overflow: hidden;
}

.stats-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s;
}

.stats-card:hover::before {
	left: 100%;
}

.stats-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-card:hover .stats-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stats-number {
	font-size: 3.5rem;
	font-weight: 800;
	color: #333;
	margin-bottom: 10px;
	line-height: 1;
	background: linear-gradient(135deg, #333 0%, #666 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stats-label {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.stats-description {
	font-size: 1.5rem;
	color: #666;
	opacity: 0.8;
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}


@media (max-width: 768px) {
	.stats-card {
		padding: 30px 20px;
		margin-bottom: 30px;
	}

	.stats-number {
		font-size: 2.5rem;
	}

	.stats-label {
		font-size: 1.1rem;
	}

	.stats-icon {
		width: 60px;
		height: 60px;
	}

	.stats-icon i {
		font-size: 35px !important;
	}
}

/* Counter Animation */
.stats-card.animate .stats-number {
	animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  z-index: 999;
}

.info-mobil23 {
	position: relative;
	left: 10px;
}