@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "instrument sans", sans-serif;
  font-size: 16px;
  color: #111827;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.section {
  margin: 96px 2%;
}

.section-alt {
  margin: 64px 2%;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4f46e5;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
.section-header p {
  font-size: 1.1rem;
  color: #111827;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

p {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #111827;
}

header {
  background-color: #f8f9fa;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 24px 2%;
  background-color: #f8f9fa;
  z-index: 1999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0; /* important */
  width: 100%;
}
@media (max-width: 992px) {
  .navbar {
    display: flex;
    justify-content: space-between;
  }
}
.navbar .logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .navbar .logo img {
    width: 150px;
  }
}
.navbar .nav-links {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.navbar .nav-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}
.navbar .nav-links a:hover {
  color: #4f46e5;
}
@media (max-width: 992px) {
  .navbar .nav-links {
    display: none;
  }
}
.navbar .auth-links {
  display: flex;
  gap: 16px;
}
.navbar .auth-links a {
  text-decoration: none;
  font-weight: 600;
  color: #111827;
}
.navbar .auth-links a.btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
}
.navbar .auth-links a.btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .navbar .auth-links a.btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.navbar .auth-links a:hover {
  color: #4f46e5;
}
@media (max-width: 992px) {
  .navbar .auth-links {
    display: none;
  }
}
.navbar .user-links {
  display: flex;
  gap: 16px;
  position: relative;
  margin-right: 5px;
}
.navbar .user-links .user-tab {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .user-links .user-tab .fa-circle-user {
  font-size: 2.2rem;
  color: #4f46e5;
}
@media (max-width: 768px) {
  .navbar .user-links .user-tab .fa-circle-user {
    font-size: 1.8rem;
  }
}
.navbar .user-links .user-tab .fa-chevron-right {
  font-size: 0.7rem;
  margin: 0;
  color: #4f46e5;
  margin-left: 8px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .navbar .user-links .user-tab .fa-chevron-right {
    font-size: 0.6rem;
  }
}
.navbar .user-links .user-tab.active .fa-chevron-right {
  transform: rotate(90deg);
}
.navbar .user-links .user-menu {
  position: absolute;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 20px;
  padding: 8px 24px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  right: -12px;
  top: 45px;
  z-index: 1000;
}
.navbar .user-links .user-menu a {
  font-size: 0.8rem;
  color: #111827;
  margin-top: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: 600;
}
.navbar .user-links .user-menu a:hover {
  color: #4f46e5;
}
.navbar .user-links .user-menu.active {
  display: flex;
}
@media (max-width: 992px) {
  .navbar .user-links {
    margin-left: auto;
    margin-right: 16px;
  }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger-btn .bar {
  width: 25px;
  height: 3px;
  background-color: #111827;
  border-radius: 2px;
}
@media (max-width: 992px) {
  .hamburger-btn {
    display: flex;
  }
  .hamburger-btn.active {
    display: flex;
  }
  .hamburger-btn:not(.active) {
    display: none;
  }
}

.close-hamburger-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  color: #111827;
}
@media (max-width: 992px) {
  .close-hamburger-btn {
    display: flex;
  }
  .close-hamburger-btn .bar1 {
    background-color: #111827;
    width: 25px;
    height: 2px;
    transform: rotate(45deg) translate(0px, 0px);
  }
  .close-hamburger-btn .bar2 {
    background-color: #111827;
    width: 25px;
    height: 2px;
    transform: rotate(-45deg) translate(2px, -2px);
  }
}
@media (max-width: 992px) {
  .close-hamburger-btn .open {
    display: flex;
  }
  .close-hamburger-btn:not(.open) {
    display: none;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.overlay.active {
  display: block;
}

.dropdown-navbar {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #f8f9fa;
  padding: 16px 0;
  position: absolute;
  top: 70px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(-120%);
  transition: all 0.3s ease;
  opacity: 0;
}
.dropdown-navbar.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  position: fixed;
}
.dropdown-navbar .dropdown-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.dropdown-navbar .dropdown-links li {
  width: 100%;
  text-align: center;
  margin: 8px 0;
}
.dropdown-navbar .dropdown-links li a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}
.dropdown-navbar .dropdown-links li a:hover {
  color: #4f46e5;
}
.dropdown-navbar .dropdown-links .signup {
  background-color: #4f46e5;
  max-width: 90%;
  color: #fff;
  padding: 16px 0;
  border-radius: 20px;
  cursor: pointer;
}
.dropdown-navbar .dropdown-links .signup:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}
.dropdown-navbar .dropdown-links .signup a {
  color: #fff;
}
.dropdown-navbar .dropdown-links .signup a:hover {
  color: #fff;
}

footer {
  background-color: #4f46e5;
  color: #fff;
  padding: 48px 48px 16px 48px;
}
@media (max-width: 768px) {
  footer {
    padding: 24px 16px;
  }
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
footer .footer-content .top-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
footer .footer-content .top-footer .footer-logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
footer .footer-content .top-footer .footer-logo a:hover {
  color: white;
}
footer .footer-content .top-footer .footer-newsletter h3 {
  margin-bottom: 8px;
  text-align: center;
}
footer .footer-content .top-footer .social-links {
  display: flex;
  gap: 16px;
}
footer .footer-content .top-footer .social-links a {
  color: #fff;
  font-size: 1.5rem;
}
footer .footer-content .top-footer .social-links a:hover {
  color: white;
}
footer .footer-content .mid-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
footer .footer-content .mid-footer .quick-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}
footer .footer-content .mid-footer .quick-links ul {
  margin-right: 64px;
}
footer .footer-content .mid-footer .quick-links ul li {
  margin-bottom: 8px;
}
footer .footer-content .mid-footer .quick-links ul li a {
  color: #fff;
}
@media (max-width: 576px) {
  footer .footer-content .mid-footer .quick-links ul li a {
    font-size: 0.9rem;
    text-align: center;
  }
}
footer .footer-content .mid-footer .quick-links ul li a:hover {
  color: #facc15;
  text-decoration: underline;
}
footer .footer-content .mid-footer .quick-links ul .list-header {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  footer .footer-content .mid-footer .quick-links ul .list-header {
    text-align: center;
    font-size: 1rem;
  }
}
footer .footer-content .bottom-footer {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
}
footer .footer-content .bottom-footer .footer-links {
  margin-bottom: 8px;
}
footer .footer-content .bottom-footer .footer-links li {
  display: inline;
}
footer .footer-content .bottom-footer .footer-links li a {
  color: #fff;
  margin: 0 16px;
}
footer .footer-content .bottom-footer .footer-links li a:hover {
  color: white;
  text-decoration: underline;
}
footer .footer-content .bottom-footer #copyright {
  margin-top: 8px;
  color: #fff;
}

