
/* header section */




.mailandnumber {
    align-content: center;
}

.nav-item {
    padding: 0px 5px;
}

/* Style for contact-info to align items in a row */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    /* Space between items */
    align-items: center;
    /* Center items vertically within the row */
}

/* Style for each list item */
.contact-info li {
    display: flex;
    align-items: center;
    font-size: 16px;
    /* Adjust font size */
    color: #333;
    /* Dark gray color for text */
}

/* Style for icons */
.contact-info i {
    font-size: 20px;
    /* Icon size */
    color: #007bff;
    /* Primary color for icons */
    margin-right: 8px;
    /* Space between icon and text */
}

/* Style for links */
.contact-info a {
    color: #333;
    /* Text color for links */
    text-decoration: none;
    /* Remove underline from links */
}

.contact-info a:hover {
    text-decoration: underline;
    /* Add underline on hover */
    color: #0056b3;
    /* Darker color for hover effect */
}



.logo-image {
width: 100px;
}

/* Basic Styles for Navbar Links */
.navbar-nav .nav-link {
position: relative;
padding: 10px 15px;
color: #333;
/* Default text color */
text-decoration: none;
font-size: 16px;
transition: color 0.3s, transform 0.3s;
/* Smooth transition for color and transform */
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
color: #007bff;
/* Text color on hover */
transform: scale(1.1);
/* Slightly enlarge the text on hover */
}

/* Underline Animation */
.navbar-nav .nav-link::after {
content: '';
/* display: block; */
position: absolute;

right: 0;
/* bottom: 0; */
height: 10px;
width: 0;
transition: width 0.3s;
}

/* Expand Underline on Hover */
.navbar-nav .nav-link:hover::after {
width: 100%;
}
















/* Container for the Follow Us section */
.follow-us {
display: flex;
align-items: center;
/* Center items vertically */
padding: 15px;
top: 12px;
}

/* Follow Us title styling */
.follow-us-title {
font-size: 14px;
font-weight: 600;
position: relative;
left: 25px;
top: 5px;
color: #333;
max-width: 100px;
margin-right: 15px;
/* Space between text and icons */
}

/* List styling */
.follow-us-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 10px;
/* Space between icons */
}

/* Styling for each social icon link */
.social-icon {
display: inline-block;
width: 30px;
/* Smaller size */
height: 30px;
/* Smaller size */
line-height: 30px;
text-align: center;
font-size: 16px;
/* Smaller font size */
color: #fff;
/* Icon color */
border-radius: 50%;
transition: background-color 0.3s, transform 0.3s;
/* Smooth transitions */
}

/* Individual social icons background color */
.facebook {
background-color: #3b5998;
}

.twitter {
background-color: #1da1f2;
}

.instagram {
background-color: #e4405f;
}

.linkedin{
    background-color: skyblue;
}
.youtube{
    background-color: red;
}
/* Hover effects for social icons */
.social-icon:hover {
transform: scale(1.1);
/* Slightly enlarge on hover */
color: #fff;
/* Keep text color consistent */
}

/* Optional: add a border around icons */
.social-icon {
border: 2px solid transparent;
}

