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:0;
    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: 26px;
    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: 365px !important;
  }
  
  .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;
}

.video_section {
  width: 100%;
  overflow: hidden;
}

.full_width_video {
  width: 100%;
  height: 550px;
  display: block;
}
.video_heading {
  text-align: center;
  padding: 40px 20px 10px;
  background-color: #f9f9f9;
}

.video_heading h2 {
  font-size: 2em;
  color: #222;
  margin: 0;
}
    ul li {
  position: relative;
}

ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff; /* Set your desired background */
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Optional shadow */
}

ul li:hover ul.dropdown {
  display: block;
}

ul li ul.dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
      min-width: 155px;
      font-weight: 700;
}

ul li ul.dropdown li a:hover {
  background-color: #f0f0f0;
}
.highlights {
  padding: 60px 0;
  background: #f9f9f9;
}

.highlight-carousel img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  padding:5px;
  object-fit: cover;
  width:100%;
}
.highlight-carousel img,
.stories_cards img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
}

/* Hover effect */
.highlight-carousel img:hover,
.stories_cards img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
p.about_des {
    /*background-color: #ffffffb0;*/
    /*border-radius: 20px;*/
    /*padding: 25px;*/
    /*margin-top: -15px;*/
    font-size: 20px;
    font-weight: 700;
}












/*home banner section */
/* =========================================================
   CWS BRAND COLORS
   ========================================================= */

