﻿/********** Template CSS **********/
:root {
   --primary: #EE1C25 ;
    --light: #F2F1ED;
    --dark: #2D3436;
}
.footer h4 {
    color: var(--primary); /* or your gold color */

    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.ff-secondary {font-family: 'Nunito', sans-serif;}
.fw-medium {font-weight: 600 !important;}
.fw-semi-bold {font-weight: 700 !important;}
.back-to-top {
    position: fixed;
    display: none;       /* Managed by your JavaScript */
   right: 0px;         
    bottom: 10px;        
    z-index: 10000;  }    
    
   /* 1. Reset the main state */
.back-to-top, 
.back-to-top:focus, 
.back-to-top:active,
.back-to-top:visited {
    background: transparent !important; /* Forces background to stay gone */
    box-shadow: none !important;        /* Removes any shadow/glow box */
    outline: none !important;           /* Removes the browser focus ring */
    border: none !important;            /* Ensures no border appears */
    color: #EE1C25  !important;          /* Keeps arrow black */
    text-decoration: none !important;    /* Removes underline if it's a link */
}

/* 2. Hover state only */
.back-to-top:hover {
    background: transparent !important;
    transform: translateY(-5px);
    color: #444444 !important;          /* Turns dark gray on hover */
}

.visit-title {
    font-size: 1.6rem;   /* increase size */
    font-weight: 600;    /* stronger */
    letter-spacing: 0.5px;
}
/* Ensure booking modal is clickable above overlays/chatbot */
.modal-backdrop {
    z-index: 11000;
}
.modal {
    z-index: 11010;
    pointer-events: auto;
}

/*** 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;
}
/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {color: #FFFFFF;}

.btn-square {width: 38px;height: 38px;}

.btn-sm-square {width: 32px;height: 32px;}

.btn-lg-square {width: 48px;height: 48px;}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

.brand-wrapper {display: inline-flex !important;align-items: center;}
.logo-small {
    height: 60px;   /* Adjust height */
    width: auto;    /* Keep aspect ratio */
    margin-right: 8px;
}

/*New Navbar*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}
/* Sticky State: Forced visibility of links */
header.sticky {
    position: fixed;
    background: rgba(15, 23, 43, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 5px 0;
}
/* Only force links to show on sticky if we are on Desktop (992px and up) */
@media (min-width: 992px) {
    header.sticky .nav-links {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }
}
/* On Mobile, sticky header should NOT force the links to show */
@media (max-width: 991px) {
    header.sticky .nav-links {
        /* Keep it hidden until the hamburger adds the .active class */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px); 
    }
    /* Ensure the hamburger toggle still works */
    header.sticky .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    /* Force the hamburger button to show on sticky mobile */
    header.sticky .menu-toggle {
        display: flex !important;
    }
}

header.sticky .menu-toggle {display: none;} /* Hide toggle when sticky/auto-expanded */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;   /*to adjust height of navbar*/
}

.logo {
    color: #EE1C25 ;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap; 
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Horizontal Links */
.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
    margin-top: 25px;
}
/* Active class for manual toggle */
.nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-links a {
    text-decoration: none;
    color: #EE1C25 ;
    font-weight: bold;
    white-space: nowrap;
}

/* Hamburger Right Aligned */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 28px;
    height: 3px;
    background: #EE1C25 ;
}
/*New Navbar End*/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(45, 52, 54, .9), rgba(45, 52, 54, .9)), url(/img/hero-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100svh;
    padding-top: 0;
    box-sizing: border-box;
}
/*********************************************/

.hero-header-parks {position: relative;height: 100vh;}

/* Video background */
.hero-header-parks .hero-video {
    position: absolute;
    inset: 0;                /* shorthand for top/left/right/bottom */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;              /* NOT negative */
}

.hero-header-parks .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Optional dark overlay */
.hero-header-parks .hero-bg-overlay {position: absolute;inset: 0;z-index: 1;}

/* Content above video */
.hero-header-parks .hero-overlay {position: relative;z-index: 2;color: #fff;}

.hero-header img {animation: imgRotate 50s linear infinite;}
@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {color: rgba(255, 255, 255, .5);}

/*** Section Title ***/
.section-title {position: relative;display: inline-block;}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute; 
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {display: none;}

/*** Projects Empty State ***/
.projects-empty-state {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(33, 37, 41, 0.15);
    border-radius: 6px;
    padding: 18px 24px;
    color: #6c757d;
    font-size: 1.05rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .projects-empty-state {
        font-size: 1rem;
        padding: 16px 18px;
    }
}

/*** Service ***/
/* ===== Service Card Modern Style ===== */

.service-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.service-card:hover {transform: translateY(-8px);box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.85)
  );
}

.service-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
  z-index: 2;
}
.service-content h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 22px;
  color: white;
}

