@charset "UTF-8";
/* CSS Document */
/* ==================================
   RESET / BASE STYLES
================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    box-shadow: none !important;
}
:root {
    /* --background-color: #2d475f;*/
    --background-color: black;
    --body-font-family: 'Roboto Condensed', sans-serif;
    --body-font-size: 1.1rem;
    --body-font-color:black;
   
}
/* #32404F;*/
html {
    scroll-padding-top: 80px; /* Makes scrolling stop 80px before the top of the screen */
    scroll-behavior: smooth;
}
body {
    /*background-color: white;*/
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: white !important;
    color: black;
}
body.lock-scroll {
    overflow: hidden;
}
.lock-scroll {
    overflow: hidden;
}
html, body {
    height: 100%; /* Ensure the parent elements span the full height */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    /*overflow: hidden;*/ /* optional, only if you want to disable background scroll */
}
header {
    position: fixed;
    top: -100px; /* Initially hide the header by positioning it above the viewport */
    width: 100%;
    transition: top 0.5s ease; /* Smooth transition for sliding effect */
    z-index: 1000;
}
/* When the header is visible, slide it down */
header.visible-header {
    top: 0;
}
section {
    padding-top: 40px; /* Adds 40px padding at the top of each section */
    margin-top: -40px; /* Negative margin to offset the padding visually */
}
.row {
    padding: 0;
    margin: 0; /* Corrected: added the dot before 'row' */
}
.container-fluid {
    width: 100vw;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.container {
    max-width: 1200px; /* Standard Bootstrap container width */
    width: 92%;
    margin: 0 auto;
    padding: 0;
}
.render-menu-container {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/*.container-box {
    padding: 0 1rem;
}
.heading-no-space {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}*/
/*article {
    border: 1px solid blue;
}*/
.image-row {
    display: flex;
    gap: 20px; /* Adjust the gap value as needed */
}
/* ==================================
   ELEMENT SELECTORS - SMALL
================================== */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    margin-bottom: 0rem;
    padding: 0;
}
h1 {
    font-size: 4rem;
    line-height: 4.2rem;
    font-weight: 900;
    /*text-transform: uppercase;*/
}
/* h2 ------------ */
h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 300;
    padding-top: 0;
    margin-top: 0;
    color: rgba(0, 0, 0, 0.5);
    text-transform: capitalize;
}

h3 {
    font-size: 1.5rem;
    line-height: 2.1rem;
    font-weight: 500;
    padding-bottom: 0rem;
}
h4 {
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 500;
}
h6 {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 300;
}
p {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 0;
    font-weight: 300;
    color: inherit;
    padding-bottom: 1rem;
}
table {
  width: 100%;
  color: inherit;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  border-collapse: collapse;
}

th {
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}

td {
  font-weight: 300;
  line-height: 1.3rem;
  padding: 0.4rem 0;
}

tr {
  line-height: 1.3rem;
  border-bottom: 0.5px dotted currentColor;
}

tr:last-child {
  border-bottom: none;
}

/* Optional utility class if needed */
.table-condensed-font {
  font-family: 'Roboto Condensed', sans-serif;
}


blockquote {
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 3rem;
    color: #b96808;
    line-height: 2.8rem;
    padding: 5rem;
    margin: 0 auto; /* centers it horizontally */
}
/* ==================================
   BOXES - SMALL
================================== */
.h2-box {
    padding: 20rem 0 3rem 0;
}
.h3-align {
    text-align: justify;
}
.h3-box {
    padding: 4rem 0 4rem 0;
    margin-bottom: 0;
}
h3 strong {
    font-weight: 800;
}
.p-caption {
    font-size: .75rem;
    line-height: 1.25rem;
    padding: .5rem 0 .25rem 0;
    margin: 0;
    font-weight: 300;
    color: inherit;
}
.box {
    padding: 0rem;
}
/* ==================================
   TEXT OVERLAY AND LOGO
================================== */
.bottom-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 150px; /* adjust as needed */
    padding-bottom: 1rem;
}
.text-overlay {
    z-index: 2;
    color: white;
}
.full-width-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}
.bottom-logo {
    max-width: 120px;
}

