html {
    scroll-behavior: smooth;
}   

   * {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  writing-mode: horizontal-tb;
  transform: none;
}


:root {
  --primary-green: #1f8f4a;
  --deep-blue: #2c2f7a;
  --soft-green: #e6f4ec;
  --dark-text: #1a1a1a;
  --light-text: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-text);
  background-color: #ffffff;
}

.hero {
  background: linear-gradient(135deg,
 var(--primary-green), var(--deep-blue)
  );
  color: var(--light-text);
  text-align: center;
  padding: 80px 20px;
}

.section {
  padding: 60px 20px;
  color: #333;
  max-width: 900px;
  margin: auto;
  text-align: center;
  writing-mode: horizontal-tb;
}

.programs {
  background-color: #fff0f6; /* soft pink background */
  border-radius: 12px;
}

h1, h2, h3, p {
  writing-mode: horizontal-tb;
  transform: none;
}

h1, h2, h3 {
  color: var(--deep-blue);
}
.hero h1 {
  font-size:  48px;
  font-weight:  bold;
  margin-bottom:  10px;
}

.hero p {
  font-size:  18px;
  opacity:  0.95;
}


.program-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card h3 {
  color: #d63384; /* soft pink */
  margin-bottom: 10px;
}

.card p {
  color: #333;
  line-height: 1.6;
}

.program-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


.card h3 {
  margin-bottom: 15px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #d63384; /* pink */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #b0256a; /* darker pink */
    transform: scale(1.05);
}
     

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: bold;
    color: #e91e63;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #e91e63;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #e91e63;
    color: white;
    margin-top: 50px;
}


