body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* HEADER - PREMIUM */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

/* CONTAINER */
.nav-container {
  max-width: 1250px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 60px;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV */
.nav {
  display: flex;
  gap: 35px;
}

/* 🔥 PREMIUM LINK STYLE */
.nav-link {
  color: #0D3B66;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: 0.3s ease;
}

/* 🔥 GRADIENT UNDERLINE (CENTER EXPAND) */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #F77F00, #ff9f1c);
  border-radius: 10px;
  transition: width 0.35s ease;
}

.nav-link:hover::before {
  width: 120%;
}

/* TEXT COLOR SHIFT */
.nav-link:hover {
  color: #F77F00;
}

/* ACTIVE LINK */
.nav-link.active::before {
  width: 120%;
}

/* CTA - 🔥 HERO ELEMENT */
.cta-btn {
  background: linear-gradient(135deg, #F77F00, #ff9f1c);
  color: white;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(247,127,0,0.3);
  position: relative;
  overflow: hidden;
}

/* 🔥 SHINE EFFECT */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.cta-btn:hover::before {
  left: 100%;
}

/* HOVER LIFT */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(247,127,0,0.5);
}

/* MENU ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0D3B66;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

/* 🔥 HAMBURGER HOVER */
.menu-toggle:hover span {
  background: #F77F00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* MOBILE DRAWER - PREMIUM WHITE VERSION */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 2000;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  justify-content: flex-end;
}

.mobile-menu.active {
  right: 0;
}

/* BACKDROP */
.menu-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

/* MAIN PANEL */
.menu-content {
  position: relative;
  width: 85%;
  max-width: 400px;
  max-height: 100%;
  background: #ffffff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);

  /* 🔥 brand accent line */
  border-left: 3px solid #F77F00;
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-logo {
  height: 60px;
}

/* CLOSE BUTTON */
.close-btn {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}

.close-btn span {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #0D3B66;
  transition: 0.3s;
}

.close-btn span:nth-child(1) { transform: rotate(45deg); }
.close-btn span:nth-child(2) { transform: rotate(-45deg); }

.close-btn:hover span {
  background: #F77F00;
}

/* LINKS */
.menu-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 🔥 CRAZY LINK STYLE */
.menu-links a {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #0D3B66;
  position: relative;
  padding-left: 12px;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.4s ease;
}

/* STAGGER */
.mobile-menu.active .menu-links a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.1s * var(--i));
}

/* 🔥 HOVER MAGIC */
.menu-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(247,127,0,0.15), transparent);
  border-radius: 6px;
  transition: 0.3s;
  z-index: -1;
}

.menu-links a:hover::before {
  width: 100%;
}

.menu-links a:hover {
  color: #F77F00;
  padding-left: 18px;
}

/* FOOTER */
.menu-footer {
  border-top: 1px solid #eee;
  padding-top: 25px;
}