:root {

    --cws-blue: #123B9A;
    --cws-dark-blue: #082B78;
    --cws-blue-light: #1D5CB5;

    --cws-green: #5B982B;
    --cws-light-green: #8DBF52;

    --cws-white: #FFFFFF;
    --cws-text: #172238;

}  /* =========================================================
       MAIN SECTION
       ========================================================= */

    .cws-about-section {
        position: relative;
        padding: 35px 0 70px;
        background-image: url("img/about-bg.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        overflow: hidden;
    }

    .cws-bg-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 45, 20, 0.42);
        z-index: 0;
    }

    .cws-content {
        position: relative;
        z-index: 2;
    }


    /* =========================================================
       ABOUT US CARD
       ========================================================= */

    .cws-about-card {
        position: relative;
        max-width: 1220px;
        margin: 0 auto 40px;
        padding: 30px 65px 38px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 0 0 28px 28px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
        text-align: center;
        overflow: hidden;
    }

    .cws-section-title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;
        margin-bottom: 22px;
    }

    .cws-section-title h2 {
        margin: 0;
        font-size: 46px;
        line-height: 1;
        font-weight: 800;
        color: #2056a8;
    }

    .cws-title-line {
        width: 75px;
        height: 3px;
        background: #5b9d2b;
        display: block;
    }

    .cws-about-card p {
        margin: 0 auto;
        max-width: 1080px;
        font-size: 20px;
        line-height: 1.8;
        color: #082653;
    }

    .cws-about-card p strong {
        color: #284c34;
    }

    .cws-about-card p span {
        color: #5b9d2b;
        font-weight: 700;
    }

    .cws-about-leaf {
        position: absolute;
        right: 45px;
        bottom: 12px;
        font-size: 100px;
        color: rgba(91, 157, 43, 0.09);
        transform: rotate(25deg);
    }


    /* =========================================================
       MAIN HEADING
       ========================================================= */

    .cws-main-heading {
        text-align: center;
        margin: 35px 0 50px;
    }

    .cws-main-heading h2 {
        color: #ffffff;
        font-size: 39px;
        font-weight: 800;
        margin: 0 0 18px;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .cws-heading-decoration {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .cws-heading-decoration span {
        width: 75px;
        height: 2px;
        background: #8bc34a;
    }

    .cws-heading-decoration i {
        font-size: 22px;
        color: #8bc34a;
        font-style: normal;
    }


    /* =========================================================
       THREE CARDS
       ========================================================= */

    .cws-three-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
        max-width: 1300px;
        margin: 0 auto;
        align-items: stretch;
    }


    /* =========================================================
       COMMON CARD
       ========================================================= */

    .cws-info-card {
        position: relative;
        min-height: 500px;
        background: rgba(255, 255, 255, 0.97);
        border-radius: 25px 25px 0 0;
        border-top: 4px solid #5b9d2b;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        overflow: visible;
    }

    .cws-card-content {
        padding: 78px 35px 30px;
        text-align: center;
    }


    /* =========================================================
       CARD ICON
       ========================================================= */

    .cws-card-icon {
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 105px;
        height: 105px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 7px solid #ffffff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
        z-index: 5;
    }

    .cws-card-icon span {
        color: #ffffff;
        font-size: 38px;
        font-weight: 700;
    }

    .mission-icon {
        background: #65a82b;
    }

    .vision-icon {
        background: #2058ae;
    }

    .activity-icon {
        background: #f4ad2d;
    }


    /* =========================================================
       CARD TITLES
       ========================================================= */

    .cws-card-title {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        min-height: 45px;
    }

    .cws-card-title h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 800;
        color: #5b9d2b;
    }

    .vision-card .cws-card-title h3 {
        color: #2056a8;
    }

    .activities-card .cws-card-title h3 {
        color: #2b5239;
        font-size: 27px;
    }

    .cws-card-title span {
        color: #69a92d;
        font-size: 17px;
    }

    .cws-small-line {
        width: 92px;
        height: 3px;
        margin: 14px auto 25px;
        background: #5b9d2b;
    }

    .vision-card .cws-small-line {
        background: #2056a8;
    }


    /* =========================================================
       MISSION / VISION TEXT
       ========================================================= */

    .mission-card p,
    .vision-card p {
        margin: 0;
        font-size: 18px;
        line-height: 1.8;
        color: #111111;
    }


    /* =========================================================
       ACTIVITIES CAROUSEL
       ========================================================= */

    .activities-card {
        min-height: 500px;
    }

    .activities-card .cws-card-content {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 20px;
    }

    .cws-activity-carousel {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 14px;
    }

    .cws-activity-track {
        display: flex;
        width: 100%;
        transition: transform 0.65s ease-in-out;
        will-change: transform;
    }

    .cws-activity-slide {
        min-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        box-sizing: border-box;
        padding: 0 8px 10px;
        text-align: center;
    }

    .cws-activity-slide img {
        display: block;
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .cws-activity-date {
        display: inline-block;
        padding: 5px 12px;
        margin-bottom: 8px;
        border-radius: 20px;
        background: #eef6e8;
        color: #5b9d2b;
        font-size: 13px;
        font-weight: 700;
    }

    .cws-activity-slide p {
        height: 80px;
        overflow: hidden;
        margin: 0 auto 12px;
        color: #222222;
        font-size: 14px;
        line-height: 1.55;
        text-align: left;
    }

    .cws-read-more {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 25px;
        background: #2056a8;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .cws-read-more:hover {
        background: #5b9d2b;
        transform: translateY(-2px);
    }


    /* =========================================================
       PREVIOUS / NEXT BUTTONS
       ========================================================= */

    .cws-carousel-btn {
        position: absolute;
        top: 65px;
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        color: #2056a8;
        font-size: 32px;
        line-height: 30px;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }

    .cws-carousel-btn:hover {
        background: #5b9d2b;
        color: #ffffff;
        transform: scale(1.08);
    }

    .cws-prev {
        left: 3px;
    }

    .cws-next {
        right: 3px;
    }


    /* =========================================================
       CAROUSEL DOTS
       ========================================================= */

    .cws-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin-top: 8px;
        overflow: hidden;
        max-width: 100%;
    }

    .cws-carousel-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #cccccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cws-carousel-dot.active {
        width: 20px;
        border-radius: 10px;
        background: #5b9d2b;
    }


    /* =========================================================
       RESPONSIVE - TABLET
       ========================================================= */

    @media (max-width: 1100px) {

        .cws-three-cards {
            grid-template-columns: repeat(2, 1fr);
            padding: 0 20px;
        }

        .activities-card {
            grid-column: 1 / -1;
        }

        .cws-about-card {
            margin-left: 20px;
            margin-right: 20px;
        }

    }


    /* =========================================================
       RESPONSIVE - MOBILE
       ========================================================= */

    @media (max-width: 767px) {

        .cws-about-section {
            padding: 20px 0 50px;
            background-attachment: scroll;
        }

        .cws-about-card {
            padding: 25px 20px 30px;
            margin-bottom: 30px;
        }

        .cws-section-title {
            gap: 10px;
        }

        .cws-section-title h2 {
            font-size: 34px;
        }

        .cws-title-line {
            width: 35px;
        }

        .cws-about-card p {
            font-size: 16px;
            line-height: 1.7;
        }

        .cws-main-heading {
            margin: 25px 0 35px;
        }

        .cws-main-heading h2 {
            font-size: 28px;
            padding: 0 15px;
        }

        .cws-heading-decoration span {
            width: 45px;
        }

        .cws-three-cards {
            grid-template-columns: 1fr;
            padding: 0 15px;
            gap: 30px;
        }

        .activities-card {
            grid-column: auto;
        }

        .cws-info-card {
            min-height: auto;
        }

        .cws-card-content {
            padding: 78px 25px 30px;
        }

        .cws-card-title h3 {
            font-size: 27px;
        }

        .activities-card .cws-card-title h3 {
            font-size: 24px;
        }

        .cws-activity-slide img {
            height: 180px;
        }

        .cws-activity-slide p {
            height: 135px;
            font-size: 14px;
        }

    }


    /* =========================================================
       SMALL MOBILE
       ========================================================= */

    @media (max-width: 450px) {

        .cws-card-icon {
            width: 90px;
            height: 90px;
        }

        .cws-card-icon span {
            font-size: 32px;
        }

        .cws-card-content {
            padding-top: 70px;
        }

        .cws-activity-slide img {
            height: 160px;
        }

    }