/* ==================================
    NAVBAR
================================== */

/*-----------------------------------------------------
Navbar
-----------------------------------------------------*/
/* ==================================
    Navbar
================================== */
.navbar {

    background-color: black;
  border-bottom: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 40px;

    background-color: black;
  color: white;
  padding: 0 !important;
  margin: 0 !important;
}

.navbar-brand img {
  display: block;
  margin: 0;
  padding: 0;
}

.navbar-collapse {
    background-color: black;
    width: 100%;
    border-top: 1px solid white;
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba(255, 255, 255, 1)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}
@media (max-width: 768px) {
/*    .responsive-boxes {
        flex-direction: column; 
    }
    .border-sm-only {
        border: 1px dotted white; 
    }
    .responsive-boxes .box {
        padding: 0; 
    }*/
   .navbar {
        width: 100%;
        border-bottom: 1px solid white;
    }
    .navbar-collapse {
        width: 100%;
        margin-left: 0;
        background-color: var(--background-color);
        background-color: black;
        border-left: none;
    }
    .navbar-nav {
        flex-direction: column; 
        align-items: flex-start; 
        width: 100%; 
        padding: 0;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        width: 100%; 
        text-align: left; 
        padding: 10px 15px;
        box-sizing: border-box; 
    }
   .nav-item.parent-active .nav-link,
.nav-link.active {
    background-color: yellow; /* White background */
    color: green;            /* Black text */
    box-shadow: none;
}
    }

    .navbar-toggler {
        position: relative;
        z-index: 1060; 
        border: 1px solid white; 
    }
}
#second-row {
  
  background-color: black;
  padding: 0;
  margin: 0;
  border-top: 1px dashed white; /* optional visual separation */
}
#second-row ul {
  margin: 0;
  padding: 0.25rem 0; /* slight vertical spacing if needed */
}
/* ==================================
    Shared Buttons and Links
================================== */
strong{
    font-weight: 700;
    color: black;
   
}
strong-white{
    font-weight: 700;
    color: white;
}
/* ==================================
    Shared Buttons and Links
================================== */
/* Base button styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: .5rem;
  margin-right: 1px;
    margin-bottom: 2px;
  height: 1.5rem;
  line-height: 1rem;
  background-color: white;
  color: white;
    color:black;
  border: 1px solid black;
  border-radius: 0px;
  font-size: .8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
    opacity: .5;
}

/* Hover and focus behavior */
.btn:hover,
.btn:focus {
  background-color: white;
  color: black;
    background-color: black;
    color: white;
  border: 1px solid inherit;
    opacity: 1;
}

/* Active or selected state */
.btn.active,
.btn:active {
  background-color: black !important;
  color: white !important;
  border: 1px solid black !important;
  box-shadow: none;
    opacity: 1;
}

/*.custom-menu-button {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    margin-bottom: 0 !important;
  }

  .render-menu-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .render-menu-container h2 {
    margin-bottom: 0.5rem;
  }*/
/* ==================================
    Accordion
================================== */
#accordionnyc {
  background-color: transparent;
  color: white;
  border: none;
}

.accordion-item {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
}

