* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    /* font-size: 1.1rem; */
}

:root {
    --dark-color: #333;
    --dark-color-3-4: #333333bf;
    --dark-color-half: #33333380;
    --dark-color-1-4: #33333340;

    --white: #fff;
    --white-3-4: #ffffffbf;
    --white-half: #ffffff80;
    --white-1-4: #ffffff40;

    --orange-color: #F28D01;
    --orange-color-light: #f1af52;
    --orange-color-lighter: #ffd475;
    --orange-color-lightest: #fed6a8;

    --blue-color: #2F3061;
    --blue-color-light: #b4b5db;

    --grey-color: #343434;
    --grey-color-light: #5a5a5a;
    --grey-color-lighter: #f8f8f8;

    --shadow-color-light: #CCC;
    --shadow-color-normal: #777;
    --shadow-color-dark: #333;
    --shadow-color-black: black;

    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;

    --bs-primary: #f1af52;
    --bs-secondary: #F28D01;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #F2F9F9;
    /* --bs-dark: #001442; */
    --bs-dark: var(--dark-color);
}

/* width */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--orange-color);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-color-light);
}


/*

    General Styles
    - Buttons, Text, Backgrounds, Borders
    - Links
    - Fonts

 */
button {
    font-family: "Poppins", sans-serif;
}

.text-primary {
    color: var(--orange-color) !important;
}

.text-secondary {
    color: var(--blue-color) !important;
}

.btn-primary {
    background-color: var(--orange-color) !important;
    border-color: var(--orange-color) !important;
    color: #fff !important;
}

/* Ensure all buttons use the theme radius unless explicitly overridden */
.btn-secondary {
    background-color: var(--blue-color) !important;
    border-color: var(--blue-color) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--orange-color-light) !important;
    border-color: var(--orange-color-light) !important;
}

.btn-secondary:hover {
    background-color: var(--blue-color-light) !important;
    border-color: var(--blue-color-light) !important;
}

.btn-square-corner {
    border-radius: 0 !important;
}

.border-primary {
    border-color: var(--orange-color) !important;
}

.border-secondary {
    border-color: var(--blue-color) !important;
}

.bg-primary {
    background-color: var(--orange-color) !important;
}

.bg-secondary {
    background-color: var(--blue-color) !important;
}

.bg-grey {
    background-color: var(--grey-color-lighter) !important;
}

a {
    text-decoration: none;
    color: var(--blue-color);
}

a:hover {
    text-decoration: none;
    color: var(--orange-color);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Alike", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    color: #001442;
}

.text-white {
    h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
        color: white;
    }
}

.bg-dark {
    background-color: var(--bs-dark) !important;

    .card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-clip: border-box;
        border: 1px solid white;
        border-radius: 10px;
    }

    .card-text {
        color: var(--dark-color);
    }
}

.badge-primary {
    color: #fff;
    background-color: var(--orange-color);
}

.badge-secondary {
    /* Use the theme secondary color (blue) so badges follow the site theme */
    color: #fff;
    background-color: var(--blue-color);
}

.card {
    border-radius: 0;
}

.form-control {
    border-radius: 0;
}

.form-select {
    border-radius: 0;
}

.content-container {
    padding: 2rem 0 1rem 0;
    margin-top: 0;
}

@media (min-width: 992px) {
    .content-container {
        margin-top: 45px;
        padding: 3rem 0 2rem 0;
        min-height: 80vh;
    }
}

.modal .modal-header .modal-title {
    font-size: xx-large;
    font-weight: 700;
    color: var(--dark-color);
}

.modal-content {
    border-radius: 0;
}

@media (min-width: 992px) {
    .pr-md-10 {
        padding-right: 6rem !important;
    }
}

/*

    Tricon

 */
.btn-tricon {
    color: #fff;
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    border-radius: 0 !important;
}

.btn-tricon:hover {
    color: #fff;
    background-color: var(--orange-color-light);
    border-color: var(--orange-color-light);
}

.btn-tricon-secondary {
    color: #fff;
    background-color: var(--grey-color);
    border-color: var(--grey-color);
    border-radius: 0 !important;
}

.btn-tricon-secondary:hover {
    color: #fff;
    background-color: var(--grey-color-light);
    border-color: var(--grey-color-light);
}

.btn-check:focus + .btn-tricon,
.btn-tricon:focus {
    color: #fff;
    background-color: var(--orange-color-light);
    border-color: var(--orange-color-light);
    box-shadow: 0 0 0 0.25rem var(--orange-color);
}

.btn-check:checked + .btn-tricon,
.btn-check:active + .btn-tricon,
.btn-tricon:active,
.btn-tricon.active,
.show > .btn-tricon.dropdown-toggle {
    color: #fff;
    background-color: var(--orange-color-light);
    border-color: var(--orange-color-light);
}

.btn-check:checked + .btn-tricon:focus,
.btn-check:active + .btn-tricon:focus,
.btn-tricon:active:focus,
.btn-tricon.active:focus,
.show > .btn-tricon.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem var(--orange-color);
}

