    /* ── TOKENS ───────────────────────────────────── */
    :root {
      --primary:      #00C5CD;
      --primary-dark: #00C5CD;
      --primary-light:#f8f8f8;
      --secondary:    #1A1A2E;
      --accent:       #FFD166;
      --success:      #22c55e;
      --card-r:       1.1rem;
      --nav-h:        68px;
	  --radius:       1.1rem;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body { font-family: 'Poppins'; background: #fff; color: var(--secondary); overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6,.brand { font-family: 'Poppins'; }
    a { text-decoration: none; }
	.camp-card-body a:hover 
	{
		color: var(--primary) !important;
	}
	.feat-card-body a:hover 
	{
	  color: var(--primary) !important;
	}
    img { max-width: 100%; }
    .causes-one__title{color : #1A1A2E !important; }
    /* ── NAVBAR ───────────────────────────────────── */
    .navbar {
      /* height: var(--nav-h); */
	  height: 94px !important;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      position: sticky; top: 0; z-index: 1000;
      box-shadow: 0 1px 12px rgba(0,0,0,0.05);
    }
    .navbar-brand { font-family: 'Poppins'; font-weight: 800; font-size: 1.45rem; color: var(--primary); }
    .nav-link { font-weight: 500; color: var(--secondary) !important; font-size: 0.88rem; padding: 6px 14px !important; border-radius: 8px; transition: all .2s; }
    .nav-link:hover { color: var(--primary) !important; background: var(--primary-light); }
    .btn-nav-login { border: 1.5px solid #e0e0e0; color: var(--secondary); border-radius: 50px; padding: 7px 20px; font-weight: 600; font-size: 0.85rem; background: transparent; transition: all .2s; }
    .btn-nav-login:hover { border-color: var(--primary); color: var(--primary); }
    .btn-nav-start { 
		background: var(--primary); color: #fff; border-radius: 50px; padding: 8px 22px; font-weight: 700; font-size: 0.85rem; border: none; transition: all .2s; box-shadow: 0 4px 14px rgba(140, 229, 225, 0.3);
	  }
    .btn-nav-start:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
 /* ── NAVBAR BASE ──────────────────────────────── */
    .navbar-brand { font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.45rem; color: var(--primary); }

    /* Desktop nav links */
    .nav-link {
      font-weight: 500; color: var(--secondary) !important;
      font-size: 0.88rem; padding: 6px 14px !important;
      border-radius: 8px; transition: all .2s;
    }
    .nav-link:hover { color: var(--primary) !important; background: var(--primary-light); }
    .nav-link.active-link { color: var(--primary) !important; background: var(--primary-light); }

    /* Desktop action buttons */
    .btn-nav-login {
      border: 1.5px solid #e0e0e0; color: var(--secondary); border-radius: 50px;
      padding: 7px 20px; font-weight: 600; font-size: 0.85rem;
      background: transparent; transition: all .2s;
    }
    .btn-nav-login:hover { border-color: var(--primary); color: var(--primary); }
    .btn-nav-start {
      background: var(--primary); color: #fff; border-radius: 50px;
      padding: 8px 22px; font-weight: 700; font-size: 0.85rem;
      border: none; transition: all .2s; 
	  /* box-shadow: 0 4px 14px rgba(255,107,43,.3); */
    }
    .btn-nav-start:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

    /* ── HAMBURGER BUTTON ─────────────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; width: 40px; height: 40px; border-radius: 10px;
      background: var(--primary-light); border: 1.5px solid rgb(159, 152, 189);
      cursor: pointer; transition: all .2s; flex-shrink: 0;
    }
    .nav-hamburger:hover { background: rgb(159, 152, 189); }
    .nav-hamburger .bar {
      width: 20px; height: 2px; background: var(--primary);
      border-radius: 2px; transition: all .3s cubic-bezier(.4,0,.2,1);
      transform-origin: center;
    }
    /* Animated X state */
    .nav-hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE DRAWER (offcanvas style) ──────────── */
    .mob-drawer {
      position: fixed; inset: 0; z-index: 2000;
      pointer-events: none;
    }
    /* Backdrop */
    .mob-backdrop {
      position: absolute; inset: 0;
      background: rgba(26,26,46,.55);
      backdrop-filter: blur(4px);
      opacity: 0; transition: opacity .35s ease;
    }
    /* Slide panel */
    .mob-panel {
      position: absolute; top: 0; left: 0;
      width: min(340px, 88vw); height: 100%;
      background: #fff;
      display: flex; flex-direction: column;
      transform: translateX(-100%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      box-shadow: 8px 0 40px rgba(0,0,0,.12);
    }
    /* Open state */
    .mob-drawer.open { pointer-events: all; }
    .mob-drawer.open .mob-backdrop { opacity: 1; }
    .mob-drawer.open .mob-panel { transform: translateX(0); }

    /* Panel header */
    .mob-panel-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 22px 16px;
      border-bottom: 1px solid #f5f5f5;
    }
    .mob-logo { font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--primary); }
    .mob-close {
      width: 36px; height: 36px; border-radius: 50%;
      background: #f5f5f5; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: #666; transition: all .2s;
    }
    .mob-close:hover { background: #ffe0d0; color: var(--primary); }

    /* Nav links inside drawer */
    .mob-nav { flex: 1; overflow-y: auto; padding: 18px 16px 16px; }
    .mob-nav-link {
      display: flex; align-items: center; gap: 14px;
      padding: 13px 16px; border-radius: 12px;
      color: var(--secondary); font-weight: 600; font-size: 1rem;
      text-decoration: none; transition: all .18s; margin-bottom: 4px;
      border: 1.5px solid transparent;
    }
    .mob-nav-link:hover {
      background: var(--primary-light); color: var(--primary);
      border-color: rgb(194, 194, 194);
    }
    .mob-nav-link.active {
      background: var(--primary-light); color: var(--primary);
      border-color: rgb(194, 194, 194);
    }
    .mob-nav-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: #f5f5f5; display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0; transition: background .18s;
    }
    .mob-nav-link:hover .mob-nav-icon,
    .mob-nav-link.active .mob-nav-icon {
     /* background: rgba(255,107,43,.12); color: var(--primary); */
	  background: rgb(0, 197, 205); color: #FFF;
    }
    .mob-nav-divider {
      font-size: 0.68rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: #bbb;
      padding: 14px 16px 6px; display: block;
    }

    /* Panel footer with action buttons */
    .mob-panel-foot {
      padding: 16px 16px 28px;
      border-top: 1px solid #f5f5f5;
      display: flex; flex-direction: column; gap: 10px;
    }
    .mob-btn-login {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 20px; border-radius: 50px;
      border: 1.5px solid #e0e0e0; background: #fff;
      color: var(--secondary); font-weight: 600; font-size: 0.95rem;
      text-decoration: none; transition: all .2s;
    }
    .mob-btn-login:hover { border-color: var(--primary); color: var(--primary); }
    .mob-btn-start {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 20px; border-radius: 50px;
      background: var(--primary); color: #fff;
      font-weight: 700; font-size: 0.95rem;
      text-decoration: none; transition: all .2s;
      box-shadow: 0 6px 20px rgb(200, 199, 207);
    }
    .mob-btn-start:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

    /* Show hamburger only on mobile */
    @media (max-width: 991px) 
	{
      .nav-hamburger { display: flex; }
      .navbar-desktop-menu { display: none !important; }
      /* Center the logo between the hamburger and the right edge */
      .navbar .navbar-brand 
	  {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
	  
	  #mobile_div
	  {
		  display:block !important;
	  }
	  #heroCTAs
	  {
		  display:block !important;
	  }
    }
	
    @media (min-width: 992px) {
      .nav-hamburger { display: none; }
	  #mobile_div
	  {
		  display:none !important;
	  }
	  #heroCTAs
	  {
		  display:none !important;
	  }
    }
    /* ── HERO ─────────────────────────────────────── */
    .hero {
      background: linear-gradient(150deg, #fdfcff 0%, #ffffff 50%, #9082c2 100%);
      padding: padding: 18px 0 14px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; top: -120px; right: -120px;
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(255,107,43,.1) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; bottom: -80px; left: -80px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(255,209,102,.12) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,107,43,.1); color: var(--primary);
      border-radius: 50px; padding: 5px 14px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      margin-bottom: 1.25rem; border: 1px solid rgba(255,107,43,.18);
    }
    .hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; color: var(--secondary); }
    .hero h1 em { color: var(--primary); font-style: normal; }
    .hero .lead { font-size: 1.05rem; color: #666; line-height: 1.7; max-width: 490px; }
    .hero-search {
      display: flex; background: #fff; border-radius: 50px;
      box-shadow: 0 6px 28px rgba(0,0,0,0.09); overflow: hidden;
      max-width: 470px; border: 1.5px solid #a1c1c0;
    }
    .hero-search input { border: none; outline: none; padding: 14px 20px; font-size: 0.92rem; flex: 1; background: transparent; font-family: 'DM Sans'; color: var(--secondary); }
    .hero-search input::placeholder { color: #aaa; }
    .hero-search button { background: var(--primary); color: #fff; border: none; padding: 0 22px; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
    .hero-search button:hover { background: var(--primary-dark); }
    .hero-trust { font-size: 0.8rem; color: #08829e; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
    .hero-trust span { color: var(--secondary); font-weight: 600; }

    /* ── STATS ────────────────────────────────────── */
    .stats-section { padding: 48px 0; background: #fff; border-bottom: 1px solid #f5f5f5; }
    .stat-item { text-align: center; padding: 10px 0; }
    .stat-num { font-family: 'Poppins'; font-weight: 800; font-size: 2.2rem; color: var(--secondary); line-height: 1; }
    .stat-num sup { font-size: 1.2rem; color: var(--primary); }
    .stat-label { font-size: 0.82rem; color: #888; margin-top: 5px; font-weight: 500; }
    .stat-divider { width: 1px; height: 50px; background: #f0f0f0; margin: 0 auto; }

    /* ── SECTION HELPERS ──────────────────────────── */
    .section-eyebrow {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; color: var(--primary);
      background: rgba(255,107,43,.08); border-radius: 50px; padding: 4px 12px;
      margin-bottom: .75rem;
    }
    .section-title { font-family: 'Poppins'; font-weight: 800; font-size: clamp(1.5rem,3vw,2.1rem); color: var(--secondary); line-height: 1.2; }

    /* ── HOW IT WORKS ─────────────────────────────── */
    .hiw-section { padding: 20px 0; background: #fafafa; }
    .hiw-step {
      background: #fff; border-radius: var(--card-r); padding: 32px 28px;
      border: 1.5px solid #f0f0f0; height: 100%;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .hiw-step:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); border-color: #f7f7f7; }
    .hiw-num {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--primary-light); color: var(--primary);
      font-family: 'Poppins'; font-weight: 800; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; border: 2px solid rgba(250, 255, 255, 0.15);
    }
    .hiw-step h5 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
    .hiw-step p { font-size: 0.88rem; color: #777; line-height: 1.6; margin: 0; }

    /* ── CATEGORY BADGE ───────────────────────────── */
    .cat-badge {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 3px 11px; border-radius: 50px;
      font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
      margin-bottom: .6rem;
    }
    .cat-sports    { background: #e8f5e9; color: #2e7d32; }
    .cat-charity   { background: #fce4ec; color: #c62828; }
    .cat-nonprofit { background: #e3f2fd; color: #1565c0; }
    .cat-creative  { background: #f3e5f5; color: #6a1b9a; }
    .cat-education { background: #fff3e0; color: #e65100; }
    .cat-community { background: #e0f7fa; color: #00695c; }
    .cat-medical { background: #e3f2fd;color: #1565c0; }

    /* ══════════════════════════════════════════════
       FEATURED CAROUSEL SECTION  ← NEW
    ══════════════════════════════════════════════ */
    .featured-section {
      padding: 32px 0 26px;
      background: linear-gradient(180deg, #fff 0%, #EFF5F4 100%);
      overflow: hidden;
    }
    .featured-section .section-title span { color: var(--primary); }

    /* Owl outer layout */
    .owl-featured { position: relative; }

    /* Featured card */
    .feat-card {
      border-radius: 1.25rem; overflow: hidden;
      background: #fff;
      border: 1.5px solid #f0f0f0;
      transition: transform .28s, box-shadow .28s;
      margin: 8px 10px 18px;
    }
    .feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(255,107,43,.13); }

    /* image / placeholder */
    .feat-card-img {
      height: 196px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.4rem;
    }
    .feat-card-img.g1 { background: linear-gradient(135deg,#ffe0d0,#fff3e0); }
    .feat-card-img.g2 { background: linear-gradient(135deg,#fce4ec,#f3e5f5); }
    .feat-card-img.g3 { background: linear-gradient(135deg,#e3f2fd,#e0f2f1); }
    .feat-card-img.g4 { background: linear-gradient(135deg,#f3e5f5,#ede7f6); }
    .feat-card-img.g5 { background: linear-gradient(135deg,#e8f5e9,#e0f7fa); }
    .feat-card-img.g6 { background: linear-gradient(135deg,#fff3e0,#fce4ec); }

    /* featured crown ribbon */
    .feat-ribbon {
      position: absolute; top: 14px; left: 14px;
      background: var(--primary); color: #fff;
      font-size: 0.64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
      padding: 4px 11px; border-radius: 50px;
      display: flex; align-items: center; gap: 5px;
      box-shadow: 0 3px 10px rgba(185, 171, 186, 0.4);
    }
    /* days-left pill */
    .feat-days {
      position: absolute; top: 14px; right: 14px;
      background: rgba(26,26,46,.75); color: #fff;
      font-size: 0.68rem; font-weight: 600;
      padding: 4px 10px; border-radius: 50px;
      backdrop-filter: blur(6px);
    }
    .feat-card-body { padding: 18px 20px; min-height: 180px; }
    .feat-card-body h6 { font-weight: 700; font-size: 0.95rem; line-height: 1.4; margin-bottom: .7rem; color: var(--secondary); }
    .feat-progress { height: 7px; border-radius: 50px; background: #f0f0f0; margin: 10px 0 8px; overflow: hidden; }
    .feat-progress-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: width .6s ease; }
    .feat-progress-bar.success { background: linear-gradient(90deg, #22c55e, #86efac); }
    .feat-stats { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 4px; }
    .feat-raised { font-size: 0.82rem; }
    .feat-raised strong { display: block; font-size: 0.97rem; font-weight: 700; color: var(--secondary); }
    .feat-pct { font-size: 0.82rem; font-weight: 700; color: var(--primary); }
    .feat-pct.success { color: #22c55e; }
    .feat-card-footer {
      padding: 12px 20px 16px;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid #f7f7f7;
    }
    .feat-donors { font-size: 0.78rem; color: #999; display: flex; align-items: center; gap: 5px; }
    .btn-donate-sm {
      background: var(--primary); color: #fff; border: none;
      border-radius: 50px; padding: 7px 20px;
      font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: all .2s;
     /* box-shadow: 0 3px 12px rgba(255,107,43,.25); */
      box-shadow: 0 2px 4px #BCB9C7;
    }
    .btn-donate-sm:hover { background: var(--primary-dark); transform: scale(1.03); }
    .btn-donate-sm.funded { background: #22c55e; box-shadow: 0 3px 12px rgba(34,197,94,.25); }

    /* ── Owl nav override ─────────────────────────── */
    .owl-featured .owl-nav button {
      position: absolute; top: 50%; transform: translateY(-60%);
      width: 40px; height: 40px; border-radius: 50% !important;
      background: #fff !important; border: 1.5px solid #eeeeee !important;
      box-shadow: 0 4px 16px rgba(0,0,0,.1);
      display: flex !important; align-items: center; justify-content: center;
      transition: all .2s !important;
    }
    .owl-featured .owl-nav button:hover { background: var(--primary) !important; border-color: var(--primary) !important; }
    .owl-featured .owl-nav button:hover span { color: #fff !important; }
    .owl-featured .owl-nav button span { color: #555; font-size: 1.2rem; line-height: 1; }
    .owl-featured .owl-prev { left: -20px; }
    .owl-featured .owl-next { right: -20px; }
    .owl-featured .owl-dots { margin-top: 18px; text-align: center; }
    .owl-featured .owl-dot span {
      width: 8px; height: 8px; border-radius: 50%; background: #e0e0e0; margin: 0 4px;
      display: block; transition: all .25s;
    }
    .owl-featured .owl-dot.active span { background: var(--primary); width: 22px; border-radius: 4px; }

    /* ── ACTIVE CAMPAIGNS SECTION ─────────────────── */
    .campaigns-section { padding: 32px 0 20px; background: #fff; }

    /* filter pills */
    .filter-pill {
      border: 1.5px solid #e8e8e8; background: #fff;
      border-radius: 50px; padding: 6px 18px;
      font-size: 0.8rem; font-weight: 600; color: #777;
      cursor: pointer; transition: all .2s;
    }
    .filter-pill:hover, .filter-pill.active {
      background: var(--secondary); border-color: var(--secondary); color: #fff;
    }
    .filter-pill.active.orange { background: var(--primary); border-color: var(--primary); }

    /* standard campaign card */
    .camp-card {
      border-radius: var(--card-r); border: 1.5px solid #f0f0f0;
      background: #fff; overflow: hidden; height: 100%;
      display: flex; flex-direction: column;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .camp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.09); border-color: #f3f3f3; }
    .camp-card-img {
      height: 172px;
      display: flex; align-items: center; justify-content: center; font-size: 3rem;
    }
    .camp-card-img.g1 { background: linear-gradient(135deg,#ffe0d0,#fff3e0); }
    .camp-card-img.g2 { background: linear-gradient(135deg,#fce4ec,#f3e5f5); }
    .camp-card-img.g3 { background: linear-gradient(135deg,#e3f2fd,#e0f2f1); }
    .camp-card-img.g4 { background: linear-gradient(135deg,#f3e5f5,#ede7f6); }
    .camp-card-img.g5 { background: linear-gradient(135deg,#e8f5e9,#e0f7fa); }
    .camp-card-img.g6 { background: linear-gradient(135deg,#fff3e0,#fffde7); }
    .camp-card-body { padding: 18px 18px 12px; flex: 1; display: flex; flex-direction: column; }
    .camp-card-body h6 { font-weight: 700; font-size: 0.93rem; line-height: 1.4; margin-bottom: .5rem; color: var(--secondary); }
    .camp-card-body .desc { font-size: 0.8rem; color: #999; line-height: 1.5; margin-bottom: .75rem; flex: 1; }
    .camp-progress { height: 6px; border-radius: 50px; background: #f0f0f0; margin: 8px 0 6px; overflow: hidden; }
    .camp-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
    .camp-bar.success { background: linear-gradient(90deg, #22c55e, #86efac); }
    .camp-meta { font-size: 0.78rem; color: #aaa; display: flex; justify-content: space-between; margin-top: auto; }
    .camp-meta strong { color: var(--secondary); font-size: 0.82rem; }
    .camp-card-footer {
      padding: 12px 18px;
      border-top: 1px solid #f8f8f8;
      display: flex; justify-content: space-between; align-items: center;
    }

    /* ── CTA STRIP ────────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary) 0%, #2c2c4e 100%);
      padding: 32px 0; position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(255,209,102,.15) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none;
    }
    .cta-section::after {
      content: ''; position: absolute; bottom: -60px; left: 5%;
      width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(255,107,43,.12) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none;
    }
    .cta-section h2 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; color: #fff; }
    .cta-section p { color: rgba(255,255,255,.6); }
    .btn-cta-p { background: var(--primary); color: #fff; border: none; border-radius: 50px; padding: 14px 32px; font-weight: 700; font-size: 0.97rem; transition: all .2s; 
	/* box-shadow: 0 6px 20px rgba(255,107,43,.4);*/
	}
    .btn-cta-p:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
    .btn-cta-o { 
	background: transparent;  
	color: #FFF; border: 1.5px solid #ccc4e8;
	border-radius: 50px; 
	padding: 14px 32px; 
	font-weight: 600; font-size: 0.97rem; transition: all .2s; 
	}
    .btn-cta-o:hover { border-color: #fff; border: 1.5px solid rgb(226, 237, 238); 
	background: #806ec4;
    color: #fff;
    transform: translateY(-2px);
	}

    /* ── FOOTER ───────────────────────────────────── */
    footer { background: var(--secondary); color: rgba(255,255,255,.65); padding: 60px 0 18px; }
    footer h6 { color: #fff; font-family: 'Poppins'; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; }
    footer a { color: rgba(255,255,255,.55); font-size: 0.85rem; display: block; margin-bottom: .45rem; transition: color .2s; }
    footer a:hover { color: var(--primary); }
    .footer-divider { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; margin-top: 40px; font-size: 0.8rem; color: rgba(255,255,255,.3); }
    .social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 0.95rem; transition: all .2s; }
    .social-icon:hover { background: var(--primary); color: #fff; }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width:768px) {
      .hero { padding: 30px 0 20px; text-align: center; }
      .hero .lead { margin: 0 auto 1.5rem; }
      .hero-search { margin: 0 auto; }
      .hero-trust { justify-content: center; }
      .stat-divider { display: none; }
      .owl-featured .owl-prev { left: 0; }
      .owl-featured .owl-next { right: 0; }
	 .btn-cta-o { 
			background: #806ec4;  
			color: #FFF; border: 1.5px solid #ccc4e8;
	 }
    }

    /* ── NEW BADGE ─────────────────────────────────── */
    .new-badge {
      position: fixed; top: 12px; right: 12px;
      background: var(--primary); color: #fff;
      font-size: 0.68rem; font-weight: 700; padding: 4px 11px;
      border-radius: 50px; z-index: 9999; letter-spacing: .05em;
      box-shadow: 0 3px 12px rgba(255,107,43,.4);
    }

.mobile-nav__content {
  width: 300px;
  background-color: var(--thm-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}