/* ==========================================================================
   HEADER
   ========================================================================== */
.rf-header {
  border-bottom: 1px solid #e8622c;
  padding: 12px 24px;
  background: #fff;
}
.rf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
.rf-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.rf-logo-img {
  height: 100%;
  max-height: 80px;
  width: auto;
  display: block;
}
.rf-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.rf-link {
  text-decoration: none;
  color: #1b3a5c;
  font-weight: 600;
  font-size: 15px;
}
.rf-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1b3a5c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.rf-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e8622c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}
.rf-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: rf-pulse 1.4s infinite;
}
@keyframes rf-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.rf-arrow {
  font-size: 16px;
  color: #fff;
}
.rf-search-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.rf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.rf-hamburger span {
  width: 24px;
  height: 2px;
  background: #1b3a5c;
}

/* Mobile view */
@media (max-width: 768px) {
  .rf-header-inner {
    height: 55px;
  }
  .rf-logo-img {
    max-height: 75px;
  }
  .rf-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .rf-nav.rf-nav-open {
    display: flex;
    z-index: 99;
  }
  .rf-hamburger {
    display: flex;
  }
}
.rf-nav a,
.rf-nav a:hover,
.rf-nav a:focus,
.rf-nav a:visited {
  text-decoration: none !important;
}

.rf-link {
  color: #1b3a5c !important;
}
.rf-link:hover,
.rf-link:focus{
  color: #e8622c !important;
}

.rf-pill,
.rf-pill:hover,
.rf-pill:focus,
.rf-pill:visited {
  color: #fff !important;
  background: #1b3a5c !important;
}
.rf-pill:hover {
  background: #142c46 !important; /* slightly darker navy on hover */
}

.rf-search-btn,
.rf-search-btn:hover,
.rf-search-btn:focus {
  background: none !important;
  border: none !important;
}
.rf-header .rf-search-btn:hover,
.rf-header .rf-search-btn:focus {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #1b3a5c !important;
}

.rf-header .rf-pill:hover,
.rf-header .rf-pill:focus {
  background-color: #142c46 !important;
  border-color: #142c46 !important;
  color: #fff !important;
}

.rf-header a.rf-pill,
.rf-header button.rf-search-btn {
  background-color: initial;
}
button:hover 
{
        background-color: transparent;
}
body {
  font-family: 'Inter', sans-serif;
}
/*-----------------------*/
/* ==========================================================================
   FOOTER
   ========================================================================== */
.rf-footer-topbar {
  height: 0;
  background: #e8622c;
}
.rf-footer {
  background: #1b3a5c;
  color: #fff;
}
.rf-footer-about {
  text-align: center;
}
.rf-footer-logo {
  display: flex;
  justify-content: center;
}
.rf-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px 30px;
}
.rf-footer-col {
  flex: 1;
  min-width: 200px;
}
.rf-footer-about {
  flex: 1.4;
  min-width: 240px;
}
.rf-footer-logo img {
  height: 55px;
  width: auto;
  margin-bottom: 12px;
}
.rf-footer-tagline {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}
.rf-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #cfd8e3;
  margin: 0;
}
.rf-footer-heading {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}
.rf-footer-list,
.rf-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rf-footer-list li,
.rf-footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #cfd8e3;
  line-height: 1.5;
}
.rf-footer-list a,
.rf-footer-contact a {
  color: #cfd8e3;
  text-decoration: none;
}
.rf-footer-list a:hover,
.rf-footer-contact a:hover {
  color: #e8622c;
}
.rf-footer-contact i {
  color: #e8622c;
  width: 16px;
  margin-right: 6px;
}
.rf-footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
}
.rf-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.rf-footer-social a:hover {
  background: #e8622c;
}
.rf-footer-bottom {
  background: rgba(0,0,0,0.25);
  text-align: left;
  padding: 14px 24px;
  font-size: 13px;
  color: #cfd8e3;
}
.rf-footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rf-footer-top {
    flex-direction: column;
    gap: 30px;
  }
}
/* ==========================================================================
   HOME - HERO
   ========================================================================== */
.rf-home-hero {
  background-color: #fbeee7;
  background-image:
    linear-gradient(rgba(27,58,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,92,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 90px 24px 100px;
}
.rf-home-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.rf-home-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1b3a5c;
  margin: 0 0 24px;
  max-width: 850px;
}
.rf-home-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #48586b;
  max-width: 780px;
  margin: 0 0 36px;
}
.rf-home-hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.rf-home-btn-primary {
  background: #e8622c;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
  transition: transform 0.15s;
}
.rf-home-btn-primary:hover {
   color: #fff;
  transform: translateY(-2px);
  background: #c0392b;
}
.rf-home-btn-secondary {
  background: transparent;
  color: #1b3a5c;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border: 2px solid #1b3a5c;
  border-radius: 10px;
  text-decoration: none;
}
.rf-home-btn-secondary:hover {
  background: #1b3a5c;
  color: #fff;
}