.btn-tricon:disabled,
.btn-tricon.disabled {
    color: #fff;
    background-color: var(--orange-color-light);
    border-color: var(--orange-color-light);
}

.form-check-input:focus {
    border-color: var(--orange-color-light);
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--orange-color-light);
}

.form-check-input:checked {
    background-color: var(--orange-color);
    border-color: var(--orange-color-light);
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--orange-color);
    border-color: var(--orange-color-light);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23f1af52'/%3e%3c/svg%3e");
}

footer a {
    text-decoration: none;
    color: var(--white);
}

footer a:hover {
    color: var(--orange-color);
}

footer .footer_address {
    padding-bottom: 2rem;
}

footer .footer_address p {
    margin-bottom: 0;
}

footer .footer_address > p:nth-child(1) {
    margin-bottom: 0 !important;
}

/* Footer: make social media circular buttons smaller and white */
.footer .btn-md-square {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ffffff !important; /* white background */
    color: #111111 !important; /* dark icon color for contrast */
    border: 0 !important;
    box-shadow: none !important;
}

.footer a.btn:hover {
    background-color: var(--orange-color-light) !important;
}

.footer .btn-md-square i {
    font-size: 0.9rem !important; /* slightly smaller icon */
    line-height: 1 !important;
}

/* Keep spacing consistent */
.footer .btn-md-square.me-3 {
    margin-right: .75rem !important;
}

/*

    Page Spotlight

 */

.page_spotlight {
    box-shadow: inset 0 0 7px 4px var(--shadow-color-dark);
}

.page_spotlight .block_white h1 {
    color: var(--dark-color);
    border-left: 4px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.page_spotlight .block_dark h1 {
    color: var(--white);
    border-left: 4px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.page_spotlight .card a {
    text-decoration: none;
}

.page_spotlight .spotlight_introduction {
    padding: 0 2rem;
}

.page_spotlight .card a:hover {
    background-color: var(--orange-color);
    border: solid 1px var(--orange-color);
    color: var(--white);
}

/*

    Multiple Spotlight Block

 */

.multiple-page-spotlight-block .card .card-img-top {
    width: 100%;
    height: auto;
    max-height: 40vh; /* keep images from becoming too tall on large screens */
    object-fit: cover; /* crop to fill the box while preserving proportions */
}

@media (min-width: 1200px) {
    .multiple-page-spotlight-block .card .card-img-top {
        max-height: 360px; /* desktop cap */
    }
}

@media (max-width: 576px) {
    .multiple-page-spotlight-block .card .card-img-top {
        max-height: 220px; /* mobile cap */
    }
}


/* Spotlight tablist — restore prominent left orange border for active item */
.tricon-tablist .list-group-item {
    /* reserve left border space so active state won't shift layout */
    border-right: none;
    border-left: none;
    border-radius: 0 !important;
    border-color: rgba(0, 0, 0, .125) !important;
    padding-left: 1rem; /* keep text aligned when border appears */
    background: transparent;
    color: var(--dark-color);
    transition: border-color .22s ease, color .22s ease, background .22s ease;
    box-shadow: none !important;
}

.tricon-tablist .list-group-item[aria-selected="true"],
.tricon-tablist .list-group-item.active {
    border-left: 4px solid var(--orange-color) !important;
    color: var(--orange-color) !important;
    background: transparent; /* keep clean */
    font-weight: 600;
}

/* Remove Bootstrap's default blue border for active list-group items globally.
   Keep left-orange border for .tricon-tablist via its more specific rules. */
.tricon-tablist .list-group-item.active,
.tricon-tablist .list-group-item.active:focus,
.tricon-tablist .list-group-item.active:hover {
    box-shadow: none !important; /* remove any blue glow */
}

/* Ensure keyboard focus also shows the orange border for accessibility */
.tricon-tablist .list-group-item:focus {
    outline: none;
    border-left-color: var(--orange-color) !important;
}

/*

    Video Content

 */

.video_content {
    box-shadow: inset 0 0 7px 4px var(--shadow-color-dark);
}

.video_content .block_white h1 {
    color: var(--dark-color);
    border-left: 4px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.video_content .block_dark h1 {
    color: var(--white);
    border-left: 4px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.video_content .spotlight_introduction {
    padding: 0 2rem;
}

/*

    CTA

 */

.cta .cta-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.cta .cta-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    top: -20px;
    right: 20px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.cta .cta-img::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    left: -20px;
    bottom: 20px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.cta .cta-img .cta-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 10px;
}


/*

    Interest

 */

#interested-form-screen-button {
    background-color: var(--orange-color);
    border: solid 1px var(--orange-color);
    position: fixed;
    bottom: 10vh;
    right: 2vh;
    z-index: 99;
    border-radius: 0;
    box-shadow: var(--shadow-color-dark) 0 0 5px;
}

#interested-form-screen-button:hover {
    background-color: var(--orange-color-light);
    border: solid 1px var(--orange-color-light);
}

/* Standard square button utility (preferred) */
.btn-square,
a.btn-square,
button.btn-square {
    border-radius: 0 !important;
}

/* Make sure icons inside square buttons don't add extra spacing */
.btn-square i,
.btn-square svg,
.btn-square .fa,
.btn-square .fas,
.btn-square .far {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 1rem !important;
}

/* Ensure anchor/button when used in hero backgrounds keeps absolute positioning unaffected */
.bg-image .btn-square,
.bg-image a.btn-square {
    position: relative;
    z-index: 2;
}

/*

    Messages

 */

.message-alert i {
    margin-right: 1rem;
}

.message-alert.message-alert-info .toast-header {
    background-color: green;
    color: white;
}

.message-alert.message-alert-warning .toast-header {
    background-color: orange;
    color: white;
}

.message-alert.message-alert-error .toast-header {
    background-color: red;
    color: white;
}

.message-alert.message-alert-error .toast-body {
    background-color: lightpink;
}

.message-alert .btn-close {
    color: white;
}

/*

    Gallery

 */

/*

    Project

 */

.project_detail__plan_link a {
    text-decoration: none;
    color: var(--orange-color-light);
    border-bottom: 1px solid var(--orange-color-light);
    padding-bottom: .25rem;
}

.project_detail__plan_link a:hover {
    text-decoration: none;
    color: var(--orange-color);
    border-bottom: 1px solid var(--orange-color);
}

.tricon-owl {
    position: relative; /* ensure nav is positioned relative to the carousel root */
}

.tricon-owl .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: 0;
    display: block; /* we'll position individual buttons */
    pointer-events: none; /* allow clicks only on buttons */
}