.accordion-header {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.accordion-button {
  display: block;
  width: 100%;
  padding: .25rem 0;
  background-color: transparent;
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
line-height: 1.5rem;
font-weight: 500;
  border: 1px solid black;
  border-radius: 0 !important;
  text-align: center;
  margin: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
  background-color: white;
  color: black;
}

.accordion-button:hover .fw-bold,
.accordion-button:not(.collapsed) .fw-bold,
.accordion-button:hover .p-caption,
.accordion-button:not(.collapsed) .p-caption {
  color: black;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-body {
  background-color: rgba(0, 0, 0, 0.1); /* 10% white */
  padding: 1rem 1rem 2rem;
  text-align: left;
  border-radius: 0;
  border: 1px solid black;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--body-font-color);
  line-height: 1.4;
}

.accordion-body p,
.accordion-body li,
.accordion-body small,
.accordion-body .p-caption {
  margin-bottom: 0.25rem;
}

.accordion-body a {
  color: orange;
  text-decoration: underline;
}
.accordion-light .accordion-button,
.accordion-light .accordion-body,
.accordion-light .accordion-header {
  color: black;
  background-color: white;
  border-color: black;
}

.accordion-dark .accordion-button,
.accordion-dark .accordion-body,
.accordion-dark .accordion-header {
  color: white;
  background-color: black;
  border-color: white;
}

.accordion-dark .accordion-button:not(.collapsed) {
  background-color: #111;
  color: white;
}
/* ==================================
    CARDS
================================== */
.card{
    font-family: 'Roboto Condensed', sans-serif;
}
.card-title,
.card-body,
.card-text {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1rem;
  color: black;
}
.card-title{
    text-transform: uppercase;
}
.font-condensed {
  font-family: 'Roboto Condensed', sans-serif;
}
.wrap-img {
  float: left;
  margin: 0 1rem 1rem 0;
  max-width: 40%;
  height: auto;
}
/* ==================================
    TABLES
================================== */
@media (min-width: 768px) {
  .col-l {
    padding-right: 2rem;
  }
}
/*-- popup ---------------------------------------------------------------------------- */
/* Common title styling for modal and openPopup */
.common-title {
    font-size: 1.5rem; /* Match modal title size */
    font-weight: 400; /* Match modal title weight */
    color: white; /* Match modal title color for dark theme */
    line-height: 1.2;
    text-align: left;
}
/* Specific styling for openPopup buttons */
.openPopup {
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    line-height: inherit;
    text-align: inherit;
    border: none;
    transition: all 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    padding: 0; /* Ensures no extra padding is added */
    margin: 0; /* Prevents extra margins */
    width: 100%; /* Ensures button spans the full width of the parent container */
    max-width: 100%; /* Prevents overflow */
    height: auto; /* Makes the height responsive to content */
}
.openPopup img {
    display: block; /* Eliminates extra inline spacing */
    padding: 0; /* Removes any additional padding */
    margin: 0 auto; /* Centers the image horizontally */
    max-width: 100%; /* Keeps the image responsive */
    height: auto; /* Maintains aspect ratio */
}
.openPopup:hover .img-wrapper, .openPopup:hover .popup-title-wrapper {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.openPopup-no-border {
    border: none;
}
/* Hover state for openPopup */
.openPopup:hover {
    background-color: red;
    border: 0px solid #ffffff;
    cursor: pointer;
}
.openPopup-title {
    font: 1.2rem;
    font-weight: 500;
    padding: none;
    line-height: 1.2rem;
}
/* new */
.popup-title-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}
.popup-container:hover .popup-title-overlay {
    display: block;
}
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
}
.custom-modal-content {
    margin: 5% auto;
    padding: 1rem;
    width: 90%;
    max-width: 900px;
    position: relative;
}
.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1050;
}
/*check*/
button.openPopup:hover {
    background-color: rgba(255, 255, 255, 0); /* 50% opacity */
    border: 1px solid #0056b3;
    cursor: pointer;
}
.center-vertically {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ==================================
    CLASS SELECTORS - utilities
================================== */
.full-height-section {
    position: relative;
    min-height: 100vh; /* Ensures the section takes up the full viewport height */
}
.full-width {
    width: 100%;
}
.text-right {
    text-align: right;
}
.sizer-90 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.sizer-80-50 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
.sizer-25-50 {
    width: 25%; /* Sets the image width to 25% of its container */
    margin: 0 auto; /* Centers the image horizontally */
    display: block; /* Ensures margin auto works correctly */
}
.sizer-100-75 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.sizer-100-90 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.sizer-60 {
    width: 90%;
    margin: 0 auto; /* Center the element */
    display: block; /* Ensures the element behaves as a block-level element */
    height: auto; /* Maintain aspect ratio for images */
}
.sizer-50 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.scaler-90 {
    transform: scale(1);
    transform-origin: top center;
    display: block;
    overflow: hidden; /* Ensures no extra space around the scaled element */
    margin: 0; /* Removes any margin */
    padding: 0; /* Removes any padding */
}
.scaler-80 {
    transform: scale(0.8);
    transform-origin: center;
}
.scaler-50 {
    transform: scale(0.5);
    transform-origin: center;
}
.image-container {
    position: relative;
    display: inline-block; /* Adjust as needed */
}
.image-container img {
    display: block;
    width: 100%;
    height: auto;
}
/*.image-container {
    position: relative;
    width: 100%; 
}*/
/*.container-fluid.subfooter {
    text-align: center; 
}*/
.img-fluid.sizer-80-50 {
    display: inline-block; /* Necessary for the text-align center to take effect */
}
.max-width-1200 {
    max-width: 1200px;
    width: 100%; /* ensures responsiveness */
    height: auto; /* maintains aspect ratio */
    margin: 0 auto; /* centers the image */
}
.icon-sizer {
    width: 2rem;
    height: auto;
}
/* ==================================
    highlighting
================================== */
.highlight {
    background-color: gold;
    color: #111234;
    padding: 0.05rem;
    border-radius: 0.2em;
}
.highlight2 {
    color: gold;
    font-weight: 500;
}
.section-nav {
    font-size: .5rem;
    color: orange;
    opacity: .5;
    padding-top: .5rem;
    padding-left: 2rem;
}
/* ==================================
    CONTAINER
================================== */
.profile-photo {
    width: 200px;
    height: auto;
    border: 1px solid white;
    padding: 0;
    margin-bottom: 1rem;
    margin-right: 1rem;
}
.profile-container {
    padding-top: 1rem;
    border-bottom: 1px solid;
}
/* Collapsed navbar styles for small screens */
#fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: white;
    z-index: 1000; /* Ensures it stays on top of other content */
}
.text-center {
    text-align: center;
    margin: 20px 0; /* Optional: add some vertical margin */
}
.text-left {
    text-align: left;
}
/* borders */
.border-1-dotted {
    border-bottom: 2px dotted black;
    margin-bottom: 5rem;
}
.border-1-dashed {
    border-bottom: 2px dashed black;
    margin-bottom: 5rem;
}
.border-1-all {
    border: 1px solid white;
}
.border-4{
    border-bottom: 4px solid inherit;
}
.border-bottom-dotted-white {
    border-bottom: 1px dotted white;
    padding-bottom: 3rem; /* Equivalent to Bootstrap's pb-5 */
    margin-bottom: 3rem; /* Equivalent to Bootstrap's mb-5 */
}
.border-bottom-solid-white {
    border-bottom: 1px solid white;
}
/* ==================================
    padding and margin
================================== */
.pb-10{
    padding-bottom: 10rem;
}
.pb-15{
    padding-bottom: 15rem;
}
/* ==================================
    Logo Stuf
================================== */
#sticky-logo {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 9999; /* stays above all other content */
    background: transparent; /* or set a background if needed */
    padding: 0rem;
    border: .5px solid white;
}
#sticky-logo img {
    height: 100px; /* or any size you want */
    width: auto;
}
/* ==================================
    Offcanvas
================================== */
/* Set the background color of the offcanvas body */
.offcanvas {
    z-index: 2000 !important; /* Higher than navbar */
}
/* Optional: Set a background overlay to dim the background when offcanvas is open */
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1049; /* Below offcanvas but above other content */
}
.offcanvas-body {
    background-color: rgba(96, 125, 139, 1.00); /* Bootstrap primary blue color */
    color: white; /* Make the text white for contrast */
    min-height: 100vh;
}
.offcanvas-header {
    padding-top: 100px;
    background-color: rgba(96, 125, 139, 1.00);
    color: white; /* Make the text white for contrast */
}
#offcanvasResponsive {
    background-color: rgba(96, 125, 139, 1.00); /* Set your preferred blue color */
}
/* Mobile */
.offcanvas-end {
    width: 100% !important;
}
/* Base accordion container */
/* Base container */

