/* ==========================================================================
   CSDCI India - Pixel-Perfect Static Clone
   Original: www.csdcindia.org
   Fonts: Raleway (body/nav), Georgia (headings fallback for Quadon)
   Colors: #ffb703 (yellow/primary), #6dbfe8 (blue/secondary), #4e2300 (dark brown/accent), #343434 (dark bg)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
  min-height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: Raleway, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: #4e2300;
  text-decoration: none;
}
a:hover {
  color: #4e2300;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul {
  list-style: none;
}
.csdci-contact-list li,
.csdci-social-links li,
.csdci-nav-menu li,
.csdci-sub-menu li,
.csdci-footer-list li,
.csdci-footer-social-list li {
  list-style: none !important;
}
button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}
p {
  margin: 0 0 1em;
}
h2,
h3 {
  font-family: Raleway, Georgia, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.2em;
}

/* ─── CSS Variables ───────────────────────────────────────────────────────── */
:root {
  --yellow: #ffb703;
  --blue: #6dbfe8;
  --brown: #4e2300;
  --dark: #343434;
  --social-bg: #505050;
  --white: #ffffff;
  --text-muted: #aeaeae;
  --trans: 0.3s ease;
}

/* ─── Layout Containers ───────────────────────────────────────────────────── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* ─── HEADER ──────────────────────────────────────────────────────────────── */
.csdci-main-header {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.csdci-top-bar {
  background-color: var(--dark);
  color: var(--white);
  font-size: 14px;
}
.csdci-top-bar-inner {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  min-height: 40px;
}
.csdci-top-bar-left {
  flex: 0 0 50%;
  max-width: 50%;
}
.csdci-top-bar-center {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  justify-content: flex-end;
}
.csdci-top-bar-right {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  justify-content: flex-end;
  padding-left: 30px;
}

.csdci-contact-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  list-style: none !important;
}
.csdci-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}
.csdci-contact-item i {
  color: var(--white);
  font-size: 13px;
}
.csdci-contact-item a {
  color: var(--white);
}
.csdci-contact-item a:hover {
  color: var(--blue);
}
.csdci-contact-item span {
  color: var(--white);
}

.csdci-language-selector {
  display: flex;
  align-items: center;
}
.csdci-gt-selector {
  background: var(--white);
  color: #000;
  border: none;
  border-radius: 3px;
  height: 28px;
  padding: 0 8px;
  font-family: Raleway, sans-serif;
  font-size: 13px;
  cursor: pointer;
  outline: none;
}

.csdci-social-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none !important;
}
.csdci-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--social-bg);
  border-radius: 50%;
  color: var(--white);
  transition:
    background var(--trans),
    transform var(--trans);
}
.csdci-social-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}
.csdci-social-icon i {
  font-size: 13px;
}
.csdci-social-icon:hover {
  background: var(--blue);
  transform: scale(1.1);
}

/* Branding Bar */
.csdci-branding-bar {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.csdci-branding-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.csdci-logo-img {
  width: auto;
  max-height: 80px;
  max-width: 240px;
}
.csdci-partner-logos-img {
  max-height: 60px;
  max-width: 520px;
  width: auto;
}

/* Navigation Bar */
.csdci-nav-bar {
  background: var(--yellow);
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.csdci-nav-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.csdci-nav-inner {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.csdci-nav-menu-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}
.csdci-nav-search-wrap {
  flex: 0 0 auto;
  padding-left: 15px;
}

/* Hamburger */
.csdci-mobile-nav-toggle {
  display: none;
  font-size: 22px;
  color: #000;
  padding: 10px;
}

/* Nav Menu */
.csdci-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none !important;
}
.csdci-menu-item {
  position: relative;
}
.csdci-menu-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 13px;
  white-space: nowrap;
  position: relative;
  font-family: Raleway, sans-serif;
}
.csdci-menu-item > a i {
  font-size: 11px;
  transition: transform var(--trans);
}
.csdci-menu-item > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition:
    width var(--trans),
    left var(--trans);
}
.csdci-menu-item:hover > a::before,
.csdci-menu-item.active > a::before {
  width: 100%;
  left: 0;
}
.csdci-menu-item:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown Sub-menu */
.csdci-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brown);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--trans),
    transform var(--trans),
    visibility var(--trans);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1005;
  list-style: none !important;
}
.csdci-menu-item:hover .csdci-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.csdci-sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.csdci-sub-menu li:last-child {
  border-bottom: none;
}
.csdci-sub-menu a {
  display: block;
  color: var(--white);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
}
.csdci-sub-menu a:hover {
  background: var(--blue);
  color: #000;
}

