/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

/* ================= VARIABLES ================= */
:root {
  --rc-blue: #0b2c4d;
  --rc-gold: #f5a623;
  --rc-gold-dark: #d8921f;
  --rc-bg: #f8fafc;
}

/* ================= NAVBAR ================= */
.rc-navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(11, 44, 77, 0.08);
}

.rc-nav-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.rc-brand img {
  height: 46px;
}

/* NAV MENU */
.rc-nav-menu {
  display: flex;
  gap: 30px;
}

.rc-nav-link {
  position: relative;
  text-decoration: none;
  color: var(--rc-blue);
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* HOVER + ACTIVE UNDERLINE */
.rc-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--rc-gold);
  transition: width 0.3s ease;
}

.rc-nav-link:hover::after,
.rc-nav-link.active::after {
  width: 100%;
}

.rc-nav-link.active {
  font-weight: 600;
}

/* CTA */
.rc-nav-cta {
  display: flex;
  gap: 12px;
}

/* BUTTONS */
.rc-btn-primary {
  background: var(--rc-gold);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.rc-btn-primary:hover {
  background: var(--rc-gold-dark);
}

.rc-btn-outline {
  border: 2px solid var(--rc-blue);
  color: var(--rc-blue);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.rc-btn-outline:hover {
  background: var(--rc-blue);
  color: #fff;
}

/* ================= MOBILE ================= */
.rc-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.rc-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--rc-blue);
  margin: 4px 0;
  border-radius: 2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .rc-menu-toggle {
    display: flex;
  }

  .rc-nav-cta {
    display: none;
  }

  .rc-nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    display: none;
    box-shadow: 0 20px 40px rgba(11, 44, 77, 0.12);
  }

  .rc-nav-menu.active {
    display: flex;
  }

  .rc-nav-link::after {
    bottom: -2px;
  }
}

/* ================= HERO ================= */
.rc-hero {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f8fd 100%
  );
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.rc-hero-content {
  position: relative;
  z-index: 2;
}

.rc-hero h1 {
  font-size: 44px;
  line-height: 1.25;
  color: var(--rc-blue);
  font-weight: 700;
  margin-bottom: 18px;
}

.rc-hero h1 span {
  color: var(--rc-gold);
}

.rc-hero p {
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

/* BADGE */
.rc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(11, 44, 77, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-blue);
  margin-bottom: 24px;
}

.rc-hero-badge i {
  color: var(--rc-gold);
  font-size: 16px;
}

/* ACTIONS */
.rc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* IMAGE */
.rc-hero-image-wrap {
  position: relative;
  display: inline-block;
}

.rc-hero-img {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(11, 44, 77, 0.25));
  animation: rc-float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes rc-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .rc-hero {
    padding: 80px 0;
  }

  .rc-hero h1 {
    font-size: 34px;
  }

  .rc-hero-image-wrap {
    margin-top: 40px;
  }
}

/* ================= SECOND CAREER (DESIGNED IMAGE UI) ================= */
.rc-career {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

/* IMAGE WRAPPER */
.career-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
}

/* IMAGE BOX */
.career-image-box {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(11, 44, 77, 0.25);
  z-index: 2;
}

.career-image-box img {
  width: 100%;
  display: block;
}

/* ARCS */
.career-arc {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.arc-gold {
  width: 360px;
  height: 360px;
  border: 14px solid #f5a623;
  top: -40px;
  right: -40px;
}

.arc-blue {
  width: 320px;
  height: 320px;
  border: 14px solid #0b2c4d;
  bottom: -40px;
  left: -40px;
}

/* CONTENT */
.rc-career-content {
  padding-left: 25px;
}

.rc-career h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 16px;
}

.rc-career h2 span {
  color: #f5a623;
}

.rc-career p {
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

/* TAG */
.rc-career-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  color: #f5a623;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* LIST */
.rc-career-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.rc-career-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  color: #0b2c4d;
  margin-bottom: 12px;
  font-weight: 500;
}

.rc-career-list i {
  color: #f5a623;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rc-career {
    padding: 80px 0;
  }

  .rc-career-content {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
  }

  .rc-career-list li {
    justify-content: center;
  }

  .arc-gold,
  .arc-blue {
    display: none;
  }
}



