/* General Reset */
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Bar */
.top-bar {
    background-color: #2c2f3e;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .social-contact a {
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.top-bar .contact-info a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.top-bar .contact-info a i,
.top-bar .social-contact a i {
    margin-right: 5px;
}

/* Main Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    margin-right: 10px;
}

.logo span {
    font-size: 14px;
    color: #6c757d;
    margin-left: 5px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
    margin-right: 20px;
}

.nav-menu ul li a:hover {
    color: #007bff;
}

.cta-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    background-color: #28a745;
    color: #fff;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #218838;
}

.hamburger-menu {
    display: none;
}

/* Mobile & Tablet Responsive Design */
@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    .container {
        flex-wrap: wrap;
    }

    /* Navigation Menu */
/* Dropdown menu (mobile) fixes */
/* Right-side menu box */
.nav-menu ul {
    flex-direction: column; /* Stack menu items vertically */
    display: flex; /* Hidden by default */
    flex-direction: column;
    background-color: #f8f9fa; /* Light background for better visibility */
    position: fixed; /* Position fixed to the viewport */
    top: 0; /* Start at the top of the screen */
    right: 0; /* Align menu to the right */
    width: 100%; /* Set the width of the menu box */
    height: 100%; /* Full height of the viewport */
    padding: 20px; /* Add internal spacing */
    z-index: 1000; /* Ensure it's above other elements */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    overflow-y: auto; /* Enable scrolling for long menus */
    border-left: 2px solid #ddd; /* Optional: Divider effect on the left */
    transition: transform 0.3s ease-in-out; /* Smooth slide-in effect */
    transform: translateX(100%); /* Initially hidden off-screen */
}

.nav-menu ul.active {
    transform: translateX(0); /* Slide in the menu when active */
}

/* Menu items styling */
.nav-menu ul li {
    margin-bottom: 15px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #007bff; /* Highlight color on hover */
}

/* Add the button inside the menu */
.nav-menu ul .cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.nav-menu ul .cta-buttons .btn {
    display: block;
    width: 100%; /* Make the button full-width */
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-menu ul .cta-buttons .btn:hover {
    background-color: #218838;
}

/* Hamburger menu button adjustments */
.hamburger-menu {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    position: relative;
    z-index: 1100; /* Ensure it appears above the menu */
    padding-left: 190px;
}

/* Adjust header container */
.container {
    position: relative;
}

}


/* banner */

.banner-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-color: #f4f4f4;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;

}

.slide.active {
    left: 0;
    opacity: 1;
    z-index: 1;

}

.slide-content h2 {
    font-size: 3rem;
    color: rgb(255, 149, 0);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    margin-right: 550px;

}

.slide-content p {
    font-size: 1.2rem;
    color: rgb(255, 149, 0);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 2s forwards;
    margin-right: 550px;

}

.slide-content a {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 2.5s forwards;
    margin-right: 550px;

}

.btn-primary:hover {
    background-color: #218838;
}

.slide-content .slide-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}


/* Navigation Arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: #28a745;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    .banner-slider {
        height: 35vh; /* Adjusting height for smaller screens */
    }

    .slide-content h2 {
        font-size: 1.5rem; /* Smaller font for headers on mobile */
    }

    .slide-content p {
        font-size:0.8rem; /* Smaller text for paragraphs */
    }

    .slide-content a {
        font-size: 1rem; /* Button text size adjustment */
        padding: 8px 16px;
    }

    .slide-content .slide-img {
        max-width: 0%; /* Adjust image size for mobile */
        margin-bottom: 15px;
    }

    .prev,
    .next {
        font-size: 18px; /* Smaller navigation arrows */
        padding: 8px;
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .banner-slider {
        height: 25vh; /* Further height adjustment for very small screens */
    }

    .slide-content h2 {
        font-size: 0.8rem; /* Even smaller font for very small screens */
        margin-right: 205px;
    }

    .slide-content p {
        font-size: 0.6rem; /* Adjust paragraph font size */
        margin-right: 225px;
    }

    .slide-content a {
        font-size: 0.9rem; /* Button text size adjustment */
        padding: 6px 12px;
        display: none;
    }

    .prev,
    .next {
        font-size: 16px; /* Further size reduction for navigation arrows */
        padding: 6px;
        display: none;
    }
}


/* about */

