/* ═══════════════════════════════════════════════
   RHI PRINTOGRAPHICS — SHARED DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --blue:        #1A6BFF;
  --blue-dark:   #0F50CC;
  --blue-light:  #E8F0FF;
  --navy:        #0A1628;
  --navy-soft:   #111D35;
  --text:        #1C2333;
  --muted:       #6B7A99;
  --border:      #E5EAF5;
  --white:       #FFFFFF;
  --off-white:   #F4F7FD;
  --gold:        #F59E0B;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* ─── NAVBAR ─── */
.navbar {
  background: #f4f4f4;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(26,107,255,.06);
  transition: padding .25s;
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy) !important;
  display: flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
}
.navbar-brand .brand-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  flex-shrink: 0;
}
.navbar-brand .brand-text span { color: var(--blue); }
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: .4rem .75rem !important;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--blue) !important; }
.btn-nav-cta, .btn-nav-cta.active {
  background: var(--blue);
  color: #fff !important;
  border-radius: 50px;
  padding: .42rem 1.3rem !important;
  font-size: .88rem;
  font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-nav-cta::after { display: none !important; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-title span { color: var(--blue); }
.section-subtitle {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
  max-width: 580px;
}

/* ─── BUTTONS ─── */
.btn-primary-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .7rem 1.8rem;
  font-weight: 600;
  font-size: .93rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,255,.3);
  color: #fff;
}
.btn-outline-cta {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .68rem 1.5rem;
  font-weight: 500;
  font-size: .93rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.btn-outline-cta:hover { border-color: var(--blue); color: var(--blue); }

/* ─── PAGE HERO BANNER ─── */
.page-hero {
  background: linear-gradient(135deg, #0A1628 0%, #111D35 60%, #1A2845 100%);
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,.18) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,.1) 0%, transparent 70%);
}
.page-hero .breadcrumb-item { color: rgba(255,255,255,.5); font-size: .83rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.5); text-decoration: none; }
.page-hero .breadcrumb-item a:hover { color: var(--blue); }
.page-hero .breadcrumb-item.active { color: var(--blue); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.3); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: .75rem;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background-image: url("../img/cta-section-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  background: #00000071;
  width: 100%; height: 100%;
  top: 0; left: 0;
}
.breadcrumb-item+.breadcrumb-item::before{
  color: #ccc;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,.15) 0%, transparent 65%);
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 70px 0 0;
  font-size: .88rem;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
footer h6 {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
footer a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  margin-bottom: .55rem;
  font-size: .86rem;
  transition: color .2s;
}
footer a:hover { color: var(--blue); }
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  color: rgba(255,255,255,.6) !important;
  font-size: 1rem;
  transition: background .2s, color .2s !important;
  margin-bottom: 0 !important;
}

.footer-social a:hover { background: var(--blue); color: #fff !important; }
.footer-divider {
  border-color: rgba(255,255,255,.1);
  margin: 3rem 0 1.5rem;
}
.footer-bottom { padding-bottom: 1.5rem; color: rgba(255,255,255,.35); font-size: .82rem; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.video-container{
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.video-container iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.overlay-content{
  position: relative;
  z-index: 2;
  color: #fff;
  top: 65%;
}
/* ─── UTILITY ─── */
.bg-off-white { background: var(--off-white); }
.text-blue { color: var(--blue) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted-custom { color: var(--muted); }

/* ─── RESPONSIVE NAV ─── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    margin-top: .5rem;
  }
  .nav-link::after { display: none; }
}