/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: transparent;
    transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(11, 12, 14, 0.95); /* #0b0c0e with transparency *//*background: rgba(0, 0, 0, 0.9);*/
    padding: 10px 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: white;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: black;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        color: white;
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    color: white;
}

.background-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.slide1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
}

.slide1.active {
    opacity: 1;
    transform: scale(1.2); /* Zoom effect */
}

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 1;
}

.subtext {
    font-size: 16px;
    margin-bottom: 10px;
}

h1 {
    font-size: 50px;
    font-weight: bold;
}

.highlight {
    color: #75ab67; /* Success green *//* color: #D9A05B;*/
}

.buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: #5a8797; /* Primary color */
    color: white;/*background: #008C5F;
    color: white;*/
}

.btn-secondary {
    background: #899cb1; /* Accent color */
    color: #0b0c0e;/*background: #D9A05B;
    color: black;*/
}

.btn-rights{
    float: right;
}
/* Animated Text Effects */
.hero-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-size: 50px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1.5s ease-out forwards;
}

.subtext {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards 0.5s;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background-color: #e4e5e6; /* Light gray *//*background-color: #f9f9f9;*/
    color: #333;
}

.mission-vision .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-vision .section-header h2 {
    font-size: 24px;
    color: #5a8797; /* Primary color *//*color: #008C5F;*/
    margin-bottom: 15px;
}

.mission-vision .section-header h1 {
    font-size: 36px;
   /* color: #333 ;*/color: #5a8797;
    margin-bottom: 0;
}

.mission-vision .content-wrapper {
    display: flex;
    justify-content: center;
}

.mission-vision .mission-content {
    max-width: 1000px;
    text-align: center;
}

.mission-vision .mission-content > p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.mission-vision .columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.mission-vision .column {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision .column h3 {
    color: #5a8797; /* Primary color *//*color: #008C5F;*/
    margin-bottom: 20px;
    font-size: 22px;
}

.mission-vision .column p {
    line-height: 1.6;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-vision .section-header h1 {
        font-size: 28px;
    }
    
    .mission-vision .columns {
        flex-direction: column;
    }
    
    .mission-vision .column {
        min-width: 100%;
    }
}


/* Causes Section */
.causes-section {
    padding: 100px 0;
    background-color: white;
}

.causes-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 10px;
}

.causes-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.causes-section .section-header h2 {
    font-size: 24px;
    color: #5a8797; /* Primary color *//*color: #008C5F;*/
    margin-bottom: 15px;
}

.causes-section .section-header h1 {
    font-size: 36px;
    /*color: #333;*/color: #5a8797;
    margin-bottom: 0;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
}

.cause-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cause-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}



.cause-info {
    padding: 25px;
}

.cause-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.cause-category {
    display: inline-block;
    background: #e4e5e6; /* Light gray */
    color: #5a8797; /* Primary color *//*background: #f0f0f0;
    color: #008C5F;*/
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.cause-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}


.label {
    font-size: 14px;
    color: #666;
}
.causes-section, .contact-section {
    background-color: white;
}

@media (max-width: 768px) {
    .causes-section {
        padding: 60px 0;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
}

/* Cause Image Styles */
.cause-image {
    height: 220px;
    overflow: hidden;
}

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cause-card:hover .cause-image img {
    transform: scale(1.05);
}

/* Testimonials Section */
.text-warning {
    color: #75ab67 !important; /* Success green for stars */
}

/* Adjust progress container position */
.progress-container {
    margin-top: -3px; /* Makes the progress bar appear connected to the image */
    position: relative;
    z-index: 2;
}

/* Contact Section Styles */
.contact-section {
    background-color: white;
    padding: 100px 0;
}

/* Contact Section */
.contact-section .section-header h2 {
    color: #5a8797;;/*#75ab67; /* Success green */
}

.contact-info-card, .contact-form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.contact-info-card:hover, .contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    color: #5a8797; /* Primary color */
    align-items: center;
    justify-content: center;
}

.form-control {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #008C5F;
    box-shadow: 0 0 0 0.25rem rgba(0, 140, 95, 0.25);
}

.btn-success {
    background-color: #75ab67; /* Success green */
    border-color: #75ab67;/*background-color: #008C5F;
    border-color: #008C5F;*/
}

.btn-success:hover {
    background-color: #5a8a4d;
    border-color: #5a8a4d;/*background-color: #007a52;
    border-color: #007a52;*/
}

.disabled{
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-header{

  background-color: #0d6efd;
  color: white;
  font-weight:bolder;

}

/*More button*/
#more {
    display: none;
}

#more1 {
    display: none;
}

#more2 {
    display: none;
}


/*Footer*/
        footer {
            background-color: /*#d4c3c3/*rgba(26, 34, 56, 0.7)/*rgb(20, 19, 19)*/#2D2D2D/*#333*/;
            color: white;
            padding: 30px 0;
          }
          
          .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
          }
          
          .social-icons {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
          }
          
          .social-icons a {
            color: #5a8a4d/*white*/;
            font-size: 24px;
            transition: color 0.3s;
          }
          
          .social-icons a.facebook:hover {
            color: #4267B2; /* Facebook blue */
          }

          .social-icons a.phone:hover {
            color: #1DA1F2; /* Phone blue */
          }

          .social-icons a.email:hover {
            color: aliceblue; /* Email white */
          }

          .social-icons a.whatsapp:hover {
            color: #4CAF50; /* Whatsapp green */
          }
          
          .social-icons a.instagram:hover {
            color: #E1306C; /* Instagram pink */
          }
          
          .social-icons a.linkedin:hover {
            color: #0077B5; /* LinkedIn blue */
          }
          
          .social-icons a.youtube:hover {
            color: #FF0000; /* YouTube red */
          }
          
          .copyright {
            text-align: center;
            font-size: 14px;
          }
          
          @media (max-width: 768px) {
            .social-icons {
              gap: 15px;
            }
            
            .social-icons a {
              font-size: 20px;
            }
          }

/* Add Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");


