:root {
  --primary-blue: #1b3d6d;
  --secondary-blue: #2b5188;
  --accent-orange: #ff6b00;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--white);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(102, 102, 102, 0.178),
    transparent
  );
  margin: 20px 0;
}

.header-hero {
  background: linear-gradient(rgba(43, 43, 43, 0.41), rgba(19, 87, 212, 0.7)),
    url("../assets/media/header-main.png");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

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

/* Navbar Styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.top-nav {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.top-nav-left a {
  color: var(--gray);
  text-decoration: none;
  margin-right: 20px;
}

.top-nav-right a {
  color: var(--gray);
  text-decoration: none;
  margin-left: 10px;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 70px;
}

.nav-logo {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar.scrolled .nav-logo {
  color: #333;
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-links a.nav-item {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  display: inline-block;
  text-align: center;
  position: relative;
}

.nav-links a.nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a.nav-item:hover::after {
  width: calc(
    100% - 24px
  ); /* 24px adalah total padding kiri dan kanan (8px + 8px) */
}

.login-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-content {
  margin-top: 90px;
}

.hero-section {
  background-image: url("media/header-main.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 20px;
}

/* Variasi hero-section dengan gambar berbeda */
.hero-section.karier {
  background-image: url("media/header-karier.png");
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 0px;
  padding: 2%;
  line-height: 1.2;
}

.service-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.online-service-box,
.office-service-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.bg-boxes {
  background-image: url("media/boxes-bg.png");
  background-size: cover;
  background-position: center;
  color: rgba(27, 61, 109, 0.9);
  padding: 60px 20px;
}

.bg-boxes-1 {
  background-image: url("media/boxes-bg-1.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.service-icons {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.service-icons img {
  height: 50px;
}

.info-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
}

.number {
  font-size: 24px;
  font-weight: 700;
}

.statistics-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-item img {
  height: 90px;
}

.stat-numbers {
  display: flex;
  flex-direction: column;
}

.big-number {
  font-size: 28px;
  font-weight: 700;
}

.sabrina-box {
  margin-top: 30px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-blue);
}

.contact-info i {
  font-size: 16px;
}

.verified {
  color: #00ff00;
}

.data-info {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
}

.action-section {
  background: white;
  padding: 20px 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.action-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.action-text {
  font-weight: 500;
  color: var(--primary-blue);
}

.action-dropdown select {
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  min-width: 200px;
}

.bantuan-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 100%;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

/* Add responsive design for smaller screens */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Footer Styles */
.main-footer {
  background-color: var(--white);
  padding-top: 60px;
  border-top: 1px solid #eee;
  font-size: 12px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary-blue);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.company-name {
  font-weight: 500;
  margin-bottom: 10px;
}

.location {
  color: #666;
  line-height: 1.6;
}

.location i {
  margin-right: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  padding-top: 5px;
}

.social-link {
  color: var(--primary-blue);
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--secondary-blue);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  background-color: var(--primary-blue);
  padding: 20px 0;
  color: var(--white);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 0.8;
}

.separator {
  color: var(--white);
  opacity: 0.5;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
}