.learn-btn {
  margin-top: 15px;
  padding: 6px 16px;
  border: 1px solid red;
  background: transparent;
  color: white;
  border-radius: 25px;
  transition: 0.3s;
}

.learn-btn:hover {background: red;}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(/img/video.mp4);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {z-index: 99999;}
#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {position: relative;padding: 0px;}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}
/*** Footer ***/

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    display: inline-block;
    color: var(--light);
}

.footer .btn.btn-link:hover {letter-spacing: 1px;box-shadow: none;}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {color: var(--light);}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Active nav link */
.btn-link.active {color: #EE1C25  !important;   /* gold */font-weight: 700;}

.footer .btn.btn-link.active {font-weight: 400;}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .section-title {
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .footer .section-title::before,
  .footer .section-title::after {
    content: "";
    position: static;
    display: block;
    flex: 0 0 24px;
    height: 2px;
    background: rgba(238, 28, 37, 0.7);
  }

  .footer .section-title.text-start::before,
  .footer .section-title.text-end::after {
    display: block;
  }

  .footer .btn.btn-link {
    text-align: center;
  }

  .footer .btn.btn-link::before {
    content: none;
  }

  .footer .footer-address,
  .footer .footer-contact {
    justify-content: center;
  }

  .footer .footer-contact i,
  .footer .footer-address i {
    display: none;
  }

  .footer .d-flex.pt-2 {
    justify-content: center;
  }

  .footer .map-embed {
    margin-left: auto;
    margin-right: auto;
  }

  .footer .map-cta {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .map-embed-image {
    object-position: center;
  }
}

/* FULL WIDTH FIX */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Container that defines the scroll length (2.5x screen height) */
.hero-scroll-track {/* controls transition duration */position: relative;}

/* Subtle top tint for Home hero: visible only at the top portion */
#hero-track {
    position: relative; /* ensure pseudo-element positions correctly */
}
#hero-track::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32vh; /* only the top section shows the tint */
    background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0));
    pointer-events: none;
    z-index: 20; /* sits above background layers but below hero UI */
}

