body {
    padding: 0px;
    margin: 0px;
    font-family: Arial, sans-serif; /* Body font */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Flex", Helvetica, Arial, sans-serif; /* Headings font */
}


.navbar {
    position: relative;
    display: flex;
    padding: 0;
    background-color: #FFF;
    justify-content: space-around;
    align-items: center;
    box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
}

.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 10px;
    cursor: pointer;
}

/* Make navbar sticky */
.navbar {
    min-height: 80px;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #FFF;
    box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    /* Optional: Keep the box-shadow */
    -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
}

.nav-items>ul>li>a {
    color: #3B3B3B;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
}

/* Style the main list */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    position: relative;
    display: inline-block;
    /* Makes the list items appear horizontally */
}

/* Dropdown menu style */
ul.dropdown-menu {
    display: none;
    /* Initially hidden */
    position: absolute;
    left: 0;
    top: 100%;
    /* Positioned right below the parent list item */
    background-color: #fff;
    /* White background */
    min-width: 100%;
    /* Ensure it's wide enough */
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for dropdown */
    border-radius: 5px;
    /* Rounded corners */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* Initially hidden off-screen */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s ease 0.3s;
}

/* Dropdown menu items */
ul.dropdown-menu li a {
    padding:10px 50px;
    /* Padding for the items */
    display: block;
    text-decoration: none;
    color: #333;
    /* Default color */
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 700;
}

/* Hover effect for dropdown items */
ul.dropdown-menu li a:hover {
    background-color: #00239C;
    /* Red background on hover */
    color: white;
    /* White text on hover */
}

/* Show the dropdown when hovering over the parent menu item */
li:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Slide it into view */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Main dropdown arrow style */
.arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotate the arrow when the dropdown is open */
li:hover .arrow {
    transform: rotate(180deg);
}

/* Optional: Add a border around the dropdown */
ul.dropdown-menu {
    border: 1px solid #ddd;
    /* Light border for the dropdown */
}

/* Add padding and style to the main dropdown link */
ul.dropdown>a {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: inline-block;
}

/* Hover effect for the main dropdown link */
ul.dropdown>a:hover {
    color: #f44336;
    /* Change color of main dropdown link on hover */
}


.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: #00239C;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.nav-logo img {
    width: 85px;
}

.nav-button {
    background-color: #b8860b;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    border-color: #b8860b;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

#hamburger-menu,
#mobile-menu {
    display: none;
}

@media only screen and (max-width: 770px) {
    .about_content h2{
        padding-top:25px;
    }
    .mission_box, .vision_box{
        margin-top:35px;
    }
    #mobile-menu {
        width: 100%;
        height: 100%;
        position: relative;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        justify-content: center;
        background-color: #fff;
        gap: 21px;
        flex-wrap: wrap;
    }

    .mobile-nav-items>ul {
        padding: 0px;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-items>ul>li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 0 20px;
        cursor: pointer;
    }
    .info-card{
        margin-bottom: 20px; 
    }
    .mobile-nav-items>ul>li>a {
        color: #00239C;
        text-decoration: none;
        font-size: 17px;
        font-weight: 700;
        line-height: 10px;
        text-transform: uppercase;
    }
    .mobile-nav-items {
        padding: 0;
        width: 100%;
    }
    .mobile-nav-items>ul>li>a:hover{
        background-color: #00239C;
        color: #fff;
    }
    .mobile-nav-items>ul>li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-items>ul>li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items>ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: #00239C;
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: #3B3B3B;
        cursor: pointer;
        font-size: 24px;
    }
}

/* subheader css starts */
section.sub_header {
    background-color: #00239C;
    color: #fff;
}
span.info_phone {
    margin-right: 30px;
}
.social_icons {
    gap: 25px;
    display: flex;
    font-size: 19px;
}
.nav-items>ul>li>a:hover{
    color: #00239C;
}
.social_icons a:hover{
    transform: scale(1.3); /* Zoom effect */
    color: #1DA1F2; /* Twitter brand color on hover */
}
i.fa.fa-instagram {
    color: #fff;
}