.button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.button.primary {
  background-color: #4f46e5;
  color: white;
}
.button.primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}
.button.secondary {
  background-color: #e5e7eb;
  color: white;
}
.button.secondary:hover {
  background-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}

.hero {
  margin-top: 12px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(142.8104265403, 137.0734597156, 238.4265402844) 0%, #f8f9fa 50%, rgb(252.6673640167, 231.2071129707, 145.8326359833) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.15), transparent 70%);
  pointer-events: none;
}
.hero .hero-content {
  text-align: center;
  color: rgb(32.6777251185, 24.2748815166, 172.7251184834);
  z-index: 2;
  padding: 0 1rem;
}
.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero .hero-content p {
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 24px;
  color: #111827;
}
@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1rem;
  }
}
.hero .hero-content .hero-buttons {
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.hero .hero-content .hero-buttons .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  margin-right: 16px;
}
.hero .hero-content .hero-buttons .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-buttons .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .hero .hero-content .hero-buttons .btn-primary {
    margin: 8px 0;
  }
}
.hero .hero-content .job-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}
.hero .hero-content .job-tags span {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.hero .hero-content .job-tags span:hover {
  background: #4f46e5;
  color: #fff;
}
@media (max-width: 576px) {
  .hero .hero-content .job-tags span {
    font-size: 0.7rem;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.features .card {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 20px 14px -24px rgba(0, 0, 0, 0.62);
  margin-bottom: 16px;
}
.features .card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  color: #4f46e5; /* use your theme color */
  margin-bottom: 24px;
  font-size: 4rem;
}
.features .card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}
.features .card p {
  font-size: 1rem;
  color: #666;
}

.apply-for-you {
  background-color: #4f46e5;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.apply-for-you .section-header {
  color: #fff;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.apply-for-you .section-header h2 {
  color: #fff;
}
.apply-for-you .section-header p {
  color: #fff;
  margin-bottom: 24px;
  max-width: 650px;
}
.apply-for-you .section-header .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  background-color: #fff;
  color: #4f46e5;
  width: inherit;
}
.apply-for-you .section-header .btn-primary:hover {
  background-color: #facc15;
  color: #4f46e5;
}

.job-listings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 64px;
  gap: 24px;
}
@media (max-width: 576px) {
  .job-listings {
    padding: 0 8px;
  }
}
.job-listings .job-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  border-radius: 20px;
  border-left: 5px solid #4f46e5;
  border-right: 5px solid #4f46e5;
  /* Overlay for locked message or icon */
}
@media (max-width: 768px) {
  .job-listings .job-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
}
.job-listings .job-card .save {
  position: absolute;
  right: 4%;
  top: 16px;
}
.job-listings .job-card .save i {
  font-size: 1.4rem;
  color: #4f46e5;
  cursor: pointer;
  transition: color 0.3s ease;
}
.job-listings .job-card .save i:hover {
  color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}
