:root {
      --orange: #eea320;
      --green:  #3eb767;
      --green-light: #4CAF50;
    }

    body { font-family: "Google Sans", sans-serif; overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6,.fw-800 { font-family: 'Quicksand', sans-serif;font-weight: 800; }

    /* ── colours ── */
    .text-orange  { color: var(--orange) !important; }
    .text-green   { color: var(--green)  !important; }
    .bg-green     { background-color: var(--green)       !important; }
    .bg-orange    { background-color: var(--orange)      !important; }
    .bg-dark-footer { background-color: #1e2128 !important; }
	.black-text {color:#000000 !important;}
    /* ── SIDE DRAWER ── */
    .drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.5);
      z-index: 1040;
      opacity: 0; visibility: hidden;
      transition: .3s;
    }
    .drawer-overlay.open { opacity:1; visibility:visible; }

    .side-drawer {
      position: fixed;
      top:0; left:-320px;
      width: 300px;
      height: 100%; background:#fff;
      z-index: 1050;
      overflow-y: auto;
      padding: 28px 24px;
      transition: left .35s cubic-bezier(.4,0,.2,1);
      box-shadow: 4px 0 24px rgba(0,0,0,.15);
    }
    .side-drawer.open { left:0; }

    .drawer-stat-num {
      font-family:"Nunito Sans", sans-serif;
      font-size:22px; font-weight:800;
      color:var(--green); min-width:56px;
    }

    /* ── NAVBAR ── */
    .navbar { box-shadow:0 2px 10px rgba(0,0,0,.08); }
    .navbar-brand-text {
      font-family:"Nunito Sans", sans-serif;
      font-weight:800; font-size:14px;
      color:var(--green); line-height:1.2;
    }
    .logo-box {
      width:40px; height:40px;
      background:var(--green); border-radius:4px;
      font-family:"Nunito Sans", sans-serif;
      font-weight:800; font-size:9px; color:#fff;
      display:flex; align-items:center; justify-content:center;
      text-align:center; line-height:1.25;
      flex-shrink:0;
    }
    .hamburger-green {
      background:var(--green); border:none;
      width:38px; height:38px; border-radius:4px;
      display:flex; flex-direction:column;
      align-items:center; justify-content:center; gap:5px;
      cursor:pointer; flex-shrink:0;
    }
    .hamburger-green span { display:block; width:18px; height:2px; background:#fff; border-radius:2px; }
    .hamburger-green:hover { background:var(--green-light); }

    .nav-link {
      font-family:"Nunito Sans", sans-serif;
      font-size:16px; font-weight:600; color:#333 !important;
    }
    .nav-link.active-link { color:var(--orange) !important; border-bottom:2px solid var(--orange); }
    .nav-link:hover { color:var(--green) !important; }

    .dropdown-item:hover { background:#f5f5f5; color:var(--green); padding-left:22px; }

    .btn-donate-nav {
      background:var(--green); color:#fff !important;
      font-family:"Nunito Sans", sans-serif; font-weight:700; font-size:13px;
      border-radius:4px; padding:9px 20px;
      text-decoration:none; display:inline-flex; align-items:center; gap:7px;
      transition:background .2s; white-space:nowrap;
    }
    .btn-donate-nav:hover { background:var(--green-light) !important; }
    li.nav-item {
        padding: 10px;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
    /* ── HERO ── */
    .hero-section {
      min-height: 520px;
      background:url('../images/JFbanner.jpg') center/cover no-repeat;
      display:flex; align-items:center;
    }
    .hero-section h1 { font-size:clamp(26px,4vw,44px); font-weight:800; color:var(--green-light); }

    /* ── FLIP CARDS ── */
    .flip-card { height:280px; perspective:1000px; cursor:pointer; }
    .flip-inner {
      position:relative; width:100%; height:100%;
      transform-style:preserve-3d;
      transition:transform .65s cubic-bezier(.4,0,.2,1);
    }
    .flip-card:hover .flip-inner,
    .flip-card.flipped .flip-inner { transform:rotateY(180deg); }
    .flip-front, .flip-back {
      position:absolute; inset:0;
      backface-visibility:hidden;
      border-radius:10px;
      display:flex; flex-direction:column;
      align-items:center; justify-content:center;
      padding:28px; text-align:center;
    }
    .flip-front { background:var(--orange); }
    .flip-front.teal-bg { background:#7EC8C8; }
    .flip-icon-circle {
      width:76px; height:76px;
      background:rgba(0,0,0,.15); border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-size:30px; color:#fff; margin-bottom:16px;
    }
    .flip-front h3 { font-size:20px; font-weight:800; color:#fff; text-transform:uppercase; letter-spacing:1px; }
    .flip-back { background:#1a1a1a; transform:rotateY(180deg); }
    .flip-back h3 { font-size:17px; font-weight:700; color:#ffffff; margin-bottom:10px; }
    .flip-back p  { font-size:16px; color:#ffffff; line-height:1.7; margin-bottom:16px; }
    .flip-back a  {
      color:#ffffff; text-decoration:none;
      font-family:"Nunito Sans", sans-serif;
      font-size:12px; font-weight:700; letter-spacing:1px;
      text-transform:uppercase; border-bottom:1px solid var(--orange);
      padding-bottom:2px; transition:.2s;
    }
    .flip-back a:hover { color:#fff; border-color:#fff; }

    /* ── STATS BAR ── */
    .stats-bar { border:1px solid #e0e0e0; border-radius:8px; overflow:hidden; }
    .stat-item { border-right:1px solid #e0e0e0; padding:26px 10px; text-align:center; }
    .stat-item:last-child { border-right:none; }
    .stat-num { font-family:"Nunito Sans", sans-serif; font-size:34px; font-weight:800; color:var(--green); }
    .stat-lbl { font-size:11px; font-weight:700; color:#000000; text-transform:uppercase; letter-spacing:1px; margin-top:4px; }

    /* ── TABS (What We Do) ── */
    .custom-tabs { border-bottom:2px solid #e0e0e0; overflow-x:auto; flex-wrap:nowrap !important; }
    .custom-tabs .nav-link {
      border:none !important; border-radius:0 !important;
      border-bottom:3px solid transparent !important;
      margin-bottom:-2px; padding:10px 18px;
      color:#000000 !important; white-space:nowrap;
    }
    .custom-tabs .nav-link.active {
      color:#222 !important;
      border-bottom-color:#222 !important;
      background:transparent !important;
    }

    /* ── DIFFERENT section ── */
    .diff-icon-wrap {
      width:78px; height:78px; background:#e8f5e9; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-size:28px; color:var(--green); margin:0 auto 16px;
      transition:.3s;
    }
    .diff-card:hover .diff-icon-wrap { background:var(--green); color:#fff; transform:translateY(-5px); }

    /* ── NEWS ── */
    .news-img-wrap { height:160px; background:#f0f0f0; display:flex; align-items:center; justify-content:center; overflow:hidden; }
    .news-img-wrap img { width:100%; height:100%; object-fit:cover; }
    .news-card { transition:.3s; }
    .news-card:hover { transform:translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,.1) !important; }

    /* ── FOOTER ── */
    footer { background:#1e2128; color:#aaa; }
    footer h5 { font-family:"Nunito Sans", sans-serif; font-size:13px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:1px; }
    footer a { color:#888; text-decoration:none; transition:color .2s; }
    footer a:hover { color:var(--orange); }
    .footer-bottom { border-top:1px solid #2e3138; }
    .social-btn {
      width:34px; height:34px; border-radius:50%;
      border:1px solid #444; display:inline-flex;
      align-items:center; justify-content:center;
      color:#888; font-size:14px; text-decoration:none;
      transition:.2s;
    }
    .social-btn:hover { border-color:var(--orange); color:var(--orange); }

    /* ── helpers ── */
    .section-tag { font-family:"Nunito Sans", sans-serif; font-size:13px; font-weight:700; color:var(--orange); text-transform:uppercase; letter-spacing:2px; }
    .btn-orange { background:var(--orange); color:#fff; font-family:"Nunito Sans", sans-serif; font-weight:700; font-size:13px; border:none; border-radius:4px; padding:11px 26px; transition:.2s; text-decoration:none; display:inline-block; }
    .btn-orange:hover { background:#d98f00; color:#fff; }
    .btn-green-solid { background:var(--green); color:#fff; font-family:"Nunito Sans", sans-serif; font-weight:700; font-size:12px; border:none; border-radius:4px; padding:10px 22px; transition:.2s; text-decoration:none; display:inline-block; }
    .btn-green-solid:hover { background:var(--green-light); color:#fff; }

    .heading-main {
	background-image: linear-gradient(40deg, #297b44, #349f58, #ffc243, #FFAC00);
	background-size: 400% 400%;
	animation: gradient 7s ease infinite;
	background-clip: text;
	display: inline-block;
	max-width: none;
	margin-top: 12px;
	margin-bottom: 20px;
	float: none;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	background-color: #0d61ff;
    font-family: "Quicksand", sans-serif;
    /* font-family: 'Graphik web', sans-serif; */
	font-size: 74px;
	line-height: 115%;
	font-weight: 900;
	text-align: left;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.head-t-aboutus {letter-spacing: 1px;
    font-size: 30px;
    font-weight: 700;}
.subhead-t-aboutus {
    font-weight: 800;
    font-size: 18px;
}
.text_content_aboutus{max-width: 620px;
    font-size: 16px;
    line-height: 1.7;}


    /* tab start */
    .tab-btn {
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 20px;
    background: #f5f5f5;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: #e6f4ea;
    border-color: #28a745;
    color: #28a745;
}

.tab-pane {
    display: none;
    opacity: 0;
}

.tab-pane.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
    from {opacity:0; transform: translateY(15px);}
    to {opacity:1; transform: translateY(0);}
}

/* Image animation */
#tab-image {
    transition: all 0.4s ease;
}

/* Card animation */
#cardBox {
    transition: all 0.3s ease;
}
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 400px;
  font-family: Arial, sans-serif;
}

.custom-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

/* Tick icon */
.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4a300; /* orange tick */
  font-size: 18px;
  font-weight: bold;
}

/* Optional hover effect */
.custom-list li:hover {
  color: #000;
  transform: translateX(3px);
  transition: 0.2s ease;
}
    /* tab end */

    /* three box start */

.custom-section {
  display: flex;
  flex-wrap: nowrap; /* always single line */
  width: 100%;
}

.box {
  position: relative;
  flex: 1;
  height: 260px;
  overflow: hidden;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center box style */
.center-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
}

.center-box .content {
  text-align: center;
}

.icon {
  font-size: 48px;
  color: #bbb;
}

.title {
  margin-top: 10px;
  color: #999;
  letter-spacing: 3px;
  font-weight: 700;
}

/* 🔥 Overlay animation */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
      background: #eea320f5;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.overlay h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.overlay p {
  font-size: 14px;
  padding: 0 20px;
}

/* Hover effect */
.box:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

    /* three box end  */

    .flip-back {
    transform: rotateY(180deg);
    background: #3eb767;
    color:#ffffff;
}

/* Dropdown fix */
.navbar-nav .menu-item-has-children {
  position: relative;
}

.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 10px 0;
  border-radius: 6px;
}

.navbar-nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.navbar-nav .sub-menu li {
  padding: 5px 15px;
}

.navbar-nav .sub-menu li a {
  color: #333;
  font-size: 14px;
}

.mobile-nav{
  position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    padding: 24px 20px;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .15);
}

/* News Card */
.news-card {
    border-radius: 12px;
    transition: 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
}

/* Banner */
.news-banner {
    background: linear-gradient(135deg, #eea320, #eea320);
    height: 250px;
}

/* Content */
.news-content {
    font-size: 16px;
    line-height: 1.8;
}

/* Pagination */
.page-numbers {
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 6px;
    background: #f1f1f1;
    text-decoration: none;
    display: inline-flex;
}
.page-numbers.current {
    background: #eea320;
    color: #fff;
}

.news-content img {
    border-radius: 12px;
    margin: 20px 0;
}

.news-content h4 {
    color: #3eb767;
    margin-bottom: 10px;
}

.news-content ul li {
    padding: 6px 0;
    font-weight: 500;
}

.news-content img {
    border-radius: 12px;
    transition: 0.3s;
}

.news-content img:hover {
    transform: scale(1.05);
}

/* Card upgrade */
.news-card {
    border-radius: 15px;
    overflow: hidden;
}

.news-card img {
    transition: 0.4s;
    height: 210px;
}

.news-card:hover img {
    transform: scale(1.08);
}

/* interactive map start */

.map-wrapper {
    padding: 40px;
}

.map-box {
    position: relative; /* 🔥 MOST IMPORTANT */
    max-width: 1100px;
    margin: auto;
    border: 3px solid #28a745;
    border-radius: 10px;
    overflow: hidden;
}

.map-img {
    width: 100%;
    display: block;
}

/* Marker */
.marker {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Count bubble */
.count {
    background: #28a745;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: bold;
    animation: float 2s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Tooltip */
.tooltip {
position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    background: #000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}

/* Hover */
.marker:hover .tooltip {
    opacity: 1;
    left: 104%;
}

.marker:hover .count {
    animation: none;
    transform: scale(1.1);
}
.count {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.count:hover {cursor: pointer;}
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
        margin: 10% auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
}

.modal-box h3 {
    font-weight: 600;
}
.modal-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;

    max-height: 80vh;   /* 🔥 height limit */
    overflow: hidden;   /* outer scroll band */
}

/* Table container scroll */
.modal-table-wrap {
    max-height: 50vh;   /* 🔥 yaha scroll hoga */
    overflow-y: auto;
}

/* Optional scrollbar styling */
.modal-table-wrap::-webkit-scrollbar {
    width: 6px;
}
.modal-table-wrap::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
}
/* interactive map end */

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Images styling */
.big-img {
    width: 100%;
    border-radius: 12px;
}

.small-img {
    width: 50%;
    border-radius: 10px;
}

/* Overlay hidden by default */
.donate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7943d;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;

    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

/* Hover effect */
.image-card:hover .donate-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Plus button */
.plus-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #f7943d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plus-icon:hover {
    background: #000;
    color: #fff;
    transform: rotate(180deg);
}

/* Text */
.donate-overlay h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.donate-overlay p {
    font-size: 14px;
}

.why-section {
    background: #f8f8f8;
}

.sub-title {
    color: #f7943d;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.main-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
}

/* Box */
.feature-box {
    padding: 20px;
    transition: all 0.3s ease;
        text-align: center;
}


/* Text */
.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover effect 🔥 */

.testimonial-section {
    background: #f5f5f5;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    margin: 10px;
    height: 100%;
}

/* Quote */
.quote {
    font-size: 60px;
    color: #4caf50;
    line-height: 1;
}

/* Name */
.testimonial-card h5 {
    font-weight: 600;
    margin-top: 10px;
}

/* Green designation */
.designation {
    color: #28a745;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

/* Text */
.testimonial-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Slick spacing */
.slick-slide {
    padding: 10px;
}

/* 🔥 DOTS DESIGN (important) */
.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #f7943d;
    opacity: 0.4;
}

.slick-dots li.slick-active button:before {
    color: #f7943d;
    opacity: 1;
    font-size: 12px;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Hover effect */
.gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-content {
    padding: 15px;
}

.gallery-content h5 {
    font-weight: 600;
}

.gallery-content p {
    font-size: 14px;
    color: #555;
}

.gallery-strip {
    background: #f8f8f8;
    overflow: hidden;
}

.slide-item {
    padding: 5px;
}

.slide-item img {
    width: 100%;
    height: 120px; /* small size */
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* Hover effect */
.slide-item img:hover {
    transform: scale(1.05);
}

.vision-section {
    background: #f9f9f9;
}

/* Tag */
.tag {
    color: #f7943d;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Title */
.title {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Video Box */
.video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.video-box img {
    width: 100%;
    display: block;
}

/* Hover zoom */
.video-box:hover {
    transform: scale(1.03);
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

/* Pulse animation 🔥 */
.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(40,167,69,0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Hover */
.video-box:hover .play-btn {
    background: #f7943d;
}

.full-image img {width: 100%;}

.leadership-section {
    background: #f9f9f9;
}

/* Titles */
.sub-title {
    color: #f7943d;
    font-weight: 600;
    letter-spacing: 2px;
}

.main-title {
    font-weight: 700;
}

/* Card */
.leader-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

/* Image */
.leader-img {
    overflow: hidden;
}

.leader-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

/* Content */
.leader-content {
    padding: 20px;
}

.leader-content h5 {
    font-weight: 600;
}

.leader-content span {
    color: #28a745;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.leader-content p {
    font-size: 14px;
    color: #555;
}

/* 🔥 Hover Effect */
.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.leader-card:hover img {
    transform: scale(1.1);
}

/* Gradient overlay effect */
.leader-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.4s;
}

.leader-card:hover::after {
    opacity: 1;
}

/* job item start */

/* Background */
.job-list {
    /* background: linear-gradient(135deg, #f5f7fa, #e8f5e9); */
}

/* Card */
.job-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 17px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.job-item .icon {
    font-size: 24px;
}
/* Hover lift */
.job-item:hover {
    transform: translateY(-5px);
}

/* Title */
.job-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

/* Icon */
.job-title .icon {
        font-size: 24px;
}

/* Active rotate */
.job-item.active .icon {
    transform: rotate(45deg);
}

/* Content animation */
.job-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.job-item.active .job-content {
        max-height: max-content;
    opacity: 1;
    margin-top: 10px;
    text-align: left;
}

/* Button */
.apply-btn {
    background: linear-gradient(45deg, #f7943d, #ff5722);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: 10px;
    transition: 0.3s;
}

.apply-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,87,34,0.4);
}
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9999;
    top: 0;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

/* Box */
.popup-box {
    background: #fff;
    padding: 30px;
    width: 420px;
    border-radius: 15px;
    animation: popupFade 0.4s ease;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Inputs */
.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* Focus effect */
.popup-box input:focus,
.popup-box textarea:focus,
.popup-box select:focus {
    border-color: #f7943d;
    box-shadow: 0 0 8px rgba(247,148,61,0.3);
}

/* Button */
.popup-box button {
    width: 100%;
    background: linear-gradient(45deg, #28a745, #4caf50);
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    transition: 0.3s;
}

.popup-box button:hover {
    transform: scale(1.05);
}

/* Close */
.close {
    float: right;
    cursor: pointer;
}
/* job item end */
ul {
    list-style: none;
    padding-left: 0;
}
.container.py-5>img {
    margin: 0 auto;
    display: block;
}
.donation-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.donation-popup.show {
  display: block;
}

.donation-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.donation-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* News Image Fixed Size */
.news-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Card hover effect */
.news-card {
  transition: 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
}

/* Media Box */
/* Container */
.media-box-advanced {
    background: #fff;
    padding: 25px;
    border-left: 2px solid #3eb767;
}

/* Title */
.media-title {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.media-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* List */
.media-list-advanced {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Vertical line */
.media-list-advanced::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e0e0e0;
}

/* Item */
.media-list-advanced li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

/* Dot */
.media-list-advanced .dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  z-index: 2;
}

/* Content */
.media-list-advanced .content a {
  font-weight: 600;
  color: #222;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.media-list-advanced .content a:hover {
  color: var(--green);
}

.media-list-advanced .content span {
  font-size: 12px;
  color: #888;
}

/* Hover effect */
.media-list-advanced li:hover .dot {
  transform: scale(1.2);
}
/* Sidebar title thoda compact */
.media-box-advanced {
  padding: 20px;
}

/* Title size adjust */
.media-title {
  font-size: 18px;
}

/* Links thode compact */
.media-list-advanced .content a {
  font-size: 14px;
  line-height: 1.4;
}
.donation-body {
    max-height: 50vh;
    overflow-y: auto;
}
/* Responsive */
@media (max-width: 991px) {
  .media-box-advanced {
    margin-top: 30px;
  }
}