@charset "UTF-8";
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.login-page .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.login-page .login-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.login-page .login-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .login-page .login-content {
    flex-direction: row;
    padding: 32px;
    gap: 32px;
  }
}
.login-page .login-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
@media (min-width: 768px) {
  .login-page .login-info {
    width: 60%;
    align-items: flex-start;
    padding-right: 32px;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(51, 51, 51, 0.1);
  }
}
.login-page .login-info h2 {
  font-size: 2rem;
  color: #2196F3;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .login-page .login-info h2 {
    text-align: left;
  }
}
.login-page .login-info .logo {
  width: 250px;
  height: 75px;
  overflow: hidden;
}
.login-page .login-info .logo img {
  width: 100%;
  object-fit: contain;
}
.login-page .login-info .subtitle {
  padding-bottom: 2rem;
  font-size: 1.2rem;
  color: #333;
}
.login-page .login-info .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.login-page .login-info .features-list li {
  margin-bottom: 24px;
  padding-top: 0;
  position: relative;
  color: #333;
  text-align: center;
  padding-left: 0;
}
@media (min-width: 768px) {
  .login-page .login-info .features-list li {
    text-align: left;
    padding-left: 32px;
  }
}
.login-page .login-info .features-list li:before {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  color: #2196F3;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .login-page .login-info .features-list li:before {
    left: 0;
    transform: none;
  }
}
.login-page .login-info .features-list li:last-child {
  margin-bottom: 0;
}
.login-page .login-info .features-list li h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #333;
}
.login-page .login-info .features-list li p {
  font-size: 0.8rem;
  line-height: 1;
  margin: 0;
  color: rgba(51, 51, 51, 0.8);
}
@media (min-width: 768px) {
  .login-page .login-form {
    width: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    border-radius: 15px;
  }
}
.login-page .login-form h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}
.login-page .login-form form {
  width: 100%;
}
.login-page .login-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.login-page .login-form .form-group label {
  position: absolute;
  left: 0.75rem;
  top: 44%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #666;
  transition: all 0.2s ease-in-out;
  background: #fff;
  padding: 0 0.25rem;
  pointer-events: none;
  margin: 0;
  z-index: 1;
}
.login-page .login-form .form-group .form-control {
  box-sizing: border-box;
  height: 3rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  line-height: 1;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  transition: border-color 0.2s ease-in-out;
}
.login-page .login-form .form-group .form-control:focus {
  outline: none;
  border-color: #2196F3;
}
.login-page .login-form .form-group .form-control:focus ~ label, .login-page .login-form .form-group .form-control:not(:placeholder-shown) ~ label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  color: #2196F3;
}
.login-page .login-form .form-group .form-control::placeholder {
  color: transparent;
}
.login-page .login-form .password-input-wrapper {
  position: relative;
}
.login-page .login-form .password-input-wrapper label {
  z-index: 1;
}
.login-page .login-form .password-input-wrapper .toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 2;
}
.login-page .login-form .password-input-wrapper .toggle-password:hover {
  color: #333;
}
.login-page .login-form .remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.login-page .login-form .remember-me input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #2196F3;
  opacity: 1;
  pointer-events: auto;
}
.login-page .login-form .remember-me input[type=checkbox]:hover {
  outline: 1px solid #2196F3;
}
.login-page .login-form .remember-me label {
  position: static;
  transform: none;
  background: none;
  padding: 0 0px 0px 20px;
  margin: 0;
  font-size: 0.875rem;
  color: #666;
  cursor: pointer;
  pointer-events: auto;
}
.login-page .login-form .remember-me label:hover {
  color: #333;
}
.login-page .login-form .form-group:has(.remember-me) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.login-page .login-form .form-group:has(.remember-me) .forgot-password {
  color: #2196F3;
  text-decoration: none;
  font-size: 0.875rem;
}
.login-page .login-form .form-group:has(.remember-me) .forgot-password:hover {
  text-decoration: underline;
}
.login-page .login-form .btn-primary {
  width: 100%;
  height: 2.5rem;
  margin-bottom: 1rem;
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.login-page .login-form .btn-primary:hover {
  background-color: rgb(11.5384615385, 124.0384615385, 213.4615384615);
}
.login-page .login-form .alternative-login {
  text-align: center;
}
.login-page .login-form .alternative-login .btn-candidate {
  background: none;
  border: none;
  padding: 0;
  color: #2196F3;
  text-decoration: none;
  font-size: 0.875rem;
}
.login-page .login-form .alternative-login .btn-candidate:hover {
  text-decoration: underline;
}
.login-page .login-form .error-message {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 4px;
}
.login-page .login-form .password-requirements {
  margin-top: 8px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 0.875rem;
}
.login-page .login-form .password-requirements p {
  margin: 0 0 8px 0;
  color: #64748b;
}
.login-page .login-form .password-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.login-page .login-form .password-requirements ul li {
  color: #94a3b8;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}
.login-page .login-form .password-requirements ul li:before {
  content: "×";
  position: absolute;
  left: 0;
  color: #ef4444;
}
.login-page .login-form .password-requirements ul li.met {
  color: #166534;
}
.login-page .login-form .password-requirements ul li.met:before {
  content: "✓";
  color: #22c55e;
}
.login-page .login-form .password-requirements ul li:last-child {
  margin-bottom: 0;
}

.alert-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  min-width: 300px;
  max-width: 500px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.alert-popup .alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.alert-popup .alert-message {
  flex: 1;
  margin-right: 12px;
}
.alert-popup .alert-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 1.2rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-popup .alert-close:hover {
  color: #333;
}
.alert-popup.error {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
}
.alert-popup.error .alert-message {
  color: #991b1b;
}
.alert-popup.success {
  background: #dcfce7;
  border-left: 4px solid #22c55e;
}
.alert-popup.success .alert-message {
  color: #166534;
}

.dashboard-layout {
  min-height: 100vh;
  background-color: #f8fafc;
}
.dashboard-layout .dashboard-header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.dashboard-layout .dashboard-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-layout .dashboard-header .header-content .logo {
  width: 150px;
}
.dashboard-layout .dashboard-header .header-content .logo img {
  width: 100%;
  height: auto;
}
.dashboard-layout .dashboard-header .header-content .user-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dashboard-layout .dashboard-header .header-content .user-menu .user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  font-size: 0.875rem;
}
.dashboard-layout .dashboard-header .header-content .user-menu .user-info i {
  color: #2196F3;
}
.dashboard-layout .dashboard-header .header-content .user-menu .logout-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ef4444;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.dashboard-layout .dashboard-header .header-content .user-menu .logout-btn:hover {
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}
.dashboard-layout .dashboard-container {
  display: flex;
  padding-top: 64px;
  min-height: calc(100vh - 64px);
}
.dashboard-layout .sidebar {
  width: 250px;
  background: white;
  border-right: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  overflow-y: auto;
}
.dashboard-layout .sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-layout .sidebar nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.dashboard-layout .sidebar nav ul li a i {
  width: 1.25rem;
  color: #64748b;
}
.dashboard-layout .sidebar nav ul li a:hover {
  background: #f1f5f9;
  color: #2196F3;
}
.dashboard-layout .sidebar nav ul li a:hover i {
  color: #2196F3;
}
.dashboard-layout .sidebar nav ul li a.active {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
  font-weight: 500;
}
.dashboard-layout .sidebar nav ul li a.active i {
  color: #2196F3;
}
.dashboard-layout .main-content {
  flex: 1;
  margin-left: 250px;
  padding: 2rem;
}
.dashboard-layout .main-content .dashboard-welcome {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dashboard-layout .main-content .dashboard-welcome h1 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.dashboard-layout .main-content .dashboard-welcome .user-details {
  display: grid;
  gap: 1rem;
}
.dashboard-layout .main-content .dashboard-welcome .user-details .detail-item {
  display: flex;
  gap: 0.5rem;
}
.dashboard-layout .main-content .dashboard-welcome .user-details .detail-item .label {
  color: #64748b;
  font-size: 0.875rem;
  min-width: 100px;
}
.dashboard-layout .main-content .dashboard-welcome .user-details .detail-item .value {
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
}

/*# sourceMappingURL=site.css.map */

/* Company Page Styles */
.company-hero {
    background: var(--company-detail-bg);
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-text-color {
    color: var(--banner-text-color) !important;
}

.title-text-color {
    color: var(--title-text-color) !important;
}

.body-text-color {
    color: var(--body-text-color) !important;
}

.icon-color {
    color: var(--icon-color) !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.company-logo-wrapper {
    flex-shrink: 0;
}

#about .company-logo {
    width: 300px;
    object-fit: contain;
    border-radius: 12px;
    padding: 8px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

#about .company-logo:hover {
    transform: scale(1.05);
}

.company-title-wrapper {
    flex: 1;
}

.company-name {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.company-description {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.company-description p {
    margin-bottom: 12px;
}

.company-description strong {
    color: #2d3748;
    font-weight: 600;
}

.company-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #3182ce;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #ebf8ff;
    transition: all 0.3s ease;
}

.company-link:hover {
    background: #bee3f8;
    color: #2b6cb0;
    transform: translateX(5px);
}

.company-link i {
    font-size: 16px;
}

.company-logo-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Info Cards Styles */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--company-detail-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.info-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 500;
    color: #2c3e50;
}

/* Contact Links Styles */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Job Cards Styles */
.positions-section {
    margin-top: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.title-icon {
    width: 40px;
    height: 40px;
    background: var(--company-detail-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge.bg-gradient {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.job-card-header a{text-decoration:none; color:#333;}
.company-initial a{color:#FFF;}
.company-initial {
    width: 48px;
    height: 48px;
    background: var(--company-detail-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: bold;
    font-size: 1.25rem;
}

.job-title-wrapper {
    flex: 1;
}

#jobs .job-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.job-meta-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1rem;
}

.job-meta-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta-item-header i {
    color: #666;
    font-size: 1.1rem;
}

.job-meta-item-header.location i {
    color: #666;
}

.job-meta-item-header.position i {
    color: #666;
}

.job-meta-item-header.deadline i {
    color: #666;
}

.company-name {
    font-size: 0.875rem;
    color: #6c757d;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.detail-item i {
    width: 16px;
    color: #3498db;
}

.job-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f5;
}

.posted-date {
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-apply {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--company-detail-bg);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.btn-apply:hover {
    transform: translateX(5px);
    color: white;
}

.no-positions {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
    color: #6c757d;
}

.no-positions i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

.animate-slide-up-delay-1 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.2s;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards 0.4s;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.6s ease forwards;
}

.animate-slide-right-delay-1 {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.6s ease forwards 0.2s;
}

.animate-slide-right-delay-2 {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.6s ease forwards 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .company-hero {
        min-height: 300px;
    }

    .company-logo-wrapper {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .company-logo {
        max-width: 200px;
        padding: 1rem;
    }

    .company-logo-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .job-card {
        padding: 1.25rem;
    }
}

/* Layout Styles */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: box-shadow 0.2s;
}

.navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Mobil versiyonda container padding'ini ayarla */
@media (max-width: 991px) {
    .navbar-custom .container {
        padding-right: 0 !important;
    }
    
    .navbar-custom .d-flex.ms-auto {
        margin-right: 0 !important;
        padding-right: 15px; /* Bootstrap container padding'i kadar */
    }
    
    .user-profile-dropdown-wrapper-mobile {
        margin-right: 0 !important;
    }
}

.navbar-custom .navbar-collapse {
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 769px) {
    .navbar-custom .navbar-nav {
        flex-direction: row !important;
        margin-left: auto !important; /* MENÜ SAĞA GİDER */
    }
}

/* Mobil: Menü dikey olur */
@media (max-width: 768px) {
    .navbar-custom .navbar-nav {
        flex-direction: column !important;
        margin-left: 0 !important;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    height: 60px;
    margin-right: 0;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar-brand img {
    height: 65px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #e6e9f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #13aef5;
}

.share-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.share-button {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.share-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.share-button i {
    transition: transform 0.2s ease;
}

.share-button:hover i {
    transform: scale(1.1);
}

/* LinkedIn specific styling */
.share-button[title="LinkedIn"]:hover {
    background: #0077b5;
    border-color: #0077b5;
}

/* Twitter specific styling */
.share-button[title="Twitter"]:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

/* Facebook specific styling */
.share-button[title="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .share-buttons {
        gap: 1rem;
    }
    
    .share-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Modern User Profile Dropdown Styles */
.user-profile-dropdown-wrapper {
    position: relative;
    margin-left: auto;
}

.user-profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.user-profile-trigger:hover,
.user-profile-trigger:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    border-color: rgba(74, 144, 226, 0.3);
}

.user-profile-trigger[aria-expanded="true"] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.5);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #2a3f54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.user-profile-trigger:hover .user-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.4);
}

.user-name-trigger {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.dropdown-arrow {
    font-size: 0.75rem;
    color: #6c757d;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.user-profile-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.user-dropdown-menu {
    min-width: 280px;
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
}

.dropdown-item-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.user-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-header {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #2a3f54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.user-details-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.user-name-header {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.user-name-header:hover {
    color: #4a90e2;
    text-decoration: none;
}

.user-role-header {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 400;
}

.dropdown-item-social {
    padding: 1rem 1.25rem;
}

.social-media-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons-dropdown {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.share-button-dropdown {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.share-button-dropdown:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.share-button-dropdown[title="LinkedIn"]:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-button-dropdown[title="Twitter"]:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.share-button-dropdown[title="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.logout-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    width: 100%;
    border: none;
    background: transparent;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.logout-item:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.logout-item i {
    font-size: 1rem;
    width: 18px;
}

.logout-item span {
    flex: 1;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Mobile User Profile Dropdown Styles */
.user-profile-dropdown-wrapper-mobile {
    position: relative;
    margin-left: auto;
}

@media (max-width: 991px) {
    .user-profile-dropdown-wrapper-mobile {
        margin-right: 0;
    }
    
    .navbar-custom .d-flex.ms-auto {
        margin-right: 0 !important;
    }
}

.user-profile-trigger-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.user-profile-trigger-mobile:hover,
.user-profile-trigger-mobile:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.3);
}

.user-profile-trigger-mobile[aria-expanded="true"] {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.5);
}

.user-avatar-mobile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #2a3f54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
}

.dropdown-arrow-mobile {
    font-size: 0.7rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.user-profile-trigger-mobile[aria-expanded="true"] .dropdown-arrow-mobile {
    transform: rotate(180deg);
}

.user-dropdown-menu-mobile {
    min-width: 260px;
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    right: 0 !important;
    left: auto !important;
}

/* Responsive adjustments for user profile */
@media (max-width: 1200px) {
    .user-profile-trigger {
        padding: 0.4rem 0.85rem;
        gap: 0.65rem;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .user-name-trigger {
        font-size: 0.85rem;
        max-width: 130px;
    }
    
    .user-dropdown-menu {
        min-width: 260px;
    }
}

@media (max-width: 991px) {
    .user-profile-trigger {
        padding: 0.4rem 0.75rem;
        gap: 0.6rem;
    }
    
    .user-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .user-name-trigger {
        font-size: 0.8rem;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .user-profile-mobile {
        gap: 0.5rem;
    }
    
    .user-avatar-mobile {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .user-name-mobile {
        font-size: 0.8rem;
        max-width: 100px;
    }
    
    .logout-btn-mobile {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Mobil Alt Navigasyon */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 12px 0;
    width: 100%;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 8px 4px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-height: 60px;
    position: relative;
    border-radius: 12px;
    margin: 0 3px;
    background: transparent;
    border: none;
}

.mobile-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    color: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.mobile-nav-item span {
    font-size: 0.65rem;
    line-height: 1.1;
    font-weight: 500;
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}

.mobile-nav-item:hover {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.03);
}

.mobile-nav-item:hover i {
    transform: scale(1.1);
    color: rgba(0, 0, 0, 0.9);
}

.mobile-nav-item.active {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.mobile-nav-item.active i {
    color: #000000;
    transform: scale(1.05);
}

/* Buton animasyonları */
@keyframes navItemPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.mobile-nav-item:active {
    animation: navItemPulse 0.2s ease;
}

/* Mobil cihazlarda header navigasyonunu gizle ve alt navigasyonu göster */
@media (max-width: 768px) {
    
    
    /* Sosyal medya butonlarını mobilde göster */
    .share-buttons {
        display: flex !important;
        gap: 0.8rem;
        margin-left: auto;
    }
    
    .share-buttons.d-lg-none {
        display: flex !important;
        gap: 0.6rem;
        margin-left: 0;
        align-items: center;
    }
    
    .share-button {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .share-buttons.d-lg-none .share-button {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .share-buttons.d-lg-none .share-button:hover {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    /* Alt navigasyonu göster */
    .mobile-bottom-nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        height: 70px;
        padding: 12px 6px;
    }
    
    /* Footer'ı mobil navigasyonun üstünde tutmak için padding ekle */
    footer {
        margin-bottom: 80px;
    }
    
    /* Ana içeriğe alt padding ekle */
    .main-content {
        padding-bottom: 80px;
    }
}

/* Active navigation link styles */
.nav-link.nav-scroll.active {
    color: #13aef5 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.nav-scroll.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #13aef5;
    border-radius: 1px;
}

/* Mobile navigation active state */
.mobile-nav-item.active {
    color: #000000 !important;
    background: rgba(19, 174, 245, 0.1) !important;
    transform: translateY(-1px);
}

.mobile-nav-item.active i {
    color: #13aef5 !important;
    transform: scale(1.05);
}

.mobile-nav-item.active span {
    color: #13aef5 !important;
    font-weight: 600;
}

.main-content {
    min-height: calc(100vh - 160px);
    padding-top: 90px; /* Header yüksekliği kadar boşluk bırak */
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Company Detail Creative Section */
.company-detail-creative {
    min-height: 400px;
}
.company-longdesc {
    font-size: 1.2rem;
    color: #444;
    overflow-x: auto;
    height: 400px;
}
.company-longdesc p {
    margin-bottom: 0.1rem;
}
.company-corporate-img {
    border: 4px solid #eaeaea;
    transition: transform 0.3s;
}
.company-corporate-img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(44,62,80,0.15);
}
@media (max-width: 991px) {
    .company-detail-creative {
        flex-direction: column;
    }
    .company-corporate-img {
        margin-top: 2rem;
    }
}

/* Company Detail Contact & Map Styles */
.contact-info-grid {
    background: #f3f4f6;
    max-width: 100%;
}
.contact-icon {
    font-size: 2.2rem;
    color: #2563eb;
}
.contact-title {
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    color: #222;
}
.contact-desc {
    font-size: 1rem;
    color: #444;
}
.map-container {
    width: 100%;
    min-height: 220px;
    margin-top: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(60, 72, 88, 0.10);
}
@media (max-width: 991px) {
    .contact-info-grid > div {
        margin-bottom: 1.5rem !important;
    }
}

/* İlan Detay Sayfası Stilleri */
.job-header {
    background: var(--job-detail-bg);
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.job-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.job-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 9rem;
}

.job-header-main {
    flex: 1;
}

.job-content .job-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-info {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.company-name {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.job-header-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-share {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgb(83 77 232);
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .btn-share:hover {
        background: rgb(125 120 218);
        transform: translateY(-2px);
    }

.btn-share i {
    font-size: 1.1rem;
}

.btn-apply-header {
    padding: 0.75rem 2rem;
    background: var(--company-detail-bg);
    color: #4158D0;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-apply-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-apply-header i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .job-header-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .job-header-actions {
        width: 100%;
        flex-direction: row;
        justify-content: stretch;
    }

    .btn-share, 
    .btn-apply-header {
        flex: 1;
        justify-content: center;
    }

    .job-title {
        font-size: 2rem;
    }

    .company-info {
        width: 100%;
    }
}

/* Modern Firma Kartı Stilleri */
.company-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px; /* Header yüksekliği kadar boşluk bırakıyoruz */
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.company-header .company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.company-header .company-logo:hover {
    transform: scale(1.05);
}

.company-header .company-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.4;
}

.company-category {
    color: #718096;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.company-category i {
    color: #4299e1;
    font-size: 16px;
}

.company-description {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.company-description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, white);
}

.company-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #3182ce;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #ebf8ff;
    transition: all 0.3s ease;
}

.company-link:hover {
    background: #bee3f8;
    color: #2b6cb0;
    transform: translateX(5px);
}

.company-link i {
    font-size: 16px;
}

.linkedin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0077B5;
    color: white !important;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 119, 181, 0.2);
}

.linkedin-button:hover {
    background-color: #006399;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
    color: white !important;
    text-decoration: none;
}

.linkedin-button i {
    margin-right: 8px;
    font-size: 18px;
}

.or-divider {
    text-align: center;
    margin: 16px 0;
    color: #718096;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.quick-apply-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white !important;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.quick-apply-button:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
    color: white !important;
    text-decoration: none;
}

.quick-apply-button i {
    margin-right: 8px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .job-container {
        display: block !important;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        gap: 0 !important;
        padding: 0 12px;
    }
    
    .job-main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin: 0 !important;
        padding: 1rem !important;
    }

    .company-card {
        padding: 20px;
        margin-bottom: 16px;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        padding: 8px;
    }

    .company-name {
        font-size: 18px;
    }
    
    /* Mobil versiyonda company-info-sidebar'ı gizle */
    .company-info-sidebar {
        display: none !important;
    }
    
    /* Mobil versiyonda orijinal header butonlarını gizle */
    .job-header-actions {
        display: none !important;
    }
}

.job-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.job-main-content {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    max-width: 100%;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.job-description {
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 768px) {
    .job-container {
        grid-template-columns: 1fr;
    }
}


.job-details-meta {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1140px;
}

.job-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-label {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label i {
    color: #4158D0;
    font-size: 1rem;
}

.meta-value {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .job-details-meta {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .job-details-meta {
        grid-template-columns: 1fr;
    }
}

/* Apply Button Styles */
.btn-apply-header.disabled,
.quick-apply-button.disabled,
.linkedin-button.disabled {
    background: #e2e8f0 !important;
    color: #64748b !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.8;
}

.btn-apply-header.disabled:hover,
.quick-apply-button.disabled:hover,
.linkedin-button.disabled:hover {
    background: #e2e8f0 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Application Status Badge */
.application-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.application-status-badge .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    background: #10b981;
    color: white;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.application-status-badge .badge i {
    font-size: 12px;
}

/* About Section Styling */
.about-section-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.section-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
}

.title-icon {
    background: var(--company-detail-bg);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

/* Custom Scrollbar Container */
.custom-scrollbar-container {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.custom-scrollbar {
    position: relative;
    padding-right: 25px;
    max-height: 500px;
    overflow-y: auto;
    font-size: 1.1rem;
    color: #444;
}

.scroll-content {
    line-height: 1.8;
    padding-right: 10px;
}


.scroll-progress {
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, #4a90e2, #2a3f54);
    border-radius: 10px;
    transition: height 0.3s ease;
}

/* Image Container Styles */
.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.company-corporate-img {
    width: 100%;
    object-fit: cover;
    border: 4px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-corporate-img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(44,62,80,0.15);
}

/* Hover Effects */
.custom-scrollbar:hover::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #4a90e2, #2a3f54);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(74, 144, 226, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Animation for content */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .custom-scrollbar {
        max-height: 400px;
    }
    
    .image-container {
        margin-top: 2rem;
        max-width: 100%;
    }
    
}

/* Job Filters Styling */
.job-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.search-box input {
    padding-right: 40px;
}

.form-select, .form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.no-positions {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 2rem 0;
}

.no-positions i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-positions p {
    color: #6c757d;
    margin: 0;
    font-size: 1.1rem;
}

/* Contact Section Styles */
#contact.contact-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    padding: 60px 0;
}

#contact .contact-header {
    margin-bottom: 40px;
}

#contact .contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2a3f54;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#contact .contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, #2a3f54);
    border-radius: 2px;
}

#contact .contact-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 1rem;
}

#contact .contact-cards-row {
    margin-left: -15px;
    margin-right: -15px;
}

#contact .contact-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#contact .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, #2a3f54);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#contact .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#contact .contact-card:hover::before {
    opacity: 1;
}

#contact .card-icon {
    width: 50px;
    height: 50px;
    background: var(--company-detail-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#contact .card-icon i {
    font-size: 20px;
    color: #ffffff;
}

#contact .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#contact .card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a3f54;
    margin-bottom: 15px;
}

#contact .address-line {
    color: #4b5563;
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

#contact .city-line {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

#contact .direction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a90e2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

#contact .direction-link:hover {
    color: #2a3f54;
    transform: translateX(5px);
}

#contact .contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#contact .contact-link:hover span{padding-left: 10px;}
#contact .contact-link:hover, #contact .contact-link:hover i {
    color: #FFF;
    transform: translateX(5px);
}

#contact .contact-link i {
    width: 16px;
    color: #4a90e2;
}

#contact .fax-number {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0;
}

#contact .no-fax {
    color: #9ca3af;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

#contact .contact-map {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contact .contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 991px) {
    #contact .contact-card {
        margin-bottom: 20px;
    }

}

@media (max-width: 767px) {
    #contact.contact-section {
        padding: 40px 0;
    }

    #contact .contact-title {
        font-size: 1.75rem;
    }

    #contact .contact-subtitle {
        font-size: 0.95rem;
    }

    #contact .contact-card {
        padding: 20px;
    }

    #contact .card-icon {
        width: 45px;
        height: 45px;
    }

    #contact .card-icon i {
        font-size: 18px;
    }

    #contact .contact-map iframe {
        height: 250px;
    }
    
    /* Mobil versiyonda contact cards'ları ortala */
    #contact .contact-cards-row {
        justify-content: center;
    }
    
    #contact .contact-cards-row .col-md-6 {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    #contact .contact-card {
        text-align: center;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }
    
    #contact .card-content {
        text-align: center;
        align-items: center;
    }
    
    #contact .card-content h3 {
        text-align: center;
    }
    
    #contact .contact-link {
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
    }
    
    #contact .direction-link {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    #contact .card-icon {
        margin: 0 auto 20px auto;
    }
}