@media (max-width: 768px) {
  .job-listings .job-card .save i {
    font-size: 1.2rem;
  }
}
.job-listings .job-card .save.saved i {
  color: rgb(57.7298578199, 47.6421800948, 225.8578199052);
}
.job-listings .job-card .job-logo {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-listings .job-card .job-logo {
    width: 60px;
    height: 60px;
  }
}
.job-listings .job-card .job-details {
  margin-left: 24px;
}
.job-listings .job-card .job-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}
@media (max-width: 768px) {
  .job-listings .job-card .job-details h3 {
    text-align: center;
    font-size: 1.1rem;
  }
}
.job-listings .job-card .job-details p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .job-listings .job-card .job-details p {
    text-align: center;
    font-size: 0.95rem;
  }
}
.job-listings .job-card .job-details p #time {
  margin-left: 48px;
  font-size: 0.875rem;
  color: #999999;
}
.job-listings .job-card .job-details .job-type {
  background-color: rgb(249.1611374408, 248.8625592417, 254.1374407583);
  color: #4f46e5;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
  display: flex;
}
@media (max-width: 768px) {
  .job-listings .job-card .job-details .job-type {
    justify-content: center;
  }
}
.job-listings .job-card .job-details .job-type .t-span {
  background-color: rgb(253.2008368201, 236.6485355649, 170.7991631799);
  padding: 2px 4px;
  border-radius: 4px;
  margin-right: 8px;
}
.job-listings .job-card .job-details .job-tags {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .job-listings .job-card .job-details .job-tags {
    justify-content: center;
  }
}
.job-listings .job-card .job-details .job-tags .tag {
  background-color: rgb(206.6208530806, 204.1469194313, 247.8530805687);
  color: #4f46e5;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}
.job-listings .job-card .view-job {
  margin-top: 1rem;
  align-self: center;
}
.job-listings .job-card .view-job .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
}
.job-listings .job-card .view-job .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .job-listings .job-card .view-job .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .job-listings .job-card .view-job {
    justify-self: center;
    margin-bottom: 24px;
  }
}
.job-listings .job-card.locked {
  position: relative;
  filter: blur(4px); /* blur card */
  pointer-events: none; /* disable clicking */
  user-select: none; /* prevent selection */
  opacity: 0.6; /* optional dim */
}
.job-listings .job-card.locked::after {
  content: "Login to view this job";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px); /* adds stronger blur on overlay */
  background: rgba(255, 255, 255, 0.4);
  color: #4b3cf9;
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: 25px;
  pointer-events: none;
}
.job-listings .skeleton-job-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  border-radius: 20px;
  border-left: 5px solid #4f46e5;
  border-right: 5px solid #4f46e5;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
}
.job-listings .skeleton-job-card .skeleton-job-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(90deg, #9ca3af 0%, rgb(184.2067039106, 189.2122905028, 197.7932960894) 50%, #9ca3af 100%);
  background-size: 200% 100%;
  border-radius: 100px;
  animation: shimmer 5.5s infinite;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .skeleton-job-logo {
    width: 60px;
    height: 60px;
  }
}
.job-listings .skeleton-job-card .skeleton-job-details {
  margin-left: 24px;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .skeleton-job-details {
    margin-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.job-listings .skeleton-job-card .skeleton-job-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: transparent;
  background: linear-gradient(90deg, #9ca3af 0%, rgb(184.2067039106, 189.2122905028, 197.7932960894) 50%, #9ca3af 100%);
  background-size: 200% 100%;
  border-radius: 20px;
  max-width: 70%;
  animation: shimmer 5.5s infinite;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .skeleton-job-details h3 {
    text-align: center;
    font-size: 1.1rem;
  }
}
.job-listings .skeleton-job-card .skeleton-job-details p {
  background: linear-gradient(90deg, #9ca3af 0%, rgb(184.2067039106, 189.2122905028, 197.7932960894) 50%, #9ca3af 100%);
  background-size: 200% 100%;
  border-radius: 20px;
  font-size: 1rem;
  color: transparent;
  margin-bottom: 8px;
  max-width: 70%;
  animation: shimmer 5.5s infinite;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .skeleton-job-details p {
    text-align: center;
    font-size: 0.95rem;
  }
}
.job-listings .skeleton-job-card .skeleton-job-details .sk-job-type {
  background-color: rgb(249.1611374408, 248.8625592417, 254.1374407583);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
  display: flex;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .skeleton-job-details .sk-job-type {
    justify-content: center;
  }
}
.job-listings .skeleton-job-card .skeleton-job-details .sk-job-type .t-span {
  background: linear-gradient(90deg, #9ca3af 0%, rgb(184.2067039106, 189.2122905028, 197.7932960894) 50%, #9ca3af 100%);
  background-size: 200% 100%;
  padding: 2px 4px;
  border-radius: 20px;
  margin-right: 8px;
  animation: shimmer 5.5s infinite;
  color: transparent;
}
.job-listings .skeleton-job-card .skeleton-job-details .sk-job-tags {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .skeleton-job-details .sk-job-tags {
    justify-content: center;
  }
}
.job-listings .skeleton-job-card .skeleton-job-details .sk-job-tags .tag {
  background: linear-gradient(90deg, #9ca3af 0%, rgb(184.2067039106, 189.2122905028, 197.7932960894) 50%, #9ca3af 100%);
  background-size: 200% 100%;
  color: transparent;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  animation: shimmer 5.5s infinite;
}
.job-listings .skeleton-job-card .sk-view-job {
  margin-top: 1rem;
  align-self: center;
}
.job-listings .skeleton-job-card .sk-view-job .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  background: linear-gradient(90deg, #9ca3af 0%, rgb(184.2067039106, 189.2122905028, 197.7932960894) 50%, #9ca3af 100%);
  background-size: 200% 100%;
  color: transparent;
  cursor: default;
  animation: shimmer 5.5s infinite;
}
.job-listings .skeleton-job-card .sk-view-job .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .sk-view-job .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .job-listings .skeleton-job-card .sk-view-job {
    justify-self: center;
    margin-bottom: 24px;
  }
}

.testimonial-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .testimonial-grid {
    gap: 8px;
    padding: 0 8px;
  }
}
.testimonial-grid .testimonial {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #9e9e9e;
  display: inline-block;
  font-size: 16px;
  margin: 35px 10px 10px;
  max-width: 310px;
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  border-top: 5px solid #4f46e5;
}
@media (max-width: 768px) {
  .testimonial-grid .testimonial {
    margin: 25px 0 10px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .testimonial-grid .testimonial {
    max-width: 100%;
    margin: 20px 0 5px;
    font-size: 14px;
  }
}
.testimonial-grid .testimonial .testimonial-content {
  padding: 13% 10% 12%;
}
@media (max-width: 576px) {
  .testimonial-grid .testimonial .testimonial-content {
    padding: 8% 8% 8%;
  }
}
.testimonial-grid .testimonial .testimonial-content::before {
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #4f46e5;
  content: "\f10e";
  font-family: "FontAwesome";
  font-size: 32px;
  font-style: normal;
  left: 50%;
  line-height: 60px;
  position: absolute;
  top: -30px;
  width: 60px;
}
@media (max-width: 768px) {
  .testimonial-grid .testimonial .testimonial-content::before {
    font-size: 28px;
    line-height: 56px;
    width: 56px;
    top: -28px;
  }
}
@media (max-width: 576px) {
  .testimonial-grid .testimonial .testimonial-content::before {
    font-size: 24px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    top: -24px;
  }
}
.testimonial-grid .testimonial h3 {
  color: #666;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}
@media (max-width: 768px) {
  .testimonial-grid .testimonial h3 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .testimonial-grid .testimonial h3 {
    font-size: 16px;
    margin: 8px 0 4px;
  }
}
.testimonial-grid .testimonial h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}
@media (max-width: 768px) {
  .testimonial-grid .testimonial h4 {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .testimonial-grid .testimonial h4 {
    font-size: 12px;
  }
}
.testimonial-grid .testimonial blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 20px 0 20px;
}
@media (max-width: 768px) {
  .testimonial-grid .testimonial blockquote {
    margin: 15px 0 15px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .testimonial-grid .testimonial blockquote {
    margin: 12px 0 12px;
    font-size: 13px;
  }
}

.faq-container {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-list .faq-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.faq-list .faq-item .question {
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .faq-list .faq-item .question {
    font-size: 0.95rem;
  }
}
.faq-list .faq-item .question span {
  float: right;
  font-size: 1.1rem;
  color: #4f46e5;
  transition: transform 0.3s ease;
}
.faq-list .faq-item .question span.active {
  transform: rotate(45deg);
}
.faq-list .faq-item .answer {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
@media (max-width: 576px) {
  .faq-list .faq-item .answer {
    font-size: 0.95rem;
  }
}
.faq-list .faq-item.active .answer {
  /* JS will set the exact max-height dynamically; this provides a fallback */
  max-height: 1000px;
  opacity: 1;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.fj-hero {
  margin-top: 12px;
  height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(142.8104265403, 137.0734597156, 238.4265402844) 0%, #f8f9fa 50%, rgb(252.6673640167, 231.2071129707, 145.8326359833) 100%);
}
Optional subtle overlay for a soft glow effect .fj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.15), transparent 70%);
  pointer-events: none;
}
.fj-hero .fj-hero-content {
  text-align: center;
  color: rgb(32.6777251185, 24.2748815166, 172.7251184834);
  z-index: 2;
  padding: 0 1rem;
  margin-top: 48px;
}
.fj-hero .fj-hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .fj-hero .fj-hero-content h1 {
    font-size: 2.5rem;
  }
}
.fj-hero .fj-hero-content p {
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 24px;
  color: #111827;
  font-weight: 500;
}
@media (max-width: 768px) {
  .fj-hero .fj-hero-content p {
    font-size: 1rem;
  }
}
.fj-hero .fj-hero-content .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fj-hero .fj-hero-content .hero-buttons .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
}
.fj-hero .fj-hero-content .hero-buttons .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .fj-hero .fj-hero-content .hero-buttons .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.fj-hero .fj-hero-content .job-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}
.fj-hero .fj-hero-content .job-tags span {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.fj-hero .fj-hero-content .job-tags span:hover {
  background: #4f46e5;
  color: #fff;
}
.fj-hero .fj-hero-content .job-filter {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.fj-hero .fj-hero-content .job-filter .search-fields {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.fj-hero .fj-hero-content .job-filter .search-fields .input-group {
  flex: 1;
  position: relative;
}
.fj-hero .fj-hero-content .job-filter .search-fields .input-group i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #aaa;
}
.fj-hero .fj-hero-content .job-filter .search-fields .input-group input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fafafa;
  font-size: 0.95rem;
  outline: none;
}
.fj-hero .fj-hero-content .job-filter .search-fields .input-group input:focus {
  border-color: #c5a3f8;
  background: #fff;
}
.fj-hero .fj-hero-content .job-filter .search-fields .filter-btn {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  transition: background 0.3s ease;
}
.fj-hero .fj-hero-content .job-filter .search-fields .filter-btn:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .fj-hero .fj-hero-content .job-filter .search-fields .filter-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.fj-hero .fj-hero-content .job-filter .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.fj-hero .fj-hero-content .job-filter .filter-options select {
  flex: 1;
  min-width: 150px;
  padding: 0.7rem 1rem;
  border: 1px solid #666;
  border-radius: 20px;
  background-color: #fff;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
}
.fj-hero .fj-hero-content .job-filter .filter-options select:focus {
  border-color: #4f46e5;
  background: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .pagination {
    gap: 0.4rem;
  }
}
.pagination a,
.pagination .dots {
  text-decoration: none;
  color: #111827;
  border: 1px solid rgb(80.8928571429, 112.1428571429, 179.1071428571);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .pagination a,
  .pagination .dots {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}
.pagination a:hover {
  background-color: white;
  color: #4f46e5;
  border-color: rgb(185.3507109005, 181.7890995261, 244.7109004739);
}
.pagination .active {
  background-color: #4f46e5;
  color: white;
  border-color: #4f46e5;
  font-weight: 600;
}
.pagination .disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pagination .dots {
  border: none;
  background: none;
  color: rgb(63.4464285714, 89.5714285714, 145.5535714286);
  cursor: default;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .pagination .dots {
    padding: 0.4rem;
    font-size: 0.9rem;
  }
}
.pagination .page-btn {
  background-color: white;
  font-weight: 500;
}

.vj-hero {
  margin-top: 12px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(142.8104265403, 137.0734597156, 238.4265402844) 0%, #f8f9fa 50%, rgb(252.6673640167, 231.2071129707, 145.8326359833) 100%);
  margin-bottom: 0;
}
Optional subtle overlay for a soft glow effect .vj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.15), transparent 70%);
  pointer-events: none;
}
.vj-hero .vj-hero-content {
  text-align: center;
  color: rgb(32.6777251185, 24.2748815166, 172.7251184834);
  z-index: 2;
  padding: 0 1rem;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vj-hero .vj-hero-content .job-logo {
  width: 100px;
  height: 100px;
  border-radius: 200px;
  object-fit: cover;
  margin-bottom: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vj-hero .vj-hero-content .job-logo {
    width: 70px;
    height: 70px;
  }
}
.vj-hero .vj-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .vj-hero .vj-hero-content h1 {
    font-size: 1.5rem;
  }
}
.vj-hero .vj-hero-content h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .vj-hero .vj-hero-content h2 {
    font-size: 1rem;
  }
}
.vj-hero .vj-hero-content p {
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 24px;
  color: #111827;
}
@media (max-width: 768px) {
  .vj-hero .vj-hero-content p {
    font-size: 1rem;
  }
}
.vj-hero .vj-hero-content .job-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}
.vj-hero .vj-hero-content .job-tags span {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.vj-hero .vj-hero-content .job-tags span:hover {
  background: #4f46e5;
  color: #fff;
}

.v-job-tags {
  background-color: #4f46e5;
  padding: 24px 48px;
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: flex-end;
  margin-bottom: 128px;
  margin-top: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .v-job-tags {
    padding: 16px 8px;
    gap: 24px;
    margin-bottom: 64px;
  }
}
.v-job-tags span {
  color: #fff;
  font-size: 0.9rem;
  margin-right: 48px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .v-job-tags span {
    font-size: 0.8rem;
    margin-right: 0;
  }
}

.job-description {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.job-description .job-desc-content {
  line-height: 1.7;
  color: #111827;
  margin-bottom: 24px;
  max-width: 1200px;
}
.job-description .job-desc-content .section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .job-description .job-desc-content .section-header h2 {
    font-size: 1rem;
  }
}
.job-description .job-desc-content p {
  margin-bottom: 16px;
}
.job-description .job-desc-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: rgb(32.6777251185, 24.2748815166, 172.7251184834);
}
.job-description .job-desc-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 16px;
}
.job-description .job-desc-content ul li {
  margin-bottom: 0.5rem;
}
.job-description .floating-btn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 1000;
}
.job-description .floating-btn .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  border-radius: 35px;
}
.job-description .floating-btn .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .job-description .floating-btn .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .job-description .floating-btn .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.about-container {
  max-width: 1000px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 60px 20px;
}
.about-container .about-content {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.about-container .about-content h2 {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-container .about-content h2 {
    font-size: 2rem;
  }
}
.about-container .about-content p {
  text-align: left;
  font-size: 1.1rem;
  color: #111827;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-container .about-content p {
    font-size: 1rem;
  }
}
.about-container .about-content ul {
  text-align: left;
  margin-top: 10px;
}
.about-container .about-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.about-container .about-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f46e5;
}

