html {
    scroll-behavior: smooth;
}

.hero-carousel-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}


/* Carousel */

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item,
.hero-carousel-section img {
    height: 100%;
}

.hero-carousel-section img {
    object-fit: cover;
}


/* Overlay */

.hero-carousel-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.362);
    z-index: 1;
}


/* Content */

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 span {
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.6;
}


/* Highlights */

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li {
    font-size: 15px;
    margin-bottom: 0px;
    padding-left: 22px;
    position: relative;
}

.hero-highlights li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 12px;
}


/* Controls visibility */

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
}


/* Indicators */

.carousel-indicators {
    z-index: 3;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
    .hero-carousel-section {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero-carousel-section {
        height: 65vh;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hero-highlights li {
        font-size: 14px;
    }
}

.applicationinvited {
    width: 100%;
    background: #f6a623;
    /* saffron/orange */
    padding: 40px 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.applicationinvited .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Heading */

.applicationinvited h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}


/* Divider */

.applicationinvited .divider {
    display: block;
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin: 14px auto;
}


/* Subtext */

.applicationinvited p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.95;
}


/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 768px) {
    .applicationinvited {
        padding: 32px 0;
    }
    .applicationinvited h2 {
        font-size: 20px;
    }
    .applicationinvited p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .applicationinvited {
        padding: 26px 0;
    }
    .applicationinvited h2 {
        font-size: 18px;
        line-height: 1.4;
    }
    .applicationinvited .divider {
        width: 80px;
    }
    .applicationinvited p {
        font-size: 12px;
        line-height: 1.4;
    }
}

.eoi-cta-section {
    padding: 60px 0;
    text-align: center;
}

.eoi-cta-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Heading */

.eoi-heading {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 35px;
}


/* Button Row */

.eoi-btn-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* Date Button */

.eoi-date {
    background: #ff6f6f;
    color: #0a0909;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    min-width: 260px;
}


/* Apply Button */

.eoi-apply-btn {
    position: relative;
    overflow: hidden;
    background: #138808;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    min-width: 260px;
    z-index: 1;
}


/* Animated background */

.eoi-apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: sweep 2.5s infinite;
    z-index: -1;
}

@keyframes sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


/* Hover enhancement */

.eoi-apply-btn:hover {
    background: #0f6f06;
}


/* ======================
   RESPONSIVE
   ====================== */

@media (max-width: 768px) {
    .eoi-heading {
        font-size: 20px;
    }
    .eoi-btn-row {
        flex-direction: column;
        align-items: center;
    }
    .eoi-date,
    .eoi-apply-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .eoi-heading {
        font-size: 18px;
        line-height: 1.4;
    }
    .eoi-date,
    .eoi-apply-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

.project-details-section {
    padding: 0 0 60px;
}


/* LEFT NAV CARD */

.nav-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
}


/* Sticky only on desktop */

@media (min-width: 992px) {
    .sticky-nav {
        position: sticky;
        top: 90px;
    }
}


/* Accordion header */

.accordion-button {
    background: #0b4ea2;
    color: #fff;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #0b4ea2;
    color: #fff;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}


/* NAV LIST */

.project-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-nav-list li {
    padding: 0 !important;
}

.project-nav-list li {
    border-bottom: 1px solid #eee;
}

.project-nav-list li:last-child {
    border-radius: 0 0 8px 8px;
}

.project-nav-list li.last-child.active a,
.project-nav-list li.last-child a:hover {
    border-radius: 0 0 8px 8px;
}

.project-nav-list li a {
    display: block;
    padding: 14px 18px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: 0.3s;
}

.project-nav-list li.active a,
.project-nav-list li a:hover {
    background: #ffc107;
    color: #000;
}


/* RIGHT CONTENT CARD */

.content-card {
    background: #fff;
}


/* CONTENT SECTIONS */

.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0b4ea2;
}

.content-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}


/* ==============================
   MAIN CARD
   ============================== */

.project-overview-card {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 40px;
}


/* Header */

.project-card-header {
    background: #0b4ea2;
    color: #ffffff;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 700;
}


/* Body */

.project-card-body {
    padding: 20px;
}


/* ==============================
   OVERVIEW CONTENT
   ============================== */

.overview-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 16px;
}

.overview-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 6px;
}


/* Divider */

.section-divider {
    height: 1px;
    background: #e1e1e1;
    margin: 26px 0;
}


