* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #fff8e1;
}

.card {
    border: 0;
    border-radius: 14px;
}

.badge-live {
    background: #00c853;
}

.count-box {
    background: linear-gradient(135deg, #ff8a65, #ff5252);
    color: #fff;
}

.gallery img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background: #1f1f1f;
    color: #aaa;
}

/* ============================================================
   HERO BANNER (left card) — flat, attractive, highlight stats
   ============================================================ */
.hero-banner {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #8DB600 0%, #c9d75b 100%);
}

/* Brand badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: #f0f5db;
    color: #5d7800 !important;
    border: 1px solid #d9e7a0;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hero-badge,
.hero-badge i {
    color: #5d7800 !important;
}

/* Title */
.hero-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.hero-title-accent {
    display: block;
    margin-top: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #8DB600 !important;
    letter-spacing: 0;
}

/* Subtitle */
.hero-subtitle {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #4b5563 !important;
}

.hero-subtitle strong {
    font-weight: 700;
    color: #1f2937 !important;
}

/* Stats grid (3 cards) */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.hero-stat {
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero-stat:hover {
    transform: translateY(-2px);
    border-color: #d9e7a0;
    box-shadow: 0 8px 18px rgba(141, 182, 0, .12);
}

.hero-stat-primary {
    background: linear-gradient(135deg, #f6fae2 0%, #eaf2c4 100%);
    border-color: #d9e7a0;
}

.hero-stat-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #6b7280 !important;
}

.hero-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937 !important;
    line-height: 1.1;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-variant-numeric: tabular-nums;
}

.hero-stat-primary .hero-stat-value {
    color: #5d7800 !important;
}

.hero-stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: inherit !important;
}

.hero-stat-value small {
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
    color: #6b7280 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Reserved quota highlight */
.hero-quota {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #8DB600 0%, #7aa000 100%);
    color: #ffffff !important;
    border-radius: 12px;
    padding: 12px 16px;
}

.hero-quota,
.hero-quota *,
.hero-quota i {
    color: #ffffff !important;
}

.hero-quota-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
}

.hero-quota-text {
    font-size: 13.5px;
    line-height: 1.4;
}

.hero-quota-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

/* Timeline (3 dates) */
.hero-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.hero-timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    padding: 10px 12px;
}

.hero-timeline-item i {
    font-size: 18px;
    color: #8DB600 !important;
    flex: 0 0 auto;
}

.hero-timeline-item small {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    color: #6b7280 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-timeline-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937 !important;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-timeline-highlight {
    background: #fff5d6;
    border-color: #f4d56b;
}

.hero-timeline-highlight i {
    color: #b58400 !important;
}

.hero-timeline-highlight strong {
    color: #7a5a00 !important;
}

/* Application End — red urgency variant */
.hero-timeline-danger {
    background: #e63946;
    border-color: #c1303c;
}

.hero-timeline-danger small,
.hero-timeline-danger strong,
.hero-timeline-danger i {
    color: #ffffff !important;
}

/* Hero CTA — sized up */
.hero-apply-cta {
    align-self: stretch;
    text-align: center;
    padding: 12px 22px !important;
    font-size: 15px !important;
    margin-top: 4px;
}

.hero-apply-cta i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title { font-size: 24px; }
    .hero-title-accent { font-size: 16px; }
    .hero-stat-value { font-size: 22px; }
}

@media (max-width: 991px) {
    .hero-banner { padding: 24px 22px; }
}

@media (max-width: 575px) {
    .hero-banner { padding: 20px 18px; border-radius: 14px; gap: 14px; }
    .hero-title { font-size: 22px; }
    .hero-title-accent { font-size: 15px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stat-primary { grid-column: span 2; }
    .hero-timeline { grid-template-columns: 1fr; }
    .hero-stat-value { font-size: 22px; }
}

/* ============================================================
   LANDMARK / LOCATION & CONNECTIVITY — flat side-by-side cards
   ============================================================ */
.landmark-section {
    background: #fff8e1;
}

.landmark-section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 10px;
    display: inline-block;
}