/* ================= POPUP ================= */
.rc-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.rc-popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.rc-popup-box h4 {
  text-align: center;
  color: var(--rc-blue);
}
.rc-popup-box input,
.rc-popup-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.rc-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  border: none;
  background: none;
}

/* ================= WHO CAN APPLY ================= */
.apply-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

/* SECTION HEADER */
.section-header .section-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: #f5a623;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.section-header h2 span {
  color: #f5a623;
}

.section-header p {
  color: #667085;
  max-width: 640px;
  margin: auto;
  font-size: 16.5px;
  line-height: 1.6;
}

/* APPLY CARD */
.apply-card {
  height: 100%;
  background: #ffffff;
  padding: 34px 26px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 14px 35px rgba(11, 44, 77, 0.10);
  position: relative;
  overflow: hidden;
}

/* SOFT TOP LINE */
.apply-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f5a623, #ffd27d);
}

/* HOVER */
.apply-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 55px rgba(11, 44, 77, 0.18);
}

/* ICON WRAP */
.apply-icon-wrap {
  width: 70px;
  height: 70px;
  margin: auto;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.apply-icon {
  font-size: 34px;
}

/* TEXT */
.apply-card h5 {
  font-size: 19px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.apply-card p {
  font-size: 14.8px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }

  .apply-section {
    padding: 75px 0;
  }
}


/* ================= WHY CHOOSE US ================= */
.why-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(11, 44, 77, 0.08);
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(11, 44, 77, 0.15);
}

/* ICON */
.why-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

/* TEXT */
.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-card {
    padding: 28px 20px;
  }
}

/* ================= HOW IT WORKS ================= */
.how-section {
  padding: 80px 0;
  background: #ffffff;
}

/* STEP CARD */
.how-card {
  height: 100%;
  background: #f8fafc;
  padding: 34px 26px;
  border-radius: 16px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(11, 44, 77, 0.08);
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(11, 44, 77, 0.15);
}

/* STEP NUMBER */
.step-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0b2c4d, #163f6b);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* TEXT */
.how-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .step-number {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* ================= APPLY NOW SECTION ================= */
.inquiry-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b2c4d, #123a63);
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.inquiry-content {
  color: #ffffff;
  max-width: 520px;
}

/* BADGE */
.apply-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  color: #f5a623;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.apply-badge i {
  font-size: 14px;
}

/* HEADINGS */
.inquiry-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.25;
}

.inquiry-content h2 span {
  color: #f5a623;
}

.inquiry-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #d7e3f2;
  margin-bottom: 25px;
}

/* POINTS */
.inquiry-points {
  list-style: none;
  padding: 0;
}

.inquiry-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #e7effa;
}

.inquiry-points i {
  color: #f5a623;
  font-size: 16px;
}

/* FORM BOX */
.inquiry-form-box {
  background: #ffffff;
  padding: 40px 34px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.inquiry-form-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0b2c4d;
  text-align: center;
  margin-bottom: 5px;
}

.form-subtext {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* FORM ELEMENTS */
.inquiry-form-box .form-control,
.inquiry-form-box .form-select {
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14.5px;
}

.inquiry-form-box .form-control:focus,
.inquiry-form-box .form-select:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.15);
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #f5a623, #e09a1d);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.35);
}

/* NOTE */
.form-note {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12.5px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .inquiry-content h2 {
    font-size: 32px;
  }

  .inquiry-section {
    padding: 80px 0;
  }
}


/* ================= FOOTER ================= */
.footer-section {
  background: linear-gradient(135deg, #0b2c4d, #123a63);
  padding: 70px 0 25px;
  color: #ffffff;
}

/* BRAND */
.footer-brand img {
  height: 46px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #d7e3f2;
  max-width: 320px;
}

/* TITLES */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f5a623;
  display: block;
  margin-top: 6px;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: #d7e3f2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f5a623;
}

/* ICONS */
.footer-contact i {
  color: #f5a623;
  font-size: 16px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  font-size: 14px;
  color: #cbd9ec;
  margin-bottom: 5px;
}

.footer-bottom small {
  font-size: 12.5px;
  color: #b6c9e3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-contact li {
    justify-content: center;
  }
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