@media (max-width: 768px) {
    .program-cards {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}


section {
    padding: 60px 20px;
}

section:nth-child(even) {
    background-color: #f48fb1;
}

.container {
    max-width: 1100px;
    margin: auto;
}


.donate-main-btn {
    background-color: #f48fb1;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-weight: bold;
    color: #f48fb1;
}


.navbar {
    background: white;
    padding: 10px 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.donate-btn {
    background: #f48fb1;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
}
Displaying CamScanner 01-29-2026 09.51_3.jpg.


.navbar  {
    position:  sticky;
    top:  0;
    z-index:  1000;
}


.hero {
    text-align: center;
    padding: 80px 20px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}



.hero {
    text-align: center;
    padding: 100px 20px;
    
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    background: #f48fb1;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #ec407a;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: white;
    color: #1565c0;
}


.impact {
    padding: 60px 20px;
    background: #f9f9f9;
}

.impact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.impact-box h2 {
    font-size: 36px;
    color: #1565c0;
    margin-bottom: 10px;
}

.impact-box p {
    font-size: 16px;
    color: #555;
}


.impact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.impact-box:hover {
    transform: translateY(-5px);
}


.program-card {
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


body {
    font-family: 'Poppins', sans-serif;
}


.hero h1 {
    max-width:  800px;
    margin:  0 auto 20px;
}


@media (max-width: 768px) {

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }

    .impact-container {
        flex-direction: column;
        gap: 20px;
    }

    .programs-container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}


.impact-card {
    transition: 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


.legal {
    padding: 60px 20px;
    text-align: center;
    background: #f8e6ef;
}

.certificate {
    max-width: 500px;
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
<a href="images/cac-certificate.jpg" target="_blank" class="btn">
    View Full Certificate
</a>

}


.founder {
    padding: 80px 20px;
    background: #ffffff;
}

.founder-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.founder-image img {
    width: 350px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.founder-text h2 {
    color: #e91e63; /* your pink theme */
    margin-bottom: 10px;
}

.founder-text h3 {
    margin-bottom: 20px;
    font-weight: 600;
}


/* NAVIGATION */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}


.nav-links li {
    position: relative;
    z-index: 1000;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* DROPDOWN MENU */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu {
    z-index: 1001;
}


.dropdown:hover .dropdown-menu {
    display: block;
}


.page-header {
    background: linear-gradient(rgba(0, 128, 0, 0.7), rgba(0, 128, 0, 0.7)),
                url('images/impact1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

position: relative;
z-index:  10

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
}


.about-section h2 {
    margin-top: 40px;
    color: #e91e63;
}

.about-section ul {
    margin-top: 15px;
    padding-left: 20px;
}


.footer {
    background: #222;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #e91e63;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
}


.page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
}



.navbar {
    position: sticky;
    top: 0;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}


.page-header {
    background: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-primary {
    background: white;
    color: #008000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
}


@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header {
        padding: 100px 20px;
    }
}


.page-header {
    padding: 80px 0;
    text-align: center;
    background: #f5f5f5;
}

.page-header h1 {
    font-size: 36px;
    color: #222;
} 


.page-header {
    background: url("images/header.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
}


.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #cc0033;
}


.hero p {
    color: #000;  /* Black text */
    font-size: 20px;
    max-width: 700px;
    margin: 15px auto 30px;
    font-weight: 500;
}

.page-header p {
     color: #111; 
     background: rgba(255, 255, 255, 0.6);
     display: 10px 15px;
     border-radius: 5px;
}


.page-header {
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.page-header h1,
.page-header p,
.page-header a {
    position: relative;
    z-index: 2;
}


.page-header .btn {
    background-color: #ffffff;
    color: #1b5e20;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}


section {
    padding: 80px 20px;
}



.legal img {
    width: 300px;
    height: auto;
}


.founder-section {
    padding: 80px 20px;
}

.founder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

.founder-container img {
    width: 350px;
    border-radius: 15px;
}

.founder-text {
    max-width: 500px;
}

.founder-text h2 {
    margin-bottom: 20px;
}


.legal {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa; /* soft clean background */
}

.legal h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.legal p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
}

.certificate {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-menu {
    border-radius: 8px;
    transition: 0.3s ease;
}

.dropdown-menu li:hover {
    background: #f5f5f5;
}


.home-gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
}


.founder-header {
    background: url('images/founder.jpg') center/cover no-repeat;
}

.home-gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
}

.foundation-header {
    background: url('images/foundation-header.jpg') center/cover no repeat;
}


.foundation-header {
    background-image: url("images/foundation-header.jpg") !important;
    background-size:  ; !important;
    background-repeat: no-repeat;
    background-position: center top 37%  !important;
    
}


.foundation-header h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.about-content {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.about-content h3 {
    margin-top: 30px;
    font-size: 22px;
}

.about-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
}


.page-header {
   margin-bottom:  40px;
}


.legal-status {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8e6ef;
}

.legal-status h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.legal-status p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.certificate {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.founder-message {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.founder-message h2 {
    color: #b3003b;
    margin-bottom: 20px;
}

.founder-message p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
    color: #333;
}

.signature {
    font-weight: bold;
    margin-top: 20px;
}


.community {
    padding: 80px 40px;
    text-align: center;
}

.community-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.community-images img {
    width: 650px;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
}



.founder-bio {
    padding: 60px 0;
    background: #ffffff;
}

.bio-container {
    width: 85%;
    max-width: 900px;
    margin: auto;
    text-align: justify;
}

.bio-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #222;
}

.bio-container p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}



.founder-section {
    padding: 80px 0;
    background: linear-gradient(to right, #fde6ef, #fff);
}



.founder-section {
    padding: 80px 0;
}

.founder-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
}

.founder-text {
    flex: 1.5;
}

.founder-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.founder-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}
.founder-section {
    padding: 80px 0;
}

.founder-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
}

.founder-text {
    flex: 1.5;
}

.founder-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.founder-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}



@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-text {
        flex: unset;
    }
}



@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-text {
        flex: unset;
    }
}


/* ===== CONTACT PAGE - PREMIUM LAYOUT ===== */

.contact-section {
    padding: 80px 20px;
    background: #f4f6f9;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a2b49;
}

.contact-info p {
    line-height: 1.8;
    color: #555;
}

.contact-info h4 {
    margin-top: 25px;
    margin-bottom: 8px;
    color: #d63384;
}

/* RIGHT SIDE - FORM CARD */
.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #1a2b49;
}

/* ===== CONTACT PAGE - PREMIUM LAYOUT ===== */

.contact-section {
    padding: 80px 20px;
    background: #f4f6f9;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a2b49;
}

.contact-info p {
    line-height: 1.8;
    color: #555;
}

.contact-info h4 {
    margin-top: 25px;
    margin-bottom: 8px;
    color: #d63384;
}

/* RIGHT SIDE - FORM CARD */
.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #1a2b49;
}

/* FORM LAYOUT */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Make first two inputs side by side */
.contact-form .row {
    display: flex;
    gap: 15px;
}

.contact-form .row input {
    flex: 1;
}

/* INPUT STYLING */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d63384;
    outline: none;
}