/* Text captions and custom bullets */
.p-caption, .custom-bullets-small {
    color: white;
}
/* Dotted bottom rule */
.dotted-bottom {
    border-bottom: 1px solid #6c757d;
}
/* ==================================
    Quotes
================================== */
#quote-rotator {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 120px; /* ensures space for the absolute elements */
}

.quote {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  font-size: 1.25rem;
  line-height: 1.6;
  z-index: 0;
}

.quote.active {
  opacity: 1;
  z-index: 1;
  position: absolute;
}

.quote span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.7;
}





/* ==================================
    Overlays and Captions
================================== */
.hide {
    display: none !important;
}
@keyframes slideOffScreen {
    from {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -200%); /* Move off the screen upwards */
        opacity: 0; /* Optional: Fade out */
    }
}
/* Add a hidden class that triggers the slide-off animation */
.position-relative {
    position: relative; /* Ensures children like article are positioned relative to this */
}
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}
picture, .full-width-image {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.overlay-container {
    position: absolute; /* Position container over the image */
    top: 0; /* Align to the top of the relative parent */
    left: 0;
    right: 0; /* Stretch full width */
    z-index: 10; /* Make sure it's on top of the image */
}
.overlay-article {
    color: white;
    padding: 20px;
    font-size: 2rem;
    background-color: transparent;
}
.caption-container {
    position: absolute; /* Overlay caption on the image */
    bottom: 10px; /* Position 10px from the bottom of the parent */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent; /* Ensure the parent has no background color */
}
.caption-box {
    display: inline-block; /* Box size adjusts to content width */
    background-color: transparent; /* Solid white background */
    /* Text color */
    /* Add a solid border */
    padding: 0.1rem; /* Adjust padding for readability */
    text-align: left; /* Align text inside the box */
    box-sizing: border-box; /* Ensure padding doesn’t expand the width */
    border-radius: 0px; /* Optional: Slightly rounded corners */
    font-size: .75rem; /* Specific font size for the caption box */
    margin: 0; /* Removes space between buttons */
    padding: 0.1rem; /* Reduces padding for smaller buttons */
}
/* ==================================
    Tooltips
================================== */
.tooltip-inner {
    background-color: #2d3e4e;
    color: white;
    border: 0.5px solid white;
    padding: 10px 12px;
    border-radius: 6px;
}
.tooltip .tooltip-arrow {
    width: 1rem;
    height: 1rem;
    color: inherit;
}
/* Sets the arrow color to white for all directions */
.tooltip.bs-tooltip-top .tooltip-arrow::before, .tooltip.bs-tooltip-bottom .tooltip-arrow::before, .tooltip.bs-tooltip-start .tooltip-arrow::before, .tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-color: white !important;
}
/* Inline text style */
.tooltip-highlight {
    color: inherit;
    background-color: rgba(255, 255, 255, 0.15); /* Correct syntax */
    
    outline: 0px solid blue; /* Changed from just 'white' */
    padding: 1px 2px;
    border-radius: 0px;
    font-weight: 400;
}
/* Enlarges the tooltip arrow */
.heading-no-space {
    margin: 0;
    padding: 0;
}
/* -------------- */
.container-fluid.subfooter {
    margin-top: auto; /* Push the footer to the bottom */
}
.content {
    padding-top: 80px;
}
/* Default padding for other pages (Bootstrap's px-3) */
.modal-header.px-3 {
    padding-left: 1rem; /* Bootstrap default, or use px-3 */
    padding-right: 1rem;
}
/* Increased padding for index.php */
.index-page .modal-header {
    padding-left: 1rem !important; /* Adjust as needed */
    padding-right: 1rem !important;
}
/* Increased padding for index.php */
.responsive-boxes {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    margin: 0; /* Reset margin for the flex container */
}
.responsive-boxes .box {
    flex: 1; /* Ensures equal width for both boxes */
    padding: 0rem; /* Default padding for larger screens */
}
.responsive-boxes .box-a {
    padding-right: 1rem; /* Right padding only for large screens */
    padding-left: 0; /* No left padding */
    padding-top: 0rem;
    padding-bottom: 0rem;
}
.responsive-boxes {
    padding-left: 0rem; /* Left padding only for large screens */
    padding-right: 0; /* No right padding */
}
.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10rem 0 5rem 0; /* Match .h2-box padding */
    text-align: left;
    color: white; /* Adjust based on image contrast */
    font-size: 2rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0); /* Optional: Adds background for readability */
    width: 100%; /* Ensure overlay spans the full width */
    box-sizing: border-box; /* Include padding in width calculation */
}
.fade-image-wrapper {
    min-height: 400px; /* Or whatever height your images require */
}
#{$id} .fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}
/* ----index---------------------------------- */
#main {}
#mission {
    background-color: #2d3e4e;
    color: white;
    padding: 0;
}
#objectives {
    background-color: #ffec68;
    background-color: black;
    min-height: 50vh;
    padding: 5rem 0;
    color: #2d3e4e;
    color: white;
}
#strategy {
    background-color: #42566c;
    background-color: white;
    color: white;
    color: black;
    padding: 5rem 0 10rem 0;
    border-bottom: 4px solid black;
}
#strategy-cities, #strategy-economics, #strategy-cluster, #strategy-industry, #strategy-fidi, #strategy-mart {
    background-color: white;
    color: black; 
    padding: 5rem 0 20rem 0;
    border-bottom: 4px solid black;
}
#strategy-complement {
    background-color: #42566c;
    background-color: white;
    color: white;
    color: black;
    padding: 10rem 0 20rem 0;
}
#population-section, #hub-section {
  color: white;
  padding: 1rem 0;
  border-bottom: 2px solid white;
  background-color: rgba(87, 87, 93, 0.7);
  background-image:
    linear-gradient(135deg, #384249 25%, transparent 25%),
    linear-gradient(225deg, #384249 25%, transparent 25%),
    linear-gradient(45deg, #384249 25%, transparent 25%),
    linear-gradient(315deg, #384249 25%, rgba(87, 87, 93, 0.7) 25%);
  background-position: 15px 0, 15px 0, 0 0, 0 0;
  background-size: 15px 15px;
  background-repeat: repeat;
}

#benefits {
    background-color: black;
    color: white;
    min-height: 100vh;
    padding: 5rem 0 10rem 0;
}
/* general ------------------------------------------------------------*/
#footer {
    position: relative; /* Establish stacking context */
    min-height: 25vh;
    overflow: hidden; /* Ensures no overflow from child elements */
    background-color: #465665;
    color: white;
}
/* events ------------------------------------------------------------*/
#events {
    background-color: yellow;
    color: white;
}
#events-intro {
    padding-top: 10rem;
    background-color: #2F3440;
    color: white;
    border-bottom: 1px solid red;
}
#events-next, #events-upcoming, #events-worldsfair {
    background-color: #2F3440;
    color: white;
    border-bottom: 1px solid red;
}
/* podcasts ------------------------------------------------------------*/
#podcasts {
    background-color: #2F3440;
    color: white;
    padding-top: 10rem;
}
/* podcasts ------------------------------------------------------------*/
#revenue-program, #revenue-exhibits, #revenue-naming, #revenue-events, #revenue-admissions, #revenue-content, #revenue-contributions, #revenue-ooh, #revenue-metaverse{
     background-color: #2F3440;
    color: white;
    padding: 5rem 0 10rem 0;
    border-bottom: 2px solid white;
}