/*objective section*/
/* =========================================================
   OBJECTIVES SECTION
   ========================================================= */

.cws-objectives-section {

    position: relative;

    padding: 70px 0 75px;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );

    overflow: hidden;

}


/* Decorative background elements */

.cws-objectives-section::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    background: rgba(91,152,43,0.06);

    top: -120px;

    left: -100px;

}


.cws-objectives-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(18,59,154,0.05);

    bottom: -150px;

    right: -100px;

}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.cws-objectives-title {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 12px;

}


.cws-objectives-title h2 {

    margin: 0;

    color: #123B9A;

    font-size: 40px;

    font-weight: 700;

}


/* =========================================================
   SUB TITLE
   ========================================================= */

.cws-objectives-subtitle {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 50px;

}


.cws-objectives-subtitle h3 {

    margin: 0 0 13px;

    color: #1d2635;

    font-size: 27px;

    font-weight: 700;

}


/* Heading decoration */

.cws-objectives-heading-line {

    width: 85px;

    height: 4px;

    margin: 0 auto;

    background: #123B9A;

    border-radius: 10px;

    position: relative;

}


.cws-objectives-heading-line::after {

    content: "";

    position: absolute;

    width: 30px;

    height: 4px;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    background: #5B982B;

    border-radius: 10px;

}


/* =========================================================
   CARD ROW
   ========================================================= */

.cws-objectives-row {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

}


/* =========================================================
   CARD
   ========================================================= */

.cws-objective-card {

    position: relative;

    height: 100%;

    min-height: 350px;

    padding: 65px 30px 30px;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid #e7ebf1;

    box-shadow:
        0 8px 25px rgba(18,59,154,0.10);

    text-align: center;

    overflow: visible;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


/* Top green line */

.cws-objective-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #5B982B,
            #8DBF52,
            #123B9A
        );

    border-radius: 18px 18px 0 0;

}


.cws-objective-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(18,59,154,0.17);

}


/* =========================================================
   OBJECTIVE ICON
   ========================================================= */

.cws-objective-icon {

    position: absolute;

    top: -43px;

    left: 50%;

    transform: translateX(-50%);

    width: 86px;

    height: 86px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #ffffff;

    border: 5px solid #ffffff;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.16);

}


/* Icon circle */

.cws-objective-icon-inner {

    width: 66px;

    height: 66px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 28px;

}


/* Different colors */

.cws-objective-card:nth-child(1)
.cws-objective-icon-inner {

    background:
        linear-gradient(
            135deg,
            #5B982B,
            #79AE3C
        );

}


.cws-objective-card:nth-child(2)
.cws-objective-icon-inner {

    background:
        linear-gradient(
            135deg,
            #123B9A,
            #1D5CB5
        );

}


.cws-objective-card:nth-child(3)
.cws-objective-icon-inner {

    background:
        linear-gradient(
            135deg,
            #5B982B,
            #123B9A
        );

}


/* =========================================================
   CARD TITLE
   ========================================================= */

.cws-objective-card h3 {

    min-height: 78px;

    margin: 0 0 15px;

    color: #123B9A;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 700;

}