.tricon-owl .owl-nav .owl-prev,
.tricon-owl .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 8px 12px;
    border-radius: 999px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tricon-owl .owl-nav .owl-prev {
    left: 8px;
}

.tricon-owl .owl-nav .owl-next {
    right: 8px;
}

.tricon-owl .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.tricon-owl .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.tricon-owl .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.tricon-owl .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.tricon-owl .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tricon-owl .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.tricon-owl .owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item img {
    width: auto;
    height: 100%;
}

.project_detail__unit_container {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.project_detail__unit_container_table {
    width: 100%;
    margin: 0 auto;
    color: #777;
}

.project_detail__unit_container_table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.project_detail__unit_container_table th {
    color: var(--orange-color);
}

.project_detail__unit_container_table td, .project_detail__unit_container_table th {
    width: max-content;
    text-align: center;
    padding: .5rem 1rem;
    border: 1px solid var(--shadow-color-light);
}

.project_detail__unit_container_table tr:first-child th {
    border-top: none;
}

.project_detail__unit_container_table tr:last-child td {
    border-bottom: none;
}

.project_detail__unit_container_table tr td:first-child, .project_detail__unit_container_table tr th:first-child {
    border-left: none;
}

.project_detail__unit_container_table tr td:last-child, .project_detail__unit_container_table tr th:last-child {
    border-right: none;
}

.project_detail__unit_container_table tr.unit-sold {
    background-image: repeating-linear-gradient(-30deg, var(--orange-color-lighter), var(--orange-color-lighter) 2px, white 2px, white 10px);
}

/* Themed outline primary button - keep this isolated so it can be reverted independently */
.btn-outline-primary {
    color: var(--orange-color) !important;
    background-color: transparent !important;
    border-color: var(--orange-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff !important;
    background-color: var(--orange-color) !important;
    border-color: var(--orange-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(242, 141, 1, 0.12) !important;
}

.btn-outline-primary:active,
.btn-outline-primary.active {
    color: #fff !important;
    background-color: var(--orange-color-light) !important;
    border-color: var(--orange-color-light) !important;
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: var(--orange-color-light) !important;
    border-color: var(--orange-color-light) !important;
    background-color: transparent !important;
}


@media screen and (max-width: 576px) {

    .project_detail__unit_container {
        overflow-x: auto;
        margin: 3rem auto;
        width: 100%;
    }

    .project_detail__unit_container_table {
        overflow-x: auto;
        font-size: .8rem;
    }

    /* width */
    .project_detail__unit_container_table::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    /* Track */
    .project_detail__unit_container_table::-webkit-scrollbar-track {
        background: var(--white);
    }

    /* Handle */
    .project_detail__unit_container_table::-webkit-scrollbar-thumb {
        background: var(--orange-color);
    }

    /* Handle on hover */
    .project_detail__unit_container_table::-webkit-scrollbar-thumb:hover {
        background: var(--orange-color-light);
    }

    .project_detail__unit_container_table th {
        min-width: 70px;
    }

    .project_detail__unit_container_table th, .project_detail__unit_container_table td {
        padding: .5rem .25rem;
    }
}

/*

    Contact

 */

.form-control:disabled, .form-control:read-only {
    background: #fff;
    opacity: 1;
}

.form-control:focus {
    color: gray;
    background-color: #fff;
    border-color: var(--orange-color-lighter);
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--orange-color-lightest);
}


/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);

}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free", serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    border: none;
    border-radius: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: none;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        border-radius: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (min-width: 992px) {
    /* Center the dropdown horizontally relative to its parent .nav-item */
    .navbar .nav-item.dropdown {
        position: relative; /* ensure positioning context */
    }

    .navbar .nav-item.dropdown .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
}