.landmark-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8DB600;
    border-radius: 2px;
    margin: 8px auto 0;
}

.landmark-section-sub {
    font-size: 15px;
    margin: 0;
}

.landmark-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.landmark-card:hover {
    transform: translateY(-3px);
    border-color: #d9e7a0;
    box-shadow: 0 12px 28px rgba(141, 182, 0, .12);
}

.landmark-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landmark-header-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f5db;
    color: #8DB600 !important;
    border-radius: 12px;
    font-size: 22px;
}

.landmark-header-icon i {
    color: #8DB600 !important;
}

.landmark-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.landmark-sub {
    margin: 4px 0 0;
    font-size: 13.5px;
    color: #6b7280 !important;
    line-height: 1.4;
}

/* Image area */
.landmark-media {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #fafbfc;
    border: 1px solid #eef0f4;
    text-decoration: none !important;
}

.landmark-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.landmark-media:hover img {
    transform: scale(1.03);
}

.landmark-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.landmark-zoom i {
    color: #ffffff !important;
}

.landmark-media:hover .landmark-zoom {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .landmark-media img { height: 320px; }
}

@media (max-width: 575px) {
    .landmark-section-title { font-size: 24px; }
    .landmark-card { padding: 18px; border-radius: 14px; gap: 14px; }
    .landmark-header-icon { width: 42px; height: 42px; flex-basis: 42px; font-size: 19px; }
    .landmark-title { font-size: 17px; }
    .landmark-sub { font-size: 12.5px; }
    .landmark-media img { height: 240px; }
}


.application-section {
    background: #fff8e1;
    font-family: 'Inter', Arial, sans-serif;
}

/* Cards */
.left-card,
.right-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

/* LIVE TAG */
.live-tag {
    position: absolute;
    top: -14px;
    left: 25px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
}

/* TIMER */
.timer-box {
    background: linear-gradient(90deg, #8DB600, #8db60094);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.timer-title {
    background: #fff;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 15px;
}

.timer-box h2 {
    font-size: 30px;
    margin: 0;
}

.time-up {
    position: absolute;
    right: 0;
    top: -8px;
    font-size: 13px;
}

/* LEFT LINKS */
.left-links {
    list-style: none;
    padding: 0;
}

.left-links li {
    padding: 10px 0;
}

.left-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.left-links li::before {
    content: "◉";
    margin-right: 10px;
}

/* RIGHT CARD */
.status-badge {
    display: inline-block;
    background: linear-gradient(90deg, #8DB600, #8db60094);
    ;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.right-card h3 {
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #ccc;
}

.project-info {
    list-style: none;
    padding: 0;
}

.project-info li {
    padding: 8px 0;
    font-size: 15px;
}

/* MOBILE */
@media(max-width:767px) {
    .timer-box h2 {
        font-size: 22px;
    }
}


.info-section {
    background: #fff8e1;
}

.info-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: .5rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;
    color: #8DB600;
}

.info-card hr {
    border-top: 1px dotted #ccc;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 15px;
}

.info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #e5533d;
    font-size: 22px;
    line-height: 1;
}

.layout-section {
    background: #fff8e1;
}

/* White rounded container */
.layout-wrapper {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
}

/* Titles */
.layout-title {
    font-size: 26px;
    font-weight: 500;
}

/* Image card */
.layout-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    text-align: center;
}

.layout-card img {
    border-radius: 12px;
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}

/* Responsive */
@media(max-width:767px) {
    .layout-wrapper {
        padding: 20px;
    }

    .layout-title {
        font-size: 22px;
    }
}

/* ============================================================
   BANK LOAN STRIP — compact horizontal row
   ============================================================ */
.bank-loan-section {
    background: #fff8e1;
}

.bank-strip {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 12px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bank-strip-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937 !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex-shrink: 0;
    padding-right: 20px;
    border-right: 1px dashed #e5e7eb;
}

.bank-strip-label i {
    color: #8DB600 !important;
    font-size: 18px;
}

.bank-strip-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex: 1;
    flex-wrap: wrap;
}

.bank-strip-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.75);
    transition: filter .2s ease;
}