/* Interactive Dots */
.dot {
    position: absolute;
    width: 14px !important;
    height: 14px !important;
    background: #67191f;
    border: 2px solid white !important;
    border-radius: 50%;
    cursor: pointer;
    z-index: 40;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.dot:hover {transform: translate(-50%, -50%) scale(1.4);}
/* Info Tooltip */
#infoBox {
    position: fixed;
    padding: 15px;
    background: white;
    width: 240px;
    display: none;
    z-index: 999;
     border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Desktop default */
.dot-1 { left: 32%; top: 64%; }
.dot-2 { left: 70%; top: 50%; }
.dot-3 { left: 60%; top: 75%; }
.dot-4 { left: 12%; top: 35%; }
.dot-5 { left: 60%; top: 41%; }
.dot-6 { left: 80%; top: 67%; }
.dot-7 { left: 48%; top: 46%; }
.dot-8 { left: 19%; top: 53%; }

/* UI Positioning */
.overlay {
    position: absolute;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link, .nav-logo, .nav-search {transition: all 0.4s ease;}
 
form {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
}

/* Center selected page forms on large laptop/desktop widths */
@media (min-width: 1200px) {
    .contact-form-col {
        display: block;
        /*justify-content: center;*/
    }

    .form-centered-lg {
        width: 100%;
        max-width: 720px;
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-scroll-track {
    height: 300vh; /* controls transition duration */
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 5;
}

.bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    
}

.day {background-image: url("/img/park.webp");z-index: 1;}

.night {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.2s linear;
    pointer-events: none;
    display: none;
}

#night-layer {opacity: 0;display: none;}

#night-layer.ready {display: block;}

.day,
.night {background-size: cover;background-position: center center;}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.reveal-on-scroll.is-visible {opacity: 1;transform: translateY(0);}

/* Stable entrance animations for sections that should remain visible without AOS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.fade-in-up.is-visible {opacity: 1;transform: translateY(0);}
.fade-in-up.delay-1 { transition-delay: 0.08s; }
.fade-in-up.delay-2 { transition-delay: 0.16s; }
.fade-in-up.delay-3 { transition-delay: 0.24s; }
.fade-in-up.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#mainNavbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.4s ease;
    position: sticky;
    z-index: 1000;

}

#mainNavbar.scrolled {background: #2D3436;position: sticky;}

.inner-navbar{
    background: rgba(15, 23, 43, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    font-weight: bold;
    color: #EE1C25 ;
}

@media (max-width: 991px) {
    /* Container */
    .nav-container {
        padding: 15px 5%;
    }

    /* ALWAYS show hamburger */
    .menu-toggle {
        display: flex;
        z-index: 1100;
        
    }
    .navbar.inner-navbar .fa-bars {
        color: #EE1C25  !important;
    }
    /* Dropdown menu */
    .nav-links {
        position: absolute;
        top: 100%;
        right: 5%;
        background: #222;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 8px;
        width: max-content;

        /* hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    /* Open only on click */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
         pointer-events: auto;
    }

    /* Link colors */
    .nav-links a {color: #EE1C25 ;}
}

/* Hide on small screens (optional but recommended) */
@media (max-width: 768px) {
    #mainlogo {display: none;}
    .dot {display: none !important;}        
}

/*==============================*/
.welcome-text{color: #EE1C25;}
#confirmationModal img { cursor: pointer;transition: transform 0.2s;}
#confirmationModal img:hover {transform: scale(1.2);}
.nav-links li a i:hover {transform: scale(1.2);color: #28a745;  /* blue on hover */}
.nav-links li:hover{transform: scale(1.2);}
.nav-links li.nav-contact-li:hover{transform: none !important;}
    
.nav-phone i {
    margin-top: 8px; /* adjust until aligned */
    margin-right: 1px;
    color: var(--primary);
    transform: none !important;
}
.nav-phone i:hover{ color: var(--primary);transform: none !important;}
.nav-contact-dropdown { position: relative;display: inline-block;}
.nav-contact-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.nav-contact-dropdown summary::-webkit-details-marker {display: none;}
.nav-contact-dropdown:not([open]) .nav-contact-menu {display: none;}
.nav-contact-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(17, 23, 35, 0.92);
    box-shadow: 0 10px 26px rgba(10, 14, 23, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 1105;
}

.nav-contact-item {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-contact-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-contact-icon-wa {transform: scale(1.16); transform-origin: center;}
.nav-contact-item:hover {transform: translateY(-2px);background: rgba(255, 255, 255, 0.16);}
/* Home navbar alignment for contact dropdown */
header .nav-links {align-items: center;}
header .nav-contact-li,
header .nav-contact-dropdown {display: flex;align-items: center;}
header .nav-contact-dropdown > summary.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
}

header .nav-contact-dropdown > summary.nav-phone i {margin-top: 0; margin-right: 0;}
@media (max-width: 768px) {
    .nav-contact-menu {
        right: auto;
        left: 0;
    }
}

/* Bootstrap hamburger icon color (inner pages) */
.navbar.inner-navbar .navbar-toggler {border-color: transparent;}
    
.navbar.inner-navbar .navbar-toggler .fa-bars {color: #EE1C25 ;   /* GOLD */font-size: 22px;}
/* Inner navbar link hover: improve contrast and interaction */
.navbar.inner-navbar .nav-link {
    color: #EE1C25;
    transition: color 160ms ease, transform 160ms ease;
}
.navbar.inner-navbar .nav-link:hover,
.navbar.inner-navbar .nav-link:focus {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Header/main navbar link hover */
.nav-links a:hover,
.nav-links a:focus {
    color: #ffffff;
}

/* TABLET SCREENS */
@media (min-width: 768px) and (max-width: 1024px) {
    .dot-1 { left: 12%; top: 60%; }
    .dot-2 { left: 68%; top: 52%; }
    .dot-3 { left: 58%; top: 68%; }
    .dot-4 { left: 10%; top: 38%; }
    .dot-5 { left: 70%; top: 60%; }
    .dot-6 { left: 26%; top: 51%; }

    .dot-7 { left: 47%; top: 47%; }
    .dot-8 { left: 76%; top: 68%; }
}


/* Video container */
.video-hero {
    position: relative;
    overflow: hidden;
}

/* Overlay container */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Transparent button */
.explore-btn {
    padding: 14px 32px;
    border: 2px solid #EE1C25 ;
    color: #EE1C25 ;
    background: rgba(0, 0, 0, 0.25); /* subtle tint */
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);      /* premium glass effect */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover effect */
.explore-btn:hover {
    background: #EE1C25 ;
    color: #2D3436;;
    transform: translateY(-2px);
}

/* Custom About Section Styling */
.about-title {
    font-family: 'Playfair Display', serif; /* Use a serif font for that elegant look */
    font-weight: 700;
    font-size: 2.5rem;
}
.about-text {
    line-height: 1.8;
    color: #7f210a;
    font-size: 1rem;

}
.about-img-container {
    height: auto;
    overflow: visible;
}

.about-img-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.visionary-section {
  background: url('/img/bg.webp') no-repeat center/cover;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.visionary-row {
  --bs-gutter-x: 6.5rem;
  --bs-gutter-y: 1.5rem;
}

.visionary-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: visible;
  max-width: 620px;
  margin: 0 auto;
  min-height: 240px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(20, 28, 40, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, rgba(255, 192, 164, 0.95), rgba(238, 28, 37, 0.95), rgba(255, 225, 206, 0.95));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.visionary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20, 28, 40, 0.18);
}

.visionary-photo-shell {
  width: 210px;
  height: 210px;
  flex: 0 0 210px;
  position: relative;
  margin-left: -70px;
  margin-right: 10px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, #0f0f0f 0%, #ee1c25 55%, #1b1b1b 100%);
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(238, 28, 37, 0.35),
    0 12px 24px rgba(25, 22, 22, 0.22);
}

/* Bubble dots removed from visionary photo frames */

.visionary-photo-round {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f8f5f2;
  box-shadow: inset 0 0 0 2px rgba(255, 227, 191, 0.8);
}

.visionary-card-body {
  padding: 2px 8px;
  font-family: 'Nunito', sans-serif;
}

.visionary-meta {
    flex: 1;
    min-width: 0;
  }

.visionary-card-body h4 {
  font-size: 1.6rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}

.visionary-role {
  color: #a3302e;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.visionary-readmore {
  border-radius: 8px;
  padding: 7px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

/* Visionary carousel */
.visionary-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.visionary-carousel-window {
  overflow: hidden;
  width: 100%;
}

.visionary-carousel-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
  width: 100%;
}

.visionary-slide {
  position: relative;
  min-width: 100%;
  padding: 8px;
}

.visionary-slide-inner {
  position: relative;
  min-height: calc(100vh - 96px);
  background: linear-gradient(0deg, #0f0f12 0%, #0E0E0E 55%, #0E0E0E 100%);
  border-radius: 0;
  padding: 48px 60px 110px;
  color: #f4f4f6;
  overflow: hidden;
  box-shadow: none;
  display: block;
}

.visionary-slide::after {
  content: none;
}

.visionary-slide-left {
  position: absolute;
  left: 6%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 20;
}

.visionary-slide-role {
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  letter-spacing: 0.3px;
  font-weight: 500;
  color: #ffffff !important;
  opacity: 1;
  margin: 0;
}

.visionary-slide-portrait {
  position: absolute;
  left: 34%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  height: calc(100vh - 96px);
}

.visionary-slide-portrait::after {
  content: '';
  position: absolute;
  inset: -6%;
  background: radial-gradient(circle, rgba(28, 27, 32, 0) 58%, rgba(14, 14, 14, 0.65) 78%, rgba(14, 14, 14, 0.9) 100%);
  pointer-events: none;
  z-index: 3;
}

.visionary-slide-portrait img {
  width: auto;
  height: 100%;
  display: block;
  border-radius: 8px;
  box-shadow:
    0 0 0 18px rgba(14, 14, 14, 0.9),
    0 0 40px 20px rgba(14, 14, 14, 0.75),
    0 40px 80px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.visionary-slide-right {
  position: absolute;
  right: 6%;
  top: 20%;
  max-width: 36%;
  z-index: 3;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.visionary-slide-right p {
  margin: 0 0 14px;
}

.visionary-slide-name {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(3.8rem, 7.5vw, 7.2rem);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  letter-spacing: -0.4px;
  z-index: 3;
}

.visionary-name-text {
  display: inline-block;
}

.visionary-name-accent {
  color: #ee1c25;
}

.visionary-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(18, 18, 22, 0.75);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.visionary-carousel-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: #ee1c25;
}

.visionary-carousel-btn:first-of-type {
  left: 20px;
}

.visionary-carousel-btn:last-of-type {
  right: 20px;
}

.visionary-carousel-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
}

.visionary-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 17, 20, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.visionary-carousel-dot.is-active {
  background: #ee1c25;
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .visionary-carousel {
    grid-template-columns: 1fr;
  }

  .visionary-carousel-btn {
    order: 2;
    justify-self: center;
  }

  .visionary-carousel-btn:first-of-type {
    margin-bottom: 8px;
  }

  .visionary-carousel-window {
    order: 1;
  }

  .visionary-carousel-btn:last-of-type {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .visionary-slide-inner {
    text-align: left;
    padding: 24px 20px 80px;
    min-height: calc(100vh - 84px);
    display: flex;
    flex-direction: column;
  }

  .visionary-slide-left {
    position: static;
    transform: none;
    margin-bottom: 16px;
    z-index: 20;
    order: 1;
  }

  .visionary-slide-role {
    color: #ffffff;
    text-shadow: none;
  }

  .visionary-slide-right {
    position: static;
    max-width: 100%;
    margin-top: 16px;
    order: 4;
  }

  .visionary-slide-portrait {
    position: static;
    transform: none;
    margin: 16px 0;
    order: 2;
  }

  .visionary-slide-portrait::after {
    content: none !important;
  }

  .visionary-slide-portrait img {
    width: 100%;
    max-width: 100%;
  }

  .visionary-slide-name {
    position: static;
    margin-top: 12px;
    transform: none;
    text-align: left;
    order: 3;
  }

  .visionary-slide-inner,
  .visionary-slide-portrait img {
    box-shadow: none !important;
  }
}

.visionary-hero {
  --mx: 0px;
  --my: 0px;
  margin-top: 84px;
  padding: 30px 0 24px;
  color: #1f2933;
  border-top: 1px solid rgba(54, 62, 72, 0.45);
  background:
    radial-gradient(circle at calc(28% + var(--mx)) calc(42% + var(--my)), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.86) 58%, rgba(210, 26, 35, 0.5) 100%),
    url('/img/investor-hero.webp') center/cover no-repeat;
  transition: background-position 140ms ease-out;
}

.leadership-page {
  position: relative;
  background: linear-gradient(180deg, #f8f9fb 0%, #f2f3f7 100%);
  overflow: hidden;
}

.leadership-page::before {
  content: '';
  position: absolute;
  inset: 84px 0 0 0;
  background: url('/img/park-hero-bg.webp') center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.leadership-page::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background:
    radial-gradient(90% 70% at 50% 100%, rgba(238, 28, 37, 0.08), rgba(238, 28, 37, 0) 70%),
    repeating-linear-gradient(90deg, rgba(35, 45, 62, 0.06) 0 2px, rgba(35, 45, 62, 0) 2px 34px);
  opacity: 0.22;
  pointer-events: none;
}

.visionary-hero,
.visionary-details-wrap {
  position: relative;
  z-index: 1;
}

.visionary-hero-inner {
  max-width: 900px;
}

.visionary-kicker {
  margin: 0;
  letter-spacing: 0.9px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
}

.visionary-hero-title {
  font-size: clamp(1.9rem, 3.7vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 1.06;
  margin: 4px 0 8px;
  color: #1a1a1a;
}

.visionary-hero-title .accent {
  color: #d71d24;
}

.accent {
  color: #d71d24;
}
.visionary-hero-subtitle {
  margin: 0 auto;
  max-width: 740px;
  font-size: 0.97rem;
  color: #444;
}

.visionary-hero-line {
  width: 52px;
  height: 3px;
  border-radius: 99px;
  margin: 10px auto 0;
  background: #ee1c25;
}

.visionary-details-wrap {
  background: transparent;
}

.leadership-grid {
  display: grid;
  gap: 32px;
}

.visionary-detail-card {
  --rx: 0deg;
  --ry: 0deg;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 360ms cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.visionary-detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
  z-index: -1;
}

.visionary-detail-card:hover {
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
  box-shadow: 0 40px 92px rgba(0, 0, 0, 0.12);
}

.visionary-detail-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.visionary-detail-content {
  padding: 34px 32px;
  transform: translateZ(26px);
}

.visionary-detail-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(238, 28, 37, 0.14);
  color: #8b201d;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(238, 28, 37, 0.26);
}

.visionary-detail-content h2 {
  margin-bottom: 8px;
  letter-spacing: 0.7px;
  color: #1a1a1a;
  font-weight: 700;
}

.visionary-title-line {
  width: 48px;
  height: 2px;
  border-radius: 99px;
  background: rgba(238, 28, 37, 0.85);
  margin-bottom: 14px;
}

.visionary-detail-content p {
  color: #555;
  line-height: 1.72;
}

.visionary-points {
  margin-top: 12px;
  padding-left: 18px;
}

.visionary-points li {
  position: relative;
  margin-bottom: 8px;
  color: #2f3640;
  opacity: 0;
  transform: translateY(8px);
  transition: transform 340ms cubic-bezier(0.4, 0, 0.2, 1), opacity 340ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--i, 1) * 90ms);
}

.visionary-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ee1c25;
  position: absolute;
  left: -16px;
  top: 0.62em;
}

.visionary-profile-shell {
  --ring-speed: 10s;
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: profilePulse 4s ease-in-out infinite;
}

/*.visionary-profile-shell::before {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(238, 46*/
.visionary-profile-shell::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 173, 135, 0.9), #ee1c25, rgba(255, 224, 206, 0.95), #ee1c25, rgba(255, 173, 135, 0.9));
  animation: visionarySpin 4.8s linear infinite;
  filter: drop-shadow(0 8px 16px rgba(238, 28, 37, 0.26));
  z-index: -2;
}

.visionary-profile-shell::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 28, 37, 0.16), rgba(238, 28, 37, 0) 68%);
  z-index: -3;
}