/* =========================================================
   TITLE LINE
   ========================================================= */

.cws-objective-card-title-line {

    width: 55px;

    height: 3px;

    margin: 0 auto 20px;

    background: #5B982B;

    border-radius: 10px;

}


/* =========================================================
   OBJECTIVE LIST
   ========================================================= */

.cws-objective-list {

    padding: 0;

    margin: 0;

    list-style: none;

    text-align: left;

}


.cws-objective-list li {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 14px;

    color: #293241;

    font-size: 14px;

    line-height: 1.45;

}


/* Green check */

.cws-objective-list li::before {

    content: "\f00c";

    font-family: FontAwesome;

    flex-shrink: 0;

    width: 23px;

    height: 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(91,152,43,0.10);

    color: #4B9820;

    font-size: 13px;

    font-weight: bold;

}


/* =========================================================
   READ MORE
   ========================================================= */

.cws-objective-read-more {

    margin-top: 20px;

    text-align: center;

}


.cws-objective-read-more a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 18px;

    border-radius: 20px;

    color: #123B9A !important;

    border: 1px solid #123B9A;

    background: transparent;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.3s ease;

}


.cws-objective-read-more a:hover {

    background: #123B9A;

    color: #ffffff !important;

    gap: 11px;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .cws-objectives-section {

        padding: 60px 15px;

    }


    .cws-objectives-title h2 {

        font-size: 34px;

    }


    .cws-objectives-subtitle h3 {

        font-size: 24px;

    }


    .cws-objective-card {

        margin-bottom: 55px;

    }

}


@media (max-width: 767px) {

    .cws-objectives-section {

        padding: 50px 15px 30px;

    }


    .cws-objectives-title h2 {

        font-size: 30px;

    }


    .cws-objectives-subtitle {

        margin-bottom: 45px;

    }


    .cws-objectives-subtitle h3 {

        font-size: 21px;

        line-height: 1.4;

    }


    .cws-objective-card {

        min-height: auto;

        padding: 60px 25px 28px;

        margin-bottom: 60px;

    }


    .cws-objective-card h3 {

        min-height: auto;

        font-size: 21px;

    }


    .cws-objective-list li {

        font-size: 14px;

    }

}


@media (max-width: 400px) {

    .cws-objectives-title h2 {

        font-size: 27px;

    }


    .cws-objectives-subtitle h3 {

        font-size: 19px;

    }

}
/* =========================================================
   STORIES SECTION
   ========================================================= */

.cws-stories-section {

    position: relative;

    padding: 75px 0 85px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6f8fb 100%
        );

    overflow: hidden;

}


/* Decorative background circles */

.cws-stories-section::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(91,152,43,0.055);

    top: -150px;
    left: -120px;

}


.cws-stories-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(18,59,154,0.045);

    bottom: -180px;
    right: -150px;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.cws-stories-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 48px;

}


.cws-stories-heading h2 {

    margin: 0 0 14px;

    color: #123B9A;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.3;

}


/* Heading underline */

.cws-stories-heading-line {

    width: 85px;

    height: 4px;

    margin: auto;

    background: #123B9A;

    border-radius: 10px;

    position: relative;

}


.cws-stories-heading-line::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    width: 30px;

    height: 4px;

    background: #5B982B;

    border-radius: 10px;

}


/* =========================================================
   STORIES ROW
   ========================================================= */

.cws-stories-row {

    position: relative;

    z-index: 2;

}


/* =========================================================
   STORY CARD
   ========================================================= */

.cws-story-card {

    height: 100%;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #e6eaf0;

    box-shadow:
        0 8px 25px rgba(18,59,154,0.09);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    display: flex;

    flex-direction: column;

}


.cws-story-card:hover {

    transform: translateY(-9px);

    box-shadow:
        0 18px 42px rgba(18,59,154,0.16);

}


/* =========================================================
   IMAGE CONTAINER
   ========================================================= */

.cws-story-image {

    position: relative;

    height: 225px;

    overflow: hidden;

    background: #eef2f5;

}


/* Image */

.cws-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.6s ease;

}


.cws-story-card:hover
.cws-story-image img {

    transform: scale(1.08);

}


/* Image overlay */

.cws-story-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18,59,154,0.35),
            transparent 55%
        );

    opacity: 0;

    transition: opacity 0.35s ease;

}