/* ==============================
   SCHEME INFO TABLE
   ============================== */

.scheme-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}


/* =========================
   AMENITIES SECTION
   ========================= */


/* Main Card */

.overview-card {
    border: 1px solid #d9dee8;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}


/* Blue Header Strip */

.overview-header {
    background: #0b4ea2;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 25px;
}


/* Body */

.overview-body {
    padding: 30px;
}

.overview-subtitle {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
}


/* Amenities Grid */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.amenity-card {
    border: 1px solid #e2e6ef;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.amenity-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.amenity-card h4 {
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}


/* Tablet */

@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 576px) {
    .overview-body {
        padding: 20px;
    }
    .overview-header {
        font-size: 18px;
        padding: 14px 18px;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenity-card img {
        height: 155px;
    }
}


/* project highlight */

.project-highlights {
    padding: 30px 0;
}


/* Outer Card (same as amenities) */

.overview-card {
    border: 1px solid #d9dee8;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}


/* Blue Header Strip */

.overview-header {
    background: #0b4ea2;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 25px;
}


/* Body */

.overview-body {
    padding: 30px;
}


/* Grid */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* Highlight Card */

.highlight-card {
    border: 1px solid #e2e6ef;
    border-radius: 12px;
    padding: 28px 22px;
    background: #ffffff;
    position: relative;
    transition: 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}


/* Number Badge */

.highlight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #00a651;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 16px;
}


/* Text */

.highlight-card p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin: 0;
    line-height: 1.5;
}


/* Tablet */

@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 576px) {
    .overview-body {
        padding: 20px;
    }
    .overview-header {
        font-size: 18px;
        padding: 14px 18px;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .highlight-card {
        padding: 24px 18px;
    }
}


/* gallery section css */


/* Outer Card */

.overview-card {
    border: 1px solid #d9dee8;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}


/* Header Strip */

.overview-header {
    background: #0b4ea2;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 25px;
}


/* Body */

.overview-body {
    padding: 30px;
}


/* Gallery Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* Gallery Card */

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


/* Tablet */

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item img {
        height: 200px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .overview-body {
        padding: 20px;
    }
    .overview-header {
        font-size: 18px;
        padding: 14px 18px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 190px;
    }
}


/* .project-location {
    padding: 60px 0;
    background: #f4f6fb;
} */


/* Outer Card */

.overview-card {
    border: 1px solid #d9dee8;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}


/* Header */

.overview-header {
    background: #0b4ea2;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 25px;
}


/* Body */

.overview-body {
    padding: 30px;
}


/* Two Column Grid */

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}


/* Item */

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-item .pin {
    font-size: 16px;
    line-height: 1;
    margin-top: 4px;
}

.place {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px;
}

.time {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}


/* Divider */

.divider {
    border-bottom: 1px dotted #999;
    margin: 18px 0;
}


/* Tablet */

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .overview-body {
        padding: 20px;
    }
    .overview-header {
        font-size: 18px;
        padding: 14px 18px;
    }
    .place {
        font-size: 15px;
    }
    .time {
        font-size: 14px;
    }
}

.overviewbtnapply {
    display: inline-block;
    margin: 20px 0;
    text-align: center;
}


/* Contact Us section */

.gov-contact-section {
    background: #f4f7fb;
    padding: 70px 20px;
}

.gov-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.gov-contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}


/* LEFT INFO */

.gov-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #d6dbe5;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f26c0d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}

.info-text p {
    margin: 0;
    font-size: 15px;
    color: #333;
}


/* FORM */

.gov-contact-form {
    background: #ffffff;
    border: 1px solid #d6dbe5;
    border-radius: 12px;
    padding: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #b8c2d1;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: #01589d;
    box-shadow: 0 0 0 2px rgba(1, 88, 157, 0.1);
}

textarea.form-control {
    height: auto;
    resize: none;
}

.gov-submit-btn {
    background: #01589d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
}

.gov-submit-btn:hover {
    background: #013f72;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .gov-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gov-section-title {
        font-size: 26px;
    }
    .gov-contact-form {
        padding: 25px 20px;
    }
}


/* download section css */


/* ===============================
   DOWNLOAD TABLE EXTENSIONS
   =============================== */

.downloadSection {
    padding: 0px 0px 30px;
}


/* Status */

.status-approved {
    color: #1a7f37;
    font-weight: 600;
}


/* Download link */

.download-link {
    color: #0b4ea2;
    font-weight: 600;
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}