.visionary-profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8f5f2;
  box-shadow:
    inset 0 0 0 6px #fff,
    0 20px 26px rgba(23, 28, 37, 0.16);
}

.visionary-detail-card:hover .visionary-profile-shell {
  --ring-speed: 9.4s;
}

.visionary-detail-card:hover .visionary-profile-shell::after {
  background: radial-gradient(circle, rgba(238, 28, 37, 0.28), rgba(238, 28, 37, 0) 72%);
}

.leadership-quote {
  text-align: center;
  border-radius: 24px;
  padding: 40px 26px;
  background: rgba(255, 255, 255, 0.56);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 50px rgba(21, 26, 36, 0.08);
}

.leadership-quote .quote-line {
  width: 52px;
  height: 2px;
  border-radius: 99px;
  margin: 0 auto 14px;
  background: #ee1c25;
}

.leadership-quote h3 {
  margin: 0;
  color: #1a1a1a;
  letter-spacing: 0.75px;
  font-weight: 650;
}

.leadership-quote blockquote {
  margin: 10px 0 8px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.35;
  color: #2c3340;
  font-weight: 500;
}

.leadership-quote p {
  margin: 0;
  color: rgba(238, 28, 37, 0.86);
  font-weight: 600;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1), opacity 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.is-visible .visionary-points li {
  opacity: 1;
  transform: translateY(0);
}

