:root {
  /* Colors */
  --red: #b11c2a;
  --redhover: #b91929;
  --yellow: #f69757;
  --green: #009685;
  --greenhover: #068370;
  --orange: #f05539;
  --background-color: #f0f0f0;
  --background-darker-color: #e0e0e0;
  ;
  --text-color: #343a40;
  --text-color-hover: #495057;
  --border-color: #A9A9A9;
  --baskan-blue: #133f6b;
  --baskan-blue-hover: #0e345b;
  --mbb-blue: #287ec1;
  --footer: #2b3940;
  --sub-text: #999;
  --white: #ffffff;
}


/*  */
.modal-content {
  border-radius: 1rem;;
}
.citizenWorkpopup {
  background-color: #b91929;
  
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.citizenWorkPopupText
{
  color: #b91929;
  font-weight: bold;
  font-size: 1.2rem;


}



.card {
  border-radius: 0.75rem;
  border: none;
  transition: transform 0.2s;
  
}

.card:hover {
  transform: translateY(-2px);

}

#skills span {
  display: inline-block;
  background-color: #e9ecef;
  padding: 0.35rem 0.75rem;
  border-radius: 1rem;
  margin: 0.25rem;
  font-size: 0.9rem;
  
}

.badge {
  padding: 0.5rem 0.75rem;
  font-weight: 500;

}

/*  */











.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 50px;
  z-index: 99;
  width: 50px !important;
  height: 45px !important;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  width: 100%;
  display: grid;
  min-height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background-color: var(--background-color);
  margin: 0 auto;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}



.body-item-wrapper {
  width: 80%;
  margin: 0 auto;
}

.bg-light-container {
  width: 100%;
  background-color: var(--background-color);
  animation: bg-light-animation 15s infinite alternate;
}

.bg-dark-container {
  width: 100%;
  background-color: var(--background-darker-color);
  animation: bg-dark-animation 15s infinite alternate;
}

.bg-counter-container {
  width: 100%;
  background-color: var(--baskan-blue);
  /* background-color: var(--mbb-blue); */
  /* background-color: var(--green); */
  padding-bottom: 4rem;
}

.bg-white-container {
  width: 100%;
  background-color: white;
}


@keyframes bg-light-animation {
  0% {
    background-color: var(--background-color);
  }

  50% {
    background-color: #f5f5f5;
  }

  100% {
    background-color: var(--background-color);
  }
}


@keyframes bg-dark-animation {
  0% {
    background-color: var(--background-darker-color);
  }

  50% {
    background-color: #cccccc;
  }

  100% {
    background-color: var(--background-darker-color);
  }
}


@media screen and (max-width: 1000px) {

  body,
  .body-item-wrapper {
    width: 100%;
  }

  .navbar {
    padding: 5px !important;

  }

}

/* ALERT SECTION */
.alert {
  margin: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.alert-success {
  background-color: var(--green);
  border-color: var(--greenhover);
  color: var(--white);
}

.alert-danger {
  background-color: var(--red);
  border-color: var(--redhover); 
  color: var(--white);
}

.alert-info {
  background-color: var(--mbb-blue);
  border-color: var(--baskan-blue);
  color: var(--white);
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}



/* NAVBAR SECTION */

.navbar-wrapper{
  width: 80% !important; 
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
  padding: 5px;
}

.navbar {
  width: 100% !important;

}

.navbar-nav .active {
  font-weight: bold;
  color: var(--red) !important;
}

.manisa-logo {
  width: 200px;
  height: auto;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .manisa-logo {
    width: 150px;
  }
  
}

@media screen and (max-width: 1000px) {
  body,
  .body-item-wrapper {
    width: 100%;
    padding: 0;
  }

  .navbar-wrapper {
    width: 100% !important;
    padding: 10px;
    justify-content: space-between;
    gap: 10px;
  }

  .navbar {
    padding: 5px !important;
  }

  .nav-item {
    padding: 8px 0;
  }


  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    width: 100%;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .navbar-nav {
    width: 100%;
    text-align: left;
  }

  .navbar-nav.ms-auto {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }

  .login-dropdown {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .custom-login-navlink {
    width: 80%;
    text-align: center;
  }
}



.nav-item {
  font-size: 16px !important;

  font-family: 'Montserrat', sans-serif !important;
}

.nav-link{
  color: var(--baskan-blue) !important;
}

.custom-login-navlink {
  color: var(--red) !important;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif !important;
}

.dropdown-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 4px;
}

.small.text-muted {
  font-size: 0.9rem;
  color: #566573 !important;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.dropdown-menu:hover .small.text-muted {
  color: #34495e !important;
}



/* CUSTOM FEATHER ICON STUFF */
.custom-feather-class {
  width: 22px;
  height: auto;
  margin-left: 2px;
  margin-right: 2px;
}

/* ACTION BTN SECTION */
.action-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .375rem .75rem;
  height: auto;
  text-align: center;
  color: #f0f0f0;
  background: linear-gradient(to right, var(--red) 50%, var(--redhover) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  border: 1px solid var(--accent-color) !important;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background-position: right bottom;
  color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(177, 28, 42, 0.2);
}

.action-btn:active {
  background-color: var(--red) !important;
  border: 2px solid var(--accent-color) !important;
  outline: none !important;
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(177, 28, 42, 0.2);
}


.section-header-title {
  font-size: 2.25em;
  font-weight: 800;
  color: var(--baskan-blue);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 25px 20px 15px 20px;
  letter-spacing: 1px;
  font-family: 'Open Sans', sans-serif;
}

.section-header-title::after {
  content: '';
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--redhover) 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(177, 28, 42, 0.2);
}

