/* Reset & Fonts */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'poppins', sans-serif; line-height:1.6; color:#333; background:#f9f9f9; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* Colors */
:root {
  --primary:#08519c;
  --accent: #FFFFFF;
  --dark-text: #333;
  --footer-bg: #e6f0ff;
}

/* Typography */
h3 { font-family: 'poppins', sans-serif; color:var(--primary); }
h1 { font-size:3rem; margin-bottom:20px; color:#FFFFFF; }
h2 { font-size:2.5rem; margin-bottom:20px;  text-align: center; }
p { font-size:1.1rem; margin-bottom:15px; text-align:center;}



/* Buttons */
.btn-primary { background:var(--primary);
   color:#00331a; border:none;
    padding:10px 25px;
     border-radius:50px; 
      cursor:pointer;
      font-weight:bold;
      transition:0.3s;
      gap: 20px;
     }
.btn-glass:hover { 
  background:rgba(9, 17, 104, 0.2);
   border-color:#08519c;
   }

 .btn-glass { 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color:#FFFFFF;
  border-radius:70px ;
  padding:14px 35px;
  gap: 20px;
 }
/* Navbar */
nav { position:fixed; 
  top:0;
  left:0;
  width:100%;
   background:transparent;
   transition: 0.4s ease;
   display:flex; 
   justify-content:space-between;
    align-items:center; 
    padding: 20p 5%;
     box-shadow: none; 
     z-index: 1000; }

nav.scrolled { 
  background-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4ox 10px rgba(0, 0, 0, 0.1);
  padding: 10px 5%;
  z-index: 999;
transition: all 0.4s ease;
backdrop-filter: blur(10px);
}
nav.scrolled ul li,
nav.scrolled .logo {
  color:#08519c;
}

nav .logo {
  color:#08519c;
   font-size:1.5rem;
   font-weight:700; 
  }
nav ul { display:flex; list-style:none; gap:20px; }
nav ul li {
  color:white;
   cursor:pointer; }

 .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the logo image and the text */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo-img {
    height: 50px; /* Adjust height to match your header size */
    width: auto;  /* Maintains aspect ratio */
    object-fit: contain;
    mix-blend-mode:darken;
    filter:brightness(1.1) contrast(1.2);
    margin-right:10px;
    background-color: transparent;

}

/* horizontal on mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 30px; /*  mobile screens */
    }
    .logo {
        font-size: 14px;
        letter-spacing: -0.5px;
    }
    
}  

/* Hero Section */
#hero { 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center; 
  text-align:center;
   min-height:110vh;
 background:linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('best images/vocational\ training.jpg') center/cover no-repeat; color:#FFFFFF; 
   padding-top:0;
   padding-bottom:90px;
   margin:0;
   position:relative;
   padding:100px 20px 0 20px;
  }

 #hero h2 {
    font-weight:800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color:#08519c;
    display:block;
    letter-spacing: -1px;
    margin-top:-10px;
 } 

 #hero h1 {
    font-weight:800;
    letter-spacing:-1px;
    line-height:1.1;
 }
#hero .cta-buttons { display:flex; gap:20px; flex-wrap:wrap; justify-content:center; }