@keyframes visionarySpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes profilePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .visionary-row {
    --bs-gutter-x: 1.75rem;
  }

  .visionary-card {
    max-width: 360px;
    min-height: 0;
    gap: 12px;
    padding: 12px;
  }

  .visionary-photo-shell {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    margin-left: -28px;
    margin-right: 6px;
  }

  .visionary-hero {
    margin-top: 78px;
    padding: 20px 0 16px;
  }

  .visionary-card-body h4 {
    font-size: 1.15rem;
    white-space: normal;
  }

  .visionary-detail-content {
    padding: 24px 20px;
  }

  .visionary-profile-shell {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .visionary-row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .visionary-card {
    max-width: 520px;
    padding: 12px;
  }

  .visionary-photo-shell {
    width: 160px;
    height: 160px;
    flex: 0 0 160px;
    margin-left: -40px;
    margin-right: 8px;
  }

  .visionary-card-body h4 {
    font-size: 1.25rem;
    white-space: normal;
  }
}

.btn btn-link active { color: #EE1C25 ;}

   
.about-home-section {
  position: relative;
  background: url('/img/p5.webp') center/cover no-repeat;
  padding: 0;
  color: #222;
}

.about-home-overlay {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0.1) 100%
  );
  padding: 80px 0;
}

.about-home-content {
  max-width: 540px;
}