i.fa.fa-facebook {
    color: #fff;
}

i.fa.fa-whatsapp {
    color: #fff;
}
i.fa.fa-linkedin{
    color: #fff;
}
i.fa.fa-twitter{
    color: #fff;
}
marquee {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
}

/* subheader css ends */
/* Slider css starts */
.slider-container {
    display: flex;
    flex-direction: column; /* Align items in column */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100%;
    text-align: center;
    padding: 20px;
}

/* Heading Styling */
.slider-container h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 950px;
    text-transform: capitalize;
    line-height: 32px;
    margin-bottom: 15px;
}

/* Background Overlay for Better Clarity */
.slider-container::after {
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better contrast */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* Background Image Adjustment */
.slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*opacity: 0;*/
    padding-top:55px;
    padding-bottom:55px;
    width: 100%;
    transform: scale(1.1);
    transition: opacity 0.6s ease-in-out, transform 1s ease-in-out;
    filter: brightness(1.2) contrast(1.1); /* Increase clarity */
}

/* Active Slide */
.slide.active {
    animation: grow 5s linear forwards;
    opacity: 1;
}

/* Smooth Zoom Animation */
@keyframes grow {
    0%, 20% {
        transform: scale(1);
    }
    75%, 100% {
        transform: scale(1.1);
    }
}

/* Navigation Controls */
.controls-container {
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 3;
}

/* Dots Navigation */
.control {
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    margin: 6px;
    height: 40px;
    width: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.control.active,
.control:hover {
    background-color: #fff;
    opacity: 1;
    transform: scale(1.2);
}

/* Buttons Positioned Right After Heading */
.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    z-index: 2;
}

/* Button Styling */
.btn {
    background-color: #fff;
    color: #00239C;
    width: 200px;
    padding: 12px 20px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s ease-in-out;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 35, 156, 0.3);
    margin: 0 auto;
}

/* Arrow Icon Animation */
.btn::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

/* Button Hover Effects */
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px rgba(0, 35, 156, 0.5);
    background-color: #00239C;
    color: #fff;
}

/* Move Arrow on Hover */
.btn:hover::after {
    transform: translateX(5px);
}






.btn2 {
    background-color: #fff;
    color: #00239C;
    width: 200px;
    padding: 12px 20px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s ease-in-out;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 35, 156, 0.3);
}

/* Arrow Icon Animation */
.btn2::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

/* Button Hover Effects */
.btn2:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px rgba(0, 35, 156, 0.5);
    background-color: #00239C;
    color: #fff;
}

/* Move Arrow on Hover */
.btn2:hover::after {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slider-container h1 {
        font-size: 16px;
        line-height: 28px;
        width: 90%;
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
    }

    .btn2 {
        width: 180px;
    }
}


/* slider button  */
.button-container {
    display: flex;
    gap: 15px;
    /* Space between buttons */
    justify-content: center;
    /* Align buttons in center */
    margin-top: 30px;
    /* Space from heading */
}

/* Button styling */
/* button 2 */
.button-container {
    display: flex;
    gap: 15px;
    /* Space between buttons */
    justify-content: center;
    /* Align buttons in center */
    margin-top: 30px;
    /* Space from heading */
}

/* Button styling */
.btn2 {
    background-color: #fff;
    color: #00239C;
    width: 210px;
    padding: 12px 20px;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between text & arrow */
    transition: all 0.4s ease-in-out;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 35, 156, 0.3);
}

/* Arrow Icon */
.btn2::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.btn2:hover {
    transform: translateY(-5px);
    /* Smooth jump effect */
    box-shadow: 0px 8px 20px rgba(0, 35, 156, 0.5);
    /* Stronger shadow on hover */
    background-color: #00239C;
    color: #fff;
}

/* Arrow movement on hover */
.btn2:hover::after {
    transform: translateX(5px);
    /* Move arrow slightly */
}