/* Animations */
.fade-in { opacity:0; transform:translateY(20px); transition:1s; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.slide-up { opacity:0; transform:translateY(50px); transition:1s; }
.slide-up.visible { opacity:1; transform:translateY(0); }

/* Grid & Cards */
.grid { display:grid; gap:20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }
.card { background:#fff; padding:20px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.1); transition:0.3s; }
.card:hover { transform:translateY(-5px); box-shadow:0 10px 20px rgba(0,0,0,0.15); }

/* Counters */
.counter { font-size:2.5rem; font-weight:bold; color:var(--primary); text-align:center; }

/* CTA Section */
.cta-section { background:var(--primary); color:#fff; text-align:center; padding:80px 20px; }
.cta-section button { background:#fff; color:var(--primary); }

/* Footer */
footer { background:var(--footer-bg); color:var(--dark-text); padding:40px 20px; display:flex; flex-direction:column; gap:15px; text-align:center; }
footer a { color:var(--primary); }

/* Forms */
form { display:flex; flex-direction:column; gap:15px; max-width:500px; margin:auto; background:transparent; padding:20px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.1); }
form input, form textarea { padding:10px; border-radius:5px; border:1px solid #ccc; width:100%; }
form button { width:fit-content; align-self:center; }

/* Blog Section */
.blog-post { background:#fff; padding:20px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.1); transition:0.3s; }
.blog-post:hover { transform:translateY(-5px); }

/* Slideshow for Programs */
.slideshow { position:relative; overflow:hidden; border-radius:10px; height:400px; }
.slide { position:absolute; width:100%; height:100%; top:0; left:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1s ease-in-out; }
.slide.active { opacity:1; }
.slide h3 { position:absolute; bottom:20px; left:20px; color:#fff; background:rgba(0,0,0,0.5); padding:10px 15px; border-radius:5px; }

@media (max-width: 768px) {
    .cta-buttons {
        width: 100%;
        display: flex;
        flex-direction: column; /* Stacks them so they have more room */
        gap: 20px; /* Space between the two buttons */
        margin-top: 40px; /* Space above the buttons */
    }

    .btn-primary, .btn-glass {
        width: 80%; /* Don't let them hit the very edge of the screen */
        margin: 0 auto; /* Centers them */
    }
}

@media (max-width: 768px) {
    nav {
      flex-direction: row;
        padding: 10px 20px ;
        height: auto; /* Allows header to grow to fit content */
    }
  }


 /* --- DESKTOP VIEW (Big Screens) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color:transparent;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
  
}

.nav-menu {
    display: flex; /* Menu is visible by default */
    align-items: center;
    position: fixed;
    width: 300px;;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    transition:0.4s ease-in-out;
    right:-100%;
    height: 700vh;
    padding-top: 500px;
    z-index:999;
    box-shadow: -10px 0 15px rgba(0,0,0,0.5);
    


}

.nav-menu ul {
    gap: 30px;
    flex-direction:column;
    text-align: center;
    justify-content: center;
  
}

.hamburger {
    display: flex; /* Hidden on big screens */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index:1001;
    position:relative;
    margin:0;
    right:auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #08519c;
}

.nav-menu.active {
  right:0;
}

/* --- MOBILE VIEW (Screens under 768px) --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Hamburger appears here */
    }


    .nav-menu {
        position: fixed;
  right:-100%; /* Hide it to the right side */
        top: 0;
        height: 100vh;
        width: 250px; /* Set a specific width for the slide-out */
        background-color:rgba(0,0,0,0.9);
        flex-direction: row;
        justify-content: center;
        transition: 0.3s ease-in-out; /* Smooth slide */
        box-shadow: -10px 0 15px rgba(0,0,0,0.5);
    }

    /* This moves the menu on screen when JS adds the 'active' class */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Container for the Donate button and Hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between button and hamburger */
}

/* Ensure the nav uses space-between to push items to the edges */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%; /* Adjust padding to match your style */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


.impact-stats {
    background-color: var(--primary); /* Your #00d646 green */
    padding: 60px 5%;
    text-align: center;
    color: white;
    flex-direction: column;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 30px;
    margin-bottom: 40px;
}

/* On desktop, make it 4 columns */
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: white !important; /* Overrides your general H2 black color */
}

.stat-item p {
    font-weight: 500;
    opacity: 0.9;
}


.features-container {
    display: flex;
    justify-content: center; /* Centers the cards horizontally */
    gap: 30px;              /* The gap between the cards */
    padding: 50px 5%;
    flex-wrap: wrap;        /* Makes cards stack on small mobile screens */
}

.feature-card {
    background: #ffffff;
    flex: 1;                /* Makes cards equal width */
    min-width: 300px;       /* Prevents cards from getting too skinny */
    max-width: 380px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* That soft Hope Foundation shadow */
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px); /* Lifts the card when you hover */
}

.feature-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-weight: 800;       /* Keep it chunky like the inspo */
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.learn-more {
    text-decoration: none;
    color: #888;
    font-weight: 700;
    font-size: 0.9rem;
}

.impact-stats {
    background-color: #08519c; /* The Hope Green */
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.btn-white-pill {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 40px;
    border: 2px solid white;
    background: white; /* Solid white like the inspo */
    color: #08519c;    /* Green text */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    flex-direction: column;
}

.btn-white-pill:hover {
    background: transparent;
    color: white;
}

.cta-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #ffffff; /* Clean white background */
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.cta-section p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Helps on mobile */
}

/* The primary green button */
.btn-green-pill {
    background-color: #08519c;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-green-pill:hover {
    background-color: #08519c;
    transform: translateY(-3px);
}

/* The subtle outline button */
.btn-outline-pill {
    background-color: #f8f9fa; /* Very light grey */
    color: #555;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.btn-outline-pill:hover {
    background-color: #eee;
    color: #222;
}



.feature-box {
    display: flex;
    flex-wrap: wrap; /* Keeps it responsive for mobile */
    background: #ffffff;
    border: 1px solid #ddd; /* The outline of the box */
    border-radius: 15px;    /* Rounded corners */
    overflow: hidden;       /* Keeps the image from sticking out of the corners */
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* Makes the box "pop" */
}

/* Image styling inside the box */
.box-image {
    flex: 1;
    min-width: 300px;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills its half perfectly */
    display: block;
}

/* Text styling inside the box */
.box-text {
    flex: 1;
    padding: 30px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically */
}

.box-text h3 {
    margin-top: 0;
    color: #2c3e50;
}

.box-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: fit-content;
}


