/* SECTION */
.news-banner {
  background: #ebe0f7; /* same lavender tone */
  padding: 80px 0 100px 0;
  font-family: "Poppins", sans-serif;
}

.news-banner .container {
  max-width: 1200px;   /* 👈 slightly tighter container */
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
/* LEFT CONTENT */
.banner-content {
    flex: 0 0 45%;
  opacity: 1;              /* ✅ prevent scroll-hide */
  transform: none;         /* ✅ prevent animation shift */
  visibility: visible;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #6c7a89;
  margin-bottom: 20px;
}

.breadcrumb span {
  margin: 0 8px;
}

.breadcrumb strong {
  color: #2ecc71;
}

/* TITLE */
.banner-content h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #1a9aa6, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.banner-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #5c6b7a;
  max-width: 520px;
}

/* IMAGE SIDE */
.banner-image {
 flex: 0 0 55%;
  display: flex;
  justify-content: flex-end;

  opacity: 1;          /* ✅ prevent scroll-hide */
  transform: none;
}

/* IMAGE */
.banner-image img {
  width: 100%;
  max-width: 650px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);

  transition: 0.4s ease;
}

/* HOVER */
.banner-image img:hover {
  transform: scale(1.03);
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1200px) {
  .news-banner .container {
    max-width: 1100px;
    gap: 40px;
  }

  .banner-content h1 {
    font-size: 52px;
  }

  .banner-image img {
    max-width: 550px;
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .news-banner {
    padding: 60px 20px;
  }

  .news-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .banner-content,
  .banner-image {
    flex: 100%;
  }

  .banner-image {
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 38px;
  }

  .banner-content p {
    margin: auto;
  }

  .banner-image img {
    height: auto;
  }
}

/* featured story*/

/* SECTION */
.spotlight-section {
  padding: 80px 20px;
  background: #f7f8fb;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.spotlight-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* CARD */
.spotlight-card {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.spotlight-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.spotlight-img {
  position: relative;
  flex: 0 0 40%;
}

.spotlight-img img {
  width: 100%;
  border-radius: 12px;
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2ecc71;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* CONTENT */
.spotlight-content {
  flex: 1;
}

/* META */
.meta {
  font-size: 13px;
  color: #7a8a99;
  margin-bottom: 10px;
}

.meta span {
  margin-right: 15px;
}

/* TITLE */
.spotlight-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* TEXT */
.spotlight-content p {
  font-size: 16px;
  color: #5c6b7a;
  line-height: 1.6;
}

/* BUTTON */
.read-btn {
  display: inline-block;
  margin-top: 15px;
  color: #1dbf73;
  font-weight: 500;
  text-decoration: none;
}

/* ================= MODAL ================= */
.news-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}


/* SHOW */
.news-modal.active {
  display: flex;
}

/* BOX */
.modal-box {
  background: #fff;
  width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 20px;
}

.modal-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* CLOSE */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 18px;
}

/* IMAGE */
.modal-img img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* MODAL CONTENT */
.modal-content h2 {
  margin: 10px 0;
}

/* CLOSE BUTTON */
.close-modal-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #1dbf73;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .spotlight-card {
    flex-direction: column;
  }

  .modal-box {
    width: 95%;
  }
}

/* BASE BORDER (very light) */
.spotlight-card {
  border: 1px solid #e6f4ea; /* soft base */
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.spotlight-card:hover {
  border: 1px solid #2ecc71; /* green highlight */
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}

/*Latest Updates*/

/* SECTION */
.updates-section {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .updates-section,
  .spotlight-section {
    padding-bottom: 20px !important; /* 👈 reduce gap from above */
  }
}
.container {
  max-width: 1200px;
  margin: auto;
}

/* TABS */
.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: #eaf3ef;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.tab.active {
  background: #1dbf73;
  color: #fff;
}

/* TITLE */
.section-title {
     margin-bottom: 40px; /* increase spacing below */
  font-size: 32px;
  margin-bottom: 30px;
}

/* GRID */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.update-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
    display: flex;
  flex-direction: column;
  height: 100%;
}

.update-card.show {
  display: block;
}

.update-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* TAG */
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1dbf73;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-btn {
  margin-top: auto;
  
}
.card-btn button {
  background: none;
  border: none;
  color: #1dbf73;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: 0.3s;
}
/* animated underline */
.card-btn button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #1dbf73;
  transition: 0.3s ease;
}

.card-btn button:hover {
  color: #159a5c;
}

.card-btn button:hover::after {
  width: 100%;
}
.meta {
  font-size: 13px;
  color: #7a8a99;
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14px;
  color: #5c6b7a;
}

/* LOAD BUTTON */
.load-wrap {
  text-align: center;
  margin-top: 40px;
}

.load-btn {
  background: #1dbf73;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .updates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .updates-grid {
    grid-template-columns: 1fr;
  }
}