.contact-section {
  padding: 5rem 1rem;
  border-radius: 20px;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contact-section .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.contact-section .contact-info {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-info h2 {
  color: #4f46e5;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-section .contact-info p {
  color: #111827;
  line-height: 1.6;
}
.contact-section .contact-info .info-details {
  margin-top: 1.5rem;
}
.contact-section .contact-info .info-details .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #111827;
}
.contact-section .contact-info .info-details .info-item i {
  font-size: 1.2rem;
  color: #4f46e5;
  background: white;
  padding: 0.7rem;
  border-radius: 50%;
}
.contact-section .contact-info .info-details .info-item a {
  color: #111827;
  text-decoration: none;
}
.contact-section .contact-info .info-details .info-item a:hover {
  color: #4f46e5;
}
.contact-section .contact-form {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-section .contact-form h2 {
  color: #4f46e5;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.contact-section .contact-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}
.contact-section .contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: rgb(1.5178571429, 2.1428571429, 3.4821428571);
  margin-bottom: 0.5rem;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(80.8928571429, 112.1428571429, 179.1071428571);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  outline: none;
}
.contact-section .contact-form .form-group textarea {
  resize: vertical;
}
.contact-section .contact-form .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 10px;
}
.contact-section .contact-form .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .contact-section .contact-form .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

.apply-for-you-white {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.apply-for-you-white .section-header {
  color: #4f46e5;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.apply-for-you-white .section-header h2 {
  color: #4f46e5;
}
.apply-for-you-white .section-header p {
  color: #4f46e5;
  margin-bottom: 24px;
  max-width: 650px;
}
.apply-for-you-white .section-header .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
}
.apply-for-you-white .section-header .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .apply-for-you-white .section-header .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Message Box Styles */
.message-box {
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.message-box.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: flex;
}

.message-box.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: flex;
}