/* Search */
.csdci-search-form {
  display: flex;
  align-items: center;
  background: var(--brown);
  border-radius: 3px;
  overflow: hidden;
  height: 34px;
  width: 190px;
}
.csdci-search-input {
  border: none;
  background: transparent;
  padding: 0 10px;
  color: var(--white);
  font-family: Raleway, sans-serif;
  font-size: 14px;
  width: 100%;
  outline: none;
}
.csdci-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.csdci-search-submit {
  background: transparent;
  border: none;
  color: var(--white);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: color var(--trans);
}
.csdci-search-submit:hover {
  color: var(--yellow);
}

/* ─── HERO SLIDER ─────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 494px;
  overflow: hidden;
  background: #000;
}
.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background var(--trans);
}
.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}
.slider-prev {
  left: 20px;
}
.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition:
    background var(--trans),
    transform var(--trans);
}
.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.2);
}

/* ─── NEWS TICKER ─────────────────────────────────────────────────────────── */
.news-ticker-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #e5d8cc;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  max-width: 1280px;
  margin: 25px auto 0; /* Add a top margin for spacing below the slider */
  width: calc(100% - 40px);
}
.ticker-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ticker-label {
  background: var(--brown);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  /* angled right edge */
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 50%,
    calc(100% - 10px) 100%,
    0 100%
  );
  padding-right: 28px;
}
.ticker-label i {
  color: var(--yellow);
  font-size: 13px;
  animation: tickerBoltPulse 1.4s ease-in-out infinite;
}
@keyframes tickerBoltPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }
}
.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* fade-out mask on right edge */
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

/* Pause marquee when hovering ANYWHERE inside the ticker content */
.ticker-content:hover .ticker-marquee {
  animation-play-state: paused;
}

/* Marquee wrapper clips the scrolling strip */
.ticker-marquee-wrap {
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

/* The scrolling strip — uses CSS animation */
.ticker-marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
  will-change: transform;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Each news entry */
.ticker-entry {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 6px 0 0;
  white-space: nowrap;
}

/* Separator dot between entries */
.ticker-entry::before {
  content: "◆";
  color: var(--brown);
  font-size: 7px;
  opacity: 0.5;
  margin: 0 14px 0 8px;
  flex-shrink: 0;
}

.ticker-entry a {
  color: #333;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  padding: 0 4px;
  transition:
    color 0.2s ease,
    font-weight 0.1s ease;
  display: inline-block;
}

/* Bold + colour change on hover of the link itself */
.ticker-entry a:hover {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker-date {
  display: inline-block;
  background: #f7f0ea;
  color: var(--brown);
  font-weight: 600;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 20px;
  margin-left: 8px;
  margin-right: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid #e2cfc0;
}

/* ─── COMMON SECTION STYLES ───────────────────────────────────────────────── */
.section-heading {
  font-family: Raleway, Georgia, sans-serif;
  font-size: 32px;
  font-weight: bold !important;
  color: var(--brown);
  text-align: center;
  margin-bottom: 20px;
}
.section-heading.text-left {
  text-align: left;
}
.section-heading.impact-heading {
  color: var(--brown);
}

/* ─── KEY STAKEHOLDERS ────────────────────────────────────────────────────── */
.stakeholders-section {
  padding: 50px 60px 30px;
  background: var(--blue);
  margin-top: 50px;
}
.stakeholders-section .section-heading {
  font-size: 32px;
  font-weight: 400;
  color: var(--brown);
  text-align: center;
  margin-bottom: 20px;
}
.stakeholders-grid {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}
.stakeholder-card {
  background: var(--yellow);
  border: 2px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 200px;
  cursor: pointer;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  overflow: hidden;
}
.stakeholder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  text-align: center;
  color: inherit;
  width: 100%;
}
.card-icon-wrap {
  width: 100%;
  background: var(--yellow);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.card-icon-wrap img {
  width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.card-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  font-family: Raleway, Georgia, sans-serif;
  background: var(--yellow);
  width: 100%;
  text-align: center;
  padding: 10px 5px;
}

/* ─── ABOUT US ────────────────────────────────────────────────────────────── */
.about-section {
  padding: 80px 0;
  background: #fcfcfc;
}
.about-cols {
  display: flex;
  gap: 50px;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}
.about-p strong {
  color: var(--brown);
}
.cta-btn {
  display: inline-block;
  background: var(--blue);
  color: #000;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: Raleway, sans-serif;
  border-radius: 3px;
  margin-top: 10px;
  transition:
    background var(--trans),
    transform var(--trans);
}
.cta-btn:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}
.about-video {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Video Thumbnail / Play Button */
.video-thumb {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.play-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 5;
  transition: transform var(--trans);
}
.play-btn:hover {
  transform: scale(1.08);
}
.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: var(--white);
  border-radius: 50%;
  color: var(--blue);
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  position: relative;
}
.play-circle i {
  margin-left: 4px;
}
.play-circle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  animation: ripplePulse 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
}
@keyframes ripplePulse {
  0% {
    border-width: 4px;
    transform: scale(1);
  }
  80% {
    border-width: 1px;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
  }
}