/* Service Cards Styles */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-green {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-left: 4px solid #28a745;
}

.service-card-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    border-left: 4px solid #6f42c1;
}

.service-card-yellow {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border-left: 4px solid #ffc107;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 1;
    opacity: 0.1;
}

.talent-sourcing-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    position: relative;
}

.talent-sourcing-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #28a745;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.employer-branding-icon {
    width: 60px;
    height: 60px;
    background: #6f42c1;
    border-radius: 10px;
    position: relative;
}

.employer-branding-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #6f42c1;
    border-radius: 50%;
    top: 5px;
    right: 5px;
}

.hr-consulting-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    position: relative;
}

.hr-consulting-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* Mobil versiyonda job-container'ı tam genişlik yap */
@media (max-width: 768px) {
    .job-container {
        display: block !important;
        grid: none !important;
        grid-template-columns: none !important;
        grid-template-areas: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        padding: 0 12px !important;
    }
    
    .job-main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 !important;
        padding: 1rem !important;
        float: none !important;
        clear: both !important;
    }
    
    /* Mobil sabit butonlar */
    .mobile-fixed-actions {
        position: fixed;
        bottom: 100px; /* Alt navigasyonun üstünde */
        right: 16px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-btn-share,
    .mobile-btn-apply {
        min-width: 56px;
        height: 56px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: none;
        border-radius: 28px;
        font-size: 1rem;
        font-weight: 500;
        white-space: nowrap;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-btn-share {
        background: #ffffff;
        color: #495057;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mobile-btn-share:hover {
        background: #f8f9fa;
        color: #495057;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .mobile-btn-apply {
        background: var(--company-detail-bg);
        color: var(--icon-color);
    }
    
    .mobile-btn-apply:hover {
        background: linear-gradient(135deg, #3a7bc8, #1e2b3a);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
    }
    
    .mobile-btn-share i,
    .mobile-btn-apply i {
        font-size: 1.1rem;
    }
    
    .mobile-btn-share span,
    .mobile-btn-apply span {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    /* Mobil butonlar için animasyon */
    .mobile-fixed-actions {
        animation: slideUp 0.3s ease-out;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Modal görünürlük sorunu için */
.modal {
    z-index: 9999 !important;
}

.modal-dialog {
    z-index: 10000 !important;
}

.modal-content {
    z-index: 10001 !important;
    background: white !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

/* Modal içeriğinin görünürlüğünü garanti et */
#updateUserModal {
    display: block !important;
}

#updateUserModal .modal-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Modal açıldığında içeriğin görünür olması için */
.modal.show .modal-content {
    transform: none !important;
    opacity: 1 !important;
}

/* Modal içeriğinin her zaman görünür olması için */
.modal.show {
    display: block !important;
}

.modal.show .modal-dialog {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Modal backdrop'un görünürlüğü */
.modal-backdrop.show {
    opacity: 0.5 !important;
}

/* Bootstrap 5 modal düzeltmeleri */
.modal {
    z-index: 9999 !important;
}

.modal-dialog {
    z-index: 10000 !important;
}

.modal-content {
    z-index: 10001 !important;
    background: white !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

/* Modal içeriğinin görünürlüğünü garanti et */
#updateUserModal {
    display: block !important;
}

#updateUserModal .modal-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background: white !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

#updateUserModal .modal-dialog {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 1.75rem auto !important;
}

#updateUserModal .modal-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 1rem !important;
}

#updateUserModal .modal-header {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 1rem !important;
    border-bottom: 1px solid #dee2e6 !important;
}

#updateUserModal .modal-footer {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 1rem !important;
    border-top: 1px solid #dee2e6 !important;
}

#updateUserModal form {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Modal açıldığında tüm içeriğin görünür olması için */
#updateUserModal.show {
    display: block !important;
}

#updateUserModal.show .modal-content {
    transform: none !important;
    opacity: 1 !important;
}