.message-box button {
  background: none;
  border: none;
  font-size: 20px;
  color: inherit;
  cursor: pointer;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.blog-card {
  border-top: 5px solid #4f46e5;
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
}
.blog-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
}
.blog-card #time {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 24px;
}
.blog-card h3:hover {
  text-decoration: underline;
}
.blog-card p {
  color: #111827;
  margin-bottom: 24px;
}
.blog-card a {
  color: #4f46e5;
  font-weight: bold;
}
.blog-card a:hover {
  text-decoration: underline;
}

.blog-content-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.v-blog-container {
  max-width: 900px;
  width: 100%;
}

.blog-featured-image img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

.blog-article {
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.blog-article h2,
.blog-article h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.blog-share {
  margin-top: 40px;
  text-align: left;
}

.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.share-btn {
  width: 40px;
  height: 40px;
  background: #4f3df9;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.related-posts {
  margin-top: 60px;
}

.related-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.related-wrapper .blog-card h3 {
  font-size: 18px;
}

.hero-button .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
}
.hero-button .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .hero-button .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

.overview .container {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .overview .container {
    margin-bottom: 20px;
  }
}
.overview .container p {
  font-size: 1.2rem;
  color: #111827;
}
@media (max-width: 576px) {
  .overview .container p {
    font-size: 1rem;
  }
}

.step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  color: #4f46e5;
  margin-bottom: 24px;
  font-size: 3rem;
  background-color: rgb(227.8909952607, 226.5047393365, 250.9952606635);
  padding: 48px;
}
@media (max-width: 992px) {
  .step .step-number {
    font-size: 2.5rem;
    padding: 48px;
  }
}
@media (max-width: 576px) {
  .step .step-number {
    font-size: 2rem;
    padding: 24px;
  }
}

.pricing {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .pricing {
    padding: 20px;
  }
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
  }
}