/* ─── NEWS AND UPDATE (About Sidebar) ─────────────────────────────────────── */
.about-news {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 28px 24px;
}
.about-news .section-heading {
  margin-bottom: 16px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}
.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: Raleway, Georgia, sans-serif;
}
.news-item-title a {
  color: var(--brown);
}
.news-item-title a:hover {
  color: var(--blue);
}
.news-item-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.news-item-date {
  font-weight: 600;
  color: var(--brown);
}
.news-item-time {
  margin-left: 6px;
}
.news-item-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin-bottom: 8px;
}
.news-item-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}
.news-item-readmore:hover {
  color: var(--brown);
}

/* ─── OUR IMPACT ──────────────────────────────────────────────────────────── */
.impact-section {
  padding: 60px 0;
  background: var(--blue);
}
.impact-section .section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.impact-section .section-heading {
  color: var(--brown);
  text-align: center;
  margin-bottom: 20px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.impact-card {
  background: var(--yellow);
  border: 2px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: transform var(--trans);
  overflow: hidden;
}
.impact-card:hover {
  transform: translateY(-8px);
}
.impact-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px 10px;
  min-height: 90px;
}
.impact-icon img {
  width: 80%;
  max-width: 70px;
  height: auto;
  object-fit: contain;
}
.impact-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  font-family: Raleway, Georgia, sans-serif;
  padding: 5px 5px 0;
}
.impact-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--brown);
  text-transform: uppercase;
  padding: 2px 5px 15px;
}

/* ─── OUR PARTNERS ────────────────────────────────────────────────────────── */
.partners-section {
  padding: 60px 0;
  background: var(--white);
}
.partners-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.partners-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}
.partners-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.partner-item {
  width: 200px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  /* border: 1px solid #f0f0f0; */
  border-radius: 4px;
}
.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ─── TESTIMONIALS & COUNSELING ───────────────────────────────────────────── */
.testimonials-section {
  padding: 80px 0;
  background: #fafafa;
}
.counseling-section {
  padding: 80px 0;
  background: var(--white);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.video-card {
  display: flex;
  flex-direction: column;
}
.video-card .video-thumb {
  max-width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.video-caption {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-top: 14px;
  text-align: center;
}
.section-btn-wrap {
  text-align: center;
  margin-top: 38px;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.csdci-main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}
.csdci-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 50px;
}
.csdci-footer-cols-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.csdci-footer-col {
  display: flex;
  flex-direction: column;
}
.csdci-footer-col-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}
.csdci-footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--yellow);
}
.csdci-footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none !important;
}
.csdci-footer-list a {
  font-size: 14px;
  font-weight: 500;
  color: #e0e0e0;
  transition:
    color var(--trans),
    padding-left var(--trans);
}
.csdci-footer-list a:hover {
  color: var(--yellow);
  padding-left: 5px;
}

.csdci-footer-newsletter {
}
.csdci-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.csdci-newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--white);
  font-family: Raleway, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--trans);
}
.csdci-newsletter-input:focus {
  border-color: var(--yellow);
}
.csdci-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.csdci-newsletter-btn {
  background: var(--blue);
  color: #000;
  font-family: Raleway, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  transition:
    background var(--trans),
    transform var(--trans);
}
.csdci-newsletter-btn:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