/* podcasts ------------------------------------------------------------*/
#appendix, #revenues, #incubator, #industries, #mart, #venue, {
    background-color: #2F3440;
    color: white;
    padding: 10rem;
    min-height: 100vh;
}
#fidi-intro {
    color: white;
    background-image: url("../visual/maps/new/fidi-area-white.svg"); /* SVG image */
    background-color: #2F3440;
    background-size: cover; /* Set both width and height to 150px */
    background-position: top left; /* Ensure top-left positioning */
    background-repeat: no-repeat; /* Repeat the image */
    opacity: 1; /* Keep container fully opaque */
    min-height: 100vh;
    border-bottom: 1px solid white;
}
/*#intro {
    padding: 10rem 0 0 0;
    min-height: 100vh;
}*/
/* For sections inside container-fluid */
#industries-intro, #industries-transportation, #industries-buildings, #industries-power, #industries-energy, #industries-water, #industries-wastewater, #industries-consumer, #industries-agriculture, #industries-garbage, #industries-digital, #industries-intelligence {
    padding: 5rem 0 10rem;
    background-color: #42566c;
    border-bottom: 1px solid inherit;
    color: white;
}
#venue-intro, #venue-office, #venue-retail, #venue-land, #venue-public, #venue-education, #venue-assets, #venue-pops, #venue-streets, #venue-alley, #venue-hubs, #venue-virtual {
    padding: 5rem 0 10rem;
    background-color: #42566c;
    color: white;
}