.cws-story-card:hover
.cws-story-image::after {

    opacity: 1;

}


/* =========================================================
   STORY CONTENT
   ========================================================= */

.cws-story-content {

    padding: 25px 26px 27px;

    display: flex;

    flex-direction: column;

    flex: 1;

}


/* Small green line */

.cws-story-accent {

    width: 45px;

    height: 4px;

    background: #5B982B;

    border-radius: 10px;

    margin-bottom: 14px;

}


/* Story title */

.cws-story-content h3 {

    margin: 0 0 13px;

    color: #123B9A;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 700;

}


/* Story description */

.cws-story-content p {

    margin: 0;

    color: #555f6d;

    font-size: 14px;

    line-height: 1.7;

    flex: 1;

}


/* =========================================================
   READ MORE
   ========================================================= */

.cws-story-read-more {

    margin-top: 22px;

}


.cws-story-read-more a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 18px;

    border: 1px solid #123B9A;

    border-radius: 22px;

    color: #123B9A !important;

    background: #ffffff;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.3s ease;

}


.cws-story-read-more a:hover {

    color: #ffffff !important;

    background: #123B9A;

    gap: 12px;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .cws-stories-section {

        padding: 65px 15px;

    }


    .cws-stories-heading h2 {

        font-size: 30px;

    }


    .cws-story-card {

        margin-bottom: 30px;

    }

}


@media (max-width: 767px) {

    .cws-stories-section {

        padding: 55px 15px 40px;

    }


    .cws-stories-heading {

        margin-bottom: 40px;

    }


    .cws-stories-heading h2 {

        font-size: 25px;

    }


    .cws-story-image {

        height: 220px;

    }


    .cws-story-content {

        padding: 22px;

    }


    .cws-story-content h3 {

        font-size: 20px;

    }

}
/* =========================================================
   DONATION SECTION
   ========================================================= */

.cws-donate-section {

    position: relative;

    padding: 75px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #123B9A 0%,
            #1749a8 48%,
            #397d35 100%
        );

}


/* =========================================================
   DECORATIVE CIRCLES
   ========================================================= */

.cws-donate-section::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border: 55px solid rgba(255,255,255,0.06);

    top: -210px;
    left: -150px;

}


.cws-donate-section::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 65px solid rgba(255,255,255,0.05);

    bottom: -270px;
    right: -160px;

}


/* =========================================================
   CONTENT
   ========================================================= */

.cws-donate-content {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    text-align: center;

}


/* =========================================================
   SMALL LABEL
   ========================================================= */

.cws-donate-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 18px;

    margin-bottom: 18px;

    border-radius: 30px;

    color: #ffffff;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.25);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


.cws-donate-label i {

    color: #b9dc76;

}


/* =========================================================
   HEADING
   ========================================================= */

.cws-donate-title {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: 40px;

    line-height: 1.25;

    font-weight: 700;

}


/* =========================================================
   HEADING LINE
   ========================================================= */

.cws-donate-line {

    width: 80px;

    height: 4px;

    margin: 0 auto 22px;

    background: #9BCB58;

    border-radius: 10px;

}


/* =========================================================
   SLOGAN
   ========================================================= */

.cws-donate-slogan {

    max-width: 720px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,0.92);

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   SUPPORT TEXT
   ========================================================= */

.cws-donate-support {

    margin-bottom: 30px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;

}


/* =========================================================
   DONATE BUTTON
   ========================================================= */

.cws-donate-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 175px;

    padding: 13px 28px;

    border-radius: 30px;

    background: #ffffff;

    color: #123B9A !important;

    text-decoration: none !important;

    font-size: 15px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.18);

    transition:
        all 0.35s ease;

}


.cws-donate-button i {

    font-size: 16px;

    color: #5B982B;

    transition: transform 0.3s ease;

}


.cws-donate-button:hover {

    color: #ffffff !important;

    background: #5B982B;

    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(0,0,0,0.25);

}


.cws-donate-button:hover i {

    color: #ffffff;

    transform: translateX(4px);

}


/* =========================================================
   IMPACT ITEMS
   ========================================================= */

.cws-donate-impact {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;

}


.cws-donate-impact-item {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 15px;

    border-radius: 25px;

    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.15);

    color: #ffffff;

    font-size: 12px;

}


