:root {
    --font-primary: 'Inter', sans-serif;
    --primary-blue: #4778bd;
    --topbar-color: #d98a86;
    --text-color: #6d6d6d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
}

/* Top Bar */

.top-bar {
    background: var(--topbar-color);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    text-align: right;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 20px;
}


/* Main Header */

.main-header {
    background: #ffffff;
    min-height: 70px;
    display: flex;
    align-items: center;
}


/* Logos */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo-wrapper img {
    width: 100px;
    object-fit: contain;
}

.logo-haryana {
    max-height: 80px;
}

.logo-digital {
    max-height: 80px;
}

.logo-make-india {
    max-height: 70px;
}


/* Navigation */

.navbar {
    width: 100%;
}

.navbar-nav {
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-color) !important;
    font-size: 13px !important;
    font-weight: 600;

    display: flex;
    align-items: center;

    gap: 12px;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.nav-link i {
    color: var(--primary-blue);
    font-size: 28px;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}


/* Tablet */

@media (max-width: 1199px) {

    .navbar-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
    }

    .logo-wrapper {
        gap: 15px;
    }

}


/* Mobile */

@media (max-width: 991px) {

    .main-header {
        min-height: auto;
        padding: 12px 0;
    }

    .navbar-collapse {

        margin-top: 15px;

        background: #fff;

        padding: 15px;

        border-radius: 8px;

        box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    }

    .navbar-nav {

        align-items: flex-start;

        gap: 5px;

    }

    .nav-link {

        width: 100%;

        padding: 12px 10px !important;

        font-size: 18px;

    }

    .top-bar-content {

        text-align: center;

        font-size: 14px;

        padding: 8px 10px;

    }

    .logo-wrapper {
        gap: 10px;
    }

    .logo-wrapper img {
        max-height: 50px;
        max-width: 110px;
    }

}


/* Small Mobile */

@media (max-width: 576px) {

    .top-bar-content {
        font-size: 16px;
    }

    .logo-wrapper {
        gap: 5px;
    }

    .logo-wrapper img {
        max-height: 38px;
        max-width: 80px;
    }

}


/* ==========================================
   INDUSTRIAL PLOTS SCHEME SECTION
========================================== */

.industrial-scheme-section {
    background: #b8c8e2;
    padding: 28px 50px 0;
}


/* Main Container */

.industrial-scheme-section .container {
    max-width: 1720px;
}


/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

/* ==========================================
   SCROLLING ANNOUNCEMENT BAR
========================================== */

.announcement-bar {
    background: #f7f7f7;
    border-radius: 8px;

    padding: 10px 0;

    margin-bottom: 22px;

    overflow: hidden;

    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);

    position: relative;
}


.announcement-track {
    display: flex;

    width: max-content;

    animation: announcementScroll 25s linear infinite;
}


.announcement-text {
    color: #4b77b8;

    font-family: 'Inter', sans-serif;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1px;

    white-space: nowrap;

    padding-right: 80px;

    flex-shrink: 0;
}


/* Infinite Smooth Scroll */

@keyframes announcementScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Pause animation on hover */

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}


/* Mobile */

@media (max-width: 767px) {

    .announcement-bar {
        padding: 8px 0;
        margin-bottom: 15px;
    }

    .announcement-text {
        font-size: 15px;
        letter-spacing: 0.3px;
        padding-right: 50px;
    }

}


/* ==========================================
   MAIN BLUE BOX
========================================== */

.scheme-box {
    background: #365f8c;

    padding: 12px 10px 24px;
}


/* ==========================================
   IMAGE GALLERY
========================================== */