/* slider css ends */

/* footer css starts */
/* Footer Section */
.footer {
    background-color: #00239C; /* Dark background color */
    color: #fff; /* White text color */
    padding: 20px 0;
    font-family: Arial, sans-serif;
}
.head-quaters h2{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 75px;
    padding-bottom: 5px;
}
.footer .container {
    width: 90%;
    margin: 0 auto;
}
.menu_links h2{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 85px;
}
.menu_links ul{
    font-size: 16px;
    line-height: 32px;
    font-weight: 700;
    line-height: 40px;
}
.menu_links a{
    color: #fff;
}
.footer .row {
    display: flex;
    flex-wrap: wrap;
}

.footer .col-md-3 {
    flex: 1 1 22%;
    margin-bottom: 30px;
}

/* Footer Logo */
.footer_img img {
    max-width: 180px;
    margin-bottom: 20px;
}

/* Footer Social Links */
.footerSNSMenu ul {
    list-style: none;
    padding: 0;
}

.footerSNSMenu ul li {
    display: inline-block;
    margin-right: 15px;
}

.footerSNSMenu ul li a {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footerSNSMenu ul li a:hover {
    color: #1DA1F2; /* Twitter Blue */
    transform: scale(1.2);
}

/* Footer Contact Info */
.alvernoAddress p {
    font-size: 14px;
    line-height: 1.8;
}

.alvernoAddress a {
    color: #fff;
    text-decoration: none;
}

.alvernoAddress a:hover {
    color: #1DA1F2; /* Twitter Blue */
}

/* Footer Navigation */
.footerCol ul {
    list-style: none;
    padding: 0;
}

.footerCol ul li {
    margin-bottom: 10px;
}

.footerCol ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerCol ul li a:hover {
    color: #1DA1F2; /* Twitter Blue */
}

/* Footer Titles */
.Title {
    font-weight: bold;
}

.footerCol .blockContents {
    margin-bottom: 20px;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        align-items: center;
    }

    .footer .col-md-3 {
        flex: 1 1 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footerSNSMenu ul li {
        display: inline-block;
        margin-right: 10px;
    }

    .footer img {
        max-width: 120px;
    }

}

/* footer css ends */
/* about us css starts */
section.about {
    padding: 60px 0;
}
.about_img img{
    width: 100%;
    border-radius: 20px;
}
.about_content h2{
    font-size: 30px;
    font-weight: 700;
    color: #00239C;
}
.about_content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}
/* about us css ends */
/* rules sec starts */
@media (max-width: 1024px){
    .btn{
        width: 180px;
    }
} 
section.rules {
    padding: 60px 0;
    background-color: #eeeeee73;
}
.rules_heading h2{
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    padding: 30px 0;
    display: inline-block;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.rules_heading h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 5px;
    background-color: #00239C;
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
}
.livlihood {
    text-align: center;
    padding: 25px;
    background-color: #ffd9a7cf;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 6px 2px 24px 2px;
    min-height: 335px;
}
.livlihood h2{
    font-size: 25px;
    padding: 16px 0 0;
    font-weight: 700;
    color: #00239c;
}
.livlihood p{
    font-size: 18px;
    font-weight: 500;
}
.livlihood:hover{
    box-shadow: 10px 10px 30px 10px;
    background-color: #cee8ff;
}
/* rules sec ends */
/* counter starts */
section.counter_sec {
    position: relative;
    padding: 60px 0;
    margin: 0 auto;
    text-align: center;
    background-image: url('img/Hand-pounded-rice.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white; /* Ensures text remains readable */
}

/* Dark Overlay */
section.counter_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5 = 50% dark) */
    z-index: 0;
}

/* Ensuring content stays above the overlay */
section.counter_sec * {
    position: relative;
    z-index: 999;
    background-color: #fff;
    color: #000;
    border-radius: 20px;
}
.counter-box {
	display: block;
	padding: 40px 20px 37px;
	text-align: center
}