.pricing-card {
  background-color: #4f46e5;
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 85%;
}
@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .pricing-card {
    padding: 20px;
    max-width: 100%;
  }
}
.pricing-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 576px) {
  .pricing-card h3 {
    font-size: 1.3rem;
  }
}
.pricing-card p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 576px) {
  .pricing-card p {
    font-size: 0.9rem;
  }
}
.pricing-card ul {
  list-style: disc;
  margin-bottom: 48px;
  margin-left: 15px;
}
.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}
@media (max-width: 576px) {
  .pricing-card ul li {
    font-size: 0.9rem;
  }
}
.pricing-card a {
  padding: 12px 24px;
  background-color: #e5e7eb;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  background-color: #fff;
  color: #4f46e5;
  text-align: center;
  margin-top: auto;
}
.pricing-card a:hover {
  background-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
  color: #fff;
}
.pricing-card a:hover {
  background-color: rgb(242.25, 242.25, 242.25);
  color: #4f46e5;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .apply-form {
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group label .error-icon {
  color: #ef4444;
  font-size: 0.9rem;
  display: none;
}
.form-group label.error .error-icon {
  display: inline;
}
@media (max-width: 576px) {
  .form-group label {
    font-size: 0.9rem;
  }
}
.form-group input,
.form-group select {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #4f46e5;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}
.form-group input.error:focus,
.form-group select.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group input.success,
.form-group select.success {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}
.form-group input.success:focus,
.form-group select.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
@media (max-width: 576px) {
  .form-group input,
  .form-group select {
    padding: 12px;
    font-size: 0.95rem;
  }
}
.form-group input[type=file] {
  padding: 16px;
  cursor: pointer;
}
.form-group input[type=file]::file-selector-button {
  background-color: #4f46e5;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  margin-right: 16px;
  transition: all 0.3s ease;
}
.form-group input[type=file]::file-selector-button:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}
@media (max-width: 576px) {
  .form-group input[type=file]::file-selector-button {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
}
.form-group input[readonly] {
  background-color: #f0f0f0;
  cursor: not-allowed;
  color: #666;
  font-weight: 600;
}
.form-group select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}
.form-group select option {
  color: #666;
  background-color: #fff;
}
.form-group .checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  padding: 16px;
  background-color: #f9fafb;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
}
@media (max-width: 576px) {
  .form-group .checkbox-group {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }
}
.form-group .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group .checkbox-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4f46e5;
}
.form-group .checkbox-item label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  margin: 0;
}
.form-group .checkbox-item label:hover {
  color: #4f46e5;
}
@media (max-width: 576px) {
  .form-group .checkbox-item label {
    font-size: 0.9rem;
  }
}
.form-group .error-message {
  font-size: 0.85rem;
  color: #ef4444;
  display: none;
  margin-top: -8px;
}
.form-group .error-message.show {
  display: block;
}

.btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 576px) {
  .btn-primary {
    padding: 16px 12px;
    font-size: 0.95rem;
  }
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px;
  background: linear-gradient(135deg, rgb(142.8104265403, 137.0734597156, 238.4265402844) 0%, #f8f9fa 50%, rgb(252.6673640167, 231.2071129707, 145.8326359833) 100%);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .login-page {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .login-page {
    padding: 16px;
  }
}

.form-container {
  background-color: #fff;
  padding: 64px;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .form-container {
    padding: 48px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .form-container {
    padding: 24px;
  }
}
.form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .form-container h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 576px) {
  .login-form {
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group label .error-icon {
  color: #ef4444;
  font-size: 0.9rem;
  display: none;
}
.form-group label.error .error-icon {
  display: inline;
}
.form-group input {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}
.form-group input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  outline: none;
}
.form-group input.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}
.form-group input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group input.success {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}
.form-group input.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
@media (max-width: 576px) {
  .form-group input {
    padding: 12px;
    font-size: 0.95rem;
  }
}
.form-group .error-message {
  font-size: 0.85rem;
  color: #ef4444;
  display: none;
  margin-top: -8px;
}
.form-group .error-message.show {
  display: block;
}

.forgot-pass {
  text-align: right;
  font-size: 0.9rem;
  margin-top: -16px;
}
.forgot-pass a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.forgot-pass a:hover {
  color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  text-decoration: underline;
}
@media (max-width: 576px) {
  .forgot-pass {
    font-size: 0.85rem;
  }
}

.btn-submit {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .btn-submit {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 576px) {
  .btn-submit {
    padding: 16px 12px;
    font-size: 0.95rem;
  }
}

.redirect-text {
  text-align: center;
  font-size: 0.95rem;
  color: #111827;
  margin-top: 16px;
}
.redirect-text a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.redirect-text a:hover {
  color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  text-decoration: underline;
}
@media (max-width: 576px) {
  .redirect-text {
    font-size: 0.9rem;
  }
}

.signup-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px;
  background: linear-gradient(135deg, rgb(142.8104265403, 137.0734597156, 238.4265402844) 0%, #f8f9fa 50%, rgb(252.6673640167, 231.2071129707, 145.8326359833) 100%);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .signup-section {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .signup-section {
    padding: 16px;
  }
}

.form-container {
  background-color: #fff;
  padding: 64px;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .form-container {
    padding: 48px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .form-container {
    padding: 24px;
  }
}
.form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .form-container h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 576px) {
  .signup-form {
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group label .error-icon {
  color: #ef4444;
  font-size: 0.9rem;
  display: none;
}
.form-group label.error .error-icon {
  display: inline;
}
.form-group input {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}
.form-group input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  outline: none;
}
.form-group input.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}
.form-group input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group input.success {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}
.form-group input.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
@media (max-width: 576px) {
  .form-group input {
    padding: 12px;
    font-size: 0.95rem;
  }
}
.form-group .error-message {
  font-size: 0.85rem;
  color: #ef4444;
  display: none;
  margin-top: -8px;
}
.form-group .error-message.show {
  display: block;
}

.password-requirements {
  display: none;
  background-color: #f3f4f6;
  padding: 16px;
  border-radius: 20px;
  margin-top: 8px;
}
.password-requirements.show {
  display: block;
}
.password-requirements h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
.password-requirements .requirement {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.password-requirements .requirement:last-child {
  margin-bottom: 0;
}
.password-requirements .requirement .requirement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.2s ease;
}
.password-requirements .requirement.met .requirement-icon {
  background-color: #10b981;
  border-color: #10b981;
  color: #fff;
}
.password-requirements .requirement.met {
  color: #10b981;
}

.btn-submit {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .btn-submit {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 576px) {
  .btn-submit {
    padding: 16px 12px;
    font-size: 0.95rem;
  }
}

.redirect-text {
  text-align: center;
  font-size: 0.95rem;
  color: #111827;
  margin-top: 16px;
}
.redirect-text a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.redirect-text a:hover {
  color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  text-decoration: underline;
}
@media (max-width: 576px) {
  .redirect-text {
    font-size: 0.9rem;
  }
}

.forgot-pass-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px;
  background: linear-gradient(135deg, rgb(142.8104265403, 137.0734597156, 238.4265402844) 0%, #f8f9fa 50%, rgb(252.6673640167, 231.2071129707, 145.8326359833) 100%);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .forgot-pass-page {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .forgot-pass-page {
    padding: 16px;
  }
}