/* industries -------------------------------------------------------------- */
/* venue -------------------------------------------------------------- */
/*#venue-hubs {
    min-height: 100vh;
}*/
#fidi-intro {}
# {
    display: flex;
    justify-content: space-between; /* Adds spacing between the columns */
    flex-wrap: nowrap; /* Prevents the columns from wrapping */
}
/* ==================================
    sizer
================================== */
.image-row {
    display: flex;
    justify-content: space-between; /* Evenly distribute the columns */
    align-items: flex-start; /* Align images to the top */
}
.column {
    flex: 1 1 33.33%; /* Each column takes up 1/3 of the row width */
    padding: 5px; /* Add padding between the columns */
    box-sizing: border-box; /* Include padding in the column's width */
}
.flex-image {
    width: 100%; /* Make the image take the full width of the column */
    height: auto; /* Keep the aspect ratio */
    display: block; /* Remove any space below the image */
    /*border: 1px solid white;  Add a white border around the images */
    margin-bottom: 10px;
}
/* ==================================
    hide
================================== */
.show-small {
    display: block !important;
}
.hide-small {
    display: none !important;
}
}
.full-width-title-bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* 20% white */
    border-bottom: 1px solid white; /* match the opacity */
}
/* ==================================
   info box
================================== */
.dotted-bottom {
    border-bottom: 1px dotted white !important;
}
.info-box {
    padding: 1rem;
    margin: 0;
    border: 1px solid black; /* specify a border color */
    border-radius: 0;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    line-height: 1.3rem; /* improved readability */
}