.social-icon:hover {
border: 2px solid #fff;
/* Border color on hover */
}

    .donate-btn {
        background-color: #f25a2f;;
        /* Red background color */
        color: #fff;
        /* White text color */
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 30px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        text-transform: uppercase;
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .donate-btn i {
        margin-right: 8px;
        font-size: 18px;
        /* Icon size */
        animation: heartbeat 1.5s infinite;
        /* Heartbeat animation */
    }

    .donate-btn:hover {
        background-color: #c0392b;
        /* Darker red on hover */
        transform: translateY(-3px);
        /* Move up on hover */
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        /* Add shadow on hover */
    }

    .donate-btn:active {
        transform: translateY(2px);
        /* Slightly shrink on click */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* Adjust shadow on click */
    }

    @keyframes heartbeat {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: scale(1);
        }

        40% {
            transform: scale(1.2);
        }

        60% {
            transform: scale(0.9);
        }
    }



    /* lang section */

    .language-btn {
        background-color: #154171;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 30px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        text-transform: uppercase;
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .language-btn i {
        margin-right: 8px;
        font-size: 18px;
    }

    .language-btn:hover {
        background-color: #1a5a8a;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .language-btn:active {
        transform: translateY(2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .dropdown-menu {
        background-color: #154171;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        transition: opacity 0.3s ease;
    }

    .dropdown-menu a {
        color: #fff;
        display: block;
        padding: 5px 10px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .dropdown-menu a:hover {
        background-color: #1a5a8a;
    }



    /* project section  */

    .carousel img {
        width: 70px;
        max-height: 70px;
        border-radius: 50%;
        margin-right: 1rem;
        overflow: hidden;
    }

    .carousel-inner {
        padding: 1em;
    }

    @media screen and (min-width: 576px) {
        .carousel-inner {
            display: flex;
            width: 90%;
            margin-inline: auto;
            padding: 1em 0;
            overflow: hidden;
        }

        .carousel-item {
            display: block;
            margin-right: 0;
            flex: 0 0 calc(100% / 2);
        }
    }

    @media screen and (min-width: 768px) {
        .carousel-item {
            display: block;
            margin-right: 0;
            flex: 0 0 calc(100% / 3);
        }
    }

    .carousel .card {
        margin: 0 0.5em;
        border: 0;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 3rem;
        height: 3rem;
        background-color: grey;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }


    /* @import url('https://fonts.googleapis.com/css?family=Oswald');
    @import url('https://fonts.googleapis.com/css?family=Lato');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    body {
        background-image: url("https://www.nasa.gov/sites/all/themes/custom/nasatwo/images/starfield-banner.jpg");
    } */

    .project-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-gap: 10px;
        padding: 0.5em;
        perspective: 500px;
    }

    .article {
        display: flex;
        flex-direction: column;
        height: 300px;
        position: relative;
        background-size: cover;
        border-radius: 7px;
        overflow: hidden;
        padding: 1em;
        cursor: pointer;
        transform: rotateX(0deg) rotateY(0deg);
        transition: all 0.2s linear;
        will-change: transform;
    }




    .overlay {
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.4) 50%);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .article h1 {
        font-size: 1.5em;
        font-family: "EB Garamond", system-ui;
        margin-top: auto;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        z-index: 2;
        pointer-events: none;
    }

    .article h1 {
        transform: translateY(-20px)
    }

    .article h1 span {
        color: #fff;
    }

    .article span.cat {
        letter-spacing: 2px;
        font-weight: bold;
        font-family: "EB Garamond", system-ui;
        position: relative;
        z-index: 2;
        pointer-events: none;
        overflow: hidden;
        color: #fff;
    }

    @media screen and (min-width:1000px) {
        .project-section {
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            grid-gap: 20px;
            padding: 1em;
        }

        .article h1 {
            transform: translateY(0px);
        }

        .article:hover h1 {
            transform: translateY(-20px)
        }

        .article span.cat {
            color: transparent;
        }

        .article span.cat::before,
        .article span.cat::after {
            content: attr(data-hover);
            position: absolute;
            display: inline-block;
            left: 0;
            top: 0;
            white-space: nowrap;
            overflow: hidden;
            max-width: 0%;
            transition: max-width 300ms ease-out;
        }

        .article span.cat::before {
            color: yellow;
            transition-delay: 100ms;
        }

        .article span.cat::after {
            color: white;
        }

        .article:hover span.cat:after,
        .article:hover span.cat:before {
            max-width: 100%;
        }

        .article:hover span.cat:after {
            transition-delay: 300ms;
        }
    }



    /* page heading section */


    .page-nav {
        position: relative;
        color: #ffffff;
        padding: 70px 0;
        /* Increased height for a more impactful section */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-bottom: 8px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        /* Rounded corners for a modern look */
        margin: 20px auto;
        /* Center and add space around the section */
        max-width: 1200px;
        /* Limit the maximum width for a cleaner look */
    }

    .page-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.5));
        z-index: 1;
        border-radius: 10px;
        /* Same rounded corners to match the parent */
    }

    .page-nav h2 {
        margin: 0;
        font-size: 36px;
        /* Larger font size for prominence */
        font-weight: 700;
        color: #ffffff;
        text-align: left;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
        text-transform: uppercase;
        /* Make the heading stand out */
        letter-spacing: 1.5px;
        /* Slight letter spacing for a refined look */
    }

    .breadcrumb {
        background-color: transparent;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        align-items: center;
        color: #ffffff;
        position: relative;
        z-index: 2;
        font-size: 16px;
    }

    .breadcrumb-item {
        font-size: 16px;
    }

    .breadcrumb-item a {
        color: #ecf0f1;
        text-decoration: none;
        padding-right: 10px;
        transition: color 0.3s ease;
        /* Smooth transition effect on hover */
    }

    .breadcrumb-item a:hover {
        color: #f39c12;
        /* Highlight color on hover */
    }

    .breadcrumb-item.active {
        color: #bdc3c7;
    }

    .breadcrumb-item i {
        margin-right: 5px;
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        padding: 0 20px;
        /* Add padding to prevent content from touching the edges */
    }

    @media only screen and (max-width: 768px) {
        .nav-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .breadcrumb-item {
            font-size: 14px;
        }

        .page-nav h2 {
            font-size: 28px;
            /* Adjust heading size for smaller screens */
        }
    }



    /*employee section*/

     /* Container */
     .employee-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
        text-align: center;
    }

    /* Section Title */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        color: #333;
    }

    /* Employee Grid */
    .employee-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Employee Card */
    .employee-card {
        overflow: hidden;
        width: 300px;
        padding: 20px;
        text-align: center;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Employee Photo Container */
    .employee-photo-container {
        width: 150px;
        /* Adjust size for desktop */
        height: 150px;
        /* Adjust size for desktop */
        overflow: hidden;
        position: relative;
        border-radius: 50%;
        /* Perfect circle */
        margin: 0 auto 15px;
        /* Center align and add bottom margin */
    }

    /* Employee Photo */
    .employee-photo {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        overflow: hidden;
        border-radius: 50%;
        margin: 0 auto 15px;
        transition: transform 0.3s ease; /* Smooth zoom-in animation */

        border: 5px solid #4caf50; /* Border color and thickness */
    }

    /* Hover Effects for Photo */
    .employee-photo-container:hover .employee-photo {
        transform: scale(1.1);
    }



    /* Different Shapes Example */
    .shape-square .employee-photo-container {
        border-radius: 0;
        /* Square */
    }

    .shape-oval .employee-photo-container {
        border-radius: 50% / 30%;
        /* Oval */
    }

    .shape-hexagon .employee-photo-container {
        position: relative;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        /* Hexagon */
    }

    .shape-triangle .employee-photo-container {
        position: relative;
        clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        /* Triangle */
    }

    /* Employee Name */
    .employee-name {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 10px;
    }

    /* Employee Position */
    .employee-position {
        font-size: 1rem;
        color: #555;
        margin-bottom: 15px;
        font-weight: bold;
    }

    /* Employee Bio */
    .employee-address {
        font-size: 0.5rem;
        color: #777;
    }






    /*donate section */



       /* Style the images in the gallery */
       .image-gallery {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .gallery-img {
        width: 45%;
        height: auto;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 8px;
    }

    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Modal styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 40px;
        justify-content: center;
        align-items: center;
    }

    .modal-box {
        position: relative;
        max-width: 800px;
        width: 100%;
        padding: 20px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.5);
        text-align: center;
    }

    .modal-content {
        max-width: 100%;
        max-height: 80vh;
        /* Adjust height to fit within viewport */
        width: auto;
        /* Maintain aspect ratio */
        height: auto;
        /* Maintain aspect ratio */
        display: block;
        margin: 0 auto;
    }

    .close {
        position: absolute;
        top: -15px;
        right: -15px;
        background: #ff6347;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease;
    }

    .close:hover {
        background: #f25a2f;;
    }

    /* Bank Credentials Section */
    .bank-credentials {
        text-align: center;
        color: #333;
    }

    .bank-credentials h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #f39c12;
    }

    .bank-credentials p {
        font-size: 18px;
        line-height: 1.5;
        margin: 5px 0;
    }

    @media (max-width: 768px) {
        .modal-box {
            max-width: 90%;
        }

        .bank-credentials h3 {
            font-size: 20px;
        }

        .bank-credentials p {
            font-size: 16px;
        }
    }

    /* Responsive Design for Mobile Devices */
    @media (max-width: 768px) {
        .employee-grid {
            flex-direction: column;
            align-items: center;
        }

        .employee-card {
            width: 90%;
            /* Full width on smaller screens */
            max-width: 400px;
            /* Adjust maximum width */
        }

        .employee-photo-container {
            width: 120px;
            /* Smaller size for mobile */
            height: 120px;
            /* Smaller size for mobile */
        }

        .section-title {
            font-size: 2rem;
            /* Smaller font size */
        }

        .employee-name {
            font-size: 1rem;
            /* Slightly smaller font size */
        }

        .employee-position {
            font-size: 0.9rem;
            /* Slightly smaller font size */
        }

        .employee-address {
            font-size: 0.8rem;
            /* Slightly smaller font size */
        }
    }

    /* Desktop-specific styles */
    @media (min-width: 1200px) {
        .employee-card {
            width: 350px;
            /* Slightly larger cards on very large screens */
        }

        .employee-photo-container {
            width: 180px;
            /* Larger size for large screens */
            height: 180px;
            /* Larger size for large screens */
        }

        .section-title {
            font-size: 3rem;
            /* Larger font size for larger screens */
        }

        .employee-name {
            font-size: 1.75rem;

            /* Larger font size for larger screens */
        }

        .employee-position {
            font-size: 1.1rem;
            /* Larger font size for larger screens */
        }

        .employee-address {
            font-size: 1rem;
            /* Larger font size for larger screens */
        }
    }



    /* contact section */

    ul {
        list-style: none;
    }

    input {
        overflow: hidden;
    }

    .section-title {
        position: relative;
        font-size: 30px;
        font-weight: 600;
        font-family: "EB Garamond", system-ui;
        margin: 0 0 35px;
    }

    .sec-pad {
        padding: 60px 0;
    }

    .contact-sec {
        align-item: center;
        display: flex;
        background-color: #5cbde466;
    }

    .contact-sec .contact-ul li,
    .contact-ul b {
        font-size: 20px;
        margin: 10px 0;
        font-family: "EB Garamond", system-ui;
        word-wrap: break-word;
    }

    .contact-sec .contact-ul i {
        font-size: 18px;
        padding: 10px;
        margin-right: 10px;
        border-radius: 50%;
    }

    .contact-detail a {
        color: #000;
        text-decoration: none;
    }

    .contact-sec .contact-ul li b:hover {
        color: #f93;
    }

    .contact-sec .contact-ul li .fa-location-dot {
        color: #f44337;
        border: 2px solid #f4433790;
    }

    .contact-sec .contact-ul li .fa-phone {
        color: #00b055;
        border: 2px solid #00b05590;
    }

    .contact-sec .contact-ul li .fa-envelope {
        color: #ff6347;
        border: 2px solid #ff634790;
    }

    .contact-detail span {
        width: 400px;
        display: flex;
        justify-content: center;
    }

    .contact-detail span a {
        font-size: 20px;
        padding: 6px 12px;
        color: #000;
        border-radius: 50%;
        margin: 0px 5px;
    }

    .contact-detail span .fb {
        color: #3b5998;
        border: 3px solid #3b5998;
    }

    .contact-detail span .fb:hover {
        color: #fff;
        background-color: #3b5998;
    }

    .contact-detail span .insta {
        color: #833ab4;
        border: 3px solid #833ab4;
    }

    .contact-detail span .insta:hover {
        color: #fff;
        background-color: #833ab4;
    }

    .contact-detail span .twitter {
        color: #00acee;
        border: 3px solid #00acee;
    }

    .contact-detail span .twitter:hover {
        color: #fff;
        background-color: #00acee;
    }

    form.contFrm {
        max-width: 396px;
        margin: auto;
    }

    .inptFld {
        width: 100%;
        height: 50px;
        border: 0;
        margin: 0 0 10px;
        border-radius: 8px;
        padding: 0 20px;
        font-size: 16px;
        color: #000;
    }

    .inptFld:focus {
        outline-offset: -4px;
        outline: 1px solid #f93;
    }

    .contFrm textarea {
        height: 75px;
        padding-top: 5px;
    }

    .inptBtn {
        height: 50px;
        border: 0;
        background: #154171;
        font-size: 14px;
        color: #fff;
        margin: auto;
        letter-spacing: 1px;
        cursor: pointer;
        width: 100%;
        max-width: 200px;
    }

    /* Responcive css Start */

    @media (max-width: 991px) {
        .sec-pad {
            padding: 20px 0 0px;
        }

        .contact-sec .contact-ul li,
        .contact-ul b {
            font-size: 18px;
        }

        .contact-sec .contact-ul i {
            font-size: 14px;
            padding: 6px;
            margin-right: 6px;
        }

        .inptFld {
            height: 40px;
            margin: 0 0 10px;
            padding: 0 14px;
            font-size: 14px;
        }


        .cvwn-map{
            height: 500px;
        }
    }

    @media (max-width: 767px) {
        .contact-detail span {
            width: auto;
        }

        .contact-detail span a {
            font-size: 18px;
            padding: 5px 10px;
            color: #000;
            border-radius: 50%;
            margin: 0px 5px 20px;
        }
        .cvwn-map{
            height: 300px;
        }
    }

    @media (max-width: 575px) {
        .section-title {
            font-size: 26px;
            font-weight: 500;
        }

        .contact-sec {
            border-radius: 10% 10% 0% 0% / 5% 5% 0% 0%;
        }

        .contact-sec .contact-ul i {
            border: none;
        }

        .inptFld {
            height: 36px;
            margin: 0 0 8px;
            padding: 0 14px;
            font-size: 14px;
        }

        .cvwn-map{
            height: 250px;
        }
    }

    @media (max-width: 480px) {

        .contact-sec .contact-ul li,
        .contact-ul b {
            font-size: 16px;
        }
        .cvwn-map{
            height: 200px;
        }
    }


    /* donate section */

    .donation-section {
        /* Soft gradient background */
        padding: 60px 0;
        /* Padding to give space around the section */
        text-align: center;
        font-family: "EB Garamond", system-ui;
    }

    .donation-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .donation-section h1 {
        font-size: 36px;
        font-weight: 700;
        color: #2c3e50;
        /* Darker color for the heading */
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

    .donation-section h1::after {
        content: "";
        width: 60px;
        height: 4px;
        background: #3498db;
        /* Accent color */
        display: block;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .donation-section p {
        font-size: 18px;
        line-height: 1.8;
        color: #7f8c8d;
        /* Softer text color */
        margin-bottom: 0;
        padding: 10px;
        transition: color 0.3s ease;
        /* Smooth transition for hover effects */
    }

    .donation-section p:hover {
        color: #34495e;
        /* Darken text when hovered */
    }

    @media (max-width: 768px) {
        .map-active{
            right: 50px !important;
            font-size: 12px;
        }
        .donation-section h1 {
            font-size: 18px;
        }


        .donation-section{
            padding: 15px 0px;
        }

        .donation-section p {
            font-size: 16px;
        }

        .footer-header-content{
            font-size: 20px;
            padding-bottom: 15px;

        }
    }



    /* employee section */


      /* Custom CSS for animation */


    /* event section */



    .nav-pills .nav-link {
        transition: background-color 0.3s ease;
        color: #fff;
        background-color: #1a5a8a;
        text-align: center;
        /* Default color for all tabs */
    }

    .nav-pills .nav-link.active {
        background-color: #f25a2f;
        /* Active tab color */
    }

    .nav-pills .nav-link:hover {
        background-color: #f25a2f;
        /* Hover color */
    }

    .event-card {
        display: flex;
        align-items: center;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.2s, background-color 0.3s;
        background-color: #fff;
        /* Card background */
        border-radius: 0.5rem;
        /* Rounded corners for card */
    }

    .event-card:hover {
        transform: scale(1.05);
        background-color: #f0f8ff;
        /* Light blue on hover */
    }

    .event-image {
        flex: 0 0 40%;
        overflow: hidden;
    }

    .event-image img {
        width: 100%;
        height: 200px;
        /* Fixed height */
        object-fit: cover;
        /* Crop to fill */
        border-radius: 0.5rem 0 0 0.5rem;
        /* Rounded corners for the image */
    }

    .event-content {
        flex: 1;
        padding: 1rem;
        background-color: #fff;
        /* Content background */
        border-left: 2px solid #1a5a8a;
        /* Green left border */
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
    }

    .card-subtitle {
        font-size: 1rem;
        color: #777;
    }

    .card-text {
        font-size: 0.95rem;
        color: #555;
    }

    .alert {
        margin-top: 20px;
    }



    /* partner section */
    .logo_wrapper{
        padding-top: 20px;
    }

    @keyframes slides {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .logos {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .logos:before,
    .logos:after {
        position: absolute;
        top: 0;
        content: '';
        height: 100%;
        z-index: 2;
    }

    .logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    }

    .logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
    }

    .logo_items {
        display: inline-block;
        animation: 10s slides infinite linear;
    }

    .logos:hover .logo_items {
        animation-play-state: paused;
    }

    /* .logo_items img {
        height: 100px;
    }

 */







 .logo_items img {
    height: auto; /* Maintain aspect ratio */
    max-height: 100px; /* Default height for larger screens */
    width: auto;
    max-width: 100%; /* Prevent overflow */
    margin: 0 auto; /* Center align */
}

/* Responsive adjustments */
@media (max-width: 768px) { /* For tablets and smaller screens */
    .logo_items img {
        max-height: 80px; /* Slightly smaller */
    }
}

@media (max-width: 480px) { /* For mobile screens */
    .logo_items img {
        max-height: 60px; /* Further reduce size for small screens */
    }
}

















    /*footer section*/


    .footer-section {
        background: #f45a2f;
        position: relative;
    }

    .footer-cta {
        border-bottom: 1px solid #373636;
        padding-bottom: 8px !important;
    }

    .single-cta i {
        color: #000;

    }

    .cta-text {
        padding-left: 15px;
        display: inline-block;
    }

    .cta-text h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .cta-text span {
        color: #000;
        font-size: 15px;
    }

    .footer-content {
        position: relative;
        z-index: 2;
    }

    .footer-pattern img {
        position: absolute;
        top: 0;
        left: 0;
        height: 330px;
        background-size: cover;
        background-position: 100% 100%;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-text p {
        margin-bottom: 14px;
        font-size: 18px;
        color: #000 !important;
        line-height: 21px;
    }

    .herosubHeading{
        color: #000 !important;

    }

    .footer-social-icon span {
        color: #000;
        display: block;
        font-size: 20px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
        margin-bottom: 20px;
    }

    .footer-social-icon a {
        color: #fff;
        font-size: 16px;
        margin-right: 15px;
    }

    .footer-social-icon i {
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 38px;
        border-radius: 50%;
    }

    .facebook-bg {
        background: #3b5998;
    }

    .twitter-bg {
        background: #55acee;
    }

    .google-bg {
        background: #dd4b39;
    }

    .footer-widget-heading h3 {
        color: #000;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 40px;
        position: relative;
    }

    .footer-widget-heading h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -15px;
        height: 2px;
        width: 50px;
        background: #f45a2f;
    }

    .footer-widget ul li {
        display: inline-block;
        float: left;
        width: 50%;
        margin-bottom: 12px;
    }

    .footer-widget ul li a:hover {
        color: #fff;
    }

    .footer-widget ul li a {
        color: #000;
        text-transform: capitalize;
    }

    .subscribe-form {
        position: relative;
        overflow: hidden;
    }

    .subscribe-form input {
        width: 100%;
        padding: 14px 28px;
        background: #fff;
        border: 1px solid #fff;
        color: #fff;
    }

    .subscribe-form button {
        position: absolute;
        right: 0;
        background: #f45a2f;
        padding: 13px 20px;
        border: 1px solid #f45a2f;
        top: 0;
    }

    .subscribe-form button i {
        color: #fff;
        font-size: 22px;
        transform: rotate(-6deg);
    }

    .copyright-area {
        background: #1b1b1b;
        padding: 25px 0;
    }

    .copyright-text p {
        margin: 0;
        font-size: 14px;
        color: #fff;
    }

    .copyright-text p a {
        color: #f45a2f;
    }

    /* .footer-menu li {
        display: inline-block;
        margin-left: 20px;
    }

    .footer-menu li:hover a {
        color: #f45a2f;
    }

    .footer-menu li a {
        font-size: 14px;
        color: #fff;
    }

    .footer-cta .row .col-xl-4:nth-child(1) .single-cta i {
        position: absolute;
        color: #f45a2f;
    }

    .footer-cta .row .col-xl-4:nth-child(1) .single-cta .cta-text {
        padding-left: 32px;
    }

    .footer-cta .row .col-xl-4:nth-child(2) .single-cta i {
        color: #14ffa7;
    } */

    /* .single-cta i {
        color: #ffd700;
    } */

    .footer-social-icon .social_icon {
        text-align: left;
    }

    .footer-social-icon .social_icon li {
        float: inherit !important;
        display: inline-block !important;
        width: inherit;
    }

    .footer-social-icon .social_icon li a i {
        font-size: 15px;
        line-height: 39px;
    }

    .footer-social-icon .social_icon li a {
        width: 40px;
        height: 40px;
    }

    .social_icon {
        text-align: right;
        margin: 0;
        margin-top: 3px;
    }

    .social_icon li {
        display: inline-block;
        margin: 0 5px;
    }

    .social_icon li a {
        display: inline-block;
        width: 25px;
        height: 25px;
        background: #fff;
        color: #000;
        text-align: center;
        border-radius: 100%;
        transition: 0.2s ease-in-out;
    }

    .social_icon li a i {
        font-size: 15px;
        line-height: 20px;
    }

    .social_icon li:nth-child(1) a {
        background: #4267b2;
        color: #fff;
    }

    .social_icon li:nth-child(2) a {
        background: #1da1f2;
        color: #fff;
    }

    .social_icon li:nth-child(3) a {
        background: #f09433;
        background: -moz-linear-gradient(45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%);
        background: -webkit-linear-gradient(45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%);
        background: linear-gradient(45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
        color: #fff;
    }

    .social_icon li:nth-child(4) a {
        background: #ff0000;
        color: #fff;
    }

    .social_icon li:nth-child(1):hover a {
        background: #fff;
        color: #4267b2;
    }

    .social_icon li:nth-child(2):hover a {
        background: #fff;
        color: #1da1f2;
    }

    .social_icon li:nth-child(3):hover a {
        background: #fff;
        color: #bc1888;
    }

    .social_icon li:nth-child(4):hover a {
        background: #fff;
        color: #ff0000;
    }




    /* work with us page  */
     /* General Container Styling */
     .vacancy-section {
        background-color: #f9f9f9;
        padding: 60px 0;
    }

    .vacancy-section h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 50px;
        font-weight: bold;
        text-transform: uppercase;
        position: relative;
    }

    .vacancy-section h2::after {
        content: '';
        width: 80px;
        height: 4px;
        background-color: #007bff;
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Vacancy Card Styling */
    .job-card {
        background-color: white;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        padding: 20px;
        margin-bottom: 30px;
    }

    .job-card:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .job-card .job-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .job-card .company-logo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 20px;
    }

    .job-details {
        display: flex;
        align-items: center;
    }

    .job-description {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 15px;
    }

    .job-location {
        font-size: 1rem;
        color: #f25a2f;
        margin-bottom: 15px;
    }

    .apply-btn {
        background-color: #f25a2f;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }

    .apply-btn:hover {
        background-color: #b42700;
        color: #fff;
    }

    @media (max-width: 768px) {
        .job-details {
            flex-direction: column;
            align-items: flex-start;
        }

        .company-logo {
            margin-bottom: 15px;
        }

        .apply-btn {
            width: 100%;
            text-align: center;
        }

        .donate-btn {
            padding: 5px 10px;
            font-size: 10px;
            font-weight: bold;
            margin-top: 20px;
        }
        .language-btn {
            padding: 5px 10px;
            font-size: 10px;
            font-weight: bold;
        }

        /* .col-det {
            flex-wrap: nowrap;
        } */

        /* .language-btn-container {
            right: 70px;
        }

        .language-btn-container {
            width: 100%;
            right: 70px;
        } */
        .slider-captions .slider-title{
            left: 50px;
        }


        /* .follow-us {

            left: 230px;
        }

        .btn-bhed{
            overflow: hidden;
        } */

    }



    @media(min-width:760px){
        /* .col-det {
            flex-wrap: nowrap;
        } */

        /* .language-btn-container {
            right: 70px;
        }

        .language-btn-container {
            width: 100%;
            right: 70px;
        } */
        .slider-captions .slider-title{
            left: 50px;
        }


        /* .follow-us {

            left: 230px;
        }

        .btn-bhed{
            overflow: hidden;
        } */
    }


