@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* Project Details Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.project-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

/* Project Combined Section Styles */
.project-combined-section {
    margin: 20px 0 50px 0;
}


.project-combined-section .project-flex-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 10px;
}

/* Project Description (Left Side) - Keeping Original Styles */
.project-combined-section .combined-project-description {
    width: 35%;
    text-align: justify;
    padding: 20px 0;
}

.combined-project-title h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
}

.combined-project-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.project-combined-section .content-card {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

/* New Project Card with Details and Image */
.project-combined-section .project-card {
    width: 65%;
    height: 420px;
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Project Details (Left Side of Card) */
.project-combined-section .project-card-details {
    width: 40%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}


.project-combined-section .detail-item {
    margin-bottom: 10px;
}

.project-combined-section .detail-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 3px;
}

.project-combined-section .detail-value {
    font-size: 14px;
}

.project-combined-section .project-status-tag p {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(200, 33, 39, 0.1);
    color: #c82127;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 20px;
    align-self: flex-start;
}

.project-combined-section .project-status-tag span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(137, 241, 142, 0.37);
    color: #012907;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.project-combined-section .project-card-image {
    width: 60%;
    position: relative;
}

.project-combined-section .project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-combined-section .image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 10), rgba(255, 255, 255, 0) 100%);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .project-combined-section .project-flex-container {
        flex-direction: column;
    }

    .project-combined-section .combined-project-description {
        width: 100%;
    }

    .project-combined-section .project-card {
        flex-direction: column;
        height: auto;
    }

    .project-combined-section .project-card-details,
    .project-combined-section .project-card-image {
        width: 100%;
    }

    .project-combined-section .project-card-image {
        height: 300px;
    }

    .project-combined-section .image-gradient {
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 100%);
    }
}


@media (max-width: 768px) {
    .project-combined-section .project-card-details {
        padding: 20px;
    }

    .project-combined-section .project-card-details h2 {
        font-size: 14px;
    }

    .project-combined-section .detail-value {
        font-size: 12px;
    }

    .project-combined-section .project-card-image {
        height: 300px;
    }
    .project-title{
        width: 100%;
    }
}

@media (max-width: 576px) {
    .project-combined-section {
        margin: 30px 0;
    }

    .project-combined-section .project-card-details {
        padding: 15px;
    }

    .project-combined-section .project-status-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}


/* Gallery Section */
.project-details-container .project-gallery {
    margin-bottom: 60px;
}

.project-details-container .project-gallery h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.project-details-container .gallery-slider {
    position: relative;
}

.project-details-container .swiper-container {
    width: 100%;
    overflow: hidden;
}

.project-details-container .swiper-slide {
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-details-container .swiper-slide:hover {
    transform: translateY(-5px);
}

.project-details-container .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.project-details-container .swiper-button-prev,
.project-details-container .swiper-button-next {
    color: #c82127;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.project-details-container .swiper-button-prev:hover,
.project-details-container .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.project-details-container .swiper-button-prev:after,
.project-details-container .swiper-button-next:after {
    font-size: 15px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Map Section */
.project-details-container .project-location {
    margin-bottom: 60px;
    position: relative;
}

.project-details-container .project-location h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.project-details-container .map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.project-details-container .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.project-details-container .map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    animation: pulse 1.5s infinite;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}


/* Responsive Styles */
@media (min-width: 768px) {
    .project-details-container .project-content {
        grid-template-columns: 1fr;
    }

    .project-details-container .project-hero-image {
        height: 550px;
    }
}

@media (max-width: 767px) {
    .project-details-container .project-hero-image {
        height: 350px;
    }

    .project-details-container .project-hero-overlay h1 {
        font-size: 1.8rem;
    }

    .project-details-container .project-hero-overlay p {
        font-size: 1rem;
    }

    .project-details-container .details-grid {
        grid-template-columns: 1fr;
    }

    .project-details-container .swiper-slide {
        height: 250px;
    }

    .project-details-container .project-cta {
        padding: 60px 0;
    }

    .project-details-container .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .project-details-container .project-hero-image {
        height: 250px;
    }

    .project-details-container .project-hero-overlay {
        padding: 25px 20px;
    }

    .project-details-container .project-hero-overlay h1 {
        .project-details-container .project-hero-overlay h1 {
            font-size: 1.5rem;
        }

        .project-details-container .swiper-button-prev,
        .project-details-container .swiper-button-next {
            width: 15px;
            height: 15px;
        }
    }
}

@media (max-width: 768px) {
    .project-details-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .project-details-list .detail-item {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        padding-bottom: 6px;
    }

    .project-details-list .detail-label {
        font-size: 13px;
        color: #666;
        font-weight: 500;
        margin-bottom: 3px;
    }

    .project-details-list .detail-value {
        font-size: 13px;
        color: #333;
        word-break: break-word;
    }

    .project-details-list .detail-value .service-badge {
        display: inline-block;
        background-color: #f0f0f0;
        padding: 3px 8px;
        border-radius: 10px;
        margin: 3px 3px 0 0;
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .project-combined-section .project-card {
        flex-direction: column !important;
        width: 100% !important;
    }

    .project-combined-section .project-card-details {
        width: 100% !important;
        padding: 20px;
        /*background-color: red; */
    }

    .project-combined-section .project-card-image {
        width: 100% !important;
        height: auto !important;
    }
}