@media (max-width: 768px) {
  .rf-home-hero {
    padding: 60px 20px 70px;
  }
  .rf-home-hero-title {
    font-size: 32px;
  }
  .rf-home-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
/* ==========================================================================
   HOME - MISSION
   ========================================================================== */
.rf-home-mission {
  background: #eef2f7;
  padding: 80px 24px;
}
.rf-home-mission-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.rf-home-mission-title {
  font-size: 36px;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0 0 20px;
  max-width: 850px;
}
.rf-home-mission-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #48586b;
  max-width: 800px;
  margin: 0 0 50px;
}
.rf-home-mission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.rf-home-mission-card {
  background: #F2FCF6;
  border-radius: 12px;
  padding: 28px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 4px 14px rgba(27,58,92,0.06);
}
.rf-home-mission-card:nth-child(1) {
  border-top: 4px solid #1b3a5c;
}
.rf-home-mission-card:nth-child(2) {
  border-top: 4px solid #e8622c;
}
.rf-home-mission-card:nth-child(3) {
  border-top: 4px solid #c0392b;
}
.rf-home-mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.rf-home-mission-card:nth-child(1) .rf-home-mission-icon { color: #1b3a5c; }
.rf-home-mission-card:nth-child(2) .rf-home-mission-icon { color: #e8622c; }
.rf-home-mission-card:nth-child(3) .rf-home-mission-icon { color: #c0392b; }

.rf-home-mission-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1b3a5c;
  margin: 0 0 10px;
}
.rf-home-mission-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #5b6b7d;
  margin: 0;
}

@media (max-width: 900px) {
  .rf-home-mission-cards {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .rf-home-mission-title {
    font-size: 28px;
  }
}
/* ==========================================================================
   HOME - OBJECTIVES
   ========================================================================== */
.rf-home-objectives {
  background: #f3f8f6;
  padding: 80px 24px;
}
.rf-home-objectives-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.rf-home-objectives-title {
  font-size: 34px;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0 0 50px;
}
.rf-home-objectives-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.rf-home-objective {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
}
.rf-home-objective-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #e8622c;
  margin-bottom: 16px;
}
.rf-home-mission-card-title,
.rf-home-objective-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  color: #1b3a5c;
  margin: 0 0 10px;
}
.rf-home-objective-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #5b6b7d;
  margin: 0;
}

@media (max-width: 768px) {
  .rf-home-objectives-title {
    font-size: 26px;
  }
  .rf-home-objectives-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
/* ==========================================================================
   HOME - WHO WE SERVE
   ========================================================================== */
.rf-home-serve {
  background: #e9eef5;
  padding: 80px 24px;
}
.rf-home-serve-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.rf-home-serve-title {
  font-size: 34px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  color: #1b3a5c;
  margin: 0 0 50px;
}
.rf-home-serve-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.rf-home-serve-card {
  background: #f2faf7;
  border-radius: 14px;
  padding: 40px 20px;
  flex: 1;
  min-width: 190px;
  max-width: 220px;
}
.rf-home-serve-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #1b3a5c;
  margin-bottom: 18px;
}
.rf-home-serve-card-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  color: #1b3a5c;
  margin: 0;
}

@media (max-width: 900px) {
  .rf-home-serve-grid {
    flex-direction: column;
    align-items: center;
  }
  .rf-home-serve-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .rf-home-serve-title {
    font-size: 26px !important;
  }
}
/* ==========================================================================
   HOME - CTA
   ========================================================================== */
.rf-home-cta {
  background: #f3f8f6;
  padding: 90px 24px;
  text-align: center;
}
.rf-home-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
.rf-home-cta-title {
  font-size: 34px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  color: #1b3a5c;
  margin: 0 0 20px;
}
.rf-home-cta-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #48586b;
  margin: 0 0 36px;
}
.rf-home-cta-btn {
  display: inline-block;
  background: transparent;
  color: #1b3a5c;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border: 2px solid #1b3a5c;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.rf-home-cta-btn:hover {
  background: #1b3a5c;
  color: #fff;
}

@media (max-width: 768px) {
  .rf-home-cta-title {
    font-size: 26px !important;
  }
}
/* ==========================================================================
   HOME - FINAL CTA BANNER
   ========================================================================== */
.rf-home-final-cta {
  background: #0b0c0e;
  padding: 70px 24px;
  text-align: center;
}
.rf-home-final-cta-title {
  color: #fff !important;
}
.rf-home-final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}
.rf-home-final-cta-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  color: #fff;
  margin: 0 0 30px;
}
.rf-home-final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.rf-home-final-btn-primary {
  background: #e8622c;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.rf-home-final-btn-primary:hover {
  background: #c0392b;
  color: #fff;
}
.rf-home-final-btn-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border: 2px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.rf-home-final-btn-secondary:hover {
  background: #fff;
  color: #1b3a5c;
}

@media (max-width: 768px) {
  .rf-home-final-cta-title {
    font-size: 24px !important;
  }
  .rf-home-final-cta-buttons {
    flex-direction: column;
  }
}