/* WRAPPER */
.load-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* BUTTON */
.load-btn {
  background: linear-gradient(90deg, #1a9aa6, #2ecc71);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;

  transition: all 0.3s ease;
}

/* HOVER */
.load-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
  
}

/*latest news */


.events-section {
  padding: 100px 20px 80px; /* desktop */
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
}

/* Tablet */
@media (max-width: 992px) {
  .events-section {
     padding-top: 20px !important; /* 👈 bring heading up */
    padding: 70px 20px 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .events-section {
    padding: 40px 15px 50px; /* 👈 reduced top gap */
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .events-section {
    padding: 30px 12px 40px; /* 👈 tighter */
  }
}


.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.events-header {
  text-align: center;
  margin-bottom: 50px;
}

.events-header .tag {
  background: #eaf3ef;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #1dbf73;
}

.events-header h2 {
  font-size: 40px;
  margin: 15px 0;
}

.events-header h2 span {
  color: #1dbf73;
}
@media (max-width: 768px) {
  .events-header {
    margin-top: 0;
  }

  .events-header h2 {
    margin-top: 10px;
  }
}

.events-header p {
  color: #6c7a89;
}

/* SLIDER */
.events-slider {
  overflow: hidden;
  position: relative;
}

.events-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* CARD */
.event-card {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.event-img {
  position: relative;
  height: 200px;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DATE BOX */
.date-box {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1dbf73;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.date-box span {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

/* BODY */
.event-body {
  padding: 20px;
}

.category {
  font-size: 13px;
  color: #1dbf73;
}

.event-body h3 {
  margin: 10px 0;
  font-size: 18px;
}

.event-body p {
  font-size: 14px;
  color: #5c6b7a;
}

.event-meta {
  font-size: 13px;
  margin: 10px 0;
}

/* LINK */
.event-body a {
  color: #1dbf73;
  font-weight: 500;
  text-decoration: none;
}

.event-body a:hover {
  text-decoration: underline;
}

/* BUTTON */
.event-btn {
  text-align: center;
  margin-top: 50px;
}

.event-btn a {
  background: linear-gradient(90deg, #1a9aa6, #2ecc71);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

/* AUTO SCROLL */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MODAL BACKDROP */
.event-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* SHOW */
.event-modal.active {
  display: flex;
}

/* MODAL BOX */
.event-modal-box {
  width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  position: relative;
}

/* IMAGE */
.event-modal-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

/* CONTENT */
.event-modal-content {
  padding: 25px;
}

.event-modal-content h2 {
  font-size: 28px;
  margin: 10px 0;
}

.event-modal-content p {
  color: #5c6b7a;
  line-height: 1.7;
}

/* META */
.meta {
  font-size: 14px;
  color: #7a8a99;
}

/* CLOSE ICON */
.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 18px;
  cursor: pointer;
}

/* CLOSE BUTTON */
.close-btn-main {
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #1a9aa6, #2ecc71);
  color: #fff;
  cursor: pointer;
}

/* LINK STYLE */
.view-link {
  color: #1dbf73;
  font-weight: 500;
  text-decoration: none;
}

.view-link:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .event-modal-box {
    width: 95%;
  }

  .event-modal-box img {
    height: 220px;
  }

  .event-modal-content h2 {
    font-size: 20px;
  }
}

.newsletter-section {
  background: #1aa37a; /* green background */
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.newsletter-box {
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.newsletter-box h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
}

/* TEXT */
.newsletter-box p {
  color: #e6f5f0;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* FORM */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* INPUT */
.newsletter-form input {
  width: 320px;
  padding: 15px 18px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  outline: none;
}

/* BUTTON */
.newsletter-form button {
  background: #e9ecef;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.newsletter-form button:hover {
  background: #dfe4ea;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .newsletter-box h2 {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .spotlight-section,
  .banner-section,
  .events-section {
    padding-bottom: 30px !important;
  }

}
.ch-news-carousel{
    display:flex;
    gap:22px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.ch-news-carousel::-webkit-scrollbar{
    display:none;
}

.ch-news-card{
    flex:0 0 calc(33.333% - 15px);
}
.news-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.news-modal-overlay.show{
    display:flex;
}

.news-modal-box{
    width:900px;
    max-width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    max-height:90vh;
    overflow-y:auto;
    position:relative;
}

.news-modal-box img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.news-modal-content{
    padding:30px;
}

.news-modal-content h2{
    margin:15px 0;
}

.news-modal-close{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:24px;
    cursor:pointer;
}

.ch-news-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.ch-news-carousel::-webkit-scrollbar {
    display: none;
}

.ch-news-card {
    flex: 0 0 calc(33.333% - 16px);
}

@media (max-width: 768px) {
    .ch-news-card {
        flex: 0 0 85%;
    }
}