.bank-strip-logos img:hover {
    filter: grayscale(0) opacity(1);
}

@media (max-width: 767px) {
    .bank-strip {
        flex-direction: column;
        gap: 14px;
        padding: 14px 18px;
        text-align: center;
    }
    .bank-strip-label {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px dashed #e5e7eb;
        width: 100%;
        justify-content: center;
    }
    .bank-strip-logos {
        gap: 24px;
        width: 100%;
    }
    .bank-strip-logos img {
        height: 30px;
    }
}

/* ============================================================
   PROJECT OVERVIEW — flat card with stats + feature grid
   ============================================================ */
.project-overview-section {
    background: #fff8e1;
}

.overview-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 6px;
    padding-bottom: 10px;
    display: inline-block;
}

.overview-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8DB600;
    border-radius: 2px;
    margin: 8px auto 0;
}

.overview-sub {
    font-size: 15px;
    margin: 0;
}

.overview-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.overview-lead {
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 24px;
}

.overview-lead strong {
    color: #1f2937 !important;
    font-weight: 700;
}

/* Stats row */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.overview-stat {
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.overview-stat:hover {
    transform: translateY(-2px);
    border-color: #d9e7a0;
    box-shadow: 0 8px 18px rgba(141, 182, 0, .12);
}

.overview-stat-accent {
    background: linear-gradient(135deg, #f6fae2 0%, #eaf2c4 100%);
    border-color: #d9e7a0;
}

.overview-stat-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f5db;
    color: #8DB600 !important;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 6px;
}

.overview-stat-icon i {
    color: #8DB600 !important;
}

.overview-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937 !important;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.overview-stat-value small {
    font-size: 13px;
    font-weight: 700;
    margin-left: 2px;
}

.overview-stat-accent .overview-stat-value {
    color: #5d7800 !important;
}

.overview-stat-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #6b7280 !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Features section */
.overview-subtitle {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1f2937 !important;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5e7eb;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.overview-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 18px;
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.overview-feature:hover {
    transform: translateY(-2px);
    border-color: #d9e7a0;
    box-shadow: 0 8px 18px rgba(141, 182, 0, .12);
}

.overview-feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f5db;
    color: #8DB600 !important;
    border-radius: 10px;
    font-size: 19px;
}

.overview-feature-icon i {
    color: #8DB600 !important;
}

.overview-feature h4 {
    font-size: 15.5px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1f2937 !important;
}

.overview-feature p {
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
    color: #4b5563 !important;
}

.overview-feature p strong {
    color: #1f2937 !important;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .overview-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .overview-features { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .overview-card { padding: 22px 18px; border-radius: 14px; }
    .overview-title { font-size: 24px; }
    .overview-lead { font-size: 14.5px; }
    .overview-stat-value { font-size: 24px; }
    .overview-stat { padding: 14px 10px; }
    .overview-subtitle { font-size: 17px; }
}

.certificate-box {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.certificate-img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
    background: #fafafa;
    transition: transform .3s ease;
}

.certificate-img:hover {
    transform: scale(1.02);
}

/* Mobile */
@media(max-width:768px) {
    .overview-title {
        font-size: 28px;
    }

    .certificate-img {
        height: 360px;
    }
}

/* ============================================================
   PROJECT GALLERY — flat image tiles, no captions / no labels
   ============================================================ */
.project-gallery {
    background: #fff8e1;
}

.gallery-section-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
    display: inline-block;
}

.gallery-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8DB600;
    border-radius: 2px;
    margin: 8px auto 0;
}

.gallery-tile {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    text-decoration: none !important;
    transition: opacity .2s ease;
}

.gallery-tile:hover,
.gallery-tile:focus {
    opacity: 0.9;
    text-decoration: none !important;
}

.gallery-tile-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 991px) {
    .gallery-tile-img { height: 320px; }
}

@media (max-width: 575px) {
    .gallery-section-title { font-size: 24px; }
    .gallery-tile-img { height: 280px; }
}

.bg-green,
.btn-green {
    background-color: #8DB600;
    color: #fff;
}