.section-header-title::before {
  content: '';
  width: 40px;
  height: 5px;
  background: linear-gradient(90deg, var(--baskan-blue) 0%, var(--mbb-blue) 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}


.section-subtitle {
  font-size: 1.2em;
  color: #666;
  /* Adjust to match your theme */
  text-align: center;
  margin-top: -30px;
  /* Adjust spacing as needed */
  margin-bottom: 40px;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-first-section-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 800px;
  display: block;
  
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  ); */
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 5px;
  animation: fadeInDown 1s ease-out;
  font-family: 'Source Sans Pro', sans-serif !important;
  
}

.hero-content p {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.5s;
  animation-fill-mode: both;
  font-family: 'Open Sans', sans-serif !important; 
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-buttons a {
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.btn-primary,
.btn-secondary {
  /* padding: 15px 30px; */
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  white-space: nowrap;
  transition: background-color 0.3s;
}

/* .btn-primary {
  background-color: var(--red);
}

.btn-primary:hover {
  background-color: var(--redhover);
} */

.btn-secondary {
  background-color: var(--green);
}

.btn-secondary:hover {
  background-color: var(--greenhover);
}

.hero-button {
  font-family: 'Montserrat', sans-serif !important;
}

.secondary-action-btn {
  color: var(--baskan-blue) !important;
  border: 2px solid var(--red) !important;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, transparent 50%, var(--red) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
}

.secondary-action-btn:hover {
  background-position: right bottom;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(177, 28, 42, 0.2);
}

.secondary-action-btn:active {
  outline: none !important;
  border: 2px solid var(--red) !important;
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(177, 28, 42, 0.2);
}





/* SEARCH JOBS INPUT SECTION */
.search-jobs-container {
  position: relative;
  margin-top: -50px;
  width: 100%;
  z-index: 1;
}

.search-section {
  padding: 20px;
  background-color: var(--red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.search-column {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
}

.search-input,
.search-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input::placeholder {
  color: var(--sub-text);
}

.search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%200l4%204%204-4' stroke='%23777'%20stroke-width%3D'2'%20fill%3D'none'%20fill-rule%3D'evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
}

.search-select::-ms-expand {
  display: none;
}

.search-button-column {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
}

.search-button {
  width: 100%;
  padding: 12px 16px;
  background-color: #1e262b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.1s;
}

.search-button:hover {
  background-color: #2c3940 !important;
  transform: translateY(-2px);
}

.search-button:active {
  transform: translateY(1px);
}


.search-input:focus,
.search-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(177, 28, 42, 0.2);
}

@media screen and (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-content {
    /* position: relative;
    background-color: rgba(0, 0, 0, 0.7); */
    padding: 20px;
  }

  .search-jobs-container {
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    margin-bottom: 10px;
  }
}



/* CATEGORIES SECTION */

.categories-section {
  width: 100%;
  padding: 50px 0;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  animation: fadeInUp 0.1s;
}

.categories-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  padding: 20px;
}


.category-item {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-item:hover::before {
  opacity: 1;
}

.category-icon-text {
  font-size: 2.5rem !important;
  color: var(--red);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}


.category-item h6 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--baskan-blue);
  margin-bottom: 15px;
}

.category-item p {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .categories-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
    text-align: center;
  }
  
  .category-item {
    padding: 20px;
  }
  
  .category-icon-text {
    font-size: 2rem !important;
  }
}

/* ABOUT SECTION */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 40px 0;
}

.about-bg {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-size: 5px 5px;
}


.about-images {
  flex: 1 1 50%;
}

.about-content {
  flex: 1 1 50%;
  padding: 20px;
}

.about-content p{
  color : #666;
}

.about-content p i {
  color: var(--red);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: masonry;
  grid-gap: 10px;
}

.image-cell {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-cell img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.image-cell:hover img {
  transform: scale(1.1);
}


.image-cell:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
}

.image-cell:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
  height: 100%;
}

