/* Essential Variables (if not in about.css) */
:root {
    --primary: #a52460;    /* Medium violet red / pinkish maroon */
    --primary-dark: #340619; /* Dark magenta */
    --secondary: #FF69B4;  /* Hot pink accent */
    --secondary-dark: #DB7093; /* Pale violet red */
    --accent: #9370DB;     /* Medium purple */
    --light: #9b103f;      /* Lavender blush */
    --dark: #4B0082;       /* Indigo dark */
    --white: #FFFFFF;
    --gray: #696969;
}

/* Base Styles that might be missing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { overflow-y: scroll; }  

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE NAVIGATION FIX ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 999;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        opacity: 1;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-menu a:hover {
        background: var(--primary);
        color: white;
    }
    
    /* Dropdown menu for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        width: 100%;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    /* Donate button in mobile menu */
    .nav-menu .donate-btn {
        margin: 1rem auto;
        width: 200px;
        animation: none;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
.navbar {
   display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0; /* Position it below the top bar */
            left: 0;
            right: 0;
            z-index: 1000;
            height: 80px;
            width: 100%;
            transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
}
.logo {
    display: flex;
    align-items: center;      /* ← CHANGE to center */
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h2 {
    color: var(--primary);
    font-size: 2rem; /* Increase font size */
    font-weight: 900; /* Make it bolder */
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 2px; /* Add spacing between letters */
    text-transform: uppercase; /* Make it all caps */
    
}

.logo-subtitle {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-right: 0;
}
.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    opacity: 0.7;
}
.nav-menu a.active {
    opacity: 1; /* Full opacity for active page */
    color: var(--primary);
    font-weight: 600;
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-menu a:hover {
    color: var(--primary);
    opacity: 1;
}


.donate-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.donate-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
/* Flickering animation for donate buttons */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        box-shadow: 
            0 0 4px var(--secondary),
            0 0 11px var(--secondary),
            0 0 19px var(--secondary),
            0 0 40px var(--secondary),
            0 0 80px var(--secondary),
            0 0 90px var(--secondary),
            0 0 100px var(--secondary),
            0 0 150px var(--secondary);
    }
    20%, 24%, 55% {
        box-shadow: none;
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(219, 112, 147, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(219, 112, 147, 0.8), 0 0 30px rgba(219, 112, 147, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(219, 112, 147, 0.5);
    }
}

/* Navigation donate button flicker */
.nav-menu .donate-btn {
    animation: flicker 2s infinite alternate, pulse-glow 2s ease-in-out infinite;
    position: relative;
}

/* Enhanced hover effects - FIXED to maintain color */
.nav-menu .donate-btn:hover {
    animation: none; /* Stop animation on hover */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 0 20px var(--secondary),
        0 0 30px var(--secondary),
        0 0 40px var(--secondary),
        0 10px 25px rgba(0, 0, 0, 0.3);
    background: var(--secondary); /* Keep same color */
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none;
        padding: 1rem 0;
    }


    .logo-img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-mission {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }
  }
  .abpage-hero {
  background: linear-gradient(rgba(165,36,96,0.8), rgba(52,6,25,0.8)),
              url('Assets/hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 140px 0 60px;   /* top padding accounts for fixed header */
  text-align: center;
}

.abpage-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.abpage-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* What We Do Section */
.what-we-do {
  padding: 4rem 0;
  background: #f9f9f9;
}

.what-we-do h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 3rem;
}


/* About Sections */
.about-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.about-section:nth-child(even) {
    background: var(--light);
}

.about-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}


 @media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }
  }
/* Grid Layouts */

.philanthropy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.philanthropy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Factsheet Styles */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.fact-item {
    text-align: center;
    padding: 1.5rem 0.3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    width: 100%;
    box-sizing: border-box;
}

.fact-item:hover {
    transform: translateY(-5px);
}

