/* ---------------------------pro.project_heading {
    height: 60vh !important;
}

.project_title {
    color: #fff !important;
}

.card-container {
    width: 100%;
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.card-container:hover {
    transform: scale(1.02);
}

.card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    border: 1px solid white;
}

@media (min-width: 768px) {
    .card-inner {
        flex-direction: row;
        max-width: 72rem;
        gap: 2rem;
    }
}

/* Swiper/Image Section */
.card-slider {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-slider {
        width: 33.3333%;
    }
}

.swiper,
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Content Section */
.card-content {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .card-content {
        width: 66.6667%;
    }
}

.card-content h3 {
    font-weight: 900;
    color: #1f2937;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .card-content h3 {
        font-size: 2rem;
    }
}

.card-content .location,
.card-content .theme {
    color: #6b7280;
    font-weight: 500;
    font-size: 1rem;
}

.card-content .location i {
    margin-right: 0.5rem;
}

.card-content .description {
    color: #6b7280;
    font-size: 1rem;
    text-align: justify;
    word-break: break-all;
    padding: 0% !important;
}

@media (min-width: 768px) {
    .card-content .description {
        font-size: 1.125rem;
    }
}

/* Button Section */
.card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.card-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.btn-read-more {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: white;
    border-radius: 0.5rem;
}

.btn-read-more:hover {
    background-color: var(--primary);
    color: white;
}

.btn-contact-now {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid transparent;
}

.btn-contact-now:hover {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary);
}
ject css start----------------------------- */


/* ---------------------------project css End----------------------------- */


/*PROJECT DETAILS*/


.project_info {
    width: 100%;
    padding: 4.5rem 1rem 2rem;
    display: flex;
    justify-content: center;
}

.project_card {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    background-color: white;
    border: 1px solid #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);

    padding: 1rem;
    transition: all 0.3s ease;
}

.project_card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);

}

.image_section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.main_image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.bottom_images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bottom_images img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.content_section {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content_section h3 {
    font-size: 1.75rem;
    color: #333;
    font-weight: bold;
}

.content_section p {
    font-size: 1rem;
    color: #555;
    text-align: justify;
    word-break: break-word;
}

.theme {
    font-weight: 500;
    padding-top: 1rem;
}

.location {
    font-weight: 500;
}

.btn_group {
    padding-top: 0.5rem;
}

.donate_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background-color:var(--primary);
    color: white;
  
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.donate_btn:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
    .project_card {
        flex-direction: row;
        gap: 1.5rem;
    }

    .image_section {
        width: 35%;
    }

    .content_section {
        width: 65%;
        padding-left: 1rem;
    }

    .content_section h3 {
        font-size: 2rem;
    }

    .content_section p {
        font-size: 1.125rem;
    }
}

/* Tablet and small laptop optimization */
@media (max-width: 1024px) and (min-width: 768px) {
    .project_card {
        flex-direction: column;
    }

    .image_section,
    .content_section {
        width: 100%;
        padding: 0;
    }

    .bottom_images {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .project_card {
        flex-direction: column;
    }

    .main_image img {
        max-height: 300px;
    }

    .bottom_images img {
        max-height: 150px;
    }

    .content_section h3 {
        font-size: 1.5rem;
    }

    .content_section p {
        font-size: 1rem;
    }
}

/*PROJECT DETAILS END */