.scheme-gallery {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.scheme-image {
    width: 100%;

    border: 2px solid rgba(255, 255, 255, 0.65);

    overflow: hidden;

    background: #ffffff;
}


.scheme-image img {
    width: 100%;

    height: 225px;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.scheme-image:hover img {
    transform: scale(1.05);
}


/* ==========================================
   TEXT CONTENT
========================================== */

.scheme-content {
    text-align: center;

    padding: 45px 20px 0;

    color: #ffffff;
}


.scheme-content h1 {
    font-family: 'Inter', sans-serif;

    font-size: 35px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;

    line-height: 1.2;
}

.scheme-content h1 span{
    font-size: 24px;
    font-weight: normal;
}


.scheme-content p {
    font-family: 'Inter', sans-serif;

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 1px;

    line-height: 1.45;

    margin-bottom: 4px;
}


/* ==========================================
   LARGE LAPTOP
========================================== */

@media (max-width: 1400px) {

    .scheme-content h1 {
        font-size: 35px;
    }

    .scheme-content p {
        font-size: 20px;
    }

    .scheme-image img {
        height: 200px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .industrial-scheme-section {
        padding: 20px 0;
    }


    .scheme-gallery {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }


    .scheme-image img {
        height: 220px;
    }


    .scheme-content {
        padding-top: 35px;
    }


    .scheme-content h1 {
        font-size: 38px;
    }


    .scheme-content p {
        font-size: 22px;
    }


    .announcement-text {
        font-size: 11px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .industrial-scheme-section {
        padding: 15px 0;
    }


    .scheme-box {
        padding: 10px;

        min-height: auto;
    }


    .scheme-gallery {
        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }


    .scheme-image {
        border-width: 1px;
    }


    .scheme-image img {
        height: 125px;
    }


    .scheme-content {
        padding: 28px 10px 15px;
    }


    .scheme-content h1 {
        font-size: 26px;

        line-height: 1.3;

        letter-spacing: 0;

        margin-bottom: 18px;
    }


    .scheme-content p {
        font-size: 15px;

        line-height: 1.5;

        letter-spacing: 0;

        margin-bottom: 5px;
    }

}

.top-bar-content a{
    color: #fff !important;
    text-decoration: none;
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .scheme-image img {
        height: 105px;
    }


    .scheme-content h1 {
        font-size: 18px;
    }

    .scheme-content h1 span{
        font-size: 14px;
    }

    .scheme-content p {
        font-size: 10px;
    }

}


/* =========================================
   PROJECT SECTION
========================================= */

.project-section {
    background: #b8c8e2;
    padding: 28px 50px 0;
    min-height: 100vh;
}


/* Main Container */

.project-container {
    max-width: 1320px;
    background: #f5f5f5;

    border-radius: 25px 25px 0 0;

    padding: 20px 22px 80px;

    box-shadow:
        0 0 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   TABS
========================================= */

.project-tabs {
    display: flex;
    align-items: center;

    gap: 28px;

    border-bottom: 1px solid #d4d4d4;

    padding: 0 5px;
}


.project-tab {
    position: relative;

    background: transparent;

    border: none;

    outline: none;

    padding: 14px 0 16px;

    font-family: 'Inter', sans-serif;

    font-size: 16px;

    font-weight: 500;

    color: #456997;

    cursor: pointer;
}


.project-tab.active {
    color: #3e3e3e;
}


.project-tab.active::after {

    content: "";

    position: absolute;

    bottom: -1px;

    left: 0;

    width: 40px;

    height: 3px;

    background: #4778bd;

}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {

    background: #ffffff;

    margin-top: 32px;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.20);

}


/* =========================================
   LEFT PROJECT DETAILS
========================================= */

.project-details {

    padding: 12px 10px 20px;

}


.project-info p {

    font-size: 14px;

    color: #424242;

    margin-bottom: 14px;

    line-height: 1.35;

}


.project-info strong {

    font-weight: 700;

    color: #363636;

}


/* =========================================
   APPLICATION WINDOW
========================================= */

.application-window {

    margin-top: 12px;

}


.application-window h4 {

    font-size: 16px;

    font-weight: 700;

    color: #333;

    margin-bottom: 16px;

    text-transform: uppercase;

}


.date-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 14px;

    font-size: 14px;

    color: #3e3e3e;

    line-height: 1.5;

}


.date-icon {

    color: #15865e;

    font-size: 18px;

    min-width: 18px;

}


/* =========================================
   RIGHT ACTION SECTION
========================================= */

.project-actions {

    border-left: 1px solid #d6d6d6;

    padding: 12px 40px 15px 55px;

    min-height: 100%;

    position: relative;

}


/* Apply Button */

.apply-online-btn {
    display: block;
    background: red;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 22px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    border: none;
    text-align: center;
    margin-bottom: 5px;
    text-decoration: none;
}

.apply-online-btn2 {
    background: red;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 22px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    border: none;
    text-align: center;
    margin-bottom: 5px;
    text-decoration: none;
}

.apply-online-btn2 i{
    color: #ffffff !important;
}

.apply-online-btn-blink {
    animation: vapBlink 1.4s infinite;
}

@keyframes vapBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,122,0,0.6); }
  50% { opacity: 0.75; box-shadow: 0 0 0 8px rgba(255,122,0,0); }
}

