/* =========================
   GLOBAL RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Open Sans', Arial, sans-serif;
    line-height:1.6;
    background:#f4f7fb;
    color:#333;
}

/* =========================
   HEADER
========================= */
header{
    background:#ffffff;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.logo{
    color:#2552A8;
    font-size:22px;
    font-weight:bold;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav a{
    color:#444;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#2552A8;
}

/* =========================
   HERO SECTION WITH BANNER IMAGE
========================= */
.hero-bg{
    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('assets/images/banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:550px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
    padding:20px;
}

.hero h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    margin-bottom:25px;
}

.cta-banner {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('assets/images/cta-banner.png') center/cover no-repeat;
}


/* =========================
   BUTTONS
========================= */
.btn{
    display:inline-block;
    background:#ffffff;
    color:#2552A8;
    padding:12px 28px;
    margin-top:10px;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#e6e6e6;
}

.btn-primary{
    background:#2552A8;
    color:white;
}

.btn-primary:hover{
    background:#1d3f85;
}

/* =========================
   SECTION
========================= */
.section{
    padding:70px 40px;
    text-align:center;
}

.section h2{
    font-size:32px;
    margin-bottom:20px;
}

/* =========================
   CARDS
========================= */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* =========================
   FORM
========================= */
form{
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input, textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
}

button{
    padding:12px;
    background:#2552A8;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

button:hover{
    background:#1d3f85;
}

/* =========================
   FOOTER
========================= */
footer{
    background:#2552A8;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

.stat-card {
  padding: 30px 15px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.stat-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6b7280;
  margin-top: 5px;
}

/* =========================
   INITIATIVES HOVER EFFECT
========================= */

.initiative-card {
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.initiative-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border-color: #2563eb;
}

.initiative-card img {
  transition: transform 0.4s ease;
}

.initiative-card:hover img {
  transform: scale(1.05);
}

/* ===============================
   FRONT POP HOVER EFFECT
================================ */

.initiative-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0) scale(1);
  z-index: 1;
}

.initiative-card:hover {
  transform: translateY(-20px) scale(1.05);
  z-index: 20;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* CASE STUDIES SECTION */
.case-studies-section {
    background: #f3f4f6;
    padding: 80px 0;
}

.case-container {
    max-width: 1100px;
    margin: auto;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111827;
}

/* Card */
.case-card {
    width: 520px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Image */
.case-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Content */
.case-content {
    background: #f9fafb;
    padding: 20px;
}

.case-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.case-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.case-beneficiaries {
    font-size: 13px;
    margin-bottom: 10px;
}

.case-desc {
    font-size: 14px;
    color: #374151;
}

/* Button wrapper */
.case-button-wrapper {
    width: 520px;
    text-align: right;
    margin-top: 20px;
}

/* Button */
.impact-btn {
    padding: 8px 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #f9fafb;
    text-decoration: none;
}

.impact-btn:hover {
    background: #e5e7eb;
}

/* CARD HOVER */
.hover-pop{
transition: all .35s ease;
position: relative;
overflow: hidden;
}

.hover-pop:hover{
transform: translateY(-12px) scale(1.02);
box-shadow: 0 30px 60px rgba(37,99,235,.18);
border-color:#e0e7ff;
}

/* soft glow layer */
.hover-pop::after{
content:"";
position:absolute;
inset:0;
background: radial-gradient(circle at top, rgba(59,130,246,.15), transparent 60%);
opacity:0;
transition:.35s;
pointer-events:none;
}

.hover-pop:hover::after{
opacity:1;
}

/* TITLE animation */
.hover-pop h3{
transition:.3s;
}

.hover-pop:hover h3{
color:#2563eb;
}

/* AMOUNT animation */
.hover-pop .text-\[42px\]{
transition:.3s;
}

.hover-pop:hover .text-\[42px\]{
transform: scale(1.05);
}

/* BUTTON animation */
.hover-pop button{
transition: all .3s ease;
}

.hover-pop:hover button{
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(37,99,235,.35);
}

/* outer section bg (page light grey) */
.other-edf-wrapper{
    background:#f3f4f6;
}

/* inner grey container */
.other-edf-box{
    background:#e5e7eb;
    border-radius:20px;
}

/* small cards */
.edf-mini-card{
    height:280px;
    border-radius:18px;
    background:#f1f5f9;
    transition:.35s;
    cursor:pointer;
}

/* hover */
.edf-mini-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* section separation */
.other-edf-wrapper{
    background:#f3f4f6;
    border-top:1px solid #e5e7eb;
}

/* optional extra spacing above case study button */
.case-study-bottom-space{
    margin-bottom:60px;
}

.tab-active {
    background-color: #7c3aed;
    color: white;
}

.impact-wrapper {
  background: #f4f6f9;
  padding: 70px 0;
}

.container {
  width: 1100px;
  margin: auto;
}

.page-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 50px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =========================
   IMPACT TAB BUTTONS FIX
   (global button blue ko override karta hai)
========================= */
.impact-tab {
    background: transparent !important;
    color: #4b5563 !important;
    padding: 12px 32px !important;
    box-shadow: none !important;
}

.impact-tab:hover {
    background: transparent !important;
    color: #7c3aed !important;
}

.impact-tab.active-tab {
    background: #7c3aed !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4) !important;
    
}

/* =========================
   LEARN MORE BUTTON FINAL FIX
========================= */

.learn-more-btn{
    display:inline-flex !important;
    align-items:center;
    gap:6px;
    background:#7c3aed !important;
    color:#ffffff !important;
    padding:12px 28px !important;
    font-size:12px !important;
    font-weight:700 !important;
    text-transform:uppercase;
    letter-spacing:1px;
    border-radius:6px !important;   /* rectangular */
    text-decoration:none !important;
    transition:all 0.3s ease;
}

/* Hover */
.learn-more-btn:hover{
    background:#000000 !important;
    color:#ffffff !important;
}

/* Arrow animation */
.learn-more-btn i{
    transition:transform 0.3s ease;
}

.learn-more-btn:hover i{
    transform:translateX(4px);
}

<style>

.logo-slider{
overflow:hidden;
width:100%;
position:relative;
}

.logo-track{
display:flex;
align-items:center;
gap:100px;   /* logos ke beech space */
width:max-content;
animation:scroll 25s linear infinite;
}

.logo-track img{
height:90px;   /* logo size bada */
opacity:0.85;
filter:grayscale(100%);
transition:0.3s;
}

.logo-track img:hover{
filter:grayscale(0);
opacity:1;
}

@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-33.33%);
}
}

</style>