.mega-dropdown {
  display: none;
  position: fixed;
  top: 150px;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mega-dropdown::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.dropdown::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.dropdown:hover .mega-dropdown,
.mega-dropdown:hover {
  display: block;
  animation: fadeInDown 0.5s ease-in-out;
  opacity: 1;
  visibility: visible;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item.dropdown-toggle {
  position: relative;
}

.nav-item.dropdown-toggle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-item.dropdown-toggle:hover::after {
  width: calc(100% - 24px);
}

/* Tambahkan efek hover untuk dropdown juga */
.dropdown:hover .nav-item.dropdown-toggle::after {
  width: calc(100% - 24px);
}

.mega-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 0 20px;
  position: relative;
}

.dropdown-section {
  min-width: 150px;
}

.dropdown-section h4 {
  color: #e31837;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.dropdown-section a {
  display: block;
  color: #333 !important;
  padding: 3px 0;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .mega-content {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mega-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-dropdown {
    top: 110px;
  }

  .mega-dropdown::before {
    top: -20px;
    height: 20px;
  }

  .dropdown::after,
  .nav-item.dropdown-toggle::after {
    bottom: -20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .mega-content {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 40px 0;
  /* background-color: var(--white); */
  background-image: url("media/element-01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.why-choose-section-no-bg {
  padding: 40px 0;
  /* background-color: var(--white); */
  background-image: color(#ffffff);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.section-title {
  padding-top: 40px;
  font-size: 42px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
}

.section-description {
  color: #6c757d;
  max-width: 800px;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 16px;
}

.section-description-justify {
  color: #6c757d;
  max-width: auto;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 40px;
  color: var(--primary-blue);
}

.feature-content {
  flex: 1;
}

.feature-item h3 {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-item p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 14px;
  margin: 0;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
}

.learn-more-btn i {
  font-size: 18px;
}

.learn-more-btn:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .feature-item {
    gap: 15px;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
  }

  .feature-icon i {
    font-size: 30px;
  }
}

.service-selector {
  position: relative;
  margin-top: -50px;
  margin-bottom: 0;
  z-index: 10;
}

.selector-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 15px;
}

.selector-label {
  color: #e31837;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.selector-dropdown {
  flex: 1;
  position: relative;
}

.selector-dropdown select {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  appearance: none;
  background: white;
  cursor: pointer;
}

.selector-dropdown i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.bantuan-btn {
  background: #f7931e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.bantuan-btn:hover {
  background: #e88616;
}

@media (max-width: 768px) {
  .selector-content {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .selector-dropdown {
    width: 100%;
  }

  .bantuan-btn {
    width: 100%;
  }
}

/* Slideshow Styles */
.slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: visible;
  margin: 60px 0;
  padding: 0;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  position: absolute;
  width: 95%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.6) translateX(0);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide.prev {
  opacity: 0.7;
  transform: scale(0.9) translateX(-120%);
  z-index: 1;
  width: 43%;
}

.slide.next {
  opacity: 0.7;
  transform: scale(0.9) translateX(120%);
  z-index: 1;
  width: 43%;
}

.slideshow-controls {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slideshow-dot.active {
  background-color: #666;
  transform: scale(1.2);
}

/* Hide arrows since we're using dot navigation */
.slideshow-arrow {
  display: none;
}

/* Mobile Slideshow Styles */
@media (max-width: 768px) {
  .slideshow-wrapper {
    height: 250px;
    margin: 30px 0;
    overflow: hidden;
  }

  .slide {
    width: 100%;
    transform: scale(1) translateX(100%);
  }

  .slide.active {
    transform: scale(1) translateX(0);
    width: 100%;
  }

  .slide.prev {
    transform: scale(1) translateX(-100%);
    opacity: 0;
    width: 100%;
  }

  .slide.next {
    transform: scale(1) translateX(100%);
    opacity: 0;
    width: 100%;
  }

  .slideshow-controls {
    bottom: 10px;
  }

  .slideshow-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .slideshow-dot.active {
    background-color: white;
  }
}

/* Touch Interaction Styles */
@media (hover: none) and (pointer: coarse) {
  .slideshow-wrapper {
    touch-action: pan-y pinch-zoom;
  }

  .slide {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 10px;
  }

  .top-nav {
    display: none; /* Hide top nav on mobile */
  }

  .main-nav {
    padding: 10px 0;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: left;
    padding: 12px 15px !important;
  }

  .dropdown .mega-dropdown {
    position: static;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
  }

  .mega-content {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  /* Slideshow Mobile */
  .slideshow-wrapper {
    height: 300px;
    margin: 30px -15px;
  }

  .slide {
    width: 100%;
  }

  .slide.prev,
  .slide.next {
    opacity: 0;
    transform: scale(0.8) translateX(0);
  }

  /* Statistics Box Mobile */
  .statistics-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .stat-item img {
    height: 60px;
  }

  /* Service Selector Mobile */
  .service-selector {
    margin-top: -30px;
  }

  .selector-content {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .selector-label {
    text-align: center;
  }

  .selector-dropdown select {
    width: 100%;
  }

  /* Why Choose Section Mobile */
  .why-choose-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .section-description {
    font-size: 14px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .feature-icon {
    margin: 0 auto;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 15px;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 15px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .separator {
    display: none;
  }
}

/* Add hamburger menu button */
.mobile-menu-toggle {
  display: none;
  padding: 10px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-auth {
    display: block;
    margin-left: auto;
  }
}

/* Mobile Slideshow and Statistics Layout */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 15px;
  }

  .slideshow-wrapper {
    height: 220px;
    margin: 30px 0;
    overflow: hidden;
    width: 48%;
    float: left;
  }

  .statistics-box {
    width: 48%;
    float: right;
    margin: 30px 0;
    padding: 15px;
  }

  /* Clear float */
  .hero-content::after {
    content: "";
    display: table;
    clear: both;
  }

  .slide {
    width: 100%;
    border-radius: 10px;
  }

  .slide img {
    border-radius: 10px;
  }

  .slideshow-controls {
    bottom: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    border-radius: 20px;
    width: auto;
    min-width: 80px;
  }

  .slideshow-dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }

  /* Statistics box adjustments */
  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .stat-item img {
    height: 40px;
    margin-bottom: 10px;
  }

  .stat-numbers {
    text-align: center;
  }

  .big-number {
    font-size: 20px;
  }

  .label {
    font-size: 12px;
  }

  /* Sabrina box adjustments */
  .sabrina-box {
    clear: both;
    padding-top: 20px;
  }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
  .slideshow-wrapper,
  .statistics-box {
    width: 100%;
    float: none;
    margin: 15px 0;
  }

  .slideshow-wrapper {
    height: 200px;
  }
}

/* Group Network Section */
.group-network {
  padding: 60px 0;
  background: #f8f9fa;
  overflow: hidden;
}

.group-network .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.marquee-title {
  padding-top: 10px;
  font-size: 25px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 30px;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 200px;
  transition: all 0.3s ease;
  /* filter: grayscale(100%) opacity(0.7); */
  cursor: pointer;
}

.marquee-item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

.marquee-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .group-network {
    padding: 40px 0;
  }

  .marquee-item {
    flex: 0 0 150px;
  }

  .marquee-content {
    gap: 30px;
  }
}

.nav-auth .dropdown {
  position: relative;
}

.nav-auth .dropdown-menu {
  position: absolute;
  top: 130%;
  right: 0;
  background: white;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: none;
  z-index: 1000;
  text-align: center;
}

.nav-auth .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-auth .dropdown-item {
  display: block;
  padding: 10px 15px;
  color: var(--primary-blue);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-auth .dropdown-item:hover {
  background-color: var(--gray-light);
}

/* Karier Page Styles */

.career-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.career-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
}

.career-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.job-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.job-divider {
  margin: 15px -20px;
  border: 0;
  border-top: 1px solid #eee;
}

.apply-btn {
  text-align: center;
  margin-top: auto;
  background-color: var(--primary-blue);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: var(--secondary-blue);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.job-header h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
}

.job-type {
  background: #e3f2fd;
  color: #1976d2;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
}

.job-details {
  margin-bottom: 20px;
}

.job-details p {
  color: #666;
  margin: 5px 0;
  font-size: 0.9rem;
}

.job-details i {
  margin-right: 8px;
  color: #1976d2;
}

.job-description h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0px;
}

.job-description ul {
  list-style: none;
  padding-left: 0;
}

.job-description ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #666;
}

.job-description ul li:before {
  content: "•";
  color: #1976d2;
  position: absolute;
  left: 0;
}

.why-join-section {
  padding: 60px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .career-hero {
    padding: 60px 0;
  }

  .career-hero h1 {
    font-size: 2rem;
  }

  .job-listings {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Login & Register Styles */
.login-form,
.register-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-blue);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(27, 61, 109, 0.1);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-blue);
}

.btn-lihat-lamaran {
  background-color: rgb(29, 154, 192);
  margin-top: 5px;
  list-style: none;
  color: #fff;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

/* Header Hero untuk Login/Register */

.header-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  padding-top: 40px;
}

.header-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-form,
  .register-form {
    margin: 30px 15px;
    padding: 20px;
  }

  .header-hero {
    height: 200px;
    margin-top: 80px;
  }

  .header-hero h1 {
    font-size: 28px;
  }

  .header-hero p {
    font-size: 14px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Dropdown Menu User Styles */
.nav-auth .dropdown {
  position: relative;
}

.nav-auth .login-btn {
  background: var(--accent-orange);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-auth .login-btn:hover {
  background: #e65c00;
}

.nav-auth .login-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-auth .dropdown:hover .login-btn i {
  transform: rotate(180deg);
}

.nav-auth .dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-auth .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-auth .dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.nav-auth .dropdown-item:last-child {
  border-bottom: none;
}

.nav-auth .dropdown-item:hover {
  background: #f8f9fa;
  color: var(--accent-orange);
  padding-left: 25px;
}

/* Responsive styles for dropdown */
@media (max-width: 768px) {
  .nav-auth {
    display: block;
    margin-left: auto;
  }

  .nav-auth .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
  }

  .nav-auth .login-btn {
    padding: 6px 15px;
    font-size: 13px;
  }

  .nav-auth .dropdown-item {
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Profile Form Styles */
.profile-form {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-control-plaintext {
  width: 100%;
  padding: 12px 15px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  color: #666;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .profile-form {
    margin: 30px 15px;
    padding: 20px;
  }
}

.no-jobs-message {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 500px;
}

.no-jobs-message i {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 20px;
}

.no-jobs-message p {
  color: #6c757d;
  margin: 10px 0;
}

.qualification-preview {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.qualification-preview:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, #fff);
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.job-details p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
}

.job-details i {
  color: var(--primary-blue);
}

/* Job Detail Styles */
/* Custom File Input Styles */
input[type="file"] {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="file"]:hover {
  background: #e9ecef;
  border-color: var(--primary-blue);
}

input[type="file"]::file-selector-button {
  padding: 8px 16px;
  margin-right: 16px;
  border: none;
  border-radius: 4px;
  background-color: var(--accent-orange);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
  background-color: var(--secondary-blue);
}

input[type="file"]:has(:not(:placeholder-shown))::before {
  content: attr(data-text);
}

.job-detail-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.back-button {
  margin-bottom: 40px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  text-decoration: none !important;
}

.btn-back:hover {
  color: var(--secondary-blue);
}

.job-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.job-detail-header h1 {
  color: var(--primary-blue);
  margin: 0;
  font-size: 2rem;
}

.job-status {
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
}

.status-open {
  background-color: #28a745;
  color: white;
}

.status-closed {
  background-color: #dc3545;
  color: white;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

.meta-item i {
  color: var(--primary-blue);
}

.job-section {
  margin-bottom: 20px;
}

.job-section h2 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.section-content {
  color: #444;
}

.section-content p {
  margin: 5px 0;
}

.section-content ul {
  margin: 5px 0;
  padding-left: 20px;
}

.section-content li {
  margin: 3px 0;
}

.job-action {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  text-align: center;
}

.alert {
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.alert-info {
  background-color: #cce5ff;
  border: 1px solid #b8daff;
  color: #004085;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

@media (max-width: 768px) {
  .job-detail-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .job-meta {
    gap: 15px;
  }

  .meta-item {
    width: 100%;
  }
}

.form-text {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 0.9em;
}

.form-check {
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.form-check input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.form-check label {
  color: #444;
  line-height: 1.4;
  display: inline-block;
  vertical-align: top;
  max-width: calc(100% - 30px);
}

.current-file {
  margin-top: 10px;
  padding: 10px;
  background: #e9ecef;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #495057;
}

.current-file i {
  color: var(--primary-blue);
}

/* Hero Section */
.news-hero {
  background: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
  padding: 48px 0 32px 0;
  text-align: center;
}
.news-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.news-hero p {
  color: #555;
  font-size: 1.2rem;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.news-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 8px;
  display: flex;
  gap: 16px;
}
.news-content h3 {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}
.news-excerpt {
  color: #444;
  margin-bottom: 16px;
  flex: 1;
}
.read-more {
  align-self: flex-start;
  background: #2b5cb8;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.read-more:hover {
  background: #1d3e7a;
}

/* Kategori */
.news-categories {
  margin: 48px 0 0 0;
}
.categories-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.category-item {
  background: #f1f5fa;
  border-radius: 8px;
  padding: 24px 32px;
  text-align: center;
  text-decoration: none;
  color: #2b5cb8;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
}
.category-item i {
  font-size: 2rem;
  margin-bottom: 8px;
}
.category-item:hover {
  background: #2b5cb8;
  color: #fff;
}

/* Alert Card Styles */
.alert-card {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.alert-card.alert-danger {
  background-color: #fff5f5;
  border-left: 4px solid #e53e3e;
}

.alert-card.alert-success {
  background-color: #f0fff4;
  border-left: 4px solid #38a169;
}

.alert-icon {
  margin-right: 1rem;
  font-size: 1.5rem;
}

.alert-card.alert-danger .alert-icon {
  color: #e53e3e;
}

.alert-card.alert-success .alert-icon {
  color: #38a169;
}

.alert-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.alert-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-content p a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.alert-content p a:hover {
  opacity: 0.8;
}

.alert-card.alert-success .alert-content p a {
  color: #38a169;
}

.alert-card.alert-danger .alert-content p a {
  color: #e53e3e;
}