.image-cell:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
  height: 100%;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-images,
  .about-content {
    flex: 1 1 100%;
  }

  .about-images {
    margin-bottom: 20px;
  }
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-cell:nth-child(1) {
    grid-column: span 2;
  }

  .image-cell:nth-child(2),
  .image-cell:nth-child(3) {
    display: none;
  }
}

.lightbox {
  position: absolute;
  transform: translateY(50%);

}


/* JOB LISTING SECTION */
/* Tab Container */
.tab-container {
  width: 100%;
}

/* Tab Menu */
.tab-menu {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;

  justify-content: center;
}

.tab-menu .tab-item {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: none;
  margin-right: 5px;
  transition: background-color 0.3s;
}

.tab-menu .tab-item.active {

  font-weight: bold;
  border-bottom: 1px solid var(--red);
}

.tab-menu .tab-item:hover {
  background-color: #e9e9e9;
}

.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.active {
  display: block;
}

.job-item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: var(--white);
}


.job-item .company-logo {
  width: 80px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.job-item .job-details {
  flex: 1;
  padding-left: 20px;
}

.job-item h5 {
  margin: 0 0 10px 0;
}

.job-item .job-meta span {
  display: inline-block;
  margin-right: 15px;
  color: #666;
}

.job-item .apply-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.job-item .apply-section .btn {
  margin-top: 10px;
}

.job-item .apply-section small {
  color: var(--sub-text);
}

.job-btns-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: flex-end; 
  align-items: center;
  padding-right: 10px;
}

.favorite-btn {
  max-width: 50px;
}

.favorite-btn i {
  color: inherit;
  transition: color 0.3s, font-weight 0.3s;
}

.favorite-btn:hover i {
  color: red;
}

.joblisting-view-more-btn-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .apply-section {
    width: 100%;
    margin-top: 15px;
  }

  .apply-section .job-btns-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }

  .apply-section .job-btns-wrapper .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .apply-section small {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/* FOOTER CONTAINER */
.footer-container {
  background-color: var(--footer);
  color: var(--sub-text);
  padding: 20px 0;
  font-family: 'Heebo', sans-serif;
}

.footer-container a {
  color: var(--sub-text);
  text-decoration: none;
}

.footer-container a:hover {
  color: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 20px;
  min-width: 250px;
}

.footer-section h5 {
  color: var(--background-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--sub-text);
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: var(--background-color);
}

.contact p,
.newsletter p {
  font-size: 14px;
  line-height: 1.6;
}

.contact i {
  margin-right: 10px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  color: var(--sub-text);
  font-size: 18px;
}

.socials a:hover {
  color: #fff;
}

.newsletter form {
  display: flex;
  border: 1px solid var(--sub-text);
  padding: 5px;
}

.newsletter input[type="email"] {
  flex: 1;
  padding: 5px;
  border: none;
  outline: none;
  font-size: 14px;
  background-color: transparent;
  color: var(--sub-text);
}

.newsletter button {
  padding: 5px 10px;
  border: none;
  background-color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.newsletter button:hover {
  background-color: var(--redhover);
  transform: translateY(-2px);
}

.newsletter button:active {
  background-color: var(--red);
  transform: translateY(0);
}


.footer-bottom {
  background-color: #1d262b;
  color: var(--sub-text);
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--sub-text);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--background-color);
}

.footer-bottom .footer-menu {
  margin-top: 10px;
}

.footer-bottom .footer-menu a {
  margin: 0 10px;
}

/* Responsive footer styles */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin: 20px 0;
    width: 100%;
  }

  .footer-section h5 {
    margin-bottom: 15px;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    text-align: center;
  }

  .socials {
    justify-content: center;
    margin-top: 15px;
  }

  .socials a {
    margin: 0 10px;
  }

  .newsletter form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsletter button {
    width: 100%;
  }

  .footer-bottom .footer-menu {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom .footer-menu a {
    margin: 5px 0;
  }
}


/* LOGIN SECTION */

.avatar-circle {
  width: 32px;
  height: 32px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item {
  transition: background-color 0.2s;
  padding: 8px;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-header {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #6c757d;
}


.login-section {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.login-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.login-section .form-group {
  margin-bottom: 1rem;
}

.login-section label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.login-section input[type="email"],
.login-section input[type="password"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.login-section input[type="email"]:focus,
.login-section input[type="password"]:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 150, 133, 0.2);
}

@media (max-width: 480px) {
  .login-section {
    padding: 1.5rem;
    margin: 1rem auto;
  }
}

.forgot-password {
  display: block;
  text-align: right;
  color: var(--secondary-color);
  font-weight: 600;
}

.forgot-password:hover {
  color: var(--red);
  cursor: pointer;
}

.login-validate-message {
  font-size: 14px;
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: var(--extra);
  text-align: center;
}

.login-header-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.login-header-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}


/* HOMEPAGE LOGIN BUTTON SECTION */
/* Add these styles for the login dropdown */
.login-dropdown {
  position: relative;
}

.login-dropdown .dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 320px;
}