.navbar .navbar-nav .nav-link {
    font-size: 1.2rem; /* modest increase */
    letter-spacing: 0.01em;
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-radius: 0 50px 50px 0;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-radius: 50px 0 0 50px;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }


    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)) no-repeat center top;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}

/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}

/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}

/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)) no-repeat center top;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}

.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon {
    left: -25px;
}

/*** Team End ***/


/*** testimonial Start ***/


.testimonial-item {
    border: solid 1px;
    border-color: lightgray;
    border-radius: 0;
}

/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-light);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

.footer .required-links a {
    color: var(--bs-light);
    transition: 0.5s;
}

.footer .required-links a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

.banner__container {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 3;
}

.banner__background_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.banner__logo {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-filter: drop-shadow(5px 5px 5px var(--shadow-color-normal));
    filter: drop-shadow(5px 5px 2px var(--shadow-color-normal));
}

.banner__go_down_button {
    width: 5vw;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background-color: var(--dark-color-3-4);
    padding: 1rem 3rem;
    border: 1px solid var(--orange-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 300ms ease-out;
    transform-origin: center;

}

.banner__go_down_button:hover {
    background-color: var(--orange-color);
    cursor: pointer;
}


.nav_bar_short__container {
    background-color: var(--dark-color);
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;
    filter: drop-shadow(0px 5px 5px var(--shadow-color-black));
}

.nav_bar_short__nav_item {
    padding: 1rem;
}

.nav_bar_short__nav_item:hover a {
    color: var(--orange-color-light);
}

.nav_bar_short__active a {
    color: var(--orange-color) !important;
}

.nav_bar_short__nav_item a {
    text-decoration: none;
    color: var(--white);
}

.main_content__container {
    position: relative;
}

.nav_bar_short__container {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

.nav_bar_short__burger {
    width: 0;
    height: 0;
    padding: 0;
    display: none;
}

.nav_bar_short__close_button {
    display: none;
}


.pillars__container {
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    padding: 2rem 2rem;
    background-color: var(--bs-dark);
    z-index: 3;
}

.pillars__item {
    width: 100%;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
}

.pillars__item:hover {
    border: 2px solid var(--orange-color);
    cursor: pointer;
}

.pillars__item:hover .pillars__item_label_container {
    background-color: var(--orange-color);
    color: var(--white)
}

.pillars__item:hover .pillars__item_background {
    transform: scale(1.05);
}

.pillars__item_background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
    transition: transform 300ms ease-in;
}

.pillars__item_label_container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-3-4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0 0 3px 3px;

}

.content_block {
    width: 100%;
    min-height: 60vh;
}