.footer a:hover,
.navbar-nav a:hover {
    color: #8DB600 !important;
}

.payment-plan table th {
    font-size: 14px;
}

.payment-plan table td {
    font-size: 14px;
}

.payment-plan .btn {
    padding: 4px 12px;
}

.mb-20{
    margin-bottom:20px;
}

/* ============================================================
   APPLICATION FORM — compact flat UI
   ============================================================ */
.apply-section {
    background: #fff8e1;
}

.apply-header .apply-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.apply-header .apply-sub {
    font-size: 13.5px;
    margin: 6px 0 0;
    color: #4b5563 !important;
}

.apply-header .apply-sub strong {
    color: #5d7800 !important;
    font-weight: 700;
}

.apply-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    padding: 18px 20px;
    margin: 0;
    max-width: none;
}

@media (min-width: 768px) {
    .apply-card { padding: 22px 26px; }
}

/* Section header inside the form */
.apply-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937 !important;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.apply-section-num {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8DB600;
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

/* Compact form controls (overrides Bootstrap defaults globally on this page) */
.apply-form .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #374151 !important;
    margin-bottom: 4px;
}

.apply-form .form-label .req {
    color: #e63946 !important;
    margin-left: 2px;
}

.apply-form .form-control,
.apply-form .form-select {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fafbfc;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: #8DB600;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(141, 182, 0, 0.15);
    outline: none;
}

.apply-form textarea.form-control {
    height: auto;
    min-height: 70px;
    resize: vertical;
}

.apply-form .form-control::placeholder {
    color: #9ca3af !important;
    font-size: 13.5px;
}

.apply-form .text-muted {
    color: #9ca3af !important;
    font-weight: 500;
    font-size: 11.5px;
}

/* Submit button */
.btn-submit-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #8DB600 !important;
    color: #ffffff !important;
    border: 0;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color .2s ease, transform .15s ease;
    box-shadow: none;
}

.btn-submit-pay:hover,
.btn-submit-pay:focus {
    background: #7aa000 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-submit-pay i {
    color: #ffffff !important;
}

.apply-note {
    font-size: 12px;
    color: #6b7280 !important;
}

.apply-note i {
    color: #6b7280 !important;
}

/* Side cards (bank details, help) */
.apply-side {
    position: sticky;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apply-side-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.apply-side-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937 !important;
}

.apply-side-title i {
    color: #8DB600 !important;
    font-size: 16px;
}

.apply-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-side-list li {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 7px 0;
    border-bottom: 1px dashed #f0f2f5;
}

.apply-side-list li:last-child {
    border-bottom: 0;
}

.apply-side-list li span {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #6b7280 !important;
    font-weight: 600;
}

.apply-side-list li strong {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937 !important;
    font-variant-numeric: tabular-nums;
    word-break: break-all;
}

.apply-side-help p {
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151 !important;
}

.apply-side-help p i {
    color: #8DB600 !important;
}

.apply-side-help a {
    color: #1f2937 !important;
    text-decoration: none;
    font-weight: 500;
}

.apply-side-help a:hover {
    color: #8DB600 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .apply-side { position: static; }
    .apply-header .apply-title { font-size: 20px; }
}

@media (max-width: 575px) {
    .apply-card { padding: 16px 14px; border-radius: 12px; }
    .apply-form .form-control,
    .apply-form .form-select { height: 38px; font-size: 13.5px; }
    .btn-submit-pay { font-size: 14px; padding: 11px 18px; }
}

.no-text-decoration {
    text-decoration: none;
}

.payment-terms li {
    font-size: 15px;
    line-height: 1.6;
}

.payment-terms i {
    font-size: 18px;
}