.about-home-row {
  min-height: 520px;
}

.about-slide-left.fade-in-up {
  transform: translateX(-64px);
}

.about-slide-right.fade-in-up {
  transform: translateX(64px);
}

.about-slide-left.fade-in-up.is-visible,
.about-slide-right.fade-in-up.is-visible {
  transform: translateX(0);
}

.about-home-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-home-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 44px rgba(16, 16, 16, 0.22);
}

.about-home-section .about-subtitle {
  display: none;
}

.about-home-section .about-title {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111;
  letter-spacing: -0.6px;
}

.about-home-section .about-text {
  font-size: 14px;
  color: #2f2f2f;
  margin-bottom: 34px;
  line-height: 1.85;
  max-width: 510px;
}

.about-home-section .about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 34px;
  align-items: center;
}

.about-home-section .stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 16px;
  border-left: 3px solid #e30613;
}

.about-home-section .stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #e30613;
    margin: 0;
    line-height: 1;
  }

.faq-accordion.is-collapsed .accordion-item:nth-child(n+4) {
    display: none;
  }

@media (max-width: 767px) {
    .faq-full.faq-collapsed .faq-column-right {
      display: none;
    }

    .faq-full.faq-collapsed .faq-column-left .accordion-item {
      display: block;
    }

    .faq-full.faq-collapsed .faq-column-left .accordion-item:nth-child(n+6) {
      display: none;
    }
  }

.faq-read-more {
    margin-top: 12px;
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
  }

.faq-read-more-wrap {
    margin-top: 12px;
    text-align: center;
  }

.background-section .faq-section {
    padding-bottom: 3rem;
  }

.faq-read-more:hover,
.faq-read-more:focus {
    color: #c10f16;
  }

.about-home-section .stat-number-allura {
    font-family: "Allura", cursive;
    font-weight: 400;
    letter-spacing: 0.5px;
  }


.about-home-section .stat-item span {
  display: block;
  font-size: 33px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.4px;
  line-height: 1;
}

.about-home-section .stat-copy {
  padding-top: 4px;
}

.about-home-section .stat-copy small {
  display: block;
  font-size: 20px;
  color: #444;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.about-home-section .about-btn {
  display: inline-block;
  background: #e30613;
  color: #fff;
  padding: 13px 34px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 0.2px;
  font-size: 16px;
  box-shadow: 0 9px 20px rgba(227, 6, 19, 0.28);
  transition: 0.3s ease;
  text-decoration: none;
}

.about-home-section .about-btn:hover {
  background: #c8000f;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .about-home-row {
    min-height: 0;
  }

  .about-slide-left.fade-in-up,
  .about-slide-right.fade-in-up {
    transform: translateY(16px);
  }

  .about-slide-left.fade-in-up.is-visible,
  .about-slide-right.fade-in-up.is-visible {
    transform: translateY(0);
  }

  .about-home-image-wrap {
    margin-top: 12px;
  }

  .about-home-section .about-title {
    font-size: 36px;
  }

  .about-home-section .about-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .about-home-section .stat-item h3 {
    font-size: 40px;
  }

  .about-home-section .stat-item span {
    font-size: 28px;
  }

  .about-home-section .stat-copy small {
    font-size: 16px;
  }
}