.form-container {
  background-color: #fff;
  padding: 64px;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .form-container {
    padding: 48px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .form-container {
    padding: 24px;
  }
}
.form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .form-container h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 576px) {
  .login-form {
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-group label .error-icon {
  color: #ef4444;
  font-size: 0.9rem;
  display: none;
}
.form-group label.error .error-icon {
  display: inline;
}
.form-group input {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}
.form-group input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.form-group input.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}
.form-group input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group input.success {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}
.form-group input.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
@media (max-width: 576px) {
  .form-group input {
    padding: 12px;
    font-size: 0.95rem;
  }
}
.form-group .error-message {
  font-size: 0.85rem;
  color: #ef4444;
  display: none;
  margin-top: -8px;
}
.form-group .error-message.show {
  display: block;
}

.btn-submit {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .btn-submit {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 576px) {
  .btn-submit {
    padding: 16px 12px;
    font-size: 0.95rem;
  }
}

.redirect-text {
  text-align: center;
  font-size: 0.95rem;
  color: #111827;
  margin-top: 16px;
}
.redirect-text a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.redirect-text a:hover {
  color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  text-decoration: underline;
}
@media (max-width: 576px) {
  .redirect-text {
    font-size: 0.9rem;
  }
}

.dashboard-sidebar {
  width: 230px;
  background: #f8f9fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  height: calc(100vh - 48px);
  padding: 24px 0;
  position: fixed;
  left: 0;
  top: 48px;
}
@media (max-width: 992px) {
  .dashboard-sidebar {
    display: none;
  }
}
.dashboard-sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 48px;
}
.dashboard-sidebar .sidebar-menu .sidebar-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 24px;
  cursor: pointer;
  color: #111827;
  font-size: 16px;
  transition: 0.2s;
  font-weight: 500;
}
.dashboard-sidebar .sidebar-menu .sidebar-item i {
  font-size: 18px;
}
.dashboard-sidebar .sidebar-menu .sidebar-item:hover {
  background: rgb(246.2956521739, 246.9652173913, 248.3043478261);
}
.dashboard-sidebar .sidebar-menu .sidebar-item.active {
  background: rgb(240.6530805687, 239.9194312796, 252.8805687204);
  color: #4f46e5;
  font-weight: 600;
}
.dashboard-sidebar .sidebar-menu .sidebar-item.logout {
  margin-top: 48px;
  color: rgb(90.5648535565, 72.7615062762, 1.9351464435);
}

.dashboard-mini-sidebar {
  width: 70px;
  background: #f8f9fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  height: calc(100vh - 48px);
  padding: 24px 0;
  position: fixed;
  left: 0;
  top: 48px;
  display: none;
}
@media (max-width: 768px) {
  .dashboard-mini-sidebar {
    width: 60px;
  }
}
@media (max-width: 992px) {
  .dashboard-mini-sidebar {
    display: block;
  }
}
.dashboard-mini-sidebar .sidebar-collapsed {
  display: none;
  width: 70px;
  height: calc(100vh - 48px);
  padding: 24px 0;
  position: fixed;
  left: 0;
  top: 48px;
}
@media (max-width: 768px) {
  .dashboard-mini-sidebar .sidebar-collapsed {
    width: 60px;
  }
}
@media (max-width: 992px) {
  .dashboard-mini-sidebar .sidebar-collapsed {
    display: block;
  }
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li .active {
  background: #e0e7ff;
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li .active i {
  color: #4f46e5;
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  /* TOOLTIP */
}
@media (max-width: 768px) {
  .dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a {
    width: 45px;
    height: 45px;
  }
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a:hover {
  background: #e0e7ff;
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a:hover i {
  color: #4f46e5;
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a i {
  font-size: 18px;
  color: #111827;
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 60px;
  background: #4f46e5;
  color: #fff;
  padding: 4px 8px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  top: 50%;
  transition: 0.2s ease;
  z-index: 999;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a::after {
    left: 55px;
    font-size: 0.75rem;
  }
}
.dashboard-mini-sidebar .sidebar-collapsed .sidebar-icons li a:hover::after {
  opacity: 1;
}

.dashboard-footer {
  margin-left: 230px;
  padding: 24px 64px;
  border-top: 1px solid #ddd;
  background: #fff;
  color: #9ca3af;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .dashboard-footer {
    margin-left: 60px;
  }
}
@media (max-width: 768px) {
  .dashboard-footer {
    margin-left: 0;
    padding: 16px 24px;
    padding-left: 48px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
.dashboard-footer span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .dashboard-footer span {
    font-size: 0.8rem;
  }
}
.dashboard-footer a {
  color: #4f46e5;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 768px) {
  .dashboard-footer a {
    font-size: 0.8rem;
  }
}
.dashboard-footer a:hover {
  text-decoration: underline;
}

.b404-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.b404-logo img {
  width: 200px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .b404-logo img {
    width: 150px;
  }
}

.b404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
  height: 65vh;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .b404-content {
    margin-top: 20px;
    padding: 0 20px;
  }
}
.b404-content h1 {
  font-size: 100px;
  color: #333;
}
@media (max-width: 768px) {
  .b404-content h1 {
    font-size: 50px;
  }
}
.b404-content p {
  font-size: 20px;
  color: #666;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .b404-content p {
    font-size: 16px;
  }
}
.b404-content .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  width: auto;
}
.b404-content .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .b404-content .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

.dashboard-wrapper {
  display: flex;
  width: 100%;
  padding-top: 48px;
}

.dashboard-content {
  margin-top: 50px;
  margin-left: 230px;
  padding: 48px 64px;
  width: calc(100% - 230px);
  overflow: hidden;
}
@media (max-width: 992px) {
  .dashboard-content {
    margin-left: 50px;
    width: 100%;
    padding: 24px 30px;
  }
}
@media (max-width: 768px) {
  .dashboard-content {
    padding: 24px 20px;
  }
}
.dashboard-content h1 {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}
@media (max-width: 768px) {
  .dashboard-content h1 {
    font-size: 20px;
  }
}

.empty-state-card {
  background: #fff;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  position: relative;
}
@media (max-width: 768px) {
  .empty-state-card {
    padding: 24px;
  }
}
.empty-state-card .empty-content {
  text-align: center;
}
.empty-state-card .empty-content h2 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111827;
}
@media (max-width: 768px) {
  .empty-state-card .empty-content h2 {
    font-size: 18px;
  }
}
.empty-state-card .empty-content p {
  color: #9ca3af;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .empty-state-card .empty-content p {
    font-size: 0.9rem;
  }
}
.empty-state-card .bell-icon {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 28px;
  background: #e0e7ff;
  padding: 8px;
  border-radius: 50%;
  color: #4f46e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .empty-state-card .bell-icon {
    font-size: 24px;
    width: 35px;
    height: 35px;
    right: 16px;
    top: 16px;
  }
}

