/* HERO SECTION */
.hero-section {
    background: #fff;
    overflow: hidden;
}

.offer-box {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

/* TOP STRIP */
.offer-top {
    background: rgb(15 65 92);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* BODY */
.offer-body {
    padding: 22px;
    text-align: center;
}

/* PROJECT NAME */
.project-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

/* LOCATION */
.project-location {
    font-size: 16px;
    color: #444;
    margin-bottom: 18px;
}

/* SPECS */
.project-specs {
    background: #f6f6f6;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #d5d5d5;
}

.project-specs div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.project-specs div:last-child {
    margin-bottom: 0;
}

.project-specs span {
    color: #1b2b3a;
    font-weight: 500;
}

.project-specs strong {
    font-weight: 600;
    color: #555;
}

/* FEATURES (DOTTED BOX) */
.features-box {
    background: linear-gradient(120deg, #0f3556, #114253, #1a344a);
    background-size: 300% 300%;
    animation: gradientMove 3s ease infinite;

    padding: 16px;
    margin-bottom: 16px;
    text-align: start;
}

/* Background animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.features-box ul {
    list-style: disc;
    padding: 0 1rem;
    margin: 0;
}

.features-box li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.features-box li:last-child {
    margin-bottom: 0;
}

/* PRICE TEXT */
.price-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

/* PRICE */
.price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
}

/* BUTTON */
.btn-brochure {
    display: inline-block;
    background: rgb(15 65 92);
    color: #fff;
    padding: 14px 28px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-brochure:hover {
    background: #162f44;
    transform: translateY(-2px);
    color: #fff;
}

/* modal css  */

.btnClose {
    background-color: rgb(15 65 92);
    color: #fff;
    padding: 0.5rem 1rem;
    border: 1px solid rgb(15 65 92);
    transition: all 0.5s ease;
}
.btnClose:hover {
    background-color: transparent;
    color: rgb(15 65 92);
}

.bgMain {
    background-color: rgb(15 65 92);
}

.btnThemeOutline {
    background-color: transparent;
    color: rgb(15 65 92);
    border: 1px solid rgb(15 65 92);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.6rem 3rem;
    transition: all 0.5s ease;
}
.btnThemeOutline:hover {
    background-color: rgb(15 65 92);
    color: #fff;
    border: 1px solid rgb(15 65 92);
}


.btnTheme {
    background-color: rgb(15 65 92);
    color: #fff;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.6rem 3rem;
    transition: all 0.5s ease;
}
.btnTheme:hover {
    background-color: #fff;
    color: rgb(15 65 92);
    border: 1px solid rgb(15 65 92);
}

@media(max-width:765px)
{
    .features-box li {
        font-size: 12px;
    }
}
