@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: 110%;
  margin-top: -100px;
  margin-left: -22px;
  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: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.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;
    padding: 10px 16px;
    border-radius: 8px;
    background: #ebf8ff;
    transition: all 0.3s ease;
    width: 100%;
}

.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: linear-gradient(135deg, #3498db, #2c3e50);
    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: linear-gradient(135deg, #3498db, #2c3e50);
    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 !important;}
.company-initial {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    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: linear-gradient(135deg, #3498db, #2c3e50);
    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-brand {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    height: 60px;
}

.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: 1rem;
    align-items: center;
}

.share-button {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-button:hover {
    color: #007bff;
}

.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;
        max-height: 220px;
    }
}

/* 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: linear-gradient(135deg, #4158D0 0%, #a250c8 46%, #ff7070 100%);
    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: rgba(255, 255, 255, 0.15);
    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: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-share i {
    font-size: 1.1rem;
}

.btn-apply-header {
    padding: 0.75rem 2rem;
    background: #fff;
    color: #4158D0 !important;
    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;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
}

.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 {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 12px;
    }

    .company-card {
        padding: 20px;
        margin-bottom: 16px;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        padding: 8px;
    }

    .company-name {
        font-size: 18px;
    }
}

.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;
}

.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;
}

@media (max-width: 768px) {
    .job-container {
        grid-template-columns: 1fr;
    }
}

body {
    background-color: #f8fafc;
}

.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;
}

.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: linear-gradient(135deg, #4a90e2, #2a3f54);
    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%;
    max-height: 350px;
    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%;
    }
    
    .company-corporate-img {
        max-height: 250px;
    }
}

/* 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: linear-gradient(135deg, #4a90e2, #2a3f54);
    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;
    }
}