.info-box-outline {
    padding: 1rem;
    border: 1px solid black;
}

/* Target all child elements and force inherit */
.img-wrapper {
    transition: transform 0.3s ease;
    width: 100%;
    overflow: hidden;
    display: block;
}
.img-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    background-color: transparent;
}
/* ==================================
    WAVES
================================== */
/* ==================================
    ID SELECTORS
================================== */

@media (min-width: 768px) {
    /* Padding and Layout Adjustments */
    h1 {
        font-size: 9rem;
        line-height: 9rem;
        font-weight: bolder;
    }
    h2 {
        font-size: 3.2rem;
        line-height: 4rem;
    }
    .h2-box {
        padding: 10rem 0 5rem 0;
        /* border: 1px solid red; */ /* Uncomment for debugging */
    }
    .container {
        width: 98%;
    }
    /* Logo Sizes */
    .logo {
        max-width: 6rem;
        height: auto;
    }
    h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }
    h6 {
        font-size: 1.2rem;
        line-height: 1.8rem;
        font-weight: 400;
        margin: 0;
        padding: 0;
    }
    p {
        font-family: "Roboto", sans-serif;
        font-size: 1.2rem;
        line-height: 2.2rem;
    }
    
   /* ==================================
Buttons for large
================================== */ 
    .custom-menu-button {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
    .box {
    padding: 5rem;
}
    .btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5px 5px;
  margin: 2px 0;
  /*height: 34px;*/
  border: 1px solid black;
  border-radius: 0;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
/* ==================================
ID SELECTORS for large
================================== */
 #strategy {
    padding: 10rem 0 20rem 0;
    
}
#strategy-cities, #strategy-economics, #strategy-cluster, #strategy-industry, #strategy-fidi, #strategy-mart {
    padding: 10rem 0 20rem 0;
    
}
#strategy-complement {

    padding: 10rem 0 20rem 0;
}
/* ==================================
Accordion
================================== */    
    
