/* ===== TAX EXEMPTION TOP BANNER ===== */
.top-banner {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);

  position: sticky;   /* ✅ ADD */
  top: 0;             /* ✅ ADD */
  z-index: 200;
}




/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e75221;
    --secondary-color: #f0701a;
    --accent-color: #cb5405;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #444;
    --border-color: #E8EAED;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER & NAVBAR ========== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 46px;   /* 🔥 banner height */
    z-index: 100;
}


.navbar {
    padding: 1rem 0;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}


/* ===== LOGO IMAGE FIX ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;        /* 🔥 yahi size control karega */
    width: auto;
    max-width: 180px;    /* wide logo limit */
    object-fit: contain;
    display: block;
}


.logo .tagline {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-donate {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 600;
}

.btn-donate::after {
    display: none !important;
}

.btn-donate:hover {
    background: #FF5252 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 15px 0;
    min-width: 180px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 12px 20px;
}

.dropdown-menu a {
    color: var(--text-color);
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ===== MOBILE MENU BASE ===== */
.menu-btn {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-menu a {
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu.active {
    display: flex;
}


/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #3ab8ae;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.1rem;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 120vh;
  background: url("assets/images/education6.jpeg")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    margin: 1rem 0;
    line-height: 1.2;
    animation: slideInDown 0.8s ease;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ========== QUICK CAUSES SECTION ========== */
.quick-causes {
    padding: 80px 20px;
    background: var(--light-color);
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cause-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.cause-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cause-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.cause-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cause-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}



/* ========== QUICK CAUSES IMAGE FIX ========== */

.causes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cause-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);

  /* 🔴 IMAGE KO CARD KE ANDAR BAND RAKHEGA */
  overflow: hidden;
}

.cause-card:hover {
  transform: translateY(-12px);
}

/* IMAGE CONTAINER */
.cause-img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* IMAGE */
.cause-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* SAFE ZOOM */
.cause-card:hover .cause-img img {
  transform: scale(1.08);
}


/* ========== INTRODUCTION SECTION ========== */
.introduction {
    padding: 80px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--dark-color);
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 80px 20px;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-amount {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== CAMPAIGNS SECTION ========== */
.campaigns-section {
    padding: 80px 20px;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 1.2rem;   /* 🔥 3rem → 1.5rem */
}


.campaign-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* ========== CAMPAIGN IMAGE FIX (IMAGE SAFE) ========== */
.campaign-image {
  width: 100%;
  height: 220px;              /* FIXED HEIGHT */
  overflow: hidden;           /* 🔥 IMAGE KO ANDAR BAND RAKHEGA */
  border-radius: 12px 12px 0 0;
  background: #eee;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 🔥 CROP SAFE */
  display: block;             /* 🔥 EXTRA GAP FIX */
  transition: transform 0.4s ease;
}

/* HOVER ZOOM (SAFE) */
.campaign-card:hover .campaign-image img {
  transform: scale(1.08);
}


.campaign-card > h3 {
    color: var(--primary-color);
    padding: 25px 25px 10px;
    font-size: 1.3rem;
}

.campaign-card > p {
    padding: 0 25px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.campaign-stats {
    display: flex;
    justify-content: space-around;
    padding: 0 25px 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat .amount {
    display: block;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.stat label {
    color: #999;
    font-size: 0.85rem;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    margin: 15px 25px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    padding: 0 25px;
    margin-bottom: 1rem;
}

.campaign-card .btn {
    display: block;
    margin: 0 25px 25px;
}

.campaign-footer {
    text-align: center;
    margin-top: 1px;        /* button upar aayega */
    margin-bottom: 40px;     /* next section se gap rahe */
}

/* ========== IMPACT SECTION ========== */
.impact {
    padding: 70px 10px;
 background: linear-gradient(135deg, #E94B3C, #FF9F43);    color: white;
}

.impact .section-header h2,
.impact .section-header p {
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 30px;
}

.impact-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}
.impact-card h3 {

    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.impact-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.impact-card .icon {
    font-size: 2.5rem;
    margin-top: 1rem;
}

/* ========== EVENTS SECTION ========== */
.events-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-date {
 background: linear-gradient(135deg, #E94B3C, #FF9F43);    color: white;
    padding: 25px 20px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 90px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.event-location,
.event-time {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.event-desc {
    color: #666;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.events-footer {
    text-align: center;
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: 80px 20px;
}

/* TEAM IMAGE FIX */
.team-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;          /* 🔥 image ko circle ke andar band rakhega */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 🔥 face crop perfect */
  display: block;
}

/* CARD HOVER EFFECT */
.team-card:hover .team-image img {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.team-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 12px;
    background: var(--light-color);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
}

.team-image {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-card p {
    color: #999;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

.team-footer {
    text-align: center;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 80px 20px;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.quote {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    font-size: 2.5rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: #999;
    font-size: 0.9rem;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: 60px 20px;
}

.blog-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}


.blog-card > div:not(.blog-image) {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.blog-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    flex-grow: 1;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.blog-card a:hover {
    color: #FF5252;
}

.blog-footer {
    text-align: center;
}

/* ========== DONATION CTA SECTION ========== */
.donation-cta {
    padding: 80px 20px;
 background: linear-gradient(135deg, #E94B3C, #FF9F43);    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.donation-quick-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.donation-option {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.donation-option:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.donation-option .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.donation-option .desc {
    display: block;
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 30px 20px 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    color: #999;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* ===== SOCIAL ICONS (ABOUT + FOOTER) ===== */
.member-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Footer me right side align */
.footer-bottom .member-social {
    margin-left: auto;
}

.member-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ff5e14; /* ORANGE */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.member-social a:hover {
    background: #ff5e14;
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 94, 20, 0.4);
}

.member-social a:hover svg {
    transform: scale(1.15);
}

/* Mobile fix */
@media (max-width: 768px) {
    .footer-bottom .member-social {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
}


/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
        padding: 15px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f5f5f5;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        padding: 80px 20px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}













    .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus effect */
.form-group select:focus {
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
}

/* Disabled option look */
.form-group select option[disabled] {
  color: #999;
}

/* ================= ORANGE DONATE BUTTON ================= */
.btn-orange {
  background-color: #ff5e14 !important;
  color: #ffffff !important;
  border: none;
}

.btn-orange:hover {
  background-color: #e04d10 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
}


/* ========== ORANGE DONATE BUTTON (SERVICES) ========== */
.btn-orange {
  background-color: #ff5e14 !important;
  color: #ffffff !important;
  border: none;
  margin-top: 18px;
  display: inline-block;
}

.btn-orange:hover {
  background-color: #e04d10 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
}

/* ========== ORANGE DONATE BUTTON (GLOBAL) ========== */
.btn-orange {
  background-color: #ff5e14 !important;
  color: #ffffff !important;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.btn-orange:hover {
  background-color: #e04d10 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
}


    

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .causes-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;

    /* ========== FORM GROUP ========== */
/* ========== FORM GROUP (GLOBAL) ========== */
.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
}

.form-group select:focus {
  border-color: #ff5e14;
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.2);
}









  }
}