.cws-donate-impact-item i {

    color: #b9dc76;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {

    .cws-donate-section {

        padding: 60px 18px;

    }


    .cws-donate-title {

        font-size: 30px;

    }


    .cws-donate-slogan {

        font-size: 15px;

    }


    .cws-donate-impact {

        gap: 8px;

    }


    .cws-donate-impact-item {

        font-size: 11px;

    }

}


@media (max-width: 400px) {

    .cws-donate-title {

        font-size: 27px;

    }


    .cws-donate-button {

        width: 100%;

    }

}
/**-------------------------------------------------/
/* =========================================================
   CWS ABOUT SECTION
   ========================================================= */

.cws-about-section {
    position: relative;
    padding: 80px 0 70px;

    background:
        linear-gradient(
            135deg,
            #f4f9f3 0%,
            #ffffff 50%,
            #eef7ec 100%
        );

    overflow: hidden;
}


/* Background decorative circles */

.cws-about-section::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(89, 145, 70, 0.06);

    top: -120px;
    left: -100px;
}


.cws-about-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(89, 145, 70, 0.05);

    right: -150px;
    bottom: -150px;
}


/* Background overlay */

.cws-bg-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
}


/* Main content */

.cws-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   ABOUT CARD
   ========================================================= */

.cws-about-card {
    max-width: 1000px;

    margin: 0 auto 0;

    padding: 35px 45px;

    background: rgba(255,255,255,0.96);

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);

    border: 1px solid rgba(85,130,70,0.10);

    text-align: center;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.cws-section-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;
}


.cws-section-title h2 {
    margin: 0;

    font-size: 32px;

    font-weight: 800;

    color: #2e5438;
}


.cws-section-title h2 span {
    color: #6a9f55;
}


.cws-title-line {
    width: 55px;

    height: 3px;

    border-radius: 10px;

    background: #6a9f55;
}


/* About text */

.cws-about-text {
    margin: 0;

    color: #555;

    font-size: 16px;

    line-height: 1.9;
}


.cws-about-text strong {
    color: #2f5137;
}


.cws-about-text .cws-green-highlight {
    color: #5f963f;
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.cws-main-heading {
    text-align: center;

    margin-bottom: 55px;
}


.cws-main-heading h2 {
    margin: 0;

    font-size: 32px;

    font-weight: 800;

    color: #2e5438;
}


.cws-heading-decoration {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 15px;
}


.cws-heading-decoration span {
    width: 60px;

    height: 2px;

    background: #6a9f55;

    display: block;
}


.cws-heading-decoration i {
    color: #6a9f55;

    font-size: 18px;
}


/* =========================================================
   THREE CARD ROW
   ========================================================= */

.cws-three-cards {
    display: flex;

    align-items: stretch;
}


.cws-three-cards > [class*="col-"] {
    display: flex;
}


/* =========================================================
   COMMON CARD
   ========================================================= */

.cws-info-card {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 390px;

    background: #ffffff;

    border-radius: 20px;

    padding: 70px 28px 30px;

    margin-bottom: 30px;

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow:
        0 8px 28px rgba(0,0,0,0.09);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.cws-info-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.14);
}


/* Top decorative border */

.cws-info-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 5px;

    background: #6a9f55;
}


/* =========================================================
   ICON
   ========================================================= */

.cws-round-icon {
    position: absolute;

    top: 25px;

    left: 50%;

    transform: translateX(-50%);

    width: 62px;

    height: 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 24px;

    border: 5px solid #ffffff;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.16);
}


/* Mission icon */

.cws-mission-icon {
    background:
        linear-gradient(
            135deg,
            #198754,
            #4fa96d
        );
}


/* Vision icon */

.cws-vision-icon {
    background:
        linear-gradient(
            135deg,
            #2878d4,
            #65a8f2
        );
}


/* Activity icon */