/* CONTACT */
.contact-box a {
  display: block;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.contact-box a:hover {
  color: #0D3B66;
}

/* SOCIALS */
.social-row {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

/* 🔥 SOCIAL ICON STYLE */
.social-icon {
  width: 42px;
  height: 42px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0D3B66;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.social-icon:hover {
  background: linear-gradient(135deg, #F77F00, #ff9f1c);
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(247,127,0,0.4);
}

/* OVERLAY */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}

.overlay.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}



/* Footer Design */


:root {
    --f-blue: #0D3B66;
    --f-orange: #F77F00;
    --f-bg-light: #f8fafc; /* Very light grey/white */
    --f-text-dark: #1e293b;
    --f-text-muted: #64748b;
    --f-border: #e2e8f0;
}

body { margin: 0; font-family: 'Jost', sans-serif; }

.elite-footer {
    background-color: var(--f-bg-light);
    position: relative;
    padding-top: 80px; /* Space for the floating CTA */
    border-top: 1px solid var(--f-border);
}

/* --- FLOATING CTA BUBBLE --- */
.footer-cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: absolute;
    top: -60px; /* Pulls it up over the section above */
    left: 0;
    right: 0;
    z-index: 10;
}

.cta-bubble {
    background: var(--f-blue);
    border-radius: 40px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(13, 59, 102, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-text { position: relative; z-index: 2; color: #fff; }
.cta-text h2 { margin: 0 0 10px 0; font-size: 32px; font-weight: 700; }
.cta-text p { margin: 0; color: #cbd5e1; font-size: 16px; }

.cta-action { position: relative; z-index: 2; }

.btn-pill-orange {
    background: var(--f-orange);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(247, 127, 0, 0.3);
}

.btn-pill-orange:hover {
    background: #fff;
    color: var(--f-orange);
    transform: translateY(-3px);
}

.cta-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    transform: rotate(-10deg);
}

/* --- MAIN FOOTER GRID --- */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px; /* Extra top padding for CTA space */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
    gap: 50px;
}

/* Brand Column */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--f-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img{
  max-width: 100px;
}

.footer-logo span { color: var(--f-orange); }
.footer-logo i { color: var(--f-orange); font-size: 32px; }

.brand-desc {
    color: var(--f-text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.trust-badges { display: flex; gap: 15px; }
.badge {
    background: #fff;
    border: 1px solid var(--f-border);
    padding: 8px 15px;
    border-radius: 50px; /* Pill shape */
    font-size: 12px;
    font-weight: 600;
    color: var(--f-blue);
    display: flex; align-items: center; gap: 8px;
}
.badge i { color: var(--f-orange); }

/* Links Columns */
.footer-col h3 {
    font-size: 18px;
    color: var(--f-blue);
    margin: 0 0 25px 0;
    font-weight: 700;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    text-decoration: none;
    color: var(--f-text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--f-orange);
    transform: translateX(5px); /* Smooth slide effect */
}

/* Newsletter Column */
.newsletter-col p {
    color: var(--f-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-bubble {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    border: 2px solid var(--f-border);
    transition: 0.3s;
}

.newsletter-bubble:focus-within {
    border-color: var(--f-blue);
    box-shadow: 0 10px 20px rgba(13, 59, 102, 0.05);
}

.newsletter-bubble i.fa-envelope {
    color: var(--f-orange);
    font-size: 16px;
    margin-left: 15px;
}

.newsletter-bubble input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 14px;
    color: var(--f-blue);
    outline: none;
}

.newsletter-bubble button {
    background: var(--f-blue);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Perfect circle button inside pill */
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-bubble button:hover { background: var(--f-orange); transform: scale(1.05); }

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    border-top: 1px solid var(--f-border);
    padding: 25px 0;
    background: #fff;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright { margin: 0; color: var(--f-text-muted); font-size: 14px; }

.social-pills { display: flex; gap: 10px; }
.social-pills a {
    width: 40px; height: 40px;
    background: var(--f-bg-light);
    color: var(--f-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
    border: 1px solid var(--f-border);
}

.social-pills a:hover {
    background: var(--f-blue);
    color: #fff;
    border-color: var(--f-blue);
    transform: translateY(-3px);
}

.legal-links { display: flex; align-items: center; gap: 15px; }
.legal-links a { text-decoration: none; color: var(--f-text-muted); font-size: 13px; transition: 0.3s; }
.legal-links a:hover { color: var(--f-orange); }
.dot { width: 4px; height: 4px; background: #cbd5e1; border-radius: 50%; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .brand-col { grid-column: span 2; max-width: 600px; }
    .cta-bubble { flex-direction: column; text-align: center; gap: 20px; padding: 40px 30px; }
    .footer-cta-wrapper { top: -80px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .brand-col { grid-column: span 1; }
    .bottom-container { flex-direction: column; text-align: center; justify-content: center; }
    .cta-text h2 { font-size: 26px; }
}


/* Breadcrumb */

:root {
    --bc-blue: #0D3B66;
    --bc-orange: #F77F00;
}

body { margin: 0; font-family: 'Jost', sans-serif; }

.elite-page-header {
    position: relative;
    margin-top: 100px;
    height: 250px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* --- PARALLAX BACKGROUND --- */
.header-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates the cool parallax scroll effect */
    z-index: 1;
}

/* --- CINEMATIC OVERLAY --- */
.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(13, 59, 102, 0.95) 0%, 
        rgba(13, 59, 102, 0.7) 100%
    );
    z-index: 2;
}

/* --- TEXT & CONTENT --- */
.header-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    animation: fadeUp 0.8s ease-out forwards;
}

.title-badge {
    color: var(--bc-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-title {
    color: #ffffff;
    font-size: 54px;
    font-weight: 800;
    margin: 0 0 35px 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- THE GLASS BREADCRUMB PILL --- */
.breadcrumb-nav {
    display: inline-block;
}

.breadcrumb-pill {
    list-style: none;
    padding: 12px 30px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Matches your bubble theme */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.crumb-item a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.crumb-item a:hover {
    color: var(--bc-orange);
}

.crumb-item.active {
    color: var(--bc-orange);
    font-weight: 700;
}

.crumb-separator i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* --- SMOOTH ENTRY ANIMATION --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .elite-page-header { height: 200px; }
    .page-title { font-size: 38px; }
    .breadcrumb-pill { padding: 10px 20px; gap: 10px; flex-wrap: wrap; justify-content: center; border-radius: 20px; }
    .crumb-item a, .crumb-item.active { font-size: 14px; }
}