.counter-box p {
	margin: 5px 0 0;
	padding: 0;
	color: #00239c;
	font-size: 18px;
	font-weight: 700
}

.counter-box i {
	font-size: 60px;
	margin: 0 0 15px;
	color: #000
}

.counter { 
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #666;
	line-height: 28px
}



.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
	color: #00239c;
}
/* counter ends */
/* stories css starts */
section.stories {
    padding: 60px 0;
    text-align: center;
    background-color: #f5f5f5;
}
.stories_cards img{
    width: 100%;
}
.stories_cards {
    background-color: #fff;
    padding: 20px;
    box-shadow: -1px -1px 6px 0px;
    border-radius: 20px;
    min-height: 512px;
    margin-bottom: 20px;
}
.stories_cards h2{
    font-size: 26px;
    color: #00239c;
    font-weight: 700;
    text-align: left;
    padding:10px 0;
}
.stories_cards p{
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}
.stories_cards:hover{
    box-shadow: 0px 4px 14px 15px;
}
/* stories css ends */
/* donation starts */
.donate_section {
 
    padding: 60px 0;
    text-align: center;
  }
  
  .slogan {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
  }
  
  .donate_btn_container {
    margin-top: 30px;
  }
  
  .btn-donate {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: inline-block;
    margin-top: -26px;
  }
  
  .btn-donate:hover {
    background-color: #c0392b;
  }
  /* donation ends */
  /* mission vission starts */
  .mission_vision {
    padding: 60px 0;
    text-align: center;
  }
  
  .mission_box, .vision_box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    min-height: 340px;
  }
  
  .mission_box:hover, .vision_box:hover {
    transform: translateY(-5px);
  }
  
  .mission_box img, .vision_box img {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .mission_box h3, .vision_box h3 {
    font-size: 24px;
    color: #00239c;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .mission_box p, .vision_box p {
    font-size: 16px;
    color: #555;
  }
  .mission_box:hover{
    background-color: #f0f8ff;
  }
  .vision_box:hover{
    background-color: #f0f8ff;
  }
  /* mission vission ends */
  /* success stories starts */
  .success_stories {
    background: #f9f9f9;
    padding: 60px 0;
    text-align: center;
  }
  
  .video_box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .video_box:hover {
    transform: translateY(-5px);
  }
  
  .video_box h3 {
    font-size: 22px;
    color: #333;
    margin-top: 15px;
  }
  
  .video_box p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
  }
  
  /* success stories ends */
  /* clients section starts */
  .image_content_section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .image_wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }
  
  .content_wrapper {
    padding: 20px;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .content_wrapper h2 {
    font-size: 28px;
    font-weight: bold;
    color: #00239c;
  }
  
  .content_wrapper p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .content_wrapper ul {
    list-style: none;
    padding: 0;
  }
  
  .content_wrapper ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
  }
  
  .content_wrapper ul li i {
    color: #007bff;
    margin-right: 8px;
  }
  
  .btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  .image_wrapper img {
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  /* clients section ends */


  /* about us banner starts */
  .about_banner img{
    width: 100%;
    height: 380px;
  }
  .space{
    padding: 0;
  }
  /* about us banner ends */
  /* no profitable sec starts */
  .about_cws {
    padding: 60px 0;
    background: #f9f9f9;
  }
  
  .about_text h2 {
    font-size: 28px;
    font-weight: bold;
    color: #00239c;
    margin-bottom: 15px;
  }
  
  .about_text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .about_video iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .about_video iframe:hover {
    transform: scale(1.05);
  }
  
  /* non profitable sec ends */
  /* objective css starts */
  .our_objectives {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .objectives_content {
    padding: 20px;
    animation: fadeInLeft 1s ease-in-out forwards;
  }
  
  .objectives_content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #00239c;
    margin-bottom: 20px;
  }
  
  .objectives_content ul {
    list-style: none;
    padding: 0;
  }
  
  .objectives_content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
    display: flex;
    align-items: center;
  }
  
  .objectives_content ul li i {
    color: #007bff;
    margin-right: 10px;
    font-size: 18px;
  }
  
  .video_wrapper {
    animation: fadeInRight 1s ease-in-out forwards;
  }
  
  .video_wrapper iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Animations */
  @keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  
  /* objective css ends */
  /* voulenteer starts */
  .become_volunteer {
    background-image: url('img/Hand-pounded-rice.jpeg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .become_volunteer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  }
  
  .volunteer_content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .volunteer_content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .volunteer_content p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn_apply {
    background-color: #ff9800;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: inline-block;
  }
  
  .btn_apply:hover {
    background-color: #e68900;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* voulenteer ends */
  /* drop down menu css starts */
  /* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    display: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    min-width: 180px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 16px;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #f4f4f4;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Chevron icon */
.dropdown a i {
    margin-left: 5px;
    font-size: 12px;
}

  /* drop down menu css ends  */
  /* report sections */
  .reports_section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.section_heading h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section_heading p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Filter Buttons */
.filters-button-group {
    margin-bottom: 20px;
}

.filter-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.filter-btn:hover {
    background: #0056b3;
}

/* Report Cards */
.report-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.report-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.report-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight:700;
}

.download-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.download-btn:hover {
    background: #218838;
}
.report-item {
    margin-top: 20px !important;
}
.about_video img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(-30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.about_text {
    padding-right: 50px;
}
.video_box{
    margin-bottom: 30px !important;
}
  /* report section ends */
  /* impact stories css starts */
  .impact_stories {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.story-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 30px !important;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.story-card h3 {
    font-size: 18px;
    margin: 15px 0;
    font-weight: 600;
}

.story-card p {
    font-size: 14px;
    color: #555;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.download-btn:hover {
    background: #0056b3;
    color: #fff;
}

  /* impact stories ends */
  /* team member css starts */
  .core_team {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.team-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 30px !important;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.team-card h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}

.team-card h4 {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-card p {
    font-size: 14px;
    color: #777;
}
.program_specialists {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.team-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    min-height: 490px;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.team-card h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}

.team-card h4 {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-card p {
    font-size: 14px;
    color: #777;
}

  /* team member css ends */
  /* contact us starts */
  .fade-in {
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .contactus {
    padding:0 0 60px;
    text-align: center;
}

  /* contact us ends */
  /* accordian starts */
  .local_img img{
    width: 100%;
    border-radius: 20px;
  }
  /* accordian ends */


  /* home page extra css */
  .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    max-height: 200px;
      padding: 20px;
      width: 145px;
      text-align: center;
      margin: 0 auto;
  }
  
  .card-body {
    padding: 20px;
    min-height: 250px;
  }
  .logo-img {
    width: 100px;
      height: auto;
      background-color: #fff;
      border-radius: 62px;
      padding: 20px;
    }
  
    .event-box {
      width: 400px;
      background: #00239C;
      color: #fff;
      border-radius: 15px;
    }
  
    img.events_ban {
      width: 100%;
      border-radius: 10px;
      padding-bottom: 23px;
    }
    .info-card.text-center.p-3.shadow-lg p{
      font-size: 17px;
      font-weight: 700;
      color: #00239C;
    }
    .nav-logo a {
      color: #00239C;
      font-size: 18px;
      font-weight: 700;
      justify-content: center;
      align-items: center;
  }
  
  .info-cards-section {
      padding: 50px 0;
      text-align: center;
      background: #f5f5f5;
  }
  
  .info-card {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
      min-height:210px;
  }
  
  .info-card:hover {
      transform: translateY(-10px);
  }
  
  .info-card h3 {
    color: #00239c;
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 15px;
  }
  
  .info-card ul {
    padding-left: 0px;
      text-align: left;
      font-size: 14px;
  }
  
  .info-card ul li {
      list-style: none;
      padding: 5px 0;
  }
  
.fa-envelope-o {
    color: #fff;
}