html,
body {
    margin: 0;
    padding: 0;
}


/* Nav link style */

.nav-link {
    position: relative;
    padding: 8px 16px;
    margin: 0 6px;
    transition: color 0.3s ease;
}


/* Line above the active link */

.nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    /* Line will be on top */
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #c80303;
    /* red line */
    transition: width 0.3s ease;
}

.nav-link.active::before {
    width: 100%;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* nav links end */

.banner {
    position: relative;
    background-image: url("../images/banner-1.jpg");
    background-size: cover;
    background-position: center;
    height: 440px;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner>#home {
    position: relative;
    z-index: 2;
    padding: 20px 30px;
    border-radius: 5px;
}


/* Banner text */

.banner-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 576px) {
    h1 {
        white-space: nowrap;
    }
}


/* about */

.about p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* floor-plan*/

.custom-table-container {
    width: 90%;
    border-radius: 0 0 35px 35px;
    overflow: hidden;
}


/**/

.feature-box {
    background: #fff;
    width: 200px;
    border-radius: 0;
    /* default no round */
    padding: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 1px solid #eee;
    cursor: default;
    user-select: none;
}

.feature-box.top-left {
    border-top-left-radius: 50px;
}

.feature-box.bottom-right {
    border-bottom-right-radius: 50px;
}

.feature-box:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.feature-box img {
    display: block;
    margin: 0 auto 10px auto;
}

.feature-box p {
    font-size: 1rem;
    color: #333;
}

.floor-plan p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.master-plan ul li {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.feature-list {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    margin-top: 20px;
    position: relative;
    padding-left: 30px;
}

footer a {
    text-decoration: none;
    color: white;
}


/**/

.form {
    background-color: #c80303;
}

.whyus-panel p li {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* faq */

.faq {
    background: linear-gradient(135deg, #f5f7fa, #e6ebf0);
    padding: 50px 0;
}

.accordion-button {
    background-color: #fff;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.accordion-button:not(.collapsed) {
    background-color: #c80303;
    color: white;
    box-shadow: 0px 4px 10px rgba(200, 3, 3, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.heading-img {
    background-image: url('/images/Image-1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
}

.heading-form {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.btn-gradient {
    background: linear-gradient(45deg, #8a0101, #cc3939);
    color: white;
    border: none;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #cc3939, #8a0101);
    color: white;
}

.heading-img>div {
    background: rgba(0, 0, 0, 0.2);
    /* Transparent black overlay behind text */
    padding: 20px 30px;
    border-radius: 5px;
    max-width: 100%;
    /* Limits text width */
    text-align: center;
}