.btn:focus{
  outline: none;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .login-dropdown .dropdown-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    transform: none;
    max-height: calc(90vh - 100%);
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}


.login-dropdown .dropdown-menu.show {
  display: block;
  margin: 0;
}



/* MATERIAL DESIGN ICONS CONFIGS (MDI) */
.mdi {
  font-size: 24px;
  vertical-align: middle;
}

.admin-navbar .mdi {
  font-size: 22px;
}

.admin-footer .mdi {
  font-size: 20px;
}

/* REGISTRATION SECTION */
.register-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.register-tabs {
  display: flex;
  background: #f8f9fa;
  padding: 1rem;
  gap: 1rem;
}

.registration-form {
  padding: 2rem;
}

.form-section {
  margin-bottom: 2rem;
}

.form-section h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  margin: 0.5rem 0;
}

.form-input:focus {
  border-color: var(--mbb-blue);
  outline: none;
}

.file-upload-container {
  width: 100%;
  margin: 10px 0;
}

.file-drop-zone {
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.file-drop-zone:hover, 
.file-drop-zone.drag-over {
  border-color: var(--red);
  background: var(--white);
}

.upload-icon {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.upload-text span {
  font-weight: 600;
  color: var(--text-color);
  display: block;
  margin-bottom: 5px;
}

.upload-text p {
  color: var(--sub-text);
  margin: 0;
  font-size: 0.9rem;
}

.preview-container {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.preview-container img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 4px;
  display: none;
}

.file-name {
  font-size: 0.9rem;
  color: var(--text-color);
  word-break: break-all;
  display: none;
}

.preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* CITIZEN USER REGISTER SECTION */
.certificate-entry {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.remove-certificate-btn {
  position: absolute;
  top: 1px;
  right: 5px;
  background: none;
  border: none;
  color: #ff4444;
  cursor: pointer;
  padding: 5px;
  font-size: 16px;
  z-index: 2;
  transition: color 0.2s;
}

.remove-certificate-btn:hover {
  color: #cc0000;
}

.add-certificate-card {
  border: 2px dashed #ddd;
  border-radius: 5px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.add-certificate-card:hover {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

.add-certificate-card i {
  font-size: 24px;
  color: #007bff;
  margin-right: 8px;
}

.add-certificate-card span {
  color: #666;
  font-weight: 500;
}

/* COMPANY REGISTER SECTION */

/* CONSENT SECTION */
.consent-popup .consent-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.consent-popup .consent-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.consent-popup .consent-content h4 {
  color: #2c3e50;
  margin: 1.5rem 0 0.5rem 0;
}

.consent-popup .consent-content p {
  color: #555;
  margin-bottom: 1rem;
}

/* EDİT OZAN */

.custom-select { 
  width: 100%;
} 

.job-filter-left-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: var(--white);
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.input-group {
  display: contents;
}

.filter-btn {
  width: 100%;
  background-color: var(--red);
  color: var(--background-color);
  margin-bottom: 0.5rem;
}

.filter-btn.active {
  background-color: var(--baskan-blue);
  color: var(--white);
}

.job-filter-item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: var(--white);
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.img-fluid {
  display: flex;
  max-height: 200px;
  min-width: 100%;
  object-fit: cover;
}

.page-link {
  color: var(--red);
}

.page-link:hover {
  color: var(--redhover);
}

.page-link.active {
  background-color: var(--redhover);
  color: white;
  cursor: default;
}

.company-item {
  background-color: white;
  align-items: center;
}

.form-check-input:checked {
  background-color: var(--red);
  border-color: var(--redhover);
}

.form-check-input:focus { 
  box-shadow: 0 0 0 .25rem rgb(255, 0, 0, .25);
}

.company-list-item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: white;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.company-list-logo {
  max-width: 80%;
  max-height: 100px;
}

.job-detail-compony-about {
  color: var(--text-color);
  font-weight: 100;
}

.title-color-red {
  color: var(--red);
}

.title-color-blue {
  color: var(--baskan-blue);
}

.container-wrapper {
  margin: 1rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.card-job-offer {

  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: .25rem;

}

.profile {
  background-color: var(--sub-text);
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  align-items: center;
}

.accept-btn {
  width: 100%;
  background-color: var(--sub-text);
  color: var(--background-color);
  margin-bottom: 0.5rem;
}

.text-link {
    color: #FFFFFF;
    text-decoration: none;
    color: var(--baskan-blue);
}

.job-add {
  display: flex;
  flex-direction: row;
  justify-content: flex-end; 
  align-items: center;
  margin-top: -50px;
}

.bt {
  justify-items: end;
  width: 14rem;
}


.count-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  padding: 20px;
}

.count-item {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

