/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #E8402A;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}

.top-right a {
  color: #ffffff;
  margin-left: 12px;
  opacity: 0.85;
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: #F7F6EC;
  padding: 18px 0;
}

.navbar-brand img {
  height: 48px;
}

.navbar-brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.navbar-brand small {
  font-size: 12px;
  letter-spacing: 2px;
  color: #000000;
}

.nav-link {
  font-weight: 500;
  color: #000000;
}

.nav-link.active {
  border-bottom: 2px solid #E8402A;
}

.btn-apply {
  background: #E8402A;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
}

/* ===== CAMPUSES HERO ===== */
.campuses-hero {
  padding: 140px 0 160px;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.04),
    #ffffff 60%
  );
}

.campuses-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: #F7F6EC;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 28px;
}

.campuses-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.campuses-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .campuses-hero {
    padding: 100px 0 120px;
  }

  .campuses-hero h1 {
    font-size: 34px;
  }
}
/* ===== CAMPUS DETAIL SECTION ===== */
.campus-detail-section {
  padding: 110px 0;
  background: #F7F6EC;
}

/* IMAGE */
.campus-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.campus-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY */
.campus-image-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #FFFFFF;
}

.campus-image-overlay h5 {
  font-size: 18px;
  font-weight: 700;
}

.campus-image-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

/* TEXT */
.campus-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.campus-desc {
  font-size: 16px;
  color: #000000;
  margin-bottom: 28px;
}

/* INFO CARD */
.campus-info-card {
  background: #F7F6EC;
  border-radius: 16px;
  padding: 20px;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.info-item i {
  font-size: 16px;
  margin-top: 4px;
}

.info-item p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* HIGHLIGHTS */
.campus-highlights h6 {
  font-weight: 700;
  margin-bottom: 12px;
}

.campus-highlights ul {
  list-style: none;
  padding: 0;
}

.campus-highlights li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.campus-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dark-campus {
  background: #E8402A;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline-campus {
  border: 2px solid #E8402A;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #E8402A;
  transition: all 0.3s ease;
}

.btn-outline-campus:hover {
  background: #E8402A;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
  .campus-title {
    font-size: 26px;
  }
}
/* ===== INFRASTRUCTURE SECTION ===== */
.infrastructure-section {
  padding: 110px 0;
  background: #F7F6EC;
}

/* HEADER */
.infra-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.infra-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #000000;
}

/* CARD */
.infra-card {
  background: #F7F6EC;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #F7F6EC;
  transition: all 0.3s ease;
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* ICON */
.infra-icon {
  width: 46px;
  height: 46px;
  background: #FAEBD7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.infra-icon i {
  font-size: 20px;
  color: #E8402A;
}

/* TEXT */
.infra-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.infra-card p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .infra-header h2 {
    font-size: 26px;
  }
}
/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  padding: 90px 0;
  background: #F7F6EC;
}

.experience-box {
  background: radial-gradient(circle at top left, #000000, #000000 70%);
  border-radius: 36px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Decorative circles */
.experience-box::before,
.experience-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.experience-box::before {
  top: -80px;
  left: -80px;
}

.experience-box::after {
  bottom: -80px;
  right: -80px;
}

/* TEXT */
.experience-box h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.experience-box p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
}

/* BUTTONS */
.experience-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-experience-primary {
  background: #F7F6EC;
  color: #E8402A;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-experience-outline {
  background: transparent;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .experience-box {
    padding: 60px 26px;
  }

  .experience-box h2 {
    font-size: 28px;
  }
}