.btn-primary {
  background: #4f46e5;
  color: #fff;
  padding: 16px 48px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 8px 24px;
    font-size: 0.9rem;
  }
}
.btn-primary:hover {
  background: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}

.alert-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 24px;
  z-index: 1999;
  width: 90%;
  max-width: 500px;
  display: none;
  flex-direction: column;
  gap: 16px;
}
.alert-modal.active {
  display: flex;
}
.alert-modal .alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.alert-modal .alert-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.alert-modal .alert-header .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}
.alert-modal .alert-header .close-btn:hover {
  color: #4f46e5;
}
.alert-modal .subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 16px;
}
.alert-modal .alert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.alert-modal .alert-grid .field select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  color: #111827;
}
.alert-modal .alert-grid .field select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
@media (max-width: 576px) {
  .alert-modal .alert-grid {
    grid-template-columns: 1fr;
  }
}
.alert-modal .email-row {
  margin: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  text-align: center;
}
.alert-modal .email-row .email-text {
  color: #4f46e5;
  font-weight: 600;
}
.alert-modal .frequency .field select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  color: #111827;
}
.alert-modal .frequency .field select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.alert-modal .create-btn {
  background-color: #4f46e5;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.alert-modal .create-btn:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}

.dashboard-wrapper.modal-open {
  overflow: hidden;
  filter: blur(3px);
  z-index: 999;
}

#profile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5;
}
@media (max-width: 768px) {
  #profile-title {
    font-size: 1.3rem;
  }
}

#profile-subtext {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #profile-subtext {
    font-size: 0 nine rem;
  }
}

.job-profile {
  overflow: hidden;
  width: 100%;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.profile-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-form .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}
@media (max-width: 768px) {
  .profile-form .form-group label {
    font-size: 0.9rem;
  }
}
.profile-form .form-group input,
.profile-form .form-group select,
.profile-form .form-group textarea {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  color: #111827;
}
@media (max-width: 768px) {
  .profile-form .form-group input,
  .profile-form .form-group select,
  .profile-form .form-group textarea {
    font-size: 0.8rem;
  }
}
.profile-form .form-group input:focus,
.profile-form .form-group select:focus,
.profile-form .form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.profile-form .form-group textarea {
  resize: none;
}
.profile-form .form-group small {
  font-size: 0.85rem;
  color: #666;
}
.profile-form .skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-form .skills-container .skill-tag {
  background-color: #4f46e5;
  color: #fff;
  padding: 8px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .profile-form .skills-container .skill-tag {
    font-size: 0.8rem;
  }
}
.profile-form .skills-container .skill-tag .remove-skill {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.profile-form .checkbox-group {
  display: flex;
  gap: 16px;
}
.profile-form .checkbox-group .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-form .checkbox-group .checkbox-item input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4f46e5;
}
.profile-form .checkbox-group .checkbox-item label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
}
.profile-form .experience-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-form .experience-container .experience-item {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 20px;
  position: relative;
}
.profile-form .experience-container .experience-item .remove-experience {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}
.profile-form .experience-container .experience-item .remove-experience:hover {
  color: #4f46e5;
}
.profile-form .add-experience {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  align-self: center;
  width: auto;
}
.profile-form .add-experience:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .profile-form .add-experience {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.profile-form #cv-upload {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  color: #111827;
}
@media (max-width: 768px) {
  .profile-form #cv-upload {
    font-size: 0.95rem;
  }
}
.profile-form #cv-upload:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.profile-form .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  align-self: center;
  width: auto;
}
.profile-form .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .profile-form .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

.profile-photo-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-photo-group .profile-photo-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border: 2px dashed #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .profile-photo-group .profile-photo-wrapper {
    width: 130px;
    height: 130px;
  }
}
.profile-photo-group .profile-photo-wrapper:hover {
  border-color: #4f46e5;
  background-color: rgb(249.1611374408, 248.8625592417, 254.1374407583);
}
.profile-photo-group .profile-photo-wrapper .profile-photo-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}
.profile-photo-group .profile-photo-wrapper .profile-photo-label i {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 8px;
}
.profile-photo-group .profile-photo-wrapper .profile-photo-label span {
  font-weight: 500;
}
.profile-photo-group .profile-photo-wrapper input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.account-settings {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}
.account-settings h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .account-settings h2 {
    font-size: 1rem;
  }
}
.account-settings .account-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.account-settings .account-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-settings .account-form .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}
@media (max-width: 768px) {
  .account-settings .account-form .form-group label {
    font-size: 0.9rem;
  }
}
.account-settings .account-form .form-group input {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  color: #111827;
}
@media (max-width: 768px) {
  .account-settings .account-form .form-group input {
    font-size: 0.8rem;
  }
}
.account-settings .account-form .form-group input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.account-settings .account-form .form-group .error-message {
  font-size: 0.85rem;
  color: #ef4444;
  display: none;
}
@media (max-width: 768px) {
  .account-settings .account-form .form-group .error-message {
    font-size: 0.75rem;
  }
}
.account-settings .account-form .btn-primary {
  padding: 12px 24px;
  background-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  align-self: center;
  width: auto;
}
.account-settings .account-form .btn-primary:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
  color: #fff;
}
@media (max-width: 768px) {
  .account-settings .account-form .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.account-settings hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 24px 0;
  margin: 50px 0;
}/*# sourceMappingURL=main.css.map */