.cws-activity-icon {
    background:
        linear-gradient(
            135deg,
            #e58b16,
            #f5bd50
        );
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.cws-card-content {
    position: relative;

    z-index: 2;
}


.cws-card-content h3 {
    margin: 0 0 12px;

    text-align: center;

    color: #2f5438;

    font-size: 21px;

    font-weight: 800;
}


.cws-card-content h3 i {
    color: #6a9f55;

    font-size: 11px;

    margin: 0 6px;
}


/* Small line */

.cws-small-line {
    width: 55px;

    height: 3px;

    margin: 0 auto 20px;

    background: #6a9f55;

    border-radius: 10px;
}


/* Card paragraph */

.cws-card-content p {
    margin: 0;

    text-align: center;

    color: #5a5a5a;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   RECENT ACTIVITY CARD
   ========================================================= */

.cws-activity-card {
    min-height: 390px;
}


.cws-activity-slider {
    position: relative;

    width: 100%;

    min-height: 210px;

    overflow: hidden;
}


/* =========================================================
   ACTIVITY ITEM
   ========================================================= */

.cws-activity-item {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    opacity: 0;

    visibility: hidden;

    transform: translateX(50px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}


.cws-activity-item.active {
    position: relative;

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* =========================================================
   ACTIVITY NUMBER
   ========================================================= */

.cws-activity-number {
    width: 42px;

    height: 42px;

    margin: 0 auto 10px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf6e9;

    color: #5f963f;

    font-size: 14px;

    font-weight: 800;

    border: 2px solid #d7e8ce;
}


/* =========================================================
   ACTIVITY DATE
   ========================================================= */

.cws-activity-date {
    display: table;

    margin: 0 auto 13px;

    padding: 5px 13px;

    border-radius: 20px;

    background: #fff5df;

    color: #d48600;

    font-size: 12px;

    font-weight: 700;
}


.cws-activity-date i {
    margin-right: 5px;
}


/* =========================================================
   ACTIVITY TITLE
   ========================================================= */

.cws-activity-item h4 {
    text-align: center;

    margin: 0 0 10px;

    color: #2f5438;

    font-size: 18px;

    font-weight: 800;
}


/* Activity description */

.cws-activity-item p {
    font-size: 14px;

    line-height: 1.65;

    color: #666;
}


/* =========================================================
   ACTIVITY CONTROLS
   ========================================================= */

.cws-activity-controls {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 5px;
}


/* Arrow */

.cws-activity-arrow {
    width: 30px;

    height: 30px;

    border-radius: 50%;

    border: 1px solid #d7e8ce;

    background: #f4f9f1;

    color: #5f963f;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;
}


.cws-activity-arrow:hover {
    background: #6a9f55;

    color: #ffffff;

    border-color: #6a9f55;
}


/* =========================================================
   DOTS
   ========================================================= */

.cws-activity-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.activity-dot {
    width: 7px;

    height: 7px;

    border-radius: 10px;

    background: #d1d1d1;

    cursor: pointer;

    transition: all 0.3s ease;
}


.activity-dot.active {
    width: 20px;

    background: #6a9f55;
}


/* =========================================================
   ACTIVITY COUNTER
   ========================================================= */

.cws-activity-status {
    text-align: center;

    margin-top: 8px;
}


.cws-activity-status span {
    color: #888;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .cws-about-section {
        padding: 60px 0;
    }


    .cws-three-cards {
        display: flex;

        flex-wrap: wrap;
    }


    .cws-three-cards > [class*="col-"] {
        display: flex;
    }


    .cws-three-cards .cws-info-card {
        min-height: 370px;
    }


    .cws-activity-card {
        min-height: 370px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .cws-about-section {
        padding: 50px 15px;
    }


    .cws-about-card {
        padding: 30px 20px;

        margin-bottom: 40px;
    }


    .cws-section-title h2 {
        font-size: 26px;
    }


    .cws-main-heading h2 {
        font-size: 25px;
    }


    .cws-main-heading {
        margin-bottom: 40px;
    }


    .cws-title-line {
        width: 35px;
    }


    .cws-about-text {
        font-size: 14px;

        line-height: 1.8;
    }


    .cws-three-cards {
        display: block;
    }


    .cws-three-cards > [class*="col-"] {
        display: block;

        width: 100%;
    }


    .cws-info-card {
        min-height: auto;

        padding: 70px 22px 30px;

        margin-bottom: 60px;
    }


    .cws-card-content h3 {
        font-size: 20px;
    }


    .cws-card-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .cws-activity-slider {
        min-height: 230px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cws-section-title {
        gap: 8px;
    }


    .cws-section-title h2 {
        font-size: 23px;
    }


    .cws-main-heading h2 {
        font-size: 22px;
    }


    .cws-title-line {
        width: 25px;
    }


    .cws-info-card {
        padding-left: 18px;

        padding-right: 18px;
    }

}