body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #fff;
  color: #002147;
  padding: 20px;
}

.header-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* hero section */
.hero {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #002147;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #444;
}

.btn {
  background-color: #0078d4;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

/* .btn {
  background-color: #FF5722;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e64a19;
} */

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1em;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .hero-image {
    margin-top: 30px;
  }
}



/* hero */

/* .btn {
  background-color: #0078d4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
} */

.cookie-banner {
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.cookie-banner p {
  margin-bottom: 10px;
}

.admissions-overview, .college-admissions, .tuition-financial-aid, .life-at-hbku, .campus-map {
  padding: 40px 20px;
  background-color: #fff;
  margin-bottom: 20px;
}

.admissions-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.admissions-card {
  flex: 1;
  min-width: 280px;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
}

.admissions-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.college-links, .college-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .header-container, .admissions-section, .college-links, .college-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 2em;
  }
}

/* tuition */
.tuition-financial-aid {
  background: linear-gradient(to right, #0d47a1, #1976d2);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.content {
  max-width: 600px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn-coba {
  background-color: white;
  color: #1976d2;
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-coba:hover {
  background-color: #f0f0f0;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8em;
  }

  p {
    font-size: 1em;
  }

  .btn-coba {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* life at hbku */

.life-at-hbku {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.content {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.content h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #002147;
}

.content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.btn-life {
  background-color: #0078d4;
  color: white;
  padding: 10px 20px;
  font-size: 1em;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-life:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .content h2 {
    font-size: 1.5em;
  }

  .content p {
    font-size: 1em;
  }
}

/* learn */


.campus-map {
  padding: 40px 20px;
  background-color: #fff;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.text-content {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.text-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #002147;
}

.text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}



.image-content {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content h2 {
    font-size: 1.5em;
  }

  .text-content p {
    font-size: 1em;
  }
}

/* stats */


.facts-and-figures {
  /* background-image: url('../images/hbku/fact-bg.avif'); */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  /* background: #2063af; */
  background: linear-gradient(to right, #0d47a1, #1976d2);
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 8px;
  max-width: 1000px;
  margin: auto;
}

.facts-and-figures h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

/* Animasi angka naik (opsional) */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.stat {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat h2 {
  font-size: 3em;
  margin: 0;
  font-weight: bold;
  color: #ffffff;
}

.stat p {
  font-size: 1.2em;
  margin-top: 10px;
  color: #dddddd;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .stats {
    gap: 30px;
  }

  .stat h2 {
    font-size: 2.5em;
  }

  .stat p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .facts-and-figures h1 {
    font-size: 2em;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .stat {
    max-width: 300px;
  }

  .stat h2 {
    font-size: 2.2em;
  }

  .stat p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 30px 15px;
  }

  .facts-and-figures h1 {
    font-size: 1.8em;
  }

  .stat h2 {
    font-size: 2em;
  }

  .stat p {
    font-size: 0.95em;
  }
}

/* footer */
.hbku-footer {
  background-color: #002147;
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo-social {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.social-icons a:hover img {
  opacity: 0.7;
}

.newsletter {
  flex: 1;
  min-width: 250px;
}

.newsletter h3 {
  margin-bottom: 10px;
}

.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  flex: 1;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.link-group {
  flex: 1;
  min-width: 200px;
}

.link-group h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.link-group ul {
  list-style: none;
  padding: 0;
}

.link-group li {
  margin-bottom: 8px;
}

.link-group a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.link-group a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
}

.footer-policy-links a {
  margin-left: 15px;
  color: #ccc;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top, .footer-links, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input, .newsletter button {
    width: 100%;
  }

  .footer-policy-links a {
    display: block;
    margin: 5px 0;
  }
}

/* baru */

.kasir-cerdas-promo {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.kasir-cerdas-promo .container {
  max-width: 700px;
  margin: 0 auto;
}

.kasir-cerdas-promo h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #002147;
  font-weight: 600;
}

.kasir-cerdas-promo p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #444;
  line-height: 1.5;
}

.btn-demo {
  background-color: #0078d4;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-demo:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .kasir-cerdas-promo h2 {
    font-size: 1.8em;
  }

  .kasir-cerdas-promo p {
    font-size: 1em;
  }

  .btn-demo {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}

/* baru */
/* Base */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.logo {
  height: 40px;
}

/* Navigation */
/* === Shared Navigation Styles === */
.auth-group{
  display: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #002147;
  font-weight: 600;
}

/* === Desktop: Header Right === */
.header-right {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.header-right li {
  list-style: none;
}

.mobile-auth a {
  color: #0078d4;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid #0078d4;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.mobile-auth a:hover {
  background-color: #c4ecff;
  color: #4d4d4d;
}

.mobile-auth-regis a {
  padding: 8px 16px;
  background-color: #466DC9;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  font-size: 15px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(70, 109, 201, 0.15);
}

.mobile-auth-regis a:hover {
  background-color: #3456a3;
  box-shadow: 0 6px 12px rgba(70, 109, 201, 0.25);
}

/* === Hamburger Icon === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* === Close Button === */
.close-button {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  z-index: 20;
}

/* === Mobile Menu Styles === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  .close-button {
    display: block;
  }

  .header-right {
    display: none;
  }

  /* === Mobile Auth Buttons === */
  .auth-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
  }

  .btn-auth {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    width: 160px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .btn-auth.login {
    background-color: transparent;
    color: #0078d4;
    border: 2px solid #0078d4;
  }

  .btn-auth.login:hover {
    background-color: #c4ecff;
    color: #4d4d4d;
  }

  .btn-auth.register {
    background-color: #466DC9;
    color: #fff;
    box-shadow: 0 4px 10px rgba(70, 109, 201, 0.15);
  }

  .btn-auth.register:hover {
    background-color: #3456a3;
    box-shadow: 0 6px 12px rgba(70, 109, 201, 0.25);
  }
}



/* baru  */
/* --- Pricing Section --- */



.price-box {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  max-width: 320px;
  margin: 0 30px 30px 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.price-box:hover {
  transform: translateY(-5px);
}

.price-box.highlight {
  border-color: #36c66e;
  box-shadow: 0 6px 14px rgba(54, 198, 110, 0.3);
}

.price-box h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.price-box p {
  font-size: 1.2rem;
  color: #36c66e;
  font-weight: bold;
  margin-bottom: 15px;
}

.price-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.price-box ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.price-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #36c66e;
  font-weight: bold;
}

.btn-pro {
  display: inline-block;
  padding: 10px 20px;
  background-color: #36c66e;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn-pro:hover {
  background-color: #2ca95b;
}

/* baru */
.fitur-unggulan-kasir-cerdas {
  padding: 60px 20px;
  background-color: #fff;
  /* font-family: 'Segoe UI', sans-serif; */
}

.fitur-unggulan-kasir-cerdas h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.fitur-unggulan-kasir-cerdas .subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 960px) {
  .grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3x2 {
    grid-template-columns: 1fr;
  }
}

.fitur-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.fitur-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: #0078d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-wrapper .icon {
  width: 32px;
  height: 32px;
}

.fitur-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.fitur-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}

.fitur-card a {
  font-size: 14px;
  color: #0078d4;
  text-decoration: none;
}

/* baru */
.fitur-unggulan-kasir-cerdas {
  padding: 60px 20px;
  background-color: #fff;
  /* font-family: 'Segoe UI', sans-serif; */
}

.fitur-unggulan-kasir-cerdas h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.fitur-unggulan-kasir-cerdas .subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.pricing-section {
  padding: 60px 20px;
  background-color: #fff;
  /* font-family: 'Segoe UI', sans-serif; */
}

.pricing-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.pricing-section .subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* .pricing-section {
  background-color: #f9fafc;
  padding: 60px 20px;
  font-family: 'Nunito', sans-serif;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.pricing-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
} */

/* baru  */
.cta-qasir {
  background-color: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}

.cta-qasir .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-qasir h2 {
  font-size: 28px;
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-qasir p {
  font-size: 16px;
  color: #000;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #0078d4;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0566af;
  /* 009e8b */
  
}

.btn-secondary {
  background-color: #000;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #333;
}

/* baru */
.demo-access {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.demo-access h1 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.demo-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.demo-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
}

.demo-card h2 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}

.demo-card p {
  font-size: 18px;
  font-weight: bold;
  color: #2b2b2b;
}

.demo-action {
  margin-top: 40px;
}

.demo-button {
  background-color: #0368FF;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

/* baru */
/* Overlay background transparan */
.popup-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #12B587; /* Biru navy */
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-family: 'Lexend', sans-serif;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.popup-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-btn {
  background-color: #ff8800;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 600px) {
  .popup-banner {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .popup-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .popup-btn {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.2rem;
    cursor: pointer;
  }
}