/* Modal backdrop'un görünürlüğü */
.modal-backdrop.show {
    opacity: 0.5 !important;
}

.footer-social-wrapper {
    text-align: center;
    margin-bottom: 10px;
}

.footer-social-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.footer-social-icons a {
    margin: 0 10px;
    font-size: 24px;
    transition: 0.3s;
}

    /* LinkedIn */
    .footer-social-icons a .fa-linkedin {
        color: #0077b5;
    }

    .footer-social-icons a:hover .fa-linkedin {
        color: #005582;
    }

    /* Twitter */
    .footer-social-icons a .fa-twitter {
        color: #1da1f2;
    }

    .footer-social-icons a:hover .fa-twitter {
        color: #0d8ddc;
    }

    /* Instagram */
    .footer-social-icons a .fa-instagram {
        color: #E4405F;
    }

    .footer-social-icons a:hover .fa-instagram {
        color: #C13584;
    }

    /* YouTube */
    .footer-social-icons a .fa-youtube {
        color: #FF0000;
    }

    .footer-social-icons a:hover .fa-youtube {
        color: #CC0000;
    }

    /* Facebook */
    .footer-social-icons a .fa-facebook {
        color: #1877f2;
    }

    .footer-social-icons a:hover .fa-facebook {
        color: #0f5ac6;
    }

.profile-rate-wrapper {
    margin-top: 4px;
    width: 180px;
}

.profile-rate-wrapper--mobile {
    width: 200px;
    margin-top: 6px;
}

.profile-rate-label {
    font-size: 11px;
    color: #6c757d;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.profile-rate-progress {
    height: 6px;
}

    .profile-rate-progress .progress-bar {
        background-color: #0d6efd;
    }