/* General Section Styling */
/* General Section Styling */
.about-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    min-height: 100vh; /* Make the section cover the full viewport height */
    display: flex; /* Align content within the section */
    align-items: center; /* Vertically center content */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.text-content {
    max-width: 45%;
}

.text-content h4 {
    color: #28a745;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
    text-align: justify;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #218838;
}

/* Cards Section */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 45%;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Colors for Cards */
.card.greens .icon {
    color: #28a745;
}

.card.pinks .icon {
    color: #e83e8c;
}

.card.yellows .icon {
    color: #ffc107;
}

.card.blues .icon {
    color: #17a2b8;
}


/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content,
    .cards {
        max-width: 100%;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* what we do */

/* General Section Styling */
.mission-section {
    background-image: url(image.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
    text-align: center;
    min-height: 100vh; /* Make the section cover the full viewport height */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h4 {
    color: #28a745;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.feature {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e9ecef;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #fff;
}

/* Colors for Icons */
.green {
    background-color: #28a745;
}

.pink {
    background-color: #e83e8c;
}

.blue {
    background-color: #17a2b8;
}

.yellow {
    background-color: #ffc107;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;    
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .features {
        grid-template-columns: 1fr;
    }
}


/* General Section Styling */
.cause-section {
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    text-align: center;
  }
  
  .cause-contains {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cause-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
  }
  
  /* Cause Cards */
  .cause-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding-top: 20px;
  }
  
  .cause-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  
  .cause-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #28a745;
  }
  
  .cause-para {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #666;
  }
  
  /* Buttons */
  .cause-donate-button,
  .cause-help-button {
    /* display: inline-block; */
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .cause-donate-button {
    background: #ff5722;
    display: none;
    color: #fff;
    margin-right: 10px;
  }
  
  .cause-donate-button:hover {
    background: #e64a19;
    transform: scale(1.05);
  }
  
  .cause-help-button {
    background: #4caf50;
    color: #fff;
  }
  
  .cause-help-button:hover {
    background: #388e3c;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cause-header h2 {
      font-size: 2rem;
    }
  
    .card-title {
      font-size: 1.2rem;
    }
  
    .cause-para {
      font-size: 0.9rem;
    }
  }
  

/* General Styling */
.news-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.container5 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-bottom: 30px;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.subtitle {
    color: #f58220;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.h2 {
    font-size: 2rem;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #f58220;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #e56e10;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* News Card */
.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
    text-align: left;
}

.news-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.news-meta span {
    display: inline-block;
    margin-right: 15px;
}

.news-meta i {
    color: #f58220;
    margin-right: 5px;
}

.news-content h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    font-size: 0.9rem;
    color: #f58220;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #e56e10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* General Styling */
.help-section {
    position: relative;
    background: url('background.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #009688;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    z-index: 2;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: white;
}

.content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.buttons a {
    /* display: inline-block; */
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.donate-btn {
    background-color: #ff6b6b;
    color: #fff;
    display: none;
}

.donate-btn:hover {
    background-color: #e05555;
}

.join-btn {
    background-color: #4caf50;
    color: #fff;
}

.join-btn:hover {
    background-color: #3e9141;
}

/* .volunteer-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.volunteer-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.volunteer-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.volunteer-card img {
    width: 100%;
    border-radius: 23%;
    margin-bottom: 58px;
}

.volunteer-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 10px 0;
}

.volunteer-role {
    font-size: 0.9rem;
    color: #757575;
} */

.volunteer-section {
    text-align: center;
    padding: 50px 20px;
    
}

.volunteer-count {
    font-weight: bold;
    color: white;
    background-color: #000;
    margin-left: 500px;
    margin-right: 500px;
    border-radius: 5px;

}

.volunteer-count p {
    font-size: 18px;
    color: #555;
}

/* footer{
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1400px
}

.company-info{
    flex: 1;
    display: flex;
    padding-right: 40px;
    align-items: flex-start;
    flex-direction: column;
}

.company-logo{
    max-width: 150px;
    margin-bottom: 15px;
}

.company-info p {
    margin: 5px 0;
}

.social-media{
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.social-media h3 {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 1.2rem;
}

.social-media ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.social-media ul li{
    margin: 0 8px;
}

.social-media ul li a{
    color: white;
    margin: 8px 0;
}

.social-media ul li a:hover{
    color: lightblue;    
}

.footer-columns{
    margin-top:40px;
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column{
    flex: 1;
    padding: 0 15px;
    align-items: center;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: lightblue;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
} */

.privacy {
    background-color: rgb(206, 204, 200);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .company-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .social-media {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}


/* Main section styling */
.volunteer-count-section {
    background-color: #e5f9f3;/* Light green tone for warmth */
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.volunteer-header h2 {
    font-size: 2.3em;
    font-weight: 700;
    color: #00695c;
    margin-bottom: 15px;
}

.volunteer-header p {
    font-size: 1.2em;
    font-weight: 300;
    color: #004d40;
    margin-bottom: 40px;
}

/* Stats container */
.volunteer-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.volunteer-stat {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.volunteer-number {
    font-size: 3em;
    font-weight: 700;
    color: #00c853;  /* Bright green for numbers */
}

.volunteer-stat h3 {
    font-size: 1.4em;
    font-weight: 400;
    margin-top: 10px;
    color: #424242;
}

/* Call-to-action button */
.volunteer-action .cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #009688;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.volunteer-action .cta-btn:hover {
    background-color: #00796b;
    transform: translateY(-5px);
}

/* Mobile & Tablet Responsive Design */
@media (max-width: 768px) {
    .volunteer-header h2 {
        font-size: 1.8em; /* Reduce the font size for header on smaller screens */
    }

    .volunteer-header p {
        font-size: 1em; /* Smaller font for the description text */
        margin-bottom: 20px; /* Reduce bottom margin */
    }

    /* Stats container */
    .volunteer-stats-container {
        grid-template-columns: 1fr 1fr; /* 2 columns layout for tablets */
        gap: 15px;
    }

    .volunteer-stat {
        padding: 20px; /* Slightly reduced padding */
    }

    .volunteer-number {
        font-size: 2.5em; /* Reduce number size */
    }

    .volunteer-stat h3 {
        font-size: 1.2em; /* Smaller heading size */
    }

    /* Call-to-action button */
    .volunteer-action .cta-btn {
        font-size: 1em; /* Smaller font size */
        padding: 12px 30px; /* Reduced padding */
    }
}

/* Mobile Responsive for Small Screens (below 480px) */
@media (max-width: 480px) {
    .volunteer-header h2 {
        font-size: 1.5em; /* Further reduce font size for very small screens */
    }

    .volunteer-header p {
        font-size: 0.9em; /* Even smaller text */
        margin-bottom: 10px; /* Less margin */
    }

    /* Stats container */
    .volunteer-stats-container {
        grid-template-columns: 1fr; /* Single column layout for very small screens */
        gap: 10px;
    }

    .volunteer-stat {
        padding: 15px; /* Further reduced padding */
    }

    .volunteer-number {
        font-size: 2em; /* Adjust font size */
    }

    .volunteer-stat h3 {
        font-size: 1em; /* Smaller headings */
    }

    /* Call-to-action button */
    .volunteer-action .cta-btn {
        font-size: 0.9em; /* Smaller font size */
        padding: 10px 25px; /* Reduced padding */
    }
}

  
  
  .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .volunteer-number span {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .cta-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
  /* General Styles for the Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.company-info {
    flex: 1 1 300px;
    text-align: left;
    padding: 10px;
}

.company-info img.logo {
    width: 100px;
    margin-bottom: 15px;
}

.company-info p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact,
.email {
    font-weight: bold;
}

/* General Styles for the Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #7f8c8d;
}

.company-info {
    flex: 1 1 300px;
    text-align: left;
    padding: 10px;
}

.company-info img.logo {
    width: 120px;
    margin-bottom: 15px;
}

.company-info p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-column {
    flex: 1 1 200px;
    text-align: left;
    padding: 10px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f39c12;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f39c12;
}

.contact {
    flex: 1 1 300px;
    text-align: left;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.contact p {
    margin: 5px 0;
}

.social-media {
    margin-top: 30px;
}

.social-media h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #f39c12;
}

.social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-media ul li a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-media ul li a i {
    font-size: 20px;
}

.social-media ul li a:hover {
    color: #f39c12;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .company-info,
    .footer-column,
    .contact {
        flex: 1 1 100%;
    }

    .social-media ul {
        flex-direction: column;
        gap: 15px;
    }
}