.accordion-button {
  
  padding: .5rem 0;
  font-size: 1.2rem;
line-height: 1.5rem;
font-weight: 500;

}
    /* ==================================
    ID SELECTORS
================================== */
    
    
    
    
    .modal-img-col {
        border: none;
    }

    .container-custom {
        padding: 0 3rem;
        /*border: dashed 1px red;*/
    }
    .small-diagram {
        display: block;
        margin: 0 auto;
    }
    .event-box {
        color: #fff; /* Replace with PHP dynamic color variable */
        margin: 5px 0 0 0;
        font-size: .8rem; /* Optional: Adjust text size */
        line-height: 1.3; /* Optional: Improve readability */
    }
    /* Responsive Display Controls */
    .hide-large {
        display: none; /* Hide on screens larger than 992px */
    }
    .hide-small {
        display: block; /* Show on medium to larger screens (768px and above) */
    }
    /* collapsable menu */
    .show-large {
        display: block !important;
    }
    .hide-large {
        display: none !important;
    }
    .sizer-80-50 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
    .sizer-25-50 {
        width: 25%;
        margin: 0 auto; /* Ensures it's centered within its parent */
        display: block; /* Ensures the margin auto centers the image */
    }
    /* ==================================
    PADDING
================================== */
    .padding-bottom-1rem {
        padding-bottom: 20px;
    }
    .hover-border-animate {
        transition: border-color 0.3s ease;
    }
    .hover-border-animate:hover {
        border-color: rgba(255, 255, 255, 0.8) !important;
    }
    @keyframes fadeZoomIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    @keyframes fadeZoomOut {
        from {
            opacity: 1;
            transform: scale(1);
        }
        to {
            opacity: 0;
            transform: scale(0.95);
        }
    }
    /* Apply zoom-in when modal opens */
    .animate-fadezoom .modal-dialog {
        animation: fadeZoomIn 0.3s ease-out forwards;
    }
    /* Apply zoom-out when modal closes */
    .animate-fadezoom.fade:not(.show) .modal-dialog {
        animation: fadeZoomOut 0.2s ease-in forwards;
    }
    /* ==================================
    BORDERS
================================== */
    /* Table and Responsive Table Wrappers */
    section {
        padding-top: 80px; /* Adds 80px padding at the top of each section */
        margin-top: -90px; /* Negative margin to offset the padding visually */
    }
   
    /* Utility Classes */
    .scaler-90 {
        transform: scale(0.9);
        transform-origin: top center;
        margin: 0;
        padding: 0;
    }
    /* Sizer Utilities */
    .sizer-80-50 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
    .sizer-100-75 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 75%;
    }
    .sizer-100-90 {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }
    .rotated-text {
        transform: rotate(90deg); /* Rotates the text 90 degrees */
        transform-origin: left top; /* Adjusts the rotation origin if needed */
        display: inline-block; /* Ensures proper rotation for inline elements */
    }
    /* Offcanvas Adjustments for Desktop */
    .offcanvas-end {
        width: 50% !important;
        max-width: 600px; /* Optional max-width for desktops */
    }
    .responsive-logo {
        width: 25%; /* default for small screens */
    }
    @media (min-width: 576px) {
        .responsive-logo {
            width: 20%;
        }
    }
    @media (min-width: 768px) {
        .responsive-logo {
            width: 18%;
        }
    }
    @media (min-width: 992px) {
        .responsive-logo {
            width: 15%;
        }
    }
}