/* 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: #22c55e;
    /* 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: #22c55e;
    /* 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;
    margin: 0 0 35px;
}

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

/* Professional Contact Section Styles */
.map-container {
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.map-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4b49ac, #57b657);
    border-radius: 20px 20px 0 0;
}

.map-header {
    margin-bottom: 20px;
    text-align: center;
    padding-top: 10px;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.map-subtitle {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-map {
    width: 100%;
    border: none;
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-header .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4b49ac, #57b657);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(75, 73, 172, 0.1);
    border: 2px solid rgba(75, 73, 172, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
}

.contact-info-card:hover {
    border-color: rgba(75, 73, 172, 0.3);
    box-shadow: 0 15px 50px rgba(75, 73, 172, 0.15);
    transform: translateY(-5px);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4b49ac, #57b657);
}

.contact-info-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-info-card .card-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-info-list {
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-item:nth-child(1) .contact-icon {
    background: rgba(244, 67, 55, 0.1);
    color: #f44337;
}

.contact-info-item:nth-child(2) .contact-icon {
    background: rgba(87, 182, 87, 0.1);
    color: #57b657;
}

.contact-info-item:nth-child(3) .contact-icon {
    background: rgba(36, 138, 253, 0.1);
    color: #248afd;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-details h5 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4b49ac;
    text-decoration: none;
}

/* Social Media Section */
.social-media-section {
    padding-top: 2rem;
    border-top: 1px solid #f8f9fa;
}

.social-media-section h5 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link.facebook {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.social-link.facebook:hover {
    background: #3b5998;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-link.instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(75, 73, 172, 0.1);
    border: 1px solid rgba(75, 73, 172, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4b49ac, #57b657);
}

.contact-form-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form-card .card-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Form Styles */
.contact-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form .form-control:focus {
    border-color: #4b49ac;
    box-shadow: 0 0 0 0.2rem rgba(75, 73, 172, 0.15);
    background: #fafaff;
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.95rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #4b49ac 0%, #57b657 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 73, 172, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(75, 73, 172, 0.4);
    background: linear-gradient(135deg, #3d3a8f 0%, #4a9a4a 100%);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* Alert Styles */
.alert-danger {
    background: rgba(255, 71, 71, 0.1);
    border: 1px solid rgba(255, 71, 71, 0.2);
    color: #c23636;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.alert-danger ul {
    margin: 0;
    padding-left: 1.2rem;
}

/* Comprehensive Responsive Styles for All Devices */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .contact-section {
        padding: 100px 0;
    }

    .section-header .section-title {
        font-size: 3rem;
    }

    .section-header .section-subtitle {
        font-size: 1.2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 50px 40px;
    }

    .map-container {
        padding: 30px;
        margin: 60px auto;
    }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-info-card,
    .contact-form-card {
        margin-bottom: 2.5rem;
    }

    .contact-section .row {
        row-gap: 2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 40px 30px;
    }

    .map-container {
        padding: 25px;
        margin: 50px auto;
    }
}

/* Medium Devices (768px to 991px) - Tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-header .section-title {
        font-size: 2.2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 25px;
        margin-bottom: 2rem;
    }

    .map-container {
        padding: 20px;
        margin: 40px auto;
    }

    .contact-map {
        height: 400px;
    }

    .map-title {
        font-size: 1.4rem;
    }
}

/* Small Devices (576px to 767px) - Large Mobile */
@media (max-width: 767px) and (min-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .section-header .section-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px 20px;
        margin-bottom: 2rem;
        border-radius: 18px;
    }

    .contact-info-card .card-title,
    .contact-form-card .card-title {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .contact-form .form-control {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .contact-form .btn-primary {
        width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
    }

    .map-container {
        padding: 20px;
        margin: 30px 15px;
        border-radius: 18px;
    }

    .contact-map {
        height: 350px;
    }

    .map-title {
        font-size: 1.3rem;
    }

    .map-subtitle {
        font-size: 0.95rem;
    }
}

/* Extra Small Devices (320px to 575px) - Mobile */
@media (max-width: 575px) {
    .contact-section {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 2rem !important;
    }

    .section-header .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px 20px;
        border-radius: 18px;
        margin-bottom: 2rem;
        box-shadow: 0 8px 25px rgba(75, 73, 172, 0.12);
        border: 1px solid rgba(75, 73, 172, 0.08);
    }

    /* Add specific spacing between contact info and form sections */
    .contact-section .row .col-lg-5 {
        margin-bottom: 2rem;
    }

    .contact-section .row .col-lg-7 {
        margin-top: 1rem;
    }

    .contact-info-card .card-title,
    .contact-form-card .card-title {
        font-size: 1.4rem;
        line-height: 1.3;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.8rem;
    }

    .contact-info-card .card-subtitle,
    .contact-form-card .card-subtitle {
        font-size: 0.95rem;
        color: #6c757d;
        margin-bottom: 1.8rem;
        line-height: 1.5;
    }

    .contact-info-item {
        margin-bottom: 1.8rem;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f3f4;
        display: flex;
        align-items: flex-start;
    }

    .contact-info-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
        border-radius: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }

    .contact-details h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        font-weight: 600;
        color: #2c3e50;
    }

    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #6c757d;
        margin: 0;
    }

    .contact-details a {
        transition: color 0.3s ease;
    }

    .contact-details a:hover {
        color: #4b49ac;
        text-decoration: none;
    }

    .social-media-section {
        padding-top: 1.8rem;
        border-top: 1px solid #f1f3f4;
        margin-top: 1rem;
    }

    .social-media-section h5 {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
        text-align: center;
    }

    .social-links {
        gap: 1rem;
        justify-content: center;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        transform: translateY(-2px);
    }

    .contact-form .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .contact-form .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .contact-form textarea.form-control {
        min-height: 100px;
    }

    .contact-form .btn-primary {
        font-size: 0.9rem;
        padding: 12px 20px;
        width: 100%;
        border-radius: 10px;
    }

    .map-container {
        padding: 15px;
        margin: 25px 10px;
        border-radius: 15px;
    }

    .map-header {
        margin-bottom: 15px;
    }

    .map-title {
        font-size: 1.2rem;
    }

    .map-subtitle {
        font-size: 0.85rem;
    }

    .contact-map {
        height: 280px;
        border-radius: 12px;
    }
}

/* Very Small Devices (320px to 479px) - Small Mobile */
@media (max-width: 479px) {
    .section-header .section-title {
        font-size: 1.6rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px 15px;
        margin-bottom: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(75, 73, 172, 0.1);
    }

    /* Ensure proper spacing between sections on very small screens */
    .contact-section .row .col-lg-5 {
        margin-bottom: 2.5rem;
    }

    .contact-section .row .col-lg-7 {
        margin-top: 1.5rem;
    }

    .contact-info-card .card-title,
    .contact-form-card .card-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.7rem;
    }

    .contact-info-card .card-subtitle,
    .contact-form-card .card-subtitle {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .contact-info-item {
        margin-bottom: 1.5rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid #f1f3f4;
    }

    .contact-info-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
        border-radius: 10px;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .contact-details h5 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.3rem;
    }

    .contact-details p,
    .contact-details a {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
    }

    .social-media-section {
        padding-top: 1.5rem;
        border-top: 1px solid #f1f3f4;
        margin-top: 0.8rem;
    }

    .social-media-section h5 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1rem;
        text-align: center;
    }

    .social-links {
        gap: 0.8rem;
        justify-content: center;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .contact-form .form-control {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .contact-form .btn-primary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .map-container {
        padding: 12px;
        margin: 20px 8px;
    }

    .map-title {
        font-size: 1.1rem;
    }

    .map-subtitle {
        font-size: 0.8rem;
    }

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

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .contact-section {
        padding: 20px 0;
    }

    .section-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-header .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 15px 12px;
    }

    .contact-map {
        height: 200px;
    }

    .map-container {
        margin: 15px auto;
        padding: 15px;
    }
}

/* 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: #22c55e;
    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;
        } */
}