footer h4,
.footer h4 {color: #EE1C25  !important; /* your gold */}
/* =========================
   MOBILE NAVBAR FIX and form fix
========================= */
@media (max-width: 768px) {
    
  
    /* Ensure brand + toggler stay in one row */
    .navbar.inner-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 5%;
    }

    /* Brand wrapper */
    .brand-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 80%;
        white-space: nowrap;
    }

    /* Logo image */
    .logo-small {
        height: 32px; /* reduce logo size */
        width: auto;
    }

    /* Brand text */
    .logo {
        font-size: 23px;   /* smaller text */
        font-weight: 700;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    /* Hamburger button */
    .navbar-toggler {
        padding: 4px 8px;
        font-size: 16px;
        border: none;
    }

    .navbar-toggler:focus {box-shadow: none;}
     form {
        max-width: 100%;
        padding-left: 0;      /* remove left push */
        padding-right: 0;
        margin: 0 auto;
    }

    /* If forms are inside columns/cards */
    .form-wrapper,
    .form-container,
    .card {
        margin-left: auto;
        margin-right: auto;
    }

    /* Inputs & buttons stay clean */
    form .form-control,
    form .form-select,
    form button {
        width: 100%;
    }
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-address span {
  display: inline-block;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact span {
  display: inline-block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-email span {
  white-space: nowrap;
}

.footer-contact-email i {
  margin-right: 0.5rem !important;
}
.footer .footer-contact i,
.footer .footer-address i {
  margin-top: 2px;
  color: var(--light);
}

.about-img-container .about-mission-img {
  max-width: 90%;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/*Contact form pop up */
/* Contact toast */
#contact-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c2a2f;
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 12000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s ease;
}

#contact-toast.show {
  transform: translateY(0);
  opacity: 1;
}

#contact-toast.hidden {
  display: none;
}

#contact-toast .toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2bb673;
  display: grid;
  place-items: center;
  font-weight: bold;
}

#contact-toast .toast-text strong {
  display: block;
  font-size: 14px;
}

#contact-toast .toast-text div {
  font-size: 12px;
  opacity: 0.8;
}

#contact-toast .toast-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
}


/* FULL SCREEN 2-COLUMN FAQ  FIXED */
.faq-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Each column */
.faq-full > div {
  padding: 0 20px;
  box-sizing: border-box;
}