.apply-online-btn:hover {

    background: #16764f;

    color: #ffffff;

}


/* Action Links */

.action-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.action-links li {

    margin-bottom: 12px;

}


.action-links a {

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

    color: #4b6fa6;

    font-size: 14px;

    font-weight: 400;

    transition: all 0.25s ease;

}


.action-links a i {

    color: #15865e;

    font-size: 18px;

    min-width: 18px;

}


.action-links a:hover {

    color: #15865e;

    transform: translateX(5px);

}


/* =========================================
   RERA APPROVED
========================================= */

.rera-approved {

    text-align: center;

    margin-top: 0;

}


.rera-approved img {

    width: 210px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .project-container {

        padding: 18px 15px 50px;

        border-radius: 18px 18px 0 0;

    }


    .project-card {

        margin-top: 20px;

    }


    .project-actions {

        border-left: none;

        border-top: 1px solid #d6d6d6;

        padding: 25px;

    }


    .apply-online-btn {

        width: 100%;

        max-width: 400px;

    }


    .rera-approved {

        margin-top: 20px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .project-section {
        padding: 15px;
    }


    .project-container {

        padding: 12px 10px 30px;

        border-radius: 15px 15px 0 0;

    }


    /* Tabs */

    .project-tabs {

        gap: 25px;

        padding: 0;

    }


    .project-tab {

        font-size: 14px;

        padding: 12px 0;

    }


    /* Card */

    .project-card {

        margin-top: 16px;

        border-radius: 6px;

    }


    /* Details */

    .project-details {

        padding: 18px 15px;

    }


    .project-info p {

        font-size: 15px;

        margin-bottom: 12px;

        line-height: 1.55;

    }


    /* Application Window */

    .application-window {

        margin-top: 22px;

        padding-top: 15px;

        border-top: 1px solid #eeeeee;

    }


    .application-window h4 {

        font-size: 15px;

        line-height: 1.5;

        margin-bottom: 15px;

    }


    .date-item {

        gap: 10px;

        font-size: 14px;

        margin-bottom: 14px;

    }


    .date-icon {

        font-size: 16px;

    }


    /* Right Section */

    .project-actions {

        padding: 20px 15px;

    }


    .apply-online-btn {

        width: 100%;

        font-size: 20px;

        padding: 11px 15px;

    }


    .action-links li {

        margin-bottom: 5px;

    }


    .action-links a {

        font-size: 15px;

        gap: 12px;

        line-height: 1.4;

    }


    .action-links a i {

        font-size: 17px;

    }


    .rera-approved img {

        width: 100px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .project-info p {
        font-size: 12px;
    }


    .application-window h4 {
        font-size: 12px;
    }


    .date-item {
        font-size: 11px;
    }


    .apply-online-btn {
        font-size: 18px;
    }


    .action-links a {
        font-size: 12px;
    }

}

.project-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid #d4d4d4;
    padding: 0 5px;
    margin: 0;
}

.project-tab {
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #456997;
    cursor: pointer;
}

.project-tab.active {
    color: #3e3e3e;
}

.project-tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4778bd;
}