.fact-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.fact-item h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Specific styling for items with longer text */
.fact-item:nth-child(2) h4, /* Communities Served */
.fact-item:nth-child(6) h4 { /* Entrepreneurs Trained */
    font-size: 0.8rem;
    line-height: 1.1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .facts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
    
    .fact-item {
        padding: 1.2rem 0.3rem;
        min-height: 130px;
    }
    
    .fact-number {
        font-size: 1.7rem;
    }
    
    .fact-item h4 {
        font-size: 0.82rem;
    }
    
    .fact-item:nth-child(2) h4,
    .fact-item:nth-child(6) h4 {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }
    
    .fact-item {
        padding: 1rem 0.3rem
    }
    .fact-number {
        font-size: 1.7rem;
    }
    
    .fact-item h4 {
        font-size: 0.9rem;
    }
    
    .fact-item p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .fact-item {
        padding: 1.5rem 1rem;
        min-height: 110px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .fact-number {
        font-size: 1.6rem;
    }
    
    .fact-item h4 {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .facts-grid {
        padding: 0 0.25rem;
    }
    
    .fact-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
    }
    
    .fact-number {
        font-size: 1.4rem;
    }
    
    .fact-item h4 {
        font-size: 0.85rem;
    }
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.focus-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.focus-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.focus-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.focus-card h4 {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hamburger {
        width: 25px;
        height: 18px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.page-hero {
  background: linear-gradient(rgba(165,36,96,0.8), rgba(52,6,25,0.8)),
              url('Assets/hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 140px 0 60px;   /* top padding accounts for fixed header */
  text-align: center;
}

.page-hero h1 {
 font-size: 4rem;
margin-bottom: 1rem;

}

.page-hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}



/* Enhanced Education Section Styles */
.education-focus {
    margin-top: 2rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary);
}

.insight-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.insight-card ul {
    list-style: none;
    padding: 0;
}

.insight-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.insight-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.response-section,
.vision-section {
    margin: 3rem 0;
}

.programs-grid,
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.program-item,
.vision-item {
    background: rgba(165, 36, 96, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(165, 36, 96, 0.1);
}

.program-item strong,
.vision-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.impact-callout {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.impact-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.call-to-action {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .insights-grid,
    .programs-grid,
    .vision-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-card,
    .program-item,
    .vision-item {
        padding: 1rem;
    }
    
    .impact-callout {
        padding: 1.5rem;
    }
}


/* Partners Section Styles */

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0.5rem;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partnership-callout {
    background: linear-gradient(135deg, rgba(165, 36, 96, 0.05), rgba(147, 112, 219, 0.05));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    border: 2px dashed var(--secondary);
}

.partnership-callout h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partnership-callout p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-partner {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--secondary);
}

.btn-partner:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 112, 147, 0.3);
}


/* Responsive Design */
@media (max-width: 768px) {
    .partners-grid {
        gap: 3rem;
    }
    
    .partner-logo {
        max-width: 150px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-logo {
        max-width: 120px;
        max-height: 70px;
    }
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}


/* Map Section */
.contact-map {
    height: 100%;
}

.map-placeholder {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-placeholder h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.map-image {
    flex: 1;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 300px;
}

.map-fallback {
    text-align: center;
    color: white;
}

.map-fallback p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-fallback a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.map-fallback a:hover {
    color: var(--secondary);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-social-media {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-image {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-social-media .social-link {
        justify-content: center;
    }
}


/* ===== GET INVOLVED ===== */
.involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.option p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.option .btn-primary,
.option .btn-secondary {
    margin-top: auto;
    align-self: center;
}



/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}
/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--secondary-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    transform: translateY(-3px);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}


/* ===== COMPACT FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 1.5rem 0 0.5rem;
    position: relative;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Brand Section with Social Media */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text h3 {
    color: var(--white);
    font-size: 1rem;
    margin: 0 0 0.1rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.footer-tagline {
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.75rem;
    margin: 0;
}

/* Compact Social Media - Fix Twitter visibility */
.footer-social-compact {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.social-link-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

/* Ensure Twitter icon is visible */
.fa-x-twitter {
    color: var(--white) !important;
}

.social-link-compact:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.social-link-compact:hover .fa-x-twitter {
    color: var(--white) !important;
}

/* Footer Links - Always 2 columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.link-column {
    display: flex;
    flex-direction: column;
}

.link-column h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.link-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0;
}

.link-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Bottom Footer with Donate Button */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.legal-links {
    display: flex;
    gap: 0.8rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.7rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin: 0;
}

/* Donate Button in Footer Bottom */
.donate-btn-bottom {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.donate-btn-bottom:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 112, 147, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex: 1;
    }
    
    .donate-btn-bottom {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 0.6rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .link-column h4 {
        font-size: 0.85rem;
    }
    
    .link-column a {
        font-size: 0.7rem;
    }
    .link-column {
        min-width: 0; /* Prevent columns from getting too wide */
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .donate-btn-bottom {
        align-self: flex-start;
        margin-top: 0.3rem;
    }
    
    .footer-social-compact {
        gap: 0.4rem;
    }
    
    .social-link-compact {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
}


/* For extremely small screens */
@media (max-width: 360px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}
 





 

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--secondary-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--secondary-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    transform: translateY(-3px);
}


/* Mission & History Section Styles */
.mission-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.mission-intro {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem !important;
    background: linear-gradient(135deg, rgba(165, 36, 96, 0.05), transparent);
    padding: 1rem 1.5rem !important;
    border-radius: 0 10px 10px 0;
}

.mission-belief {
    color: var(--dark);
    font-style: italic;
}

.mission-action {
    color: var(--gray);
    font-weight: 500;
}

.mission-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.visual-card:hover .card-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.visual-card h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.visual-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mission Pillars Enhancement */
/* Mission Pillars - All in One Row */
.mission-pillars {
    padding: 4rem 0;
    background: #f9f9f9;
}

.mission-pillars h3 {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}

.mission-pillars h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pillar-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pillar-content h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.pillar-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pillar-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pillar-item {
        padding: 1.5rem 1rem;
    }
    
    .mission-pillars h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .pillar-content h4 {
        font-size: 1.1rem;
    }
    
    .pillar-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mission-pillars {
        padding: 3rem 0;
    }
    
    .pillar-grid {
        gap: 1rem;
    }
    
    .pillar-item {
        padding: 1.5rem 1rem;
    }
    
    .pillar-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}
/* Safeguarding Styles */
.safeguarding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.safeguarding-item {
    background: rgba(165, 36, 96, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.safeguarding-item h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.safeguarding-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

.constitution-highlight {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(165, 36, 96, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid rgba(165, 36, 96, 0.2);
}

.constitution-highlight h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.constitution-highlight ul {
    list-style: none;
    padding: 0;
    columns: 2;
    gap: 2rem;
}

.constitution-highlight li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.constitution-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pillar-grid,
    .safeguarding-grid {
        grid-template-columns: 1fr;
    }
    
    .constitution-highlight ul {
        columns: 1;
    }
    
    .pillar-item,
    .safeguarding-item {
        padding: 1.5rem 1rem;
    }
}

.mission-quote {
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.quote-icon {
    font-size: 4rem;
    color: black;
    opacity: 0.3;
    line-height: 1;
}

.quote-icon:first-child {
    text-align: left;
    margin-bottom: -2rem;
}

.quote-icon:last-child {
    text-align: right;
    margin-top: -2rem;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.7;
    color: black;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    padding: 2rem 0;
}