/* Ensure accordion fills column */
.faq-full .accordion,
.faq-full .accordion-item {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.faq-full .accordion-button {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2; /* standard */
  background-color: var(--light); /* change to your color */
  color: #2D3436;            /* text color if needed */

}
.faq-full .accordion-button:not(.collapsed) {
  background-color: var(--light); /* active/open state */
  color: #2D3436;
  box-shadow: none;
}

/* Remove light blue background on entire accordion */
.faq-full .accordion,
.faq-full .accordion-item,
.faq-full .accordion-body {
  background-color: var(--light); /* change to your desired color */
}

#confirmationModal img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 991px) {
  .faq-full {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .faq-full {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1400px) {

    .about-title {
        font-size: 3rem;     /* Bigger heading */
        margin-bottom: 40px; /* More spacing */
    }

    .about-text {
        font-size: 1.4rem;   /* Bigger paragraph */
        line-height: 1.8;
    }

    .section-padding {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .container {
        max-width: 1320px;
        padding-left: var(--bs-gutter-x, .75rem);
        padding-right: var(--bs-gutter-x, .75rem);
    }
}

/* Nunito */
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("/fonts/Nunito-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display */
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/PlayfairDisplay-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Allura */
@font-face {
  font-family: "Allura";
  src: url("/fonts/allura.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Heebo */
@font-face {
  font-family: "Heebo";
  src: url("/fonts/Heebo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter (use 18pt set) */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* External icon fonts: enforce font-display swap */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Parks cards alignment */
.park-services .service-item { height: 100%; }
.park-services .service-item .p-4 { display: flex; flex-direction: column; height: 100%; }
.park-services .service-item h5 { margin-bottom: 0; flex: 1 1 auto; min-height: 3.2em; }
.park-services .park-frost-card {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 34px rgba(18, 28, 38, 0.16);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    backdrop-filter: blur(12px) saturate(130%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.park-services .park-frost-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(18, 28, 38, 0.2);
    border-color: rgba(255, 255, 255, 0.65);
}


/* Blog cards alignment */
.blog-grid .blog-item { height: 100%; display: flex; flex-direction: column; }
.blog-grid .blog-item .p-4 { display: flex; flex-direction: column; flex: 1 1 auto; }
.blog-grid .blog-item h5 { min-height: 2.6em; }
.blog-grid .blog-item p { flex: 1 1 auto; }

.blog-grid .blog-item h3 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.coming-soon-card {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(
        140deg,
        rgba(255, 255, 255, 0.32),
        rgba(255, 255, 255, 0.14)
    );
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 18px 40px rgba(15, 24, 33, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    backdrop-filter: blur(14px) saturate(135%);
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.coming-soon-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -72px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 28, 37, 0.28), rgba(238, 28, 37, 0));
    pointer-events: none;
}

.coming-soon-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow:
        0 24px 48px rgba(15, 24, 33, 0.24),
        0 0 34px rgba(238, 28, 37, 0.2);
}

.coming-soon-media {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    isolation: isolate;
}

.coming-soon-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-backdrop-filter: blur(2px) saturate(110%);
    backdrop-filter: blur(2px) saturate(110%);
    z-index: 1;
}

.coming-soon-media img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.45s ease;
}

.coming-soon-card:hover .coming-soon-media img {
    transform: scale(1.08);
}

.coming-soon-ribbon {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 34px;
    background: #ff1f2b;
    transform: none;
    transform-origin: top left;
    box-shadow: 0 10px 18px rgba(18, 24, 33, 0.28);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.coming-soon-ribbon span {
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #111417;
}

@media (max-width: 768px) {
    .coming-soon-ribbon {
        top: 3px;
        left: 0;
        width: 100%;
        height: 30px;
        transform: none;
    }

    .coming-soon-ribbon span {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

.coming-soon-title {
    margin-bottom: 8px;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
    color: #111417;
    letter-spacing: 0.01em;
}

.coming-soon-copy {
    margin-bottom: 0;
    color: #333840;
    font-size: 0.98rem;
    line-height: 1.65;
}


/* Inner navbar spacing to match Home header */
.navbar.inner-navbar { padding: 10px 5%; }


/* Home services alignment
.home-services .service-item { height: 100%; }
.home-services .service-item .p-4 { display: flex; flex-direction: column; height: 100%; }
.home-services .service-item h5 { min-height: 2.6em; }
.home-services .service-item p { flex: 1 1 auto; }

.home-services .service-item h3 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}
 */
/* Map embed placeholder (reduce third-party cookies) */
.map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f5f7;
}

.map-embed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-cta {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

/* Accessibility contrast overrides */
:root {
    --bs-primary: #EE1C25 ;
    --bs-orange: #c62828;
    --bs-yellow: #e53935;
    --bs-warning: #e53935;
}

a:hover {
    color: #b71c1c;
}

.text-primary {
    color: #EE1C25  !important;
}

.btn-primary {
    background-color: #EE1C25 ;
    border-color: #EE1C25 ;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #551606;
    border-color: #551606;
}

#chat-toggle {
    background: #2F4156;
    color: #ffffff;
}


/* ===== INDUSTRIAL LEFT BORDER ACCORDION STYLE ===== */

.faq-full .accordion-item {
  border: none;
  border-radius: 8px;
  margin-bottom: 4px;
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

/* ACTIVE OPEN STATE */
.faq-full .accordion-item:has(.accordion-collapse.show) {
  border-left: 5px solid var(--bs-primary);   /* Industrial orange */
  background: #fff7f1;
}

/* Remove Bootstrap blue */
.faq-full .accordion-button {
  background-color: transparent !important;
  color: #2D3436;
  font-weight: 600;
  box-shadow: none !important;
}

/* Remove blue highlight on open */
.faq-full .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #2D3436;
  box-shadow: none;
}

/* Remove focus outline */
.faq-full .accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* Optional: style body */
.faq-full .accordion-body {
  background: transparent;
  padding: 10px 20px 20px;
  line-height: 1.6;
  color: #555;
}

/*.contact-form-col,
.map-col {
  display: flex;
  flex-direction: column;
}
*/
.map-col iframe {
  flex: 1;
}

.map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 8px;
}

/* wrapper for everything below hero/above footer */
.background-section {
    background: url('/img/bg.webp') no-repeat center/cover;
    background-size: cover;
    background-position: center;
    width: 100%;
}

/* inner bootstrap utility backgrounds would otherwise cover the picture */
.background-section .bg-light,
.background-section .bg-white,
.background-section > .section-padding {
    background-color: transparent !important;
  }

.about-top-pad {
    padding-top: 96px;
  }

@media (max-width: 768px) {
    .about-top-pad {
      padding-top: 72px;
    }
  }

.background-section .investor-videos-section {
    padding-bottom: 48px;
  }

.background-section .investor-faq-section {
    padding-top: 48px;
  }

/* Accessible focus style: red + white */
:focus-visible {
  outline: 2px solid #EE1C25 !important;
  outline-offset: 2px;
  box-shadow:
    0 0 0 3px rgba(238, 28, 37, 0.35),
    0 0 0 5px rgba(238, 28, 37, 0.18) !important;
}