.term-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 15px;
    color: #444;
}
.apply-btn {
    animation: blink 1.5s infinite, pulse 1.5s infinite;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Global font color override: make all text black */
body,
body *,
body *::before,
body *::after {
    color: #000 !important;
}

/* ============================================================
   FOOTER — dark contrast against light yellow body
   ============================================================ */
footer.bg-dark,
footer.footer {
    background-color: #1f2937 !important;
    border-top: 4px solid #8DB600;
}

footer .bg-white {
    background-color: #ffffff !important;
}

footer.bg-dark hr,
footer.bg-dark .border-secondary {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Restore light footer text on the dark background */
footer,
footer *,
footer p,
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
footer .text-light,
footer .text-white,
footer .opacity-75 {
    color: #e5e7eb !important;
    opacity: 1 !important;
}

footer a,
footer a:visited {
    color: #e5e7eb !important;
    text-decoration: none;
    transition: color .2s ease;
}

footer a:hover {
    color: #c9d75b !important;
}

footer h6 {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

footer .opacity-75 {
    opacity: 0.85 !important;
}

/* ============================================================
   HEADER — flat style
   ============================================================ */

/* Top contact bar */
.top-bar {
    background: #8DB600;
    padding: 8px 0;
    font-size: 13px;
    line-height: 1.4;
}

.top-bar,
.top-bar *,
.top-bar a,
.top-bar .top-bar-link,
.top-bar #currentTime,
.top-bar i {
    color: #ffffff !important;
}

.top-bar-link {
    text-decoration: none;
    font-weight: 500;
    transition: opacity .2s ease;
}

.top-bar-link:hover {
    opacity: 0.85;
    text-decoration: none;
}

.top-bar i {
    margin-right: 4px;
    font-size: 13px;
}

/* Main navbar */
.main-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    padding: 14px 0;
}

.main-navbar .navbar-brand {
    padding: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.brand-divider {
    display: inline-block;
    width: 1px;
    height: 44px;
    background: #d1d5db;
}

.brand-emblem {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* Nav links */
.main-navbar .navbar-nav .nav-link {
    color: #1f2937 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: background-color .2s ease, color .2s ease;
}

.main-navbar .navbar-nav .nav-link:hover {
    color: #8DB600 !important;
    background-color: #fff8e1;
}

.main-navbar .navbar-nav .nav-link.active {
    color: #8DB600 !important;
    background-color: transparent;
    position: relative;
}

.main-navbar .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: #8DB600;
    border-radius: 2px;
}

/* Flat Apply Now button (overrides earlier blink/pulse animation) */
.main-navbar .apply-btn,
.apply-btn {
    display: inline-block;
    background: #8DB600 !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border: 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: none !important;
    animation: none !important;
    transition: background-color .2s ease, transform .15s ease;
}

.main-navbar .apply-btn:hover,
.apply-btn:hover {
    background: #7aa000 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Navbar toggler (mobile hamburger) */
.main-navbar .navbar-toggler {
    border: 1px solid #e5e7eb;
    padding: 6px 10px;
    box-shadow: none;
}

.main-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(141, 182, 0, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .top-bar {
        font-size: 12px;
        text-align: center;
    }
    .top-bar .container {
        justify-content: center !important;
    }
    .brand-logo { height: 52px; }
    .brand-emblem { height: 36px; }
    .brand-divider { height: 36px; }
    .main-navbar .navbar-brand { gap: 10px; }
    .main-navbar .navbar-nav .nav-link.active::after { display: none; }
}

@media (max-width: 575px) {
    .top-bar-contact a + a { display: block; margin-top: 4px; }
    .brand-emblem { height: 32px; }
    .brand-logo { height: 46px; }
}

/* ============================================================
   HERO CAROUSEL — fit images, indicators, arrows
   ============================================================ */
.hero-carousel-wrapper,
.hero-carousel-wrapper .hero-carousel,
.hero-carousel-wrapper .hero-carousel .carousel-inner,
.hero-carousel-wrapper .hero-carousel .carousel-item {
    height: 100%;
    min-height: 460px;
}

.hero-carousel-wrapper .hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Arrow buttons — make them visible on any background */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 56px;
    opacity: 1;
    transition: opacity .2s ease;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.75);
}

/* Indicator dots */
.hero-carousel .carousel-indicators {
    margin-bottom: 14px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 0;
    margin: 0 5px;
    opacity: 0.6;
    transition: opacity .2s ease, background-color .2s ease;
}

.hero-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: #8DB600;
}

/* Override global rule for the carousel area (white text on photos) */
.hero-carousel,
.hero-carousel * {
    color: inherit;
}

/* Responsive height */
@media (max-width: 1199px) {
    .hero-carousel-wrapper,
    .hero-carousel-wrapper .hero-carousel,
    .hero-carousel-wrapper .hero-carousel .carousel-inner,
    .hero-carousel-wrapper .hero-carousel .carousel-item,
    .hero-carousel-wrapper .hero-carousel .carousel-item img {
        min-height: 420px;
    }
}

@media (max-width: 991px) {
    .hero-carousel-wrapper,
    .hero-carousel-wrapper .hero-carousel,
    .hero-carousel-wrapper .hero-carousel .carousel-inner,
    .hero-carousel-wrapper .hero-carousel .carousel-item,
    .hero-carousel-wrapper .hero-carousel .carousel-item img {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .hero-carousel-wrapper,
    .hero-carousel-wrapper .hero-carousel,
    .hero-carousel-wrapper .hero-carousel .carousel-inner,
    .hero-carousel-wrapper .hero-carousel .carousel-item,
    .hero-carousel-wrapper .hero-carousel .carousel-item img {
        min-height: 260px;
    }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 44px;
    }
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 34px;
        height: 34px;
    }
}