/* BUTTON */
.contact-form button {
    padding: 14px;
    background: #d63384;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #b02a6b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form .row {
        flex-direction: column;
    }
}



.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 10%;
}

.contact-info {
    flex: 40%;
}

.contact-form {
    flex: 60%;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
}

.contact-info h4 {
    margin-top: 20px;
    color: #e91e63;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    background: #e91e63;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #c2185b;
}




@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}


.contain-section {
    padding-top: 40px;
}


.program-intro {
    text-align: center;
    padding: 40px 10%;
    font-size: 18px;
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 50px 10%;
}

.highlight-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.highlight-card h3 {
    margin-bottom: 15px;
    color: #d63384;
}

.program-block {
    background: #ffffff;
    padding: 40px;
    margin: 40px 10%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.program-block h2 {
    margin-bottom: 20px;
    color: #d63384;
}

.program-block li {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .program-highlights {
        grid-template-columns: 1fr;
    }
}



.program-block {
    background: #ffffff;
    padding: 50px;
    margin: 50px 10%;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.program-block h2 {
    color: #d63384;
    margin-bottom: 25px;
    font-size: 26px;
}

.program-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}



.program-block {
    max-width: 900px;
    margin: 30px auto 60px auto;
}

.program-block strong {
    color: #d63384;
}

.pink-section {
    padding: 50px 0;
}


.footer-contact a {
    color: #ff69b4; /* your pink */
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}


.footer-contact p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact h3 {
    color: #ff69b4;
}



.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.impact-content {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.impact-box {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.impact-box h2 {
    
    margin-bottom: 15px;
}

.impact-box p {
    font-size: 16px;
    line-height: 1.6;
}



.impact-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

.impact-image {
    flex: 1;
}

.impact-image img {
    width: 100%;
    border-radius: 10px;
}

.impact-text {
    flex: 1;
}

.impact-text h2 {
    
    margin-bottom: 20px;
}

.impact-text p {
    line-height: 1.7;
    font-size: 17px;
}


.impact-image img {
    width: 100%;
    max-width: 600px;
    height: 420px; 
    object-fit: contain; /* keeps it clean without distortion */
    border-radius: 10px;
}





.impact-row {
    display: flex;
    align-items: center;   /* This vertically centers text and image */ justify-conteny: space -between;
    gap: 50px;
}



.reverse {
    flex-direction: row-reverse;
}

.impact-text p {
    color: #444;
}

.impact-text h2 {
    color: #c2185b;
}


.impact-text p {
    color: #333;
}


.impact-section  {
    padding: 100px  40px;
   background-color: #ffffff;
}

.impact-container {
    background-color: #fff5f9;
    border-radius: 15px;
    padding: 80px 50px;
}


.impact-text {
    flex: 0.8;
}

.impact-image {
    flex: 1;
    text-align: center;
}


.double-image  {
    display: flex;
    gap: 20px;
    width: 100px
}


.double-image img {
    width: 50%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}


/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    .impact-row {
        flex-direction: column;
        gap: 30px;
    }

    .impact-image {
        flex-direction: column;
    }

    .impact-image img {
        width: 100%;
    }

    .impact-text {
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 2-px;
}


.donate-hero {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.donation-details {
    text-align: center;
    padding: 40px 20px;
}

.bank-card {
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thank-you {
    margin-top: 30px;
    font-weight: bold;
}


.bank-card hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: #ddd;
}


.donate-hero {
    position: relative;
    height: 450px;
    background: url('images/donate-bg.jpg') center 57%  / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.donate-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.45) 100%,
    );
}



.hero-overlay {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.2s ease-in-out;
}

.hero-overlay h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6),
}

.hero-overlay p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
}

.donate-hero {
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        background-size: 100%;
    }
    to {
        background-size: 110%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}





.hero-overlay {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 40px;
    text-align: center;
    width: 100%;
}

.donation-details {
    text-align: center;
    padding: 50px 20px;
}

.bank-card {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.account-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    align-items: center;
}

.account-row button {
    padding: 5px 12px;
    border: none;
    background: #1a7f37;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.account-row button:hover {
    background: #145c27;
}

.swift-note {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.trust-section {
    text-align: center;
    padding: 30px 20px;
    background: #f4f4f4;
}





@media (max-width: 768px) {
    .donate-hero {
        height: 280px;
        background-position: center 40%;
    }

    .hero-overlay h1 {
        font-size: 24px;
    }

    .hero-overlay p {
        font-size: 14px;
    }
}