.info-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 25px;
    max-width: 350px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left; /* Keeps text aligned for reading */
}

/* Make the box lift up when you hover over it */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #9ecae1; 
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.4rem;
}

.info-card p {
    color: #5f6368;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Styling for the little stats inside the card */
.impact-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

.card-link {
    display: inline-block;
    margin-top: 20px;
    color: #08519c;
    text-decoration: none;
    font-weight: bold;
}



/* Container for the whole section */
.involvement-section {
    padding: 80px 10% 40px;
    background-color: #fcfcfc;
}

.title-center { text-align: center; font-size: 2.2rem; color: #333; margin-bottom: 10px; }
.subtitle-center { text-align: center; color: #777; margin-bottom: 50px; }

/* The Grid Layout */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* The "Email-style" Card */
.info-card-horizontal {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.info-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Icon Circle Styling */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Color Themes */
.green-theme { background: #e8f5e9; }
.blue-theme { background: #e3f2fd; }
.orange-theme { background: #fff3e0; }

/* Text within the card */
.card-text h3 { margin: 0 0 10px 0; font-size: 1.3rem; color: #2c3e50; }
.card-text p { margin: 0 0 15px 0; color: #666; line-height: 1.6; font-size: 0.95rem; }

.text-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}



.contact-info-container {
    padding: 20px;
    max-width: 600px;
}

.contact-info-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-container p {
    color: #666;
    margin-bottom: 30px;
}

/* The horizontal card layout */
.contact-item {
    display: flex;
    align-items: flex-start; /* Aligns icon to the top of the text */
    margin-bottom: 25px;
    align-items: center;
}

/* The circular icon design  */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0; /* Keeps the circle from squishing */
}

/* Light green tint background for the circle */
.blue-tint {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #08519c; /* Icon color */
}

.item-text h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.item-text p {
    margin: 2px 0;
    font-size: 0.95rem;
    color: #555;
}

.Who-We-Are img{
    border-radius: 50%;
    padding: 25px;
    display:block;
}



/* 1. Background for the whole section */
.values-section {
    background-color: #f8f9fa; /* Very light gray */
    padding: 60px 20px;
}

/* 2. The Grid layout (puts them side-by-side on PC) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto; /* Centers the whole grid on the screen */
}

/* 3. The Individual Card */
.value-card {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;    /* Centers the icon and text horizontally */
    text-align: center;     /* Centers the actual paragraph text */
    background-color: #ffffff; /* White card */
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); /* Very soft shadow */
    transition: transform 0.3s ease;
}

/* Add a little hover "pop" effect */
.value-card:hover {
    transform: translateY(-5px);
    color:#08519c;
}

/* 4. The Green Icon Circle at the top */
.top-icon-circle {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9; /* Light green background */
    border-radius: 50%;        /* Perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;           /* Size of the emoji/icon */
    margin-bottom: 20px;       /* Pushes the title down */
}

/* 5. The Text Styling */
.value-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.4rem;
}

.value-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}



.donation-section {
    padding: 40px 20px;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
}

.donation-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: #087a9c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.amount-btn {
    padding: 12px;
    border: 1px solid #eee;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.amount-btn.active {
    background: #087a9c;
    color: white;
    border-color: #087a9c;
}

.other-input, .donor-info input, .payment-select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.donor-info h3 {
    text-align: left;
    margin: 20px 0;
    color: #333;
}

.donate-final-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: #08519c;
    border: 2px solid #087a9c;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.donate-final-btn:hover {
    background: #08519c;
    color: white;
}


/* --- Special Hero Text Animation --- */

/* 1. Define the sliding fade effect */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px); /* Starts lower down */
    }
    100% {
        opacity: 1;
        transform: translateY(0);    /* Ends in its original spot */
    }
}