/* Footer Bottom */
.csdci-footer-bottom {
  background: #242424;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}
.csdci-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.csdci-copyright {
  font-size: 14px;
  color: #999;
}
.csdci-footer-social-list {
  display: flex;
  gap: 8px;
  list-style: none !important;
}

/* ─── VIDEO MODAL ─────────────────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 820px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal.open .modal-box {
  transform: scale(1);
}
.modal-close-btn {
  position: absolute;
  top: -46px;
  right: -8px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--trans);
}
.modal-close-btn:hover {
  color: var(--yellow);
}
.modal-player {
  width: 100%;
  height: 100%;
}
.modal-player iframe,
.modal-player video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .csdci-nav-menu-wrap {
    overflow-x: auto;
  }
  .csdci-menu-item > a {
    font-size: 14px;
    padding: 16px 10px;
  }
  .stakeholders-section {
    padding: 50px 30px 30px;
  }
}

@media (max-width: 1024px) {
  .csdci-top-bar-inner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 20px;
    text-align: center;
  }
  .csdci-top-bar-left,
  .csdci-top-bar-center,
  .csdci-top-bar-right {
    flex: none;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    padding-left: 0;
  }
  .csdci-contact-list {
    justify-content: center;
  }
  .csdci-branding-inner {
    padding: 0 20px;
  }
  .csdci-partner-logos-img {
    max-width: 280px;
  }
  .csdci-nav-inner {
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative;
  }
  .csdci-nav-menu-wrap {
    width: 100%;
    order: 2;
  }
  .csdci-nav-search-wrap {
    order: 1;
    margin-left: auto;
    padding-left: 0;
  }
  .csdci-mobile-nav-toggle {
    display: block;
    order: 0;
  }
  .csdci-nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .csdci-nav-menu.open {
    max-height: 80vh;
    overflow-y: auto;
  }
  .csdci-menu-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .csdci-menu-item > a {
    padding: 14px 20px;
    justify-content: space-between;
    font-size: 15px;
  }
  .csdci-menu-item > a::before {
    display: none;
  }
  .csdci-sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    box-shadow: none;
    background: #f8f8f8;
    padding-left: 12px;
  }
  .csdci-menu-item.open-submenu .csdci-sub-menu {
    display: block;
  }
  .csdci-sub-menu a {
    color: #333;
  }
  .csdci-sub-menu a:hover {
    background: var(--yellow);
    color: #000;
  }
  .stakeholders-section {
    padding: 40px 20px 20px;
    margin-top: 20px;
  }
  .stakeholders-grid {
    gap: 10px;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-cols {
    flex-direction: column;
    gap: 35px;
  }
  .about-text,
  .about-video,
  .about-news {
    width: 100%;
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .csdci-footer-cols-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .csdci-footer-newsletter {
    grid-column: span 2;
  }
  .hero-slider {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 260px;
  }
  .section-heading {
    font-size: 24px;
    font-weight: bold;
  }
  .stakeholders-section {
    padding: 30px 15px;
    margin-top: 0;
  }
  .stakeholders-grid {
    flex-direction: column;
    align-items: center;
  }
  .stakeholder-card {
    max-width: 280px;
    width: 100%;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .csdci-footer-cols-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .csdci-footer-newsletter {
    grid-column: span 1;
  }
  .csdci-footer-bottom-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .news-ticker-bar {
    height: 42px;
  }
  .ticker-inner {
    height: 42px;
  }
  .ticker-label {
    font-size: 10px;
    padding: 0 12px 0 12px;
    padding-right: 22px;
    gap: 5px;
  }
  .ticker-content {
    height: 38px;
  }
  .modal-close-btn {
    right: 0;
    top: -42px;
    font-size: 32px;
  }
  .csdci-branding-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .csdci-logo-img {
    max-height: 60px;
  }
  .csdci-partner-logos-img {
    max-width: 240px;
  }
  .csdci-search-form {
    width: 140px;
  }
}

/* ─── INNER PAGE GENERAL STYLES ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background-color: var(--brown);
  background-image:
    linear-gradient(rgba(78, 35, 0, 0.8), rgba(78, 35, 0, 0.85)),
    url("../images/Banner-01.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: var(--white);
  text-align: center;
  border-bottom: 4px solid var(--yellow);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: Raleway, Georgia, sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.breadcrumbs {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs a {
  color: var(--blue);
  transition: color var(--trans);
}
.breadcrumbs a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.breadcrumbs .current-page {
  color: var(--white);
}

/* Content Sections */
.content-section {
  padding: 50px 0;
  background: var(--white);
}
.content-section:nth-of-type(even) {
  background: #fdfdfd;
}
.content-section .section-title {
  font-family: Raleway, Georgia, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.content-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--yellow);
}
.content-section .section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Lists */
.clean-list {
  margin-bottom: 24px;
  padding-left: 20px;
}
.clean-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  list-style-type: square;
}

/* Data Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 30px;
  border: 1px solid #e1d8cf;
  border-radius: 4px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}
.data-table th,
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e1d8cf;
}
.data-table th {
  background-color: var(--brown);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}
.data-table tr:nth-child(even) {
  background-color: #faf6f2;
}
.data-table tr:hover {
  background-color: #f1eae2;
}

/* Images & Downloads */
.section-image {
  margin: 25px 0;
  display: flex;
  justify-content: center;
}
.section-image img {
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--brown);
  color: var(--white);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition:
    background-color var(--trans),
    transform var(--trans);
}
.btn-download:hover {
  background-color: var(--blue);
  color: #000;
  transform: translateY(-2px);
}