/* ============================================================
   CONNECTIVITY SECTION — single unified card
   ============================================================ */
.connectivity-section {
    background: #fff8e1;
}

.connectivity-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.connectivity-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.connectivity-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8DB600;
    border-radius: 2px;
    margin: 8px auto 0;
}

.connectivity-sub {
    font-size: 15px;
    margin: 0;
}

/* Each connectivity item — flat pill row */
.conn-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 14px 16px;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.conn-item:hover {
    transform: translateY(-2px);
    border-color: #d9e7a0;
    box-shadow: 0 8px 18px rgba(141, 182, 0, .12);
}

.conn-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f5db;
    color: #8DB600 !important;
    border-radius: 10px;
    font-size: 20px;
}

.conn-icon i {
    color: #8DB600 !important;
}

.conn-label {
    flex: 1;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.35;
}

.conn-time {
    flex: 0 0 auto;
    background: #8DB600;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

@media (max-width: 767px) {
    .connectivity-card {
        padding: 24px 18px;
        border-radius: 16px;
    }
    .connectivity-title { font-size: 24px; }
    .conn-label { font-size: 14px; }
    .conn-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* ============================================================
   PAYMENT PLAN TABLE — flat style
   ============================================================ */
.pp-section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 10px;
    display: inline-block;
}

.pp-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8DB600;
    border-radius: 2px;
    margin: 8px auto 0;
}

.pp-section-sub {
    font-size: 15px;
    margin: 0;
}

.payment-plan-wrapper {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
    border: 1px solid #eef0f4;
}

.payment-plan-wrapper .table-responsive {
    margin: 0;
}

.pp-table {
    margin: 0 !important;
    border: 0 !important;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1100px;
}

.pp-table thead th {
    background: #f7f9ec !important;
    color: #1f2937 !important;
    font-weight: 600;
    font-size: 12.5px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 0 !important;
    border-bottom: 2px solid #e2e8d1 !important;
    padding: 14px 10px;
    vertical-align: middle;
    white-space: nowrap;
}

.pp-table thead th small {
    display: inline-block;
    font-weight: 500;
    text-transform: none;
    font-size: 11.5px;
    color: #6b7280 !important;
    letter-spacing: 0;
}

.pp-table tbody td {
    background: #ffffff;
    border: 0 !important;
    border-bottom: 1px solid #f0f2f5 !important;
    padding: 13px 10px;
    font-size: 13.5px;
    line-height: 1.4;
    vertical-align: middle;
    white-space: nowrap;
    color: #1f2937 !important;
}

.pp-table tbody tr:hover td {
    background: #fafbf2;
}

.pp-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.pp-table .pp-size {
    font-weight: 600;
    color: #1f2937 !important;
}

