﻿


/*-------------------------------------------------about us slider---------------------------------*/
.aboutImageSlider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.aboutImageSlider .swiper-slide {
    height: auto;
}

.aboutImageSlider .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.aboutImageSlider .swiper-button-next,
.aboutImageSlider .swiper-button-prev {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
}

.aboutImageSlider .swiper-button-next:after,
.aboutImageSlider .swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
}

.aboutImageSlider .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #fff;
    opacity: 0.7;
}

.aboutImageSlider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 767px) {
    .aboutImageSlider .swiper-slide img {
        height: 350px;
    }

    .aboutImageSlider .swiper-button-next,
    .aboutImageSlider .swiper-button-prev {
        width: 34px;
        height: 34px;
    }

    .aboutImageSlider .swiper-button-next:after,
    .aboutImageSlider .swiper-button-prev:after {
        font-size: 13px;
    }
}

/*----------------------------------------------------end-----------------------------------------*/

/*--------------------------------------------------projects---------------------------------------*/

.project-plans-section {
    position: relative;
    padding: 80px 0px 30px;
    background: #fff;
    overflow: hidden;
}

.project-section-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
}

.project-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #51bca0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.project-subtitle span {
    width: 35px;
    height: 2px;
    /* background: #51bca0; */
    display: inline-block;
}

.project-section-heading h2 {
    margin: 0 0 18px;
    color: #003b66;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 600;
}

.project-section-heading h2 strong {
    color: #51bca0;
    font-weight: 700;
}

.project-section-heading p {
    margin: 0;
    /* color: #2a2b2d; */
    font-size: 15px;
    line-height: 1.8;
}



.project-plan-card {
    position: relative;
    z-index: 2;
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5eeeb;
    box-shadow: 0 15px 45px rgba(25, 55, 65, 0.08);
    transition: all 0.4s ease;
}

.project-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(25, 55, 65, 0.14);
}



.project-plan-image {
    position: relative;
    height: 378px;
    overflow: hidden;
    background: #eef5f2;
    border-radius: 10px;
}

.project-plan-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.7s ease;
    border-radius: 21px;
}

.project-plan-card:hover .project-plan-image img {
    transform: scale(1.035);
}



.project-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 45, 50, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.project-plan-card:hover .project-image-overlay {
    opacity: 1;
    visibility: visible;
}

.project-view-btn {
    border: 0;
    background: #51bca0;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-view-btn i {
    margin-right: 8px;
}

.project-view-btn:hover {
    background: #ffffff;
    color: #172b35;
    transform: translateY(-3px);
}



.project-plan-content {
    padding: 30px 30px 32px;
}

.project-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.project-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(81, 188, 160, 0.12);
    color: #51bca0;
    font-size: 13px;
    font-weight: 700;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    background: #f1f8f6;
    border-radius: 30px;
    color: #46786b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.project-status i {
    color: #51bca0;
    font-size: 7px;
}

.project-plan-content h3 {
    color: #172b35;
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 12px;
    font-weight: 700;
}

.project-plan-content h3 span {
    display: block;
    color: #51bca0;
    font-size: 18px;
    margin-top: 3px;
}

.project-plan-content .desc,
.project-plan-content > p {
    color: #718086;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}



.project-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid #edf2f0;
    border-bottom: 1px solid #edf2f0;
    margin-bottom: 22px;
}

.project-info-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.project-info-item > i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(81, 188, 160, 0.11);
    color: #51bca0;
    font-size: 13px;
}

.project-info-item small {
    display: block;
    color: #9aa6aa;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 3px;
}

.project-info-item strong {
    display: block;
    color: #34484f;
    font-size: 12px;
    line-height: 1.4;
}



.project-details-btn {
    /* margin: 0 auto; */
    /* width: 100%; */
    border: 0;
    background: #003b66;
    color: #ffffff;
    min-height: 52px;
    padding: 0 10px 0 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.35s ease;
}

.project-details-btn span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #51bca0;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.project-details-btn:hover {
    background: #51bca0;
    color: #ffffff;
}

.project-details-btn:hover span {
    background: #ffffff;
    color: #172b35;
}


.project-plan-modal {
    z-index: 99999 !important;
}

.project-plan-modal .modal-dialog {
    max-width: 1200px;
}

.project-plan-modal .modal-content {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .25);
}

.project-plan-modal .modal-header {
    padding: 20px 25px;
    border: 0;
    background: #172b35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-plan-modal .modal-header span {
    display: block;
    color: #51bca0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.project-plan-modal .project-modal-close {
    position: relative;
    z-index: 9999;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    border: 0;
    outline: none;

    border-radius: 50%;

    background: #51bca0 !important;
    color: #ffffff !important;

    font-size: 18px;
    line-height: 1;

    cursor: pointer;

    opacity: 1 !important;

    transition: all 0.3s ease;
}

.project-plan-modal .project-modal-close i {
    color: #ffffff !important;
    font-size: 17px;
}

.project-plan-modal .project-modal-close:hover {
    background: #ffffff !important;
    color: #172b35 !important;
    transform: rotate(90deg);
}

.project-plan-modal .project-modal-close:hover i {
    color: #172b35 !important;
}
.project-plan-modal .modal-header h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.project-plan-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.project-plan-modal .modal-body {
    padding: 20px;
    background: #f5f7f6;
    text-align: center;
}

.project-plan-modal .modal-body img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}


@media (max-width: 991px) {

    .project-plans-section {
        padding: 75px 0;
    }

    .project-section-heading h2 {
        font-size: 35px;
    }

    .project-plan-image {
        height: 360px;
    }

}


@media (max-width: 767px) {

    .project-plans-section {
        padding: 60px 0;
    }

    .project-section-heading {
        margin-bottom: 35px;
    }

    .project-section-heading h2 {
        font-size: 29px;
    }

    .project-section-heading p {
        font-size: 14px;
    }

    .project-plan-image {
        height: 300px;
    }

    .project-plan-content {
        padding: 24px 20px 25px;
    }

    .project-plan-content h3 {
        font-size: 22px;
    }

    .project-info {
        grid-template-columns: 1fr;
    }

    .project-image-overlay {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(
            to top,
            rgba(18, 45, 50, .55),
            transparent 35%
        );
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 20px;
    }

    .project-view-btn {
        padding: 11px 20px;
    }

}


@media (max-width: 480px) {

    .project-plan-image {
        height: 250px;
    }

    .project-plan-top {
        align-items: flex-start;
        gap: 10px;
    }

    .project-status {
        font-size: 9px;
    }

    .project-plan-content h3 {
        font-size: 20px;
    }

}

/*---------------------------------------------------end---------------------------------------------*/