.content_block__black {
    background-color: var(--bs-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content_block__white {
    box-shadow: inset 0 0 7px 4px var(--shadow-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.project_detail__carrousel_container {
    width: 50%;
    aspect-ratio: 16/9;
    margin: 2rem auto;
    overflow: hidden;
    background-color: var(--shadow-color-light);
    position: relative;
    border-radius: 10px;
}

.project_detail__carrousel_item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transform: translateX(-100%);
    transition: transform 100ms ease-out;
}

.project_detail__carrousel_item_shown {
    transform: translateX(0)
}

.project_detail__carrousel_tracker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    background-color: hsla(0, 0%, 20%, 0.85);
    padding: .5rem;
    font-size: .5rem;
}

.project_detail__carrousel_tracker_item {
    width: max-content;
    color: var(--white);
}

.project_detail__carrousel_controls {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--white);
    gap: 1rem;
    padding: .5rem;
    font-size: .65rem;
    background-color: hsla(0, 0%, 20%, 0.85);
}

.project_detail__tracker_item_active {
    color: var(--orange-color);
}

.project_detail__tracker_item_active_light {
    color: var(--orange-color-light);
}

.project_detail__carrousel_control_icon {
    /* width: .5vw; */
    /* height: .5vw; */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    filter: drop-shadow(1px 1px 1px var(--shadow-color-black));
}

.project_detail__carrousel_control_icon:hover {
    color: var(--orange-color);
}

.project_detail__text_part {
    width: 35%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.project_detail__text_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project_detail__text_header h1 {
    color: var(--shadow-color-normal);
}

.project_detail__text_header h3 {
    color: var(--orange-color)
}

.project_detail__plan_link a {
    text-decoration: none;
    color: var(--orange-color-light);
    border-bottom: 1px solid var(--orange-color-light);
    padding-bottom: .25rem;
}

.project_detail__plan_link a:hover {
    text-decoration: none;
    color: var(--orange-color);
    border-bottom: 1px solid var(--orange-color);
}

.project_detail__unit_container {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.project_detail__unit_container_header {
    margin: 1rem auto;
    width: max-content;
}

.project_detail__unit_container_table {
    width: 100%;
    margin: 0 auto;
    color: #777;
}

.project_detail__unit_container_table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.project_detail__unit_container_table th {
    color: var(--orange-color);
}

.project_detail__unit_container_table td, .project_detail__unit_container_table th {
    width: max-content;
    text-align: center;
    padding: .5rem 1rem;
    border: 1px solid var(--shadow-color-light);
}

.project_detail__unit_container_table tr:first-child th {
    border-top: none;
}

.project_detail__unit_container_table tr:last-child td {
    border-bottom: none;
}

.project_detail__unit_container_table tr td:first-child, .project_detail__unit_container_table tr th:first-child {
    border-left: none;
}

.project_detail__unit_container_table tr td:last-child, .project_detail__unit_container_table tr th:last-child {
    border-right: none;
}

.project_detail__unit_progress_bar {
    width: 100%;
    margin: 2rem auto;
}

.project_detail__unit_progress_bar h4 {
    text-align: center;
}

.project_detail__unit_progress_container {
    width: 100%;
    height: 1.5rem;
    border: 1px solid var(--orange-color);
    margin: 1rem auto;
    position: relative;
}

.project_detail__unit_progress_fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    background-color: var(--orange-color);
}

.project_detail__unit_location {
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav_bar__mobile_close_button {
    display: none;
}

.nav_bar__burger_bar {
    display: none;
}

.theme_overview__item {
    position: relative;
    padding: 0.6rem 0;
}

.theme_overview__image_container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 5px;
}

.theme_overview__item:hover .theme_overview__item_image {
    transform: scale(1.2);
}

.theme_overview__item_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 250ms ease-in-out;
    border-radius: 5px;
}

.theme_overview__item_title {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    padding: .5rem 2rem;
    color: var(--white);
    background-color: #333333d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme_overview__item_title b {
    font-size: 2rem;
}

.theme_overview__item_title a {
    color: var(--orange-color-light);
    text-decoration: none;
    border-bottom: 1px solid var(--orange-color);

}

.theme_overview__item_title a:hover {
    color: var(--orange-color);
}

.carriage_menu__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 25%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4rem 8rem;
    transition: transform 75ms ease-out, opacity 75ms ease-out;
    transform: translateY(100px);

}

.carriage_menu__visible {
    transform: translateY(0%);
}

.carriage_menu__footer_visible {
    top: 0;
    opacity: 0;
    /* bottom: 0; */
    /* transform: translateY(-100%); */
}


.carriage_menu__sub_container {
    width: 100%;
    padding: 0 2rem 2rem 2rem;
    min-height: 30vh;
    /* box-shadow: inset 0px 0px 5px 0px var(--shadow-color-light); */
    border-left: 1px solid var(--orange-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.carriage_menu__body {
    margin-left: 2rem;
}

.carriage_menu__header {
    border-bottom: 1px solid var(--shadow-color-light);
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
}

.carriage_menu__body_item {
    margin: 0.75rem 0;
}

.carriage_menu__body_item:hover {
    color: var(--orange-color);
    cursor: pointer;
}

.video_block__header {
    color: var(--dark-color);
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-left: 2px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.video_block__container {
    width: 70%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5rem;
}

.video_block__text_part {
    width: 100%;
}

.video_block__container iframe {
    aspect-ratio: 16/9;
}

.square_images_list_row__header {
    color: var(--white);
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-left: 2px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.square_images_list_row__container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 4rem;
}

.square_images_list_row__image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 100ms ease-out;
    position: relative;
}

.square_images_list_row__image h3 {
    position: absolute;
    top: 5px;
    left: 5px;
    color: white;
    font-weight: bolder;
    filter: drop-shadow(1px 1px 2px var(--dark-color));
}

.square_images_list_row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 100ms ease-out;
}

.square_images_list_row__image:hover {
    border: 1px solid var(--orange-color);
    /* transform: rotate(45deg); */
}

.square_images_list_row__image:hover img {
    transform: scale(1.3);
}

.square_images_grid__header {
    color: var(--white);
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-left: 2px solid var(--orange-color);
    padding: 1rem;
    font-weight: bold;
}

.square_images_grid__container {
    width: 100%;
    margin: 4rem 0;
    aspect-ratio: 1/1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}

.square_images_grid_image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.square_images_grid_image h3 {
    position: absolute;
    top: 5px;
    left: 5px;
    font-weight: bolder;
    color: white;
    filter: drop-shadow(1px 1px 2px var(--dark-color));
}

.square_images_grid_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 100ms ease-out;
}

.square_images_grid_image:hover img {
    transform: scale(1.2);
}

@media (min-width: 992px) {
    #square_images_grid__image_1 {
        grid-row: 1 / span 2;
        grid-column: 1 / span 2;
    }

    #square_images_grid__image_4 {
        grid-column: 1 / span 2;
    }
}

.dynamic_banner__container {
    width: 100%;
    padding: 2rem;
}