.pp-table .pp-amount {
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

.pp-table .pp-total {
    font-weight: 700;
    color: #5d7800 !important;
}

/* Small flat red Apply button */
.btn-apply-red {
    display: inline-block;
    background: #e63946 !important;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    border: 0;
    box-shadow: none !important;
    animation: none !important;
    transition: background-color .2s ease, transform .15s ease;
    white-space: nowrap;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.btn-apply-red:hover,
.btn-apply-red:focus {
    background: #c1303c !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}

/* Terms & Conditions block under the payment table */
.pp-terms {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.pp-terms-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e5e7eb;
}

.pp-terms-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f5db;
    color: #8DB600 !important;
    border-radius: 10px;
    font-size: 20px;
}

.pp-terms-icon i {
    color: #8DB600 !important;
}

.pp-terms-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #1f2937 !important;
    line-height: 1.25;
}

.pp-terms-sub {
    margin: 2px 0 0;
    font-size: 13px;
    color: #6b7280 !important;
}

/* Grid of term items */
.pp-terms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pp-term {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pp-term:hover {
    border-color: #d9e7a0;
    box-shadow: 0 6px 14px rgba(141, 182, 0, .1);
}

.pp-term-wide {
    grid-column: 1 / -1;
}

.pp-term-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #8DB600 !important;
    border: 1px solid #d9e7a0;
    border-radius: 8px;
    font-size: 16px;
}

.pp-term-icon i {
    color: #8DB600 !important;
}

.pp-term strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1f2937 !important;
    margin-bottom: 2px;
}

.pp-term p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563 !important;
}

.pp-highlight {
    color: #5d7800 !important;
}

.pp-terms-foot {
    margin: 16px 0 0;
    padding: 12px 14px;
    background: #fff7e6;
    border: 1px dashed #f4d56b;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #7a5a00 !important;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.pp-terms-foot i {
    color: #b58400 !important;
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .pp-terms { padding: 18px 16px; }
    .pp-terms-grid { grid-template-columns: 1fr; }
    .pp-terms-title { font-size: 16px; }
}

/* Responsive */
@media (max-width: 991px) {
    .pp-section-title { font-size: 24px; }
    .pp-table thead th,
    .pp-table tbody td {
        font-size: 12.5px;
        padding: 10px 8px;
    }
    .btn-apply-red {
        font-size: 11.5px;
        padding: 5px 12px;
    }
}

/* ============================================================
   APPLICATION WINDOW CARD — flat style
   ============================================================ */
.app-window-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
}

.app-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.app-window-heading {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #1f2937 !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.app-status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: #8DB600;
    box-shadow: 0 0 0 4px rgba(141, 182, 0, 0.25);
    animation: appStatusPulse 1.6s ease-in-out infinite;
}

@keyframes appStatusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(141, 182, 0, 0.35); }
    50%      { box-shadow: 0 0 0 6px rgba(141, 182, 0, 0); }
}

.app-apply-cta {
    padding: 8px 22px !important;
    font-size: 13px;
}

.app-window-title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e5e7eb;
}

.app-window-title strong {
    font-weight: 700;
}

.app-window-sub {
    display: block;
    font-size: 14.5px;
    font-weight: 400;
    margin-top: 4px;
    color: #6b7280 !important;
}

/* Info grid — 2 column flat rows */
.app-info-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 575px) {
    .app-info-grid { grid-template-columns: 1fr; }
}

.app-info-grid li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 12px;
    background: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    padding: 10px 14px;
}

.app-info-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0f5db;
    border-radius: 8px;
    font-size: 17px;
    color: #8DB600 !important;
}

.app-info-icon i {
    color: #8DB600 !important;
}

.app-info-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #6b7280 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937 !important;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .app-window-card { padding: 20px 18px; border-radius: 14px; }
    .app-window-title { font-size: 19px; }
    .app-info-grid { grid-template-columns: 1fr; }
    .app-info-grid li { grid-template-columns: 32px 1fr auto; }
    .app-info-icon { width: 32px; height: 32px; font-size: 15px; }
    .app-info-label { font-size: 11.5px; }
    .app-info-value { font-size: 13.5px; }
    .app-window-header { gap: 10px; }
}