/* =========================================
   POLICY OVERVIEW SECTION
========================================= */

.policy-overview-section {
    background: #b7c9e5;
    padding: 28px 50px 0;
}


/* Main White Container */

.policy-main-container {
    max-width: 1230px;
    background: #f8f8f8;

    border-radius: 0 0 28px 28px;

    padding: 60px 16px 20px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}


/* =========================================
   LEFT SIDEBAR
========================================= */

.policy-sidebar {
    padding-right: 35px;
    border-right: 1px solid #d7d7d7;
    min-height: 100%;
}


/* Accordion */

.policy-accordion .accordion-item {
    border: none;
    margin-bottom: 14px;
    background: transparent;
}


.policy-accordion .accordion-button {
    background: #159654;
    color: #ffffff;

    border-radius: 12px !important;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

    padding: 16px 18px;

    font-family: 'Inter', sans-serif;

    font-size: 14px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.policy-accordion .accordion-button span {
    display: flex;
    align-items: center;
    gap: 7px;
}


/* Remove default bootstrap arrow */

.policy-accordion .accordion-button::after {
    display: none;
}


.policy-accordion .accordion-button:focus {
    box-shadow: none;
}


/* Open Accordion */

.policy-accordion .accordion-button:not(.collapsed) {
    background: #159654;
    color: #ffffff;
}


/* Custom Arrow */

.custom-arrow {
    font-size: 15px;
    margin-left: auto;
}


/* Accordion Body */

.policy-accordion .accordion-body {
    padding: 0;
}


/* Policy Document Open Area */

.policy-document-list {
    border-left: 1px solid #159654;
    border-right: 1px solid #159654;
    border-bottom: 1px solid #159654;

    border-radius: 0 0 12px 12px;

    background: #f7f7f7;

    overflow: hidden;
}


/* Document Links */

.policy-document-list a {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 14px 15px;

    border-bottom: 1px solid #dddddd;

    text-decoration: none;

    color: #b0495a;

    font-size: 15px;

    font-weight: 500;

    transition: all 0.25s ease;
}


.policy-document-list a:last-child {
    border-bottom: none;
}


.policy-document-list a i {
    color: #159654;
    font-size: 17px;
}


.policy-document-list a:hover {
    background: #f0f0f0;
    color: #159654;
    padding-left: 20px;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.policy-content {
    padding-left: 25px;
    padding-right: 15px;
}


/* Heading */

.policy-content h1 {
    font-family: 'Inter', sans-serif;

    font-size: 30px;

    font-weight: 700;

    color: #343434;

    margin-bottom: 12px;

    line-height: 1.3;
}


/* Paragraph */

.policy-content p {
    font-family: 'Inter', sans-serif;

    font-size: 16px;

    font-weight: 400;

    color: #454545;

    line-height: 1.65;

    margin-bottom: 10px;
}


/* Links */

.policy-content p a {
    color: #456b9d;

    text-decoration: underline;

    text-underline-offset: 2px;

    transition: 0.3s;
}


.policy-content p a:hover {
    color: #159654;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {

    .policy-main-container {
        max-width: 100%;
    }


    .policy-sidebar {
        padding-right: 20px;
    }


    .policy-content h1 {
        font-size: 30px;
    }


    .policy-content p {
        font-size: 16px;
    }

}


/* =========================================
   TABLET & MOBILE
========================================= */

@media (max-width: 991px) {

    .policy-overview-section {
        padding: 20px 0;
    }


    .policy-main-container {
        border-radius: 20px;
        padding: 25px 15px;
    }


    /* Sidebar */

    .policy-sidebar {
        border-right: none;

        border-bottom: 1px solid #d7d7d7;

        padding-right: 0;

        padding-bottom: 25px;

        margin-bottom: 25px;
    }


    /* Content */

    .policy-content {
        padding: 0;
    }


    .policy-content h1 {
        font-size: 28px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .policy-overview-section {
        padding: 15px;
    }


    .policy-main-container {
        padding: 18px 12px;

        border-radius: 16px;
    }


    /* Accordion */

    .policy-accordion .accordion-item {
        margin-bottom: 10px;
    }


    .policy-accordion .accordion-button {
        padding: 14px;

        font-size: 15px;

        border-radius: 9px !important;
    }


    .policy-document-list a {
        font-size: 14px;

        padding: 13px 12px;

        line-height: 1.4;
    }


    /* Content */

    .policy-content h1 {
        font-size: 25px;

        line-height: 1.3;

        margin-bottom: 15px;
    }


    .policy-content p {
        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 14px;

        text-align: left;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .policy-main-container {
        padding: 15px 10px;
    }


    .policy-accordion .accordion-button {
        font-size: 14px;
        padding: 13px 12px;
    }


    .policy-content h1 {
        font-size: 18px;
    }


    .policy-content p {
        font-size: 12px;
        line-height: 1.6;
    }


    .policy-document-list a {
        font-size: 13px;
    }

}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    background: #b7c9e5;
    padding: 28px 50px 20px;
}


/* Main White Container */

.faq-container {
    max-width: 1710px;

    background: #f8f8f8;

    border-radius: 38px;

    padding: 35px 45px 82px;
}


/* =========================================
   HEADING
========================================= */

.faq-heading {
    text-align: center;

    margin-bottom: 28px;
}


.faq-heading h2 {
    font-family: 'Inter', sans-serif;

    font-size: 50px;

    font-weight: 700;

    color: #294463;

    margin: 0;

    line-height: 1.2;
}


/* =========================================
   FAQ ACCORDION
========================================= */

.custom-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.custom-faq-accordion .accordion-item {
    border: 1px solid #cdd9e8;

    border-radius: 24px !important;

    overflow: hidden;

    background: transparent;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


/* FAQ Button */

.custom-faq-accordion .accordion-button {

    min-height: 106px;

    padding: 20px 32px;

    background: #f7f7f7;

    color: #294463;

    font-family: 'Inter', sans-serif;

    font-size: 28px;

    font-weight: 600;

    letter-spacing: 0.5px;

    border: none;

    box-shadow: none;

    position: relative;
}


/* Remove Bootstrap Default Arrow */

.custom-faq-accordion .accordion-button::after {
    display: none;
}


/* Green Circle + Icon */

.custom-faq-accordion .accordion-button::before {

    content: "+";

    position: absolute;

    right: 32px;

    top: 50%;

    transform: translateY(-50%);

    width: 35px;

    height: 35px;

    border-radius: 50%;

    background: #168c58;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    font-weight: 500;

    line-height: 1;

    transition: all 0.3s ease;
}


/* Space for Icon */

.custom-faq-accordion .accordion-button {
    padding-right: 110px;
}


/* Open Accordion */

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background: #f7f7f7;

    color: #294463;
}


/* Change + to - */

.custom-faq-accordion .accordion-button:not(.collapsed)::before {
    content: "−";
    background: #126f47;
}


/* Accordion Body */

.custom-faq-accordion .accordion-body {

    padding: 5px 32px 28px;

    font-family: 'Inter', sans-serif;

    font-size: 17px;

    line-height: 1.7;

    color: #4d4d4d;

    background: #ffffff;
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1400px) {

    .faq-container {
        max-width: 1320px;
    }


    .faq-heading h2 {
        font-size: 30px;
    }


    .custom-faq-accordion .accordion-button {
        font-size: 18px;
        min-height: 65px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .faq-section {
        padding: 20px 0;
    }


    .faq-container {
        border-radius: 25px;

        padding: 30px 25px 50px;
    }


    .faq-heading h2 {
        font-size: 36px;
    }


    .custom-faq-accordion {
        gap: 15px;
    }


    .custom-faq-accordion .accordion-item {
        border-radius: 18px !important;
    }


    .custom-faq-accordion .accordion-button {
        min-height: 80px;

        font-size: 20px;

        padding: 18px 90px 18px 22px;
    }


    .custom-faq-accordion .accordion-button::before {

        right: 22px;

        width: 45px;

        height: 45px;

        font-size: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 15px;
    }


    .faq-container {
        padding: 25px 14px 35px;

        border-radius: 20px;
    }


    .faq-heading {
        margin-bottom: 22px;
    }


    .faq-heading h2 {
        font-size: 28px;

        line-height: 1.3;
    }


    .custom-faq-accordion {
        gap: 12px;
    }


    .custom-faq-accordion .accordion-item {
        border-radius: 15px !important;
    }


    .custom-faq-accordion .accordion-button {

        min-height: 72px;

        padding: 16px 65px 16px 18px;

        font-size: 16px;

        line-height: 1.45;

        letter-spacing: 0.2px;

        text-align: left;
    }


    .custom-faq-accordion .accordion-button::before {

        right: 16px;

        width: 38px;

        height: 38px;

        font-size: 28px;
    }


    .custom-faq-accordion .accordion-body {

        padding: 5px 18px 22px;

        font-size: 14px;

        line-height: 1.65;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq-container {
        padding: 20px 10px 30px;
    }


    .faq-heading h2 {
        font-size: 18px;
    }


    .custom-faq-accordion .accordion-button {

        font-size: 12px;

        padding: 15px 58px 15px 15px;
    }


    .custom-faq-accordion .accordion-button::before {

                width: 20px;
        height: 20px;
        right: 14px;
        font-size: 16px;
    }


    .custom-faq-accordion .accordion-body {
        font-size: 11px;
    }

}

/* =========================================
   FOOTER NAVIGATION
========================================= */

.footer-navigation {
    background: #363636;
    padding: 25px 0;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #dddddd;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .footer-navigation {
        padding: 40px 0;
    }

    .footer-menu {
        gap: 28px 35px;
    }

    .footer-menu a {
        font-size: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .footer-navigation {
        padding: 30px 15px;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        text-align: left;
    }

    .footer-menu a {
        font-size: 15px;
        white-space: normal;
        line-height: 1.4;
        padding: 8px 5px;
        border-bottom: 1px solid #fff;
    }
    .footer-menu a:last-child {
        border-bottom: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .footer-navigation {
        padding: 25px 10px;
    }

    .footer-menu {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-menu a {
        font-size: 15px;
        padding: 10px;
    }

}


/* =====================================
   APPLY POPUP - SCREENSHOT STYLE
===================================== */

#applyPopup .modal-dialog {
    max-width: 900px;
    width: calc(100% - 80px);
    margin: 25px auto;
}

#applyPopup .modal-dialog-centered {
    min-height: calc(100% - 50px);
}


/* Main Modal */

.apply-popup {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    position: relative;
    box-shadow: 0 20px 70px rgba(0,0,0,.25);
}


/* Close Button */

.popup-close {
    position: absolute;
    right: 22px;
    top: 20px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #555;
    z-index: 10;
    cursor: pointer;
}


/* =====================================
   LEFT SIDE
===================================== */

.popup-left {
    background: #fff;
}

.popup-heading {
    padding: 18px 30px 27px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #283f96,
        #5d4385,
        #ef3d1f
    );
}

.popup-heading h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.popup-heading p {
    font-size: 15px;
    margin: 0;
    opacity: .95;
}


/* Left Boxes */

.popup-info {
    padding: 24px 18px 34px;
}

.info-box {
    width: 100%;
    padding: 25px 28px;
    border-radius: 13px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}


/* Colors */

.start-date {
    background: linear-gradient(135deg, #2f469e, #354ca7);
}

.end-date {
    background: linear-gradient(135deg, #f13b14, #ff3f0c);
}

.allotment-date {
    background: linear-gradient(135deg, #2f8a58, #369961);
}

.countdown-box {
    padding: 21px;
    border-radius: 13px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd51f, #ffb300);
    color: #343000;
}


/* =====================================
   RIGHT SIDE
===================================== */

.popup-right {
    background: #fff;
    display: flex;
    align-items: center;
}

.apply-form {
    width: 100%;
    padding: 42px 42px;
}

.apply-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #30343b;
    margin-bottom: 4px;
}

.apply-form p {
    font-size: 15px;
    color: #6b7077;
    margin-bottom: 30px;
}


/* Inputs */

.apply-form .form-control,
.apply-form .form-select {
    height: 57px;
    border-radius: 13px;
    border: 1px solid #d6d6d6;
    font-size: 19px;
    padding: 13px 18px;
    color: #333;
    box-shadow: none;
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: #394da1;
    box-shadow: 0 0 0 3px rgba(57,77,161,.08);
}


/* Submit */

.submit-btn {
    width: 100%;
    height: 74px;
    border: 0;
    border-radius: 13px;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(
        90deg,
        #2f469e,
        #614483,
        #ef3d1f
    );
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 991px) {

    #applyPopup .modal-dialog {
        width: calc(100% - 40px);
        margin: 20px auto;
    }

    #applyPopup .modal-content {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }

    .popup-heading h2 {
        font-size: 30px;
    }

    .popup-left {
        min-height: auto;
    }

    .popup-info {
        padding: 25px;
    }

}


@media (max-width: 576px) {

    #applyPopup .modal-dialog {
        width: calc(100% - 24px);
        margin: 12px auto;
    }

    #applyPopup .modal-content {
        border-radius: 14px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .popup-heading {
        padding: 25px 20px;
    }

    .popup-heading h2 {
        font-size: 18px;
        padding-right: 30px;
    }

    .popup-heading p {
        font-size: 12px;
    }

    .popup-info {
        padding: 18px;
    }

    .info-box {
        padding: 15px;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .countdown-box {
        font-size: 16px;
        padding: 18px 10px;
    }

    .apply-form {
        padding: 30px 20px;
    }

    .apply-form h2 {
        font-size: 30px;
    }

    .apply-form p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .apply-form .form-control,
    .apply-form .form-select {
        height: 58px;
        font-size: 16px;
        border-radius: 10px;
    }

    .submit-btn {
        height: 60px;
        font-size: 19px;
    }

}

.countdown-box {
    padding: 20px;
    border-radius: 13px;
    text-align: center;
    background: linear-gradient(135deg, #ffd51f, #ffb300);
    color: #343000;
}

.countdown-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.time-box {
    min-width: 70px;
    padding: 8px 5px;
}

.time-box strong {
    display: block;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.time-box span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
}

@media (max-width: 576px) {

    .countdown-timer {
        gap: 4px;
    }

    .time-box {
        min-width: auto;
        flex: 1;
    }
    .countdown-label{
        font-size: 14px;
    }
    .time-box strong {
        font-size: 16px;
    }

    .time-box span {
        font-size: 9px;
    }

}

/* =========================================
   PRICE SECTION
========================================= */

.price-section {
    background: #b8c8e2;
    padding: 28px 50px 0;
}


/* =========================================
   TOP ALERT
========================================= */

.payment-alert {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}


.alert-last-date,
.alert-allocation {
    color: #ffffff;
    font-weight: 700;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 92px;

    font-size: clamp(24px, 1vw, 46px);
    line-height: 1.1;
    white-space: nowrap;
}


.alert-last-date {
    width: 50%;
    background: #f01822;
}


.alert-allocation {
    width: 50%;
    background: #00a651;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.payment-table-wrapper {
    width: 100%;
    background: #ffe15a;
}


/* =========================================
   TABLE
========================================= */

.payment-table {
    width: 100%;
    min-width: 1100px;

    border-collapse: collapse;
    table-layout: fixed;

    font-family: 'Inter', sans-serif;
}


/* TABLE HEADER */

.payment-table thead th {
    background: #223b78;
    color: #ffffff;

    border-right: 2px solid #9ca9c5;
    border-bottom: 2px solid #9ca9c5;

    padding: 12px 8px;

    text-align: center;
    vertical-align: middle;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.1;
}


/* TABLE BODY */

.payment-table tbody td {
    background: #ffe15a;

    color: #171717;

    border-right: 1px solid #333;
    border-bottom: 1px solid #333;

    padding: 14px 8px;

    text-align: center;
    vertical-align: middle;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.15;
}


/* TOTAL */

.payment-table .total-cost {
    font-weight: 600;
}


/* AREA */

.area-range {
    display: block;
}

.upto {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.table-upto{
    border-top: 1px solid #000;
} 

.table-border-bottom-none{
    border-bottom: none !important;
}

.table-border-top-none{
    border-top: none !important;
}



/* =========================================
   COLUMN WIDTHS
========================================= */

.payment-table th:nth-child(1),
.payment-table td:nth-child(1) {
    width: 10%;
}

.payment-table th:nth-child(2),
.payment-table td:nth-child(2) {
    width: 10%;
}

.payment-table th:nth-child(3),
.payment-table td:nth-child(3) {
    width: 16%;
}

.payment-table th:nth-child(4),
.payment-table td:nth-child(4) {
    width: 13%;
}

.payment-table th:nth-child(5),
.payment-table td:nth-child(5) {
    width: 13%;
}

.payment-table th:nth-child(6),
.payment-table td:nth-child(6) {
    width: 27%;
}

.payment-table th:nth-child(7),
.payment-table td:nth-child(7) {
    width: 11%;
}


/* =========================================
   MOBILE TABLE SCROLL
========================================= */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* =========================================
   NOTE
========================================= */

.payment-note {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 12px 25px;

    font-size: 13px;
    font-weight: 400;

    color: #161616;

    text-align: right;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .alert-last-date,
    .alert-allocation {
        min-height: 70px;
        font-size: 25px;
    }

    .payment-table {
        min-width: 1000px;
    }

    .payment-table thead th {
        font-size: 22px;
    }

    .payment-table tbody td {
        font-size: 21px;
    }

    .upto {
        font-size: 17px;
    }

    .payment-note {
        font-size: 17px;
    }

}

.price-section .container-fluid{
    padding: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .payment-alert {
        flex-direction: column;
    }

    .alert-last-date,
    .alert-allocation {
        width: 100%;
        min-height: 40px;

        font-size: 12px;
        padding: 10px 8px;

        white-space: normal;
    }


    .payment-table {
        min-width: 950px;
    }


    .payment-table thead th {
        padding: 6px;
        font-size: 11px;
    }


    .payment-table tbody td {
        padding: 6px;
        font-size: 8px;
    }


    .upto {
        font-size: 10px;
    }


    .payment-note {
        justify-content: flex-start;

        min-height: auto;

        padding: 5px;

        font-size: 11px;

        text-align: left;
    }

    .price-section{
        padding: 15px;
    }

    .payment-table th:nth-child(1), .payment-table td:nth-child(1){
        width: 1%;
    }
    .payment-table th:nth-child(2),
    .payment-table td:nth-child(2){
        width: 1%;
    }
    .payment-table th:nth-child(3), .payment-table td:nth-child(3){
        width: 1%;
    }
    
    .payment-table td:nth-child(4), .payment-table th:nth-child(4){
        width: 1.5%;
    }
    .payment-table th:nth-child(5),
    .payment-table td:nth-child(5){
        width: 1.4%;
    }
    .payment-table th:nth-child(6), .payment-table td:nth-child(6){
        width: 2%;
    }

    .payment-table td:nth-child(7), .payment-table th:nth-child(7){
        width: 1.1%;
    }
}