.dynamic_banner__image_container {
    width: 100%;
    height: 70vh;
    border-radius: 15px;
    filter: drop-shadow(5px 5px 8px var(--dark-color-half));
}

.dynamic_banner__image_container div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 15px;
    position: relative;
}

.dynamic_banner__text_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    opacity: 0;
    transition: opacity 1000ms linear;
    font-size: 3rem;
    filter: drop-shadow(2px 2px 1px var(--dark-color));
    text-align: center;
    width: 80%;
    padding: 1rem;
}

.dynamic_banner__text_overlay_visible {
    opacity: 1;
}

.contact__main_content_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    padding: 2rem;
    margin: 0 auto;
    gap: 2rem;
}

.contact__main_content_left {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.contact__main_content_left h3 {
    text-align: center;
}

.contact__main_content_left form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.contact__main_content_left label {
    width: 100%;
    text-align: left;
}

.contact__main_content_left input[type="text"] {
    width: 100%;
    border: 1px solid #ccc;
    padding: .25rem;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact__main_content_left select {
    width: 100%;
    border: 1px solid #ccc;
    padding: .25rem;
    font-size: 1.1rem;
    border-radius: 2px;
    background-color: white;
    color: grey;
}

.contact__main_content_left textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: .25rem;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact__main_content_left input[type="submit"] {
    padding: .5rem 1rem;
    background-color: var(--orange-color);
    color: var(--white);
    border: none;
    border-radius: 3px;
}

.contact__main_content_right {
    width: 60%;
    height: 100%;
    position: relative;
}

.contact__main_content_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact__form_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.address__square_content {
    width: 200px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: var(--white-3-4);
    padding: 1rem;
    text-align: center;
}

.about_us {
    padding: 2rem;
}

.about_us__banner_image {
    width: 75%;
    aspect-ratio: 16/9;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.about_us__banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 1px 1px 5px 1px #CCC;
}

.about_us__text_block {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.about_us__avatars {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.about_us__avatars_grid {
    display: grid;
    grid-template-columns: [col] 1fr [col] 1fr [col] 1fr [col] 1fr;
    gap: 4rem;
}

.about_us__avatars_grid_item {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.avatars_grid_item__image_container {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    overflow: hidden;
}

.avatars_grid_item__image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about_us__avatars_grid_item p {
    text-align: center;
}

@media screen and (max-width: 2559px) {
    .footer__container {
        font-size: unset;
    }

    .carriage_menu__container {
        padding: 2rem 4rem;
    }
}

@media screen and (max-width: 1440px) {
    .carriage_menu__container {
        padding: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .footer__logo {
        width: 50%;
        height: 15vh;
    }

    .footer__contact, .footer__location, .footer__other {
        width: 50%;
    }

    .nav_bar__logo_block {
        width: 20%;
    }

    .project_detail__carrousel_container {
        width: 60%;
    }

    .project_detail__text_part {
        width: 50%;
    }

    .project_detail__unit_container {
        overflow-x: auto;
    }

    .square_images_list_row__container {
        width: 70%;
        padding: 1rem;
        gap: 1rem;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .contact__main_content_container {
        width: 100%;
    }

    .about_us__banner_image {
        width: 70%;
    }

    .about_us__text_block {
        width: 70%;
    }

    .about_us__avatars {
        width: 70%;
    }

    .about_us__avatars_grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .pillars__container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars__item:nth-of-type(3) {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    .footer__logo {
        width: 50%;
        height: 15vh;
    }

    .footer__contact, .footer__location, .footer__other {
        width: 50%;
    }

    .nav_bar__burger_bar {
        display: none;
    }

    .nav_bar__mobile_close_button {
        display: none;
    }

    .nav_bar__logo_block {
        width: 20%;
    }

    .project_detail__carrousel_container {
        width: 70%;
    }

    .project_detail__text_part {
        width: 60%;
    }

    .project_detail__unit_container {
        overflow-x: auto;
    }

    .square_images_list_row__container {
        width: 100%;
        padding: 1rem;
        /* flex-direction: column; */
        gap: 1rem;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .square_images_list_row__image:hover {
        transform: unset;
    }

    .square_images_list_row__image:hover img {
        transform: unset;
    }

    .square_images_grid__container {
        padding: 2rem 1rem;
        margin-bottom: 0;
    }

    .contact__main_content_container {
        flex-direction: column;
    }

    .contact__main_content_left {
        width: 100%;
    }

    .contact__main_content_right {
        width: 100%;
    }

    .contact__main_content_container {
        width: 100%;
    }

    .about_us__banner_image {
        width: 99%;
    }

    .about_us__text_block {
        width: 99%;
    }

    .about_us__avatars {
        width: 99%;
    }

    .about_us__avatars_grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .nav_bar_short__container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        flex-direction: column;
        gap: 0;
        display: none;
    }

    .nav_bar_short__burger {
        position: relative;
        width: 100%;
        height: max-content;
        padding: 1rem;
        display: block;
        background-color: var(--dark-color);
        color: var(--white);
        filter: drop-shadow(0 1px 3px var(--shadow-color-normal));
        z-index: 10;
    }

    .nav_bar_short__close_button {
        position: absolute;
        top: 1vh;
        right: 1vh;
        color: var(--orange-color);
        font-size: 1.75rem;
        width: 8vw;
        height: 8vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav_bar_short__container_shown {
        display: flex;
    }

    .banner__logo {
        width: 70%;
    }

    .pillars__container {
        display: flex;
        flex-direction: column;
        height: max-content;
    }

    .pillars__item {
        height: 30vh;
    }

    .footer__logo {
        width: 70%;
        height: 15vh;
    }

    .footer__contact, .footer__location, .footer__other {
        width: 100%;
    }

    .project_detail__unit_container {
        width: 100%;
    }

    .project_detail__unit_container_table {
        overflow-x: auto;
        font-size: .8rem;
    }

    /* width */
    .project_detail__unit_container_table::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    /* Track */
    .project_detail__unit_container_table::-webkit-scrollbar-track {
        background: var(--white);
    }

    /* Handle */
    .project_detail__unit_container_table::-webkit-scrollbar-thumb {
        background: var(--orange-color);
    }

    /* Handle on hover */
    .project_detail__unit_container_table::-webkit-scrollbar-thumb:hover {
        background: var(--orange-color-light);
    }

    .project_detail__unit_container_table th {
        min-width: 70px;
    }

    .project_detail__unit_container_table th, .project_detail__unit_container_table td {
        padding: .5rem .25rem;
    }

    .nav_bar__burger_bar {
        width: 100%;
        height: max-content;
        padding: 1rem;
        display: block;
        background-color: var(--dark-color);
        color: var(--white);
        filter: drop-shadow(0 1px 3px var(--shadow-color-normal));
        z-index: 10;
    }

    .nav_bar__container {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 98;
    }

    .nav_bar__mobile_close_button {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 2rem;
        height: 2rem;
        z-index: 99;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--orange-color);
    }

    .nav_bar__mobile_visible {
        display: flex;
    }

    .nav_bar__general_links_container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav_bar__pages_container {
        flex-direction: column;
        box-shadow: inset 0 0 5px 2px var(--shadow-color-black);
        flex-grow: 2;
        background-color: var(--dark-color);
        justify-content: flex-start;
    }

    .nav_bar__logo_block {
        width: 50%;
    }

    .project_detail__carrousel_container {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .project_detail__text_part {
        width: 85%;
        gap: 1rem;
    }

    .project_detail__text_part h1 {
        text-align: center;
    }

    .project_detail__text_header {
        gap: 1rem;
    }

    .project_detail__unit_container {
        margin: 3rem auto;
    }

    .project_detail__unit_location {
        width: 85%;
    }


    .project_detail__unit_progress_container {
        height: 1rem;
    }

    .project_detail__carrousel_controls {
        font-size: 1rem;
        height: fit-content;
        gap: 2rem;
    }

    .theme_overview__item_title {
        bottom: 0;
        border-radius: 0 0 5px 5px;
    }

    .theme_overview__item_title b {
        font-size: 1.3rem;
    }

    .theme_overview__item_title a {
        font-size: .8rem;
    }

    .video_block__container {
        width: 90%;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .square_images_list_row__container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 6rem 1rem 1rem;
    }

    .square_images_list_row__image:hover {
        transform: unset;
    }

    .square_images_list_row__image:hover img {
        transform: scale(1.2);
    }

    .dynamic_banner__container {
        padding: 1rem;
    }

    .dynamic_banner__text_overlay {
        font-size: 1.5rem;
    }

    .square_images_grid__container {
        width: 100%;
        padding: 1rem;
        margin-bottom: 0;
        margin-top: 5rem;
    }

    .about_us {
        padding: 1rem;
    }

    .about_us__banner_image {
        width: 100%;
    }

    .about_us__text_block {
        width: 100%;
    }

    .about_us__avatars {
        width: 100%;
    }

    .about_us__avatars_grid {
        grid-template-columns: [col] 1fr;
        gap: 5rem;
    }
}

@media screen and (max-width: 992px) {
    .faq-block-section .faq-accordion .accordion-item {
        display: block;
        width: 100%;
    }
}


/* Ensure all content inside the accordion body inherits the readable color (covers headings, strong, etc.) */
.faq-block-section .faq-accordion .accordion-body * {
    color: inherit !important;
}

/* Also ensure links inside dark FAQ bodies are clearly visible (use accent color) */
.faq-block-section.bg-dark .faq-accordion .accordion-body a {
    color: var(--bs-primary) !important;
}

/* Strong dark-mode FAQ readability overrides */
.faq-block-section.bg-dark {
    /* ensure default text color within the block is white */
    color: var(--bs-white) !important;
}

.faq-block-section.bg-dark .faq-accordion .accordion-button,
.faq-block-section.bg-dark .faq-accordion .accordion-body,
.faq-block-section.bg-dark .faq-accordion .faq-question,
.faq-block-section.bg-dark .faq-accordion .accordion-body * {
    color: var(--bs-white) !important;
}

/* Stronger dark-mode typography rules for FAQ block to guarantee contrast */
.faq-block-section.bg-dark h1,
.faq-block-section.bg-dark h2,
.faq-block-section.bg-dark h3,
.faq-block-section.bg-dark h4,
.faq-block-section.bg-dark h5,
.faq-block-section.bg-dark h6,
.faq-block-section.bg-dark p,
.faq-block-section.bg-dark .lead,
.faq-block-section.bg-dark .faq-question {
    color: var(--bs-white) !important;
}

/* Slightly darker translucent panel for clearer contrast on very dark backgrounds */
.faq-block-section.bg-dark .faq-accordion .accordion-button {
    background: rgba(0, 0, 0, 0.15) !important;
}

.faq-block-section.bg-dark .faq-accordion .accordion-body {
    background: rgba(0, 0, 0, 0.08) !important;
}

/* Ensure headings inside accordion-body remain readable */
.faq-block-section.bg-dark .faq-accordion .accordion-body h1,
.faq-block-section.bg-dark .faq-accordion .accordion-body h2,
.faq-block-section.bg-dark .faq-accordion .accordion-body h3,
.faq-block-section.bg-dark .faq-accordion .accordion-body h4,
.faq-block-section.bg-dark .faq-accordion .accordion-body h5,
.faq-block-section.bg-dark .faq-accordion .accordion-body h6 {
    color: var(--bs-white) !important;
}

/* FAQ: chevron indicator using SVG with currentColor so color can be animated */
.faq-block-section .faq-accordion .accordion-button::after {
    content: "";
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
    transform: rotate(0deg);
    opacity: 0.95;
    /* inline SVG uses currentColor for fill so it follows the `color` property */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='currentColor' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

/* Rotate on expanded */
.faq-block-section .faq-accordion .accordion-button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Control icon color via `color` so it animates with the text */
.faq-block-section .faq-accordion .accordion-button {
    color: var(--dark-color);
    transition: color 0.22s ease, background 0.22s ease;
}

/* Expanded state: orange left border and orange icon/text */
.faq-block-section .faq-accordion .accordion-button[aria-expanded="true"] {
    border-left-color: var(--orange-color) !important;
    color: var(--orange-color) !important; /* icon (currentColor) follows */
    font-weight: 600;
    background: #fbfbfb;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Accordion button & body overrides for better contrast */
/* Make both collapsed and expanded button states readable */
.faq-block-section.bg-dark .accordion-button {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Dark mode: keep icon/text white when collapsed; orange when expanded */
.faq-block-section.bg-dark .faq-accordion .accordion-button {
    color: var(--bs-white) !important;
}

.faq-block-section.bg-dark .faq-accordion .accordion-button[aria-expanded="true"] {
    color: var(--orange-color) !important;
    border-left-color: var(--orange-color) !important;
}

.faq-block-section, .faq-block-section *,
.tricon-tablist, .tricon-tablist * {
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Accordion item border and rounding */
.faq-block-section.bg-dark .accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    overflow: hidden;
}

.faq-accordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, .125);
}

/* FAQ tablist: reserve left border and apply orange left border when active/expanded */
.faq-block-section .faq-accordion .accordion-button {
    /* reserve space so adding the left border doesn't shift content */
    padding-left: 1rem; /* align text with tricon-tablist */
    transition: border-color .22s ease, color .22s ease, background .22s ease;
}

.faq-block-section .faq-accordion .accordion-button[aria-expanded="true"] {
    border-left: 4px solid var(--orange-color) !important;
    color: var(--orange-color) !important;
    font-weight: 600;
}

/* Scope styles to this section so we don't affect other accordions */
.faq-block-section.bg-dark {
    color: #fff;
}

.faq-block-section.bg-dark a {
    color: #e9ecef;
}

.faq-block-section.bg-dark a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* Collapsed state (closed panels) should not be washed out by Bootstrap defaults */
.faq-block-section.bg-dark .accordion-button.collapsed {
    background-color: transparent !important;
    color: #ffffff !important;
}

/* Expanded state gets a subtle translucent highlight */
.faq-block-section.bg-dark .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

/* Body text and paragraph color for higher contrast */
.faq-block-section.bg-dark .accordion-body,
.faq-block-section.bg-dark .accordion-body p {
    background-color: transparent;
    color: #f1f1f1 !important;
}


/* Focus ring for keyboard users */
.faq-block-section.bg-dark .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.08) !important;
}

/* Ensure the accordion chevron remains visible; increase brightness if needed */
/* Force the accordion chevron to a white SVG using the Bootstrap CSS variable */
.faq-block-section.bg-dark .accordion-button::after {
    /* Use Bootstrap's variable for the accordion icon; inline SVG with white fill */
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='%23ffffff' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-image: var(--bs-accordion-btn-icon) !important;
}
