/* General Reset */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar-container {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.logo img {
    max-height: 50px;
}

/* Menu Styling */
.nav {
    font-size: 16px;
    /* Increased font size */
}

.nav-link {
    color: #080d0c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00705c;
}

/* Donate Button */
.donate-btn {
    background-color: #00705c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
}

.donate-btn:hover {
    background-color: #ffffff;
    color: #00705c;
    border: 2px solid #00705c;
}

/* Offcanvas Styling */
.offcanvas {
    width: 60% !important;
    background-color: #ffffff;
}

.offcanvas-body ul {
    padding-left: 0;
}

.offcanvas-body a {
    font-size: 16px;
    color: #080d0c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.offcanvas-body a:hover {
    color: #00705c;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .donate-btn {
        display: none;
        /* Hide donate button on mobile */
    }
}

.breadcrumb-section {
    position: relative;
    background: url('../../assets/media/services/6.png') no-repeat center center/cover;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'Comic Sans MS', 'Comic Sans';
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 14, 93, 0.8);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: #f75f48;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: white;
}


.about-section {
    background-color: #ffffff;
    padding: 50px 20px;
    overflow: hidden;
}

.about-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: #f74c43;
}

.about-title i {
    font-size: 14px;
}

.about-title span {
    font-size: 48px;
    margin-right: 10px;
}

.about-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.about-subtitle span {
    color: #1a695b;
}

.about-description {
    font-size: 16px;
    color: #7b7c7c;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.about-points .about-point {
    display: flex;
    align-items: center;
    color: #00705c;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-points .about-point i {
    margin-right: 10px;
    color: #f74c43;
}

.about-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation: fadeInLeft 1s ease-in-out;
}

.fadeInRight {
    animation: fadeInRight 1s ease-in-out;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #00705c;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #f74c43;
}

@media (max-width: 768px) {
    .about-image img {
        height: auto;
        object-fit: cover;
    }
}

/* About Us Section */
.aboutus-counter-section {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Section Title */
.aboutus-counter-title {
    font-size: 36px;
    font-weight: bold;
    color: #6b195b;
    margin-bottom: 20px;
}

/* Counter Grid */
.aboutus-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Counter Box */
.aboutus-counter-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Counter Number */
.aboutus-counter-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

/* Counter Title */
.aboutus-counter-label {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

/* Dynamic Colors for Each Box */
.aboutus-box-1 {
    background-color: #6b195b;
}

.aboutus-box-2 {
    background-color: #f75f48;
}

.aboutus-box-3 {
    background-color: #00705c;
}

.aboutus-box-4 {
    background-color: #ffcc00;
}

.aboutus-box-5 {
    background-color: #1e88e5;
}

.aboutus-box-6 {
    background-color: #9c27b0;
}

.aboutus-box-7 {
    background-color: #4caf50;
}

.aboutus-box-8 {
    background-color: #e91e63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aboutus-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.aboutus-mission-vission {
    padding: 0px 20px;
    overflow: hidden;
}

.aboutus-subtitle {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00705c;
}

.aboutus-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.aboutus-description {
    font-size: 16px;
    color: #ca80f7;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.aboutus-mission {
    font-size: 16px;
    color: #074475;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.aboutus-vission {
    font-size: 16px;
    color: #7e00fc;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Contact Us */
.contactus-section {
    padding: 40px 20px;
    text-align: center;
}

/* Headline */
.contactus-title {
    font-size: 36px;
    font-weight: bold;
    color: #00705c;
    margin-bottom: 10px;
}

.contactus-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.contactus-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

/* Icon and Info Grid */
.contactus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contactus-grid-item {
    text-align: center;
}

.contactus-grid-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.contactus-grid-item h3 {
    font-size: 16px;
    color: #6b195b;
    margin: 5px 0;
}

.contactus-grid-item p {
    font-size: 14px;
    color: #444;
}

/* Form Styles */
.contactus-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.contactus-form input,
.contactus-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contactus-form button {
    background-color: #00705c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contactus-form button:hover {
    background-color: #f74c43;
}

/* Google Map */
.contactus-map {
    width: 100%;
    height: 350px;
}

@media (max-width: 768px) {
    .contactus-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff0f0;
}

/* Headline */
.gallery-title {
    font-size: 36px;
    font-weight: bold;
    color: #00705c;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 280px;
    height: 200px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* General Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox:target {
    display: flex;
}

/* Close Button Styles */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.lightbox-close:hover {
    background: #f75f48;
    transform: scale(1.1);
}

/* Lightbox Close Icon */
.lightbox-close:after {
    content: "✖";
    /* Unicode for the close icon */
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Details */
.sidebar-services {
    background-color: #f7f7f7;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.service-list li a {
    text-decoration: none;
    color: #6b195b;
}

.service-list li:hover {
    background-color: #00705c;
    border-radius: 10px;
}

.service-list li a:hover {
    color: white;
    border-radius: 10px;
}

.service-list li i {
    font-size: 20px;
    color: #f75f48;
    margin-right: 10px;
}

/* Contact Box */
.contact-box {
    text-align: center;
    padding: 20px;
    background-color: #6b195b;
    color: white;
    border-radius: 8px;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-email {
    font-size: 16px;
    margin-bottom: 15px;
}

.donate-btn {
    background-color: #f75f48;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Service Details Styling */
.service-details {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 80vh;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 30px;
    font-weight: bold;
    color: #00705c;
    margin-bottom: 15px;
}

.key-points {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    margin-bottom: 20px;
}

.tags-section {
    margin-top: 20px;
}

.tags-title {
    font-weight: bold;
    color: #6b195b;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    background-color: #f75f48;
    color: white;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 15px;
}

/* Footer section  */

/* Updated General Styling */
.footer-section {
    background-color: #00705c;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 20px 0;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    margin-top: 20px;
    /* Add spacing below the logo */
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    /* Increase spacing below titles */
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
    /* Increase spacing between items */
    font-size: 15px;
    display: flex;
    align-items: center;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #00a88c;
}

.footer-links i,
.footer-contact i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

/* Footer Logo */
.footerlogo {
    display: block;
    margin-bottom: 20px;
    /* Add spacing below the logo */
    align-items: left;
    /* Align the logo to the left */
}

/* Copyright Section */
.footer-copyright {
    background-color: #f75f48;
    color: #ffffff;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    padding: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-description {
        margin-top: 10px;
    }
}