 :root {
      --navy: #1b3a5c;
      --navy-dark: #0f2640;
      --teal: #1a6b6b;
      --gold: #f5a623;
      --gold-dark: #d4891a;
      --gold-bg: #fdf3e1;
      --white: #ffffff;
      --light-gray: #f7f8fa;
      --text: #333333;
      --text-light: #666;
      --border: #e0e0e0;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Lato', sans-serif; color: var(--text); background: #fff; font-size: 15px; line-height: 1.6; }

    /* â”€â”€ TOPBAR â”€â”€ */
    .topbar {
      background: var(--navy-dark);
      padding: 6px 0;
      font-size: 12px;
    }
    .topbar a { color: rgba(255,255,255,0.7); text-decoration: none; margin-left: 1rem; }
    .topbar a:hover { color: var(--gold); }
    .topbar .search-box {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 3px;
      color: #fff;
      font-size: 12px;
      padding: 3px 10px;
      outline: none;
      width: 160px;
    }
    .topbar .search-box::placeholder { color: rgba(255,255,255,0.5); }

    /* â”€â”€ NAVBAR â”€â”€ */
    .main-nav {
      background: var(--navy);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .navbar-brand-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      text-decoration: none;
    }
    .brand-logo {
      width: 38px; height: 38px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; color: #fff; font-size: 16px;
      flex-shrink: 0;
    }
    .brand-text { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.3; }
    .brand-text small { display: block; font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }

    .main-nav .nav-link {
      color: rgba(255,255,255,0.88) !important;
      font-size: 12.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 20px 14px !important;
      border-bottom: 3px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active { color: var(--gold) !important; border-bottom-color: var(--gold); }
    .donate-btn {
      background: var(--gold);
      color: var(--navy-dark) !important;
      font-weight: 700 !important;
      padding: 8px 20px !important;
      border-radius: 3px;
      margin: auto 0 auto 10px;
      border-bottom: none !important;
      font-size: 12px !important;
      transition: background 0.2s !important;
    }
    .donate-btn:hover { background: var(--gold-dark) !important; color: #fff !important; }

    /* â”€â”€ HERO CAROUSEL â”€â”€ */
    .hero-carousel { position: relative; }
    .carousel-slide {
      min-height: 88vh;
      display: flex;
      align-items: center;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .carousel-slide::before {
      content: ''; position: absolute; inset: 0; z-index: 1;
    }
    .slide-1 { background-image: url('banner1.webp'); }
    .slide-1::before { background: linear-gradient(100deg, rgba(11,38,64,0.92) 0%, rgba(26,107,107,0.75) 55%, rgba(245,166,35,0.18) 100%); }
    .slide-2 { background-image: url('banner2.webp'); }
    .slide-2::before { background: linear-gradient(100deg, rgba(11,38,64,0.9) 0%, rgba(11,38,64,0.7) 55%, rgba(245,166,35,0.15) 100%); }
    .slide-3 { background-image: url(''); }
    .slide-3::before { background: linear-gradient(100deg, rgba(11,38,64,0.91) 0%, rgba(26,107,107,0.72) 55%, rgba(245,166,35,0.2) 100%); }

    .slide-content { position: relative; z-index: 3; }

    .slide-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--navy-dark);
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 14px; border-radius: 2px;
      margin-bottom: 1.4rem;
    }
    .slide-content h1 {
      font-family: 'Merriweather', serif;
      font-size: 40px;
      font-weight: 700; color: #fff; line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .slide-content h1 em { font-style: normal; color: var(--gold); }
    .slide-content p {
      font-size: 1.08rem; color: rgba(255,255,255,0.85);
      max-width: 500px; line-height: 1.8; margin-bottom: 2.2rem;
    }

    /* Animate slide text */
    .carousel-item .slide-tag,
    .carousel-item h1,
    .carousel-item .slide-content p,
    .carousel-item .hero-btns {
      opacity: 0; transform: translateY(24px); transition: none;
    }
    .carousel-item.active .slide-tag  { animation: upFade 0.55s 0.08s ease forwards; }
    .carousel-item.active h1          { animation: upFade 0.55s 0.22s ease forwards; }
    .carousel-item.active .slide-content p { animation: upFade 0.55s 0.38s ease forwards; }
    .carousel-item.active .hero-btns  { animation: upFade 0.55s 0.52s ease forwards; }
    @keyframes upFade { to { opacity:1; transform:translateY(0); } }

    .btn-gold {
      background: var(--gold); color: var(--navy-dark);
      font-weight: 700; font-size: 13px; padding: 12px 28px;
      border-radius: 3px; text-decoration: none; display: inline-block;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
    .btn-ghost-white {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,0.5);
      font-weight: 700; font-size: 13px; padding: 11px 28px;
      border-radius: 3px; text-decoration: none; display: inline-block;
      transition: all 0.2s;
    }
    .btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

    /* Carousel controls */
    .carousel-control-prev, .carousel-control-next {
      width: 48px; height: 48px;
      background: rgba(255,255,255,0.13);
      border: 2px solid rgba(255,255,255,0.28);
      border-radius: 50%;
      top: 50%; transform: translateY(-50%);
      bottom: auto; z-index: 10;
      transition: background 0.2s, border-color 0.2s;
    }
    .carousel-control-prev { left: 20px; }
    .carousel-control-next { right: 20px; }
    .carousel-control-prev:hover, .carousel-control-next:hover { background: var(--gold); border-color: var(--gold); }
    .carousel-control-prev-icon, .carousel-control-next-icon { width: 16px; height: 16px; }
    .carousel-indicators { bottom: 24px; z-index: 10; gap: 6px; }
    .carousel-indicators [data-bs-target] {
      width: 28px; height: 3px; border-radius: 2px;
      background: rgba(255,255,255,0.4); border: none;
      transition: background 0.3s, width 0.3s;
    }
    .carousel-indicators .active { background: var(--gold); width: 44px; }

    /* Floating card on hero bottom */
    .hero-cards-row {
      position: relative; z-index: 5;
      margin-top: -60px;
    }
    .hero-mini-card {
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      padding: 18px 16px;
      display: flex; gap: 14px; align-items: flex-start;
      height: 100%;
      border-top: 3px solid var(--gold);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .hero-mini-card:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,0.15); }
    .hero-mini-card img { width: 64px; height: 52px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
    .hero-mini-card h6 { font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.35; }
    .hero-mini-card p { font-size: 11.5px; color: var(--text-light); margin: 0; line-height: 1.5; }

    /* â”€â”€ SECTION STYLES â”€â”€ */
    section { padding: 70px 0; }
    .sec-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 8px; display: block;
    }
    .sec-title {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 700; color: var(--navy);
      margin-bottom: 1rem; line-height: 1.3;
    }
    .sec-title-white { color: #fff; }
    .sec-sub { font-size: 15px; color: var(--text-light); max-width: 600px; line-height: 1.75; }
    .gold-bar { width: 44px; height: 3px; background: var(--gold); margin: 14px 0 24px; border-radius: 2px; }
    .gold-bar-center { margin: 14px auto 24px; }

    /* â”€â”€ WHAT WE DO â”€â”€ */
    .what-we-do { background: #fff; }
    .work-card {
      text-align: center; padding: 2rem 1.5rem;
      border: 1px solid var(--border); border-radius: 8px;
      height: 100%;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      position: relative; overflow: hidden;
    }
    .work-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--gold); transform: scaleX(0);
      transition: transform 0.3s;
    }
    .work-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
    .work-card:hover::after { transform: scaleX(1); }
    .work-icon {
      width: 70px; height: 70px;
      background: var(--gold-bg); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--gold); margin: 0 auto 1.2rem;
      transition: background 0.25s;
    }
    .work-card:hover .work-icon { background: var(--gold); color: #fff; }
    .work-card h5 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .work-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
    .work-card .card-link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 700; color: var(--gold);
      text-decoration: none; margin-top: 1rem;
    }
    .work-card .card-link:hover { color: var(--gold-dark); }

    /* â”€â”€ HOW WE ARE ORGANISED â”€â”€ */
    .organised-bg { background: var(--gold-bg); }
    .org-card {
      background: #fff; border-radius: 8px;
      padding: 2rem 1.8rem; height: 100%;
      border: 1px solid rgba(245,166,35,0.2);
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
	      text-align: center;
    }
    .org-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
    .org-card .org-num {
      font-family: 'Merriweather', serif;
      font-size: 2.8rem; font-weight: 700;
      color: var(--gold); line-height: 1; margin-bottom: 6px;
    }
    .org-card h5 { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .org-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 1.2rem; }
    .org-card .learn-more {
      display: inline-flex; align-items: center; gap: 5px;
      width: 34px; height: 34px;
      background: var(--navy); color: #fff;
      border-radius: 50%; text-decoration: none; font-size: 14px;
      justify-content: center;
      transition: background 0.2s;
    }
    .org-card .learn-more:hover { background: var(--gold); }

    /* â”€â”€ WHERE WE WORK â”€â”€ */
    .where-work { background: var(--navy); }
    .map-container {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }
    .map-container img { width: 100%; display: block; filter: brightness(0.85) saturate(0.7); }
    .map-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(11,38,64,0.5) 0%, transparent 60%);
    }
    .state-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .state-pill {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.8);
      font-size: 11.5px; padding: 5px 12px; border-radius: 20px;
      transition: background 0.2s, color 0.2s;
    }
    .state-pill:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
    .state-stat { text-align: center; padding: 1rem; }
    .state-stat .num { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
    .state-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

    /* â”€â”€ WORK WITH US â”€â”€ */
    .work-with { background: #fff; }
    .wwu-card {
      border: 1px solid var(--border);
      border-radius: 8px; padding: 2rem;
      height: 100%; position: relative; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
	  text-align: center;
    }
    .wwu-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
    .wwu-card .top-accent {
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--gold);
    }
    .wwu-card h5 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 1rem 0 8px; }
    .wwu-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
    .wwu-icon {
      width: 52px; height: 52px; background: var(--gold-bg);
      border-radius: 8px; display: flex; align-items: center;
      justify-content: center; font-size: 1.5rem; color: var(--gold);
    }
    .wwu-card .arrow-btn {
      width: 32px; height: 32px; background: var(--navy);
      color: #fff; border-radius: 50%; display: inline-flex;
      align-items: center; justify-content: center; font-size: 13px;
      text-decoration: none; margin-top: 1.2rem;
      transition: background 0.2s;
    }
    .wwu-card .arrow-btn:hover { background: var(--gold); }

    /* â”€â”€ RESOURCES â”€â”€ */
    .resources-bg { background: var(--gold-bg); }
    .res-card {
      background: #fff; border-radius: 8px;
      padding: 1.8rem; height: 100%;
      border: 1px solid rgba(245,166,35,0.15);
      box-shadow: 0 3px 12px rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
	  text-align: center;
    }
    .res-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
    .res-card .res-icon {
      font-size: 3rem; color: var(--gold); margin-bottom: 14px;
    }
    .res-card h5 { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .res-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }
    .res-card .res-link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 700; color: var(--gold);
      text-decoration: none; margin-top: 1rem;
    }
    .res-card .res-link:hover { color: var(--gold-dark); }

    /* â”€â”€ STORIES â”€â”€ */
    .stories-bg { background: #fff; }
    .story-card {
      border-radius: 8px; overflow: hidden;
      border: 1px solid var(--border);
      transition: box-shadow 0.25s, transform 0.25s;
      height: 100%;
    }
    .story-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.12); transform: translateY(-4px); }
    .story-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
    .story-card-body { padding: 1.4rem; }
    .story-tag {
      display: inline-block;
      background: var(--gold-bg); color: var(--gold);
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 3px 9px; border-radius: 2px;
      margin-bottom: 10px;
    }
    .story-card-body h5 { font-size: 14.5px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
    .story-card-body p { font-size: 12.5px; color: var(--text-light); line-height: 1.65; }

    /* â”€â”€ MEDIA â”€â”€ */
    .media-bg { background: var(--navy); }
    .media-tab-btns { display: flex; gap: 0; border-bottom: 2px solid rgba(255,255,255,0.12); margin-bottom: 2rem; }
    .media-tab-btns button {
      background: none; border: none; color: rgba(255,255,255,0.6);
      font-size: 13px; font-weight: 600; padding: 10px 24px;
      cursor: pointer; border-bottom: 3px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .media-tab-btns button.active { color: var(--gold); border-bottom-color: var(--gold); }
    .media-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 1.4rem;
      transition: background 0.2s, transform 0.2s;
      height: 100%;
    }
    .media-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
    .media-card .media-date { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
    .media-card h6 { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 8px; }
    .media-card p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.65; }
    .media-card .src { font-size: 11px; color: var(--gold); font-style: italic; margin-top: 8px; }

    /* â”€â”€ CONTACT â”€â”€ */
    .contact-bg { background: var(--light-gray); }
    .contact-card {
      background: #fff; border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      padding: 2.5rem; height: 100%;
    }
    .contact-card h5 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 1.4rem; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
    .contact-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.75; }
    .contact-card .info-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 13px; }
    .contact-card .info-line i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
    .form-control-custom {
      border: 1px solid var(--border); border-radius: 4px;
      padding: 10px 14px; font-size: 13px; width: 100%;
      outline: none; font-family: 'Lato', sans-serif;
      transition: border-color 0.2s;
    }
    .form-control-custom:focus { border-color: var(--gold); }
    .btn-submit {
      background: var(--gold); color: var(--navy-dark);
      font-weight: 700; font-size: 13px; padding: 12px 32px;
      border: none; border-radius: 4px; cursor: pointer;
      transition: background 0.2s; width: 100%;
    }
    .btn-submit:hover { background: var(--gold-dark); color: #fff; }

    /* â”€â”€ FOOTER â”€â”€ */
    footer { background: var(--navy-dark); padding: 50px 0 20px; }
    .footer-logo { font-family: 'Merriweather', serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .footer-logo span { color: var(--gold); }
    footer p { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
    .footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .social-icon {
      width: 34px; height: 34px; background: rgba(255,255,255,0.08);
      border-radius: 4px; display: inline-flex; align-items: center;
      justify-content: center; color: rgba(255,255,255,0.6);
      font-size: 15px; text-decoration: none; margin-right: 6px;
      transition: background 0.2s, color 0.2s;
    }
    .social-icon:hover { background: var(--gold); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 40px; padding-top: 20px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.we-wh-img{
	width:100px;
}	
.we-wh-img1{
	width:150px;
}	
/* â”€â”€â”€ CTA â”€â”€â”€ */
.section-tag {
    display: inline-block;
    background: #f5e6c8;
    color: #c8922a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
    .cta-bg { background: var(--cream); }
    .cta-box {
      background: #1b3a5c;
      border-radius: 16px;
      padding: 4rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: var(--gold);
      opacity: 0.08;
      border-radius: 50%;
    }
    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 260px; height: 260px;
      background: var(--green);
      opacity: 0.2;
      border-radius: 50%;
    }
    .cta-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: #fff;
      margin-bottom: 1rem;
    }
    .cta-box p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }
	#callme1 img {
    width: 60px;
}
#callme1 {
    position: fixed;
    right: 10px;
    bottom: 150px;
    width: 60px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}
.whatsup1 img {
    width: 50px;
}
.whatsup1 {
    position: fixed;
    right: 10px;
    width: 50px;
    bottom: 90px;
    z-index: 9999;
}
.cu-lg-wdth{
	width:220px;
	border-radius:10px;
}
@media(max-width:767px)
{
	.main-nav{
		position:static;
	}
}
@MEDIA(max-width:424px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}

@MEDIA(max-width:374px)
{
	.navbar-brand-wrap{
		gap: 5px;
	}
}