/* 2. Apply it to the hero text container */
.hero-content {
    animation: heroFadeUp 1.2s ease-out 0.3s forwards;
    opacity: 0; /* Keeps it hidden until the 0.3s delay is over */
}


.hero-content h1 {
    animation: heroFadeUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-content p {
    animation: heroFadeUp 1s ease-out 0.8s forwards;
    opacity: 0;
}


/* Team Section Styling */
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 30px; }
        .team-member { text-align: center; }
        .team-member img { width: 300px; height: 300px; border-radius: 50%; margin: 0 auto 15px; border: 4px solid var(--primary); }
        .team-member h4 { margin: 5px 0; color: var(--secondary); }
        .team-member p { font-size: 0.9rem; color: #666; margin: 0; }






        /* Container Spacing */
.about-section {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif; 
  color: #333;
}

/* Typography */
.main-title {
  color: #2c264d; /* Dark navy */
  font-size: 32px;
  margin-bottom: 20px;
}

.quote {
  color: #08519c; /* Teal color */
  font-style: italic;
  font-weight: bold;
  margin-bottom: 20px;
}

/* The Colored Mission/Vision Bars */
.info-block {
  padding: 15px;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  margin: 20px 0 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mission { background: linear-gradient(135deg, #003399 0%, #0066ff 100%)  }
.vision {  background: linear-gradient(135deg, #3d578a 0%, #0066ff 100%)  }







/* Container for the whole section */
.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* Space between cards */
  padding: 20px;
  background-color: #f9f9f9;
}

/* Individual Card Styling */
.member-card {
  width: 100%;
  max-width: 400px;
  position: relative;
  text-align: center;
  
}

/* Portrait Styling */
.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Slight rounding on corners */
  display: block;
}

/* The Overlapping Info Box */
.info-box {
  background: white;
  padding: 20px;
  width: 85%; /* Slightly narrower than image */
  margin: -40px auto 0; /* Moves box UP to overlap image */
  position: relative;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Soft shadow for depth */
}

.info-box h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #333;
}

.info-box p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.9rem;
}











/*donate page/*


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header/Hero Styling */
.donate-header {
    background: linear-gradient(rgba(0, 51, 153, 0.8), rgba(0, 51, 153, 0.8)),
                url('best\ images/vocational training.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Main Container */
.donate-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Individual Card Styling */
.donate-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #003399; /* Deep Blue Accent */
}

.donate-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    color: #003399;
    margin-bottom: 20px;
}

.donate-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.donate-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.details {
    background: #f4f7ff;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #333;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
}





/* Default animation for all elements */
[data-scroll] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

/* When element becomes visible */
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}