/*

Tooplate 2127 Little Fashion

https://www.tooplate.com/view/2127-little-fashion

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                #FFFFFF;
  --dark-blue:                  #4941e2;
  --section-bg-color:           #f0f8ff;
  --black-color:                #000000;
  --grey-color:                 #d0d1d1;
  --p-color:                    #bdbdbd;
  --dark-red:                   #9e0000;
  --bright-red:                 #ff0000;
  --light-blue:                 #0083ca;
  --vets-blue:                  #5869B9;
  --dark-grey:                  #202124;
  --nav-offset:                clamp(60px, 5vh, 110px);
  --slide-text-offset:         25vh;

  --body-font-family:           'Helvetica', sans-serif;

  --h5-font-size:               24px;
  --p-font-size:                1.5rem;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

.site-public-banner {
  background: var(--dark-red);
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0.75rem 1rem;
  text-align: center;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
    background:
      radial-gradient(circle at top right, rgba(0, 172, 255, 0.18), transparent 36%),
      linear-gradient(135deg, rgba(0, 31, 77, 0.72), rgba(0, 0, 0, 0.68)),
      var(--dark-grey);
    background-attachment: fixed;
    font-family: var(--body-font-family);    
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

.footer-legal-links a {
  color: var(--p-color);
}

.footer-legal-links a:hover {
  color: var(--white-color);
}

body.nav-open {
  overflow: hidden;
}

.gradient-page .site-header,
.gradient-page .site-header-image {
  background: transparent !important;
  background-color: transparent !important;
}

.gradient-page .about,
.gradient-page .contact,
.gradient-page .faq,
.gradient-page .legal-section,
.gradient-page .section-padding {
  background: transparent !important;
  background-color: transparent !important;
}

.legal-page .site-header {
  padding-bottom: 35px;
}

.legal-page .header-info {
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}

.legal-section {
  padding-top: 30px;
}

.legal-content {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  color: var(--grey-color);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-updated {
  color: #ffdb1a;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.legal-intro {
  color: var(--white-color);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.legal-content-section {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.5rem 0;
}

.legal-content-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-content h2 {
  color: var(--white-color);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin-bottom: 0.9rem;
}

.legal-content h3 {
  color: var(--white-color);
  font-size: 1.15rem;
  margin: 1.1rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--grey-color);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.legal-content a {
  color: #66d5ff;
  font-weight: 700;
}

.legal-content a:hover {
  color: var(--white-color);
}

.legal-contact {
  background: rgba(0, 131, 202, 0.18);
  border: 1px solid rgba(102, 213, 255, 0.25);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1.35rem;
}

.legal-contact h2 {
  margin-bottom: 0.65rem;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 1.2rem;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--grey-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: 64px;
  line-height: normal;
  color: var(--white-color);
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

h7 {
  font-size: 16px;
  font-weight:normal;
}

h6, .highlight {
  color: #ff4400;
  font-weight: bold;
}

p {
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

@media (max-width: 991px) {
  p {
    font-size: 1rem;
  }
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

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

a:hover {
  color: var(--p-color);
}

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

::selection {
  background: var(--dark-blue);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--white-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  position: relative;
  bottom: auto;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}

/*---------------------------------------
  CUSTOM SELECT             
-----------------------------------------*/

/* 1. Main select background and text */
.custom-select {
  background: var(--dark-grey); /* dark background */
  color: #ffffff;            /* font color */
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 40px 10px 16px;
  appearance: none; /* removes native arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="16" viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 5.5l6 6 6-6z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* 2. When focused */
.custom-select:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 0.15rem var(--light-blue);
}

/* 3. Option styling (limited across browsers) */
.custom-select option {
  background-color: var(--dark-grey); /* same as select bg */
  color: #ffffff;
  border-width: 1px;
  border-color: white;
  border-style: solid;
}

/* Optional: Different color on selected */
.custom-select option:checked {
  background-color: var(--light-blue);
}

/* Optional: Hover styling on some browsers (esp. Firefox) */
.custom-select option:hover {
  background-color: var(--light-blue);
}


/*---------------------------------------
  CUSTOM BUTTON & ICON              
-----------------------------------------*/
.custom-btn {
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: bold;
  text-transform: uppercase;
  padding: 16.5px 20px;
  transition: background-size 0.75s ease-out;
}

.custom-btn:hover {
  background-size: 300%;
  color: var(--white-color);
  cursor: pointer;
}

.center-explore-wrapper {
  position: static;
  width: 100%;
  height: 0;
}

#exploreClickCatcher {
  position: absolute;
  border-radius: 50px;
  z-index: 5;
  background: transparent;
  pointer-events: none;
  cursor: pointer;
  left: 50%;
  top: calc(var(--nav-offset) + (100vh - var(--nav-offset)) / 2);
  transform: translate(-50%, -50%);
  width: 223px;
  height: 63px;
}


.center-explore-btn {
  position: absolute;
  left: 50%;
  top: calc(var(--nav-offset) + (100vh - var(--nav-offset)) / 2);
  bottom: auto;
  transform-origin: center;
  transform: translate(-50%, -50%);
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--white-color);
  color: white !important;
  font-size: 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  z-index: 1;
  pointer-events: none;
}

.center-explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease-out;
  z-index: -1;
  pointer-events: none;
}

.center-explore-btn:hover::before,
.center-explore-btn.force-hover::before {
  background-size: 300%;
}

.center-explore-btn:hover,
.center-explore-btn.force-hover {
  background-size: 300%;
  color: var(--white-color);
  cursor: pointer;
}

/* Initial hidden and compressed horizontal scale */
.center-explore-btn-animate-start {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.2);
  transition:
    opacity 0.4s ease-out,
    transform 0.5s ease-out;
  transform-origin: center;
}

/* Final expanded state */
.center-explore-btn-animate-start.center-explore-btn-animate-show {
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(1);
}

/* ✨ The shine */
.center-explore-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

/* ✨ Trigger the shine after animation */
.center-explore-btn.shine-now::after {
  animation: shineSweep 1.5s ease-in-out;
  animation-delay: 1s;
}

.center-explore-btn.looping-shine::after {
  animation: shineSweep 1.5s ease-in-out infinite;
  animation-delay: 0s;
}

.home-view-all-btn {
  position: relative;
  left: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
  pointer-events: auto;
  text-decoration: none;
  z-index: 1;
}

.home-scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.home-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-parallax-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-parallax-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  transform: none;
}

.home-parallax-band.has-video .home-parallax-band__bg {
  opacity: 0;
}

.home-parallax-band__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.home-parallax-band__video[hidden] {
  display: none;
}

.home-parallax-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
}

.home-parallax-band__content {
  position: relative;
  z-index: 2;
  padding: 0.25rem 0 0;
}

.about:has(.home-mission) {
  background: transparent;
}

.home-blue-section,
.home-impact-section {
  background: transparent;
}

.home-impact-section {
  padding: 1rem 0 0.25rem;
}

.home-mission {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: clamp(2rem, 5vw, 4rem) 0;
  box-shadow: none;
}

.home-mission__copy {
  color: var(--white-color);
}

.home-mission__eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: #ffdb1a;
  font-size: 0.82rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.home-mission__copy h1 {
  color: var(--white-color);
  max-width: 760px;
  font-size: clamp(2.8rem, 4.4vw, 4.35rem);
  line-height: 1.12;
  margin-bottom: 1.35rem;
}

.home-mission__copy p {
  max-width: 820px;
  color: var(--white-color);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.home-mission__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-mission__actions span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
}

.home-mission__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.home-mission__badge img {
  width: min(100%, 420px);
  max-height: 330px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .home-parallax-band__bg {
    background-attachment: scroll;
  }

  .home-mission__copy {
    text-align: center;
  }

  .home-mission__copy h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.1;
  }

  .home-mission__actions {
    justify-content: center;
  }

  .home-mission__badge {
    min-height: 190px;
    padding: 1rem;
  }
}


@keyframes shineSweep {
  0%   { left: -75%; opacity: 0; }
  1%   { opacity: 1; }
  50%  { left: 125%; opacity: 1; }
  51%  { opacity: 0; }
  100% { left: 125%; opacity: 0; }
}



.social-btn {
  background: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  text-transform: none;
}

.social-btn:hover {
  border-color: transparent;
}

.cart-form-select {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--product-link-font-size);
}

.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background-size: 300%;
  color: var(--white-color);
  cursor: pointer;
}

.custom-icon {
  color: var(--white-color);
  font-size: 24px;
}

.custom-icon {
  display: inline-block;
  vertical-align: middle;
}

.bi-bag.custom-icon {
  font-size: 17px;
}

.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}

/*---------------------------------------
  DIV SEPARATOR               
-----------------------------------------*/
.div-separator {
  position: relative;
}

.div-separator::before {
  content: "";
  height: 1px;
  background: var(--white-color);
  display: block;
  width: 100%;
}

.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--black-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}

/*---------------------------------------
  FULL IMAGE               
-----------------------------------------*/
.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}

@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/
.navbar {
  background: radial-gradient(circle at center, var(--light-blue), #001F4D);
  font-weight: bold;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1100;
  will-change: transform;
  transition: transform 300ms linear;
  transform: translateY(-100%);
  animation: navBarSlideDown 1s ease-in-out forwards;
  animation-delay: 1.1s;
  opacity: 1;
}

.navbar .dropdown ul {
  position: absolute;
  top: 25px;
  left: 14px;
  z-index: 1200;
  background: transparent;
  cursor: pointer;
}

.navbar .dropdown ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 12.5px;
  padding-left: 20px;
  cursor: pointer;
}

.navbar .dropdown ul li {
  background-color: var(--light-blue);
  min-width: 180px;
  transition: background-color 0.2s ease;
  height:50px;
  margin-left: -32px;
  border-bottom: white;
  border-width: 1px;
  border-style: solid;
  border-top: none;
  border-left: none;
  border-right: none;
  list-style-type: none;
}

.nav-item-blank {
  background-color: transparent !important;
  height:20px !important;
  border-style: none !important;
  cursor: default !important;
}



.navbar .dropdown ul li:hover {
  background-color: #001F4D; /* or any color you want */
}

.navbar .dropdown ul a {
  font-size: 15px;
  text-transform: none;
  color: var(--white-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

.toggle-dropdown {
  transition: transform 0.3s ease;
  display: inline-block;
}

.navbar .dropdown.open > a .toggle-dropdown,
.navbar .dropdown.open > a .bi-chevron-down {
  transform: rotate(180deg) !important;
}



/* Ensure Navbar Content Doesn't Scroll */
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space out the toggler, logo, and icon */
  height: 60px; /* Set a consistent height for the navbar */
  overflow: visible; /* Ensure no content is clipped */
}

.navbar.headroom--not-top {
  padding: 20px 0;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -150%);
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: inline-block;
  padding: 0;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--white-color);
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.navbar .nav-link::after {
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white-color);
  content: '';
  opacity: 0;
  color: white;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

/* Show the underline for real page OR open dropdown */
.navbar .nav-link.active::after,
.navbar .nav-link.dropdown-open::after {
  opacity: 1;
  transform: translateY(0);
}

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

@media (hover: hover) and (pointer: fine) {
  .navbar .nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link:focus, 
.nav-link:hover {
  color: var(--p-color);
}

/* Center logo on smaller screens */
.navbar-logo {
  max-height: 50px; /* Adjust size as needed */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensure it behaves as an inline block */
}

/* Center logo on mobile */
.navbar-brand {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Full width for centering on smaller screens */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    cursor: pointer;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

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

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--dark-grey);
  position: relative;
  overflow: hidden;
  margin-top: 86px;
}

.site-header.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.site-header.section-padding-img {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.header-image {
  position: absolute;
  top: 0;
  right: 20px;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.event-register-header .header-image {
  right: 0;
  width: 50%;
  object-fit: contain;
  object-position: center;
  background-color: var(--dark-grey);
}

/*---------------------------------------
  SLICK SLIDESHOW               
-----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    height: calc(100vh - var(--nav-offset));
  }
}

.slick-slideshow {
  margin-top: var(--nav-offset);
  height: calc(100vh - var(--nav-offset));
  overflow: hidden;
}

.slick-slideshow .slick-list,
.slick-slideshow .slick-track,
.slick-slideshow .slick-slide,
.slick-slideshow .slick-slide > div,
.slick-slideshow .slick-custom {
  height: 100%;
}

.slick-title {
  color: var(--white-color);
}

.slick-custom {
  position: relative;
}

.slick-custom img {
  height: 100%; /* Match slider height */
  width: 100%; /* Maintain aspect ratio */
  object-fit: cover;
  object-position: center;
  margin-top: 0;
}

.slick-bottom {
  background: linear-gradient(to top, var(--black-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slick-bottom .container {
  position: relative;
  bottom: auto;
  left: auto;
  transform: translateY(var(--slide-text-offset));
  width: 100%;
}

.slick-bottom .lead {
    width: 100% !important;
    position: static;
    margin: 0 auto !important;
  }

.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;
  bottom: -150px;
  position: absolute;
  transform: translateY(-50%);
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #001F4D;
    cursor: pointer;
    z-index: 1000;
    transition: color 0.3s ease, transform 0.3s ease;
}

.slick-prev i.bi-arrow-left,
.slick-next i.bi-arrow-right {
  font-size: clamp(1.5rem, 4vw, 3rem); /* min, preferred, max */
  font-weight: bold;
  color: white;
  text-shadow:
    0 0 1px #001F4D,
    0 0 2px #001F4D,
    0 0 4px #001F4D,
    0 0 6px #001F4D,
    0 0 8px #001F4D;
  pointer-events: none;
}

@keyframes navBarSlideDown {
  from {
      transform: translateY(-100%);
      visibility: visible; /* Make it visible at the start of animation */
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.slick-prev:hover i.bi-arrow-left,
.slick-next:hover i.bi-arrow-right {
  text-shadow:
    0 0 2px #001F4D,
    0 0 4px #001F4D,
    0 0 6px #001F4D,
    0 0 8px #001F4D,
    0 0 10px #001F4D;
  transform: scale(1.1);
  transition: text-shadow 0.2s ease, transform 0.2s ease;
}

.slick-prev {
    left: 5%; /* Adjust position */
}

.slick-next {
    right: 5%; /* Adjust position */
}

.slider-logo {
  position: absolute;
  top: 6rem;
  left: 51.1%;
  width: 25%;
  z-index: 900;
  opacity: 0; /* Hide initially */
  animation: slideDown 2s ease-in-out forwards;
  animation-delay: 1.1s;
  pointer-events: none;
}

/* Logo Slide-In Animation */
@keyframes slideDown {
  from {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    visibility: visible;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* NavBar Slide-In Animation */

@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    display: none !important;
  }
}

.slick-slideshow .slick-dots {
  display: none !important;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}

.slick-slideshow .slick-dots li {
  display: none !important;
  background: transparent;
  border: 5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}

.slick-slideshow .slick-dots button {
  display: none !important;
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}

.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  display: none !important;
  background: var(--white-color);
}

/*---------------------------------------
  STAT-BLOCKS               
-----------------------------------------*/
.stat-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  margin-top:0px;
  flex-wrap: wrap;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 210px;
  margin: 1.25rem;
  padding: 1.45rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.88), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at top left, rgba(0, 172, 255, 0.16), transparent 45%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.stat-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.35rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--light-blue);
  line-height: 1.1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-color);
}

/*---------------------------------------
  HOME HOW IT WORKS
-----------------------------------------*/
.home-how-it-works {
  padding: 1.5rem 0 1rem;
}

.home-how-it-works__title {
  color: var(--white-color);
  text-align: center;
  margin-bottom: 1.35rem;
}

.home-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-how-it-works__step {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 1.15rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white-color);
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-how-it-works.is-visible .home-how-it-works__step {
  opacity: 1;
  transform: translateY(0);
}

.home-how-it-works.is-visible .home-how-it-works__step:nth-child(1) {
  transition-delay: 0.1s;
}

.home-how-it-works.is-visible .home-how-it-works__step:nth-child(2) {
  transition-delay: 0.28s;
}

.home-how-it-works.is-visible .home-how-it-works__step:nth-child(3) {
  transition-delay: 0.46s;
}

.home-how-it-works__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.home-how-it-works__step h3 {
  color: var(--white-color);
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.home-how-it-works__step p {
  color: var(--white-color);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

@media screen and (prefers-reduced-motion: reduce) {
  .home-scroll-reveal,
  .home-how-it-works__step {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/*---------------------------------------
  HOME EVENTS PREVIEW
-----------------------------------------*/
.home-events-preview-section {
  padding-top: 1.25rem;
}

.home-events-preview-title {
  color: var(--white-color);
  text-align: center;
  margin-bottom: 1.25rem;
}

.home-events-preview {
  overflow-x: auto;
  border: 1px solid var(--grey-color);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.76);
}

.home-events-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white-color);
  font-size: 0.98rem;
}

.home-events-table thead tr {
  background: radial-gradient(circle at center, var(--light-blue), #001F4D);
}

.home-events-table th,
.home-events-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  vertical-align: middle;
}

.home-events-table tbody tr:last-child td {
  border-bottom: 0;
}

.home-events-table__event {
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.home-events-table__event a {
  color: var(--white-color);
}

.home-events-table__event a:hover {
  color: var(--light-blue);
}

.home-events-table__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.home-events-table__soon {
  color: #ffdb1a;
  font-weight: var(--font-weight-bold);
}

.home-events-table__closed {
  color: #ff3b3b;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .home-how-it-works__steps {
    grid-template-columns: 1fr;
  }
}


/*---------------------------------------
  BIOGRAPHIES               
-----------------------------------------*/
.bio-card {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  color: white; /* Ensure all text is white */
}

/* New class for the biography names */
.bio-name {
  text-align: center;
  font-size: 1.5rem; /* Slightly smaller than default h3 */
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

/* The wrapper paragraph contains the image and text */
.bio-content p {
  display: block;
  overflow: hidden; /* Ensures wrapping behavior */
  color: white; /* Ensures text remains white */
}

/* Float image to left so text wraps around it */
.bio-content img {
  float: left;
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px; /* Adds spacing between text and image */
}

/* Ensure text wraps properly around image */
.bio-content span {
  display: block;
  text-align: left;
  line-height: 1.5;
  color: white; /* Make sure the text is white */
  font-size: 18px;
  font-weight: normal;
}

/* Responsive fix: Stack image and text on small screens */
@media (max-width: 768px) {
  .bio-content img {
      float: none;
      display: block;
      margin: 0 auto 10px;
  }

  .bio-content span {
      text-align: center;
  }
}


/*---------------------------------------
  DROPDOWN LIST MULTIPICKER               
-----------------------------------------*/
/* Dropdown UL Styling */
.dropdown-options {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 1px solid #c4c4c4;
  max-height: 150px;
  overflow-y: auto;
  width: 100%;
  z-index: 1;
}

/* Make the label text non-selectable */
.dropdown-options label {
  user-select: none;
  cursor: pointer;
}

.dropdown-options li {
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-options li:hover {
  background-color: #bababa;
}

.dropdown-options input[type="checkbox"] {
  margin-right: 8px;
}

.custom-dropdown .dropdown-button {
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

/* Show dropdown when active */
.custom-dropdown.active .dropdown-options {
  display: block;
}

/*---------------------------------------
  MODERN TABLE               
-----------------------------------------*/
.table-responsive {
  overflow-x: auto;
  white-space: nowrap;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 65vh;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  text-align: left;
  background-color: #f9f9f9;
}

.modern-table thead tr {
  background: radial-gradient(circle at center, var(--light-blue), #001F4D);
  color: white;
  text-align: left;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 20;
}

.modern-table th,
.modern-table td {
  padding: 12px 5px;
  text-align: center;
  vertical-align: middle;
}

.modern-table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.modern-table tbody tr:hover {
  background-color: #ddd;
}

.modern-table .info-icon {
  color: #17a2b8;
  cursor: pointer;
  text-align: center;
}

.modern-table .edit-icon {
  color: #007bff;
  cursor: pointer;
  text-align: center;
}

.modern-table .bi-clipboard {
  color: #007bff;
  cursor: pointer;
  text-align: center;
}

.modern-table .delete-icon {
  color: #e74c3c;
  cursor: pointer;
  text-align: center;
}

.modern-table input[type="checkbox"] {
  cursor: pointer;
}

.no-select {
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE/Edge */
}

input[type="radio"] {
  margin-right: 5px;
  cursor: pointer;
}

.form-delete-icon {
  color: white;
  background-color: #f70a22;
  border-radius: 50%;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: white;
  border-width: 1px;
  border-style: solid;
}

.form-check-icon {
  font-size: 30px;
  color: #00ff1c;
}

.form-x-icon {
  font-size: 30px;
  color: #fe0000;
  font-weight: bold;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

.checkbox-wrap {
  display: inline-flex;
  align-items: center;
  gap: 20px; /* Add space between the checkbox and label */
  max-width: 100%; /* Prevent overflow */
}

.checkbox-wrap input[type="checkbox"] {
  margin: 0; /* Remove default margins from checkbox */
  vertical-align: middle;
  cursor: pointer;
  scale: 150%;
}

.checkbox-wrap label {
  font-size: 16px; /* Adjust as needed */
  line-height: 1.5; /* Ensure proper line height for wrapped text */
  word-wrap: break-word; /* Allow text to wrap within the container */
  color: var(--white-color);
  cursor: pointer;
}

.selected-row {
  border: 2px solid red; /* Highlight border */
}

.centered-cell {
  vertical-align: middle; /* Vertically centers the text */
  text-align: center;     /* Optional: Horizontally centers the text */
}

/*---------------------------------------
  CUSTOM CLIPBOAD COUNT              
-----------------------------------------*/

.icon-with-count {
  position: relative;
}

.icon-with-count .bi {
  font-size: 2rem;
  line-height: 2.5rem;
  color: var(--light-blue);
}

.icon-count {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.99rem; /* smaller to fit inside clipboard */
  font-weight: bold;
  color: rgb(0, 0, 0);
  white-space: nowrap;
  pointer-events: none;
}

/*---------------------------------------
  CUSTOM MENU               
-----------------------------------------*/
.custom-menu {
  background-color: white;
  border: 1px solid #ccc;
  padding: 0;
  list-style: none;
  width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1060;
}

.custom-menu ul {
  list-style: none; /* Remove default list markers */
  margin: 0;
  padding: 0;
}

.custom-menu li {
  list-style-type: none; /* Remove default list markers */
  padding: 8px 12px;
  cursor: pointer;
}

.custom-menu li::before {
  content: "-"; /* Use a bullet or any other character */
  margin-right: 8px;
  color: #007bff; /* Customize color */
  font-weight: bold;
}

.custom-menu li:hover {
  background-color: #f0f0f0;
}

/*---------------------------------------
  APPLY NOW BUTTON             
-----------------------------------------*/
.apply-now-btn {
    background: radial-gradient(circle at center, #00ac0b 0%, #005f0b 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-size 0.5s ease-out;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-color: #44fc51;
}

.apply-now-btn:hover {
    /* background-size: 300%; */
    color: var(--white-color);
    box-shadow: 0 0 1px 1px rgba(0, 255, 0, 0.5);
    animation: glowPulse 1s infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 1px 1px rgba(0, 255, 0, 0.4);
  }
  to {
    box-shadow: 0 0 5px 3px rgba(0, 255, 0, 0.6);
  }
}


/*---------------------------------------
  PASSWORD REQUIREMENTS             
-----------------------------------------*/

.password-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
}

.password-requirements li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #e74c3c; /* Red for invalid */
}

.password-requirements li.valid {
  color: #2ecc71; /* Green for valid */
}

.icon {
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
}


/*---------------------------------------
  LIST GROUP               
-----------------------------------------*/

.table thead tr {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 0 black;
}

.table tbody tr {
  cursor: grab;
}

.table tbody tr.dragging {
  opacity: 1;
  background-color: #f0f0f0;
}

.table tbody tr.top-18 {
  background-color: yellow !important;
}

@keyframes rowMove {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(20px);
  }
}

.table tbody tr.moving-up {
  animation: rowMove 0.3s ease-in;
  animation-direction: reverse;
}

.table tbody tr.moving-down {
  animation: rowMove 0.3s ease-in;
}

.dragging {
  opacity: 0.5;
}

.placeholder {
  background-color: #f0f0f0;
  border: 2px dashed #ccc;
}

/* .placeholder {
  background-color: #f0f0f0;
  border: 2px dashed #ccc;
  height: 48px;
} */

/* Smooth transition for placeholder and rows */
table tbody tr {
  transition: all 0.2s ease;
}

.filler {
  visibility: hidden;
  pointer-events: none;
}

.floating {
  pointer-events: none;
  z-index: 1060; /* Higher than modal */
  position: absolute;
  background-color: black; /* Floating row color */
  color: white; /* Optional for contrast */
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 8px;
  transition: top 0.2s ease, left 0.2s ease;
}

/*---------------------------------------
  SPONSOR HOMEPAGE               
-----------------------------------------*/
.owl-stage-outer {
  background: radial-gradient(circle at center, var(--light-blue), #155cc6);
}

.owl-carousel .item {
  height:15vh !important;
}

.sponsor-text-slide {
  background-color: transparent;
  color: white;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
  font-size: clamp(0.8rem, 2vw, 1.2rem); /* ✅ Responsive */
}

#toggle-carousel {
  display: block;
  margin: 16px auto 0;
  font-size: 1rem;
  padding: 8px 18px;
  position: static;
  transform: none;
  z-index: 60;
  width: 100px;
}

@media (max-width: 991px) {
  .sponsor-text-slide {
    font-size: 0.8rem !important;
  }
}

/*---------------------------------------
  SPONSOR DIVIDER               
-----------------------------------------*/
.sponsor-divider {
  display: flex;
  align-items: center;
  text-align: center;
  width: 90%;
  left: 5%;
  position: relative;
  margin: 40px 0;
}

.sponsor-divider::before,
.sponsor-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.sponsor-divider span {
  border-radius: 50px;
  padding: 8px 20px;
  background: white;
  border: 1px solid #ccc;
  font-weight: bold;
}


#colorPicker {
    border: none;
    width: 50px;
    height: 30px;
    cursor: pointer;
}

/*---------------------------------------
  SPONSOR BLOCK               
-----------------------------------------*/
.sponsor-frame {
  display: flex;
  flex-direction: column;
  width: 25vw;
  background: radial-gradient(circle at center, var(--light-blue), #001F4D);
  align-content: center;
  border-style: ridge;
  border-width: 5px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  opacity: 0;
  max-width: 17%; /* important that this gets overridden on mobile */
}


/*---------------------------------------
  TOAST               
-----------------------------------------*/
#toastContainer {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.toast {
  background: radial-gradient(circle at center, var(--light-blue), #001F4D);
  color: #fff;
  padding: 16px 24px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(7, 108, 251, 0.2);
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInOut 7s forwards;
}

@keyframes fadeInOut {
  0% {
      opacity: 0;
      transform: translateY(-40px);
  }
  10% {
      opacity: 1;
      transform: translateY(0);
  }
  90% {
      opacity: 1;
      transform: translateY(0);
  }
  100% {
      opacity: 0;
      transform: translateY(-40px);
  }
}


/*---------------------------------------
  CUSTOM CIRCLE IMAGES               
-----------------------------------------*/

.custom-circle-image {
  border-radius: 100px;
  width: 55px;
  height: 55px;
}

.custom-circle-image.team-image {
  width: 85px;
  height: 85px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.featured {
  background: var(--dark-grey);
}

/*---------------------------------------
  SPARKLES               
-----------------------------------------*/

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: currentColor;
  transform: rotate(45deg);
  animation: sparkle-flicker 1.5s infinite ease-in-out;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}


@keyframes sparkle-flicker {
  0%, 100% {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.5) rotate(45deg);
    opacity: 1;
  }
}


/*---------------------------------------
  ABOUT               
-----------------------------------------*/
.about .nav-pills .nav-item {
  width: 100%;
}

.about .nav-pills .nav-link {
  color: var(--white-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid var(--white-color);
  border-radius: 0;
  padding-right: 0;
}

.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active, 
.about .nav-pills .show>.nav-link {
  background: transparent;
  border-left-color: var(--dark-blue);
  color: var(--dark-blue);
}

/*---------------------------------------
  FAQ ACCORDION               
-----------------------------------------*/

.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-top-style: none;
  color: var(--white-color);

  border-width: 1px;
  border-color: white;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--white-color);
}

button:focus:not(:focus-visible) {
  border-color: #c4c4c4;
  box-shadow: none;
  color: var(--grey-color);
}

.accordion-body {
  border-top: 1px solid rgba(0,0,0,.125);
  color: var(--white-color);
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: var(--white-color);
  position: relative;          /* required so ::after uses this as anchor */
  justify-content: center !important;
  text-align: center !important;
  padding-left: 1rem !important;  /* you can tweak this */
  padding-right: 1rem !important;
}

/* Default (collapsed) state */
.accordion-button::after {
  position: absolute !important;
  right: 1rem;             /* adjust spacing as needed */
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Expanded state */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 2rem 0;
  border-left: white;
  border-left-style: solid;
  border-left-width: 1px;
  border-right: white;
  border-right-style: solid;
  border-right-width: 1px;
}

/*---------------------------------------
  TEAM MEMBERS               
-----------------------------------------*/
.team {
  background: var(--dark-grey);
}

.team-thumb {
  background: var(--white-color);
  position: relative;
  border-radius: .25rem;
  padding: 42px 32px;
}

.team-info {
  width: 100%;
}

.custom-modal-btn {
  background: transparent;
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 32px;
  width: 42px;
  height: 42px;
  scale: 150%;
}

.modal-body {
  padding: 4rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#cart-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#cart-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#cart-modal .modal-footer {
  padding: 2rem 4rem;
}

/*---------------------------------------
  SKILL - PROGRESS BAR               
-----------------------------------------*/
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
}

.skill-thumb span {
  color: var(--black-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.skill-thumb .progress {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}

.skill-thumb .progress .progress-bar-primary {
  background: var(--grey-color);
}

/*---------------------------------------
  PRODUCT               
-----------------------------------------*/
.front-product {
  background: var(--dark-grey);
}

.product-thumb {
  background: var(--white-color);
  position: relative;
  transition: all 0.5s ease-out;
}

.product-image {
  transition: all 0.5s ease-out;
}

.product-thumb:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.product-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.product-info {
  padding: 30px 20px;
  min-height: 190px;
}

.product-description,
.product-cart-thumb {
  padding: 0 20px;
}

.product-icon {
  color: var(--white-color);
}

.product-title-link {
  color: var(--black-color);
}

.product-additional-link {
  display: inline-block;
  vertical-align: top;
  font-size: var(--product-link-font-size);
  margin-top: 32px;
  margin-right: 12px;
}

.product-alert {
  background: var(--white-color);
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  padding: 3px 10px;
}

.product-p {
  font-size: var(--product-link-font-size);
}

.view-all {
  text-transform: uppercase;
  color: var(--p-color);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid var(--grey-color);
  padding-bottom: 6px;
}

/*---------------------------------------
  IMAGE-UPLOAD              
-----------------------------------------*/
.image-upload-section {
    text-align: center;
    margin: 20px 0;
  }

.image-dropzone {
    border: 2px dashed #c9c9c9;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    color: #666;
    background: #f8f9fa;
    height: 90px;
  }

.image-dropzone.drag-over {
    border-color: var(--light-blue);
    background: #eef5ff;
    color: #111;
  }

.gallery-image-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: transparent;
    border-color: #fff;
  }

.gallery-image-preview {
    width: 160px;
    height: 160px;
  }

.gallery-image-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.gallery-bulk-edit .gallery-image-actions {
    align-items: center;
  }

.gallery-bulk-edit .gallery-show-toggle,
.gallery-bulk-edit .gallery-select {
    width: 100%;
    max-width: 320px;
  }

@media (min-width: 768px) {
    .gallery-bulk-edit .gallery-image-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .gallery-bulk-edit .gallery-show-toggle,
    .gallery-bulk-edit .gallery-select {
        width: auto;
        min-width: 200px;
        max-width: 260px;
    }
}

.gallery-upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.gallery-upload-box {
    background: #ffffff;
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

.gallery-upload-box .spinner {
    width: 45px;
    height: 45px;
    margin: 0 auto 16px;
  }

.gallery-upload-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }

.gallery-upload-icon.success-icon {
    color: #198754;
  }

.gallery-upload-icon.fail-icon {
    color: #dc3545;
  }

.gallery-existing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 18px;
    flex-wrap: wrap;
  }

.gallery-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0 18px;
  }

.gallery-actions-wrapper {
    padding-top: var(--nav-offset);
  }

.gallery-add-card {
    min-width: 275px;
  }

.gallery-add-card .team-info {
    padding-right: 90px;
  }

.gallery-actions-row .gallery-existing-actions {
    margin: 0;
  }

.gallery-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
  }

.gallery-filter-btn {
    background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
    border-style: solid;
    border-color: var(--white-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

.gallery-filter-btn.active {
    background: #001F4D;
    color: #fff;
  }

.gallery-filter-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: #ffffff;
    color: #001F4D;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

.gallery-filter-panel {
    position: absolute;
    top: 48px;
    right: 0;
    width: min(360px, 90vw);
    background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--white-color);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 100;
    color: var(--white-color);
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

.gallery-filter-panel.is-open {
    display: block;
  }

.gallery-filter-title {
    font-weight: 600;
    margin-bottom: 6px;
  }

.gallery-filter-toggle {
    width: 100%;
    text-align: left;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--white-color);
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
  }

.gallery-filter-toggle::after {
    content: "▾";
    font-size: 12px;
    transition: transform 0.2s ease;
  }

.gallery-filter-toggle.is-open::after {
    transform: rotate(180deg);
  }

.gallery-filter-options.is-collapsed {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
  }

.gallery-filter-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 8px;
    min-height: 0;
  }

.gallery-filter-chip {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 14px;
    padding: 2px 8px;
    font-size: 18px;
    line-height: 1.4;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

.gallery-filter-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

.gallery-filter-chip button {
    border: none;
    background: transparent;
    color: var(--white-color);
    font-size: 12px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
  }

.gallery-filter-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin-bottom 0.2s ease;
  }

.gallery-filter-options.is-expanded {
    max-height: 360px;
    opacity: 1;
    margin-bottom: 12px;
  }

.gallery-filter-search {
    margin-bottom: 12px;
    position: relative;
  }

.gallery-filter-input {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    padding: 6px 28px 6px 12px;
    font-size: 20px;
  }

.gallery-filter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

.gallery-filter-search-clear {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    display: none;
    line-height: 1;
  }

.gallery-filter-search-clear:hover {
    color: #ffffff;
  }

.gallery-filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    cursor: pointer;
  }

.gallery-filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.gallery-filter-clear {
    border: 1px solid var(--white-color);
    background: transparent;
    color: var(--white-color);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.gallery-filter-apply {
    border: 1px solid var(--white-color);
    background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white-color);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 767px) {
    .gallery-actions-row {
        align-items: flex-start;
    }

    .gallery-filters {
        width: 100%;
        justify-content: flex-end;
    }
    
    .gallery-filter-panel {
        right: 0;
        width: 100%;
    }

    .gallery-existing-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .gallery-existing-actions .gallery-action-btn {
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery-action-btn {
    min-width: 140px;
    text-align: center;
    padding:5px;
  }

.gallery-action-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

.gallery-action-btn:not(:disabled):hover {
    background-size: 300%;
    color: var(--white-color);
    cursor: pointer;
  }

.gallery-action-btn.bulk-edit-active {
    background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
  }

.gallery-action-btn.gallery-delete-btn {
    background: radial-gradient(circle at center, #ff3232, #930101);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-image-preview .gallery-select-checkbox {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 2;
  }

.gallery-image-preview .edit-icon {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    z-index: 2;
  }

.gallery-image-preview .edit-icon i {
    font-size: 11px;
  }

.gallery-saved-card {
    position: relative;
  }

.gallery-saved-card .gallery-select-checkbox {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 2;
  }

.gallery-saved-card .edit-icon {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    z-index: 2;
  }

.gallery-saved-card .edit-icon i {
    font-size: 11px;
  }

.gallery-saved-card .delete-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    font-size: 22px;
    line-height: 10px;
    z-index: 2;
  }

.gallery-saved-card .gallery-info-container {
    bottom: 5px;
    right: 5px;
  }

.gallery-info-container {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 2;
  }

.gallery-info-icon {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    padding: 0;
  }

.gallery-info-icon i {
    font-size: 12px;
  }

.gallery-info-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 16px;
    min-width: 160px;
    max-width: 220px;
    white-space: pre-line;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 3000;
  }

.gallery-info-container:hover .gallery-info-tooltip {
    opacity: 1;
    visibility: visible;
  }

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 24px;
  }

.gallery-lightbox.is-open {
    display: flex;
  }

.gallery-lightbox-content {
    max-width: 100%;
    max-height: 100%;
  }

.gallery-lightbox-content img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    background: transparent;
  }

.gallery-saved-card .gallery-image-preview img {
    border: none;
    border-radius: 0;
  }

.gallery-saved-card {
    padding: 1px;
    border-radius: 5px;
    border-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

.gallery-saved-card.is-selected {
    border-color: #f4f800;
    border-width: 5px;
    border-style: ridge;
  }

.public-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 240px));
    gap: 18px;
    min-height: 70vh;
    align-content: start;
    justify-content: center;
  }

.public-gallery-actions {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
  }

.public-gallery-actions .gallery-actions-spacer {
    width: 100%;
  }

.public-gallery-actions .gallery-selected-chips {
    justify-content: flex-start;
    margin: 0;
    min-height: 40px;
    align-items: center;
  }

.public-gallery-actions .public-gallery-pagination {
    margin-top: 0;
  }

.public-gallery-pagination[data-pagination="bottom"] {
    margin-top: 24px;
  }

.public-gallery-actions .gallery-filters {
    justify-content: flex-end;
    width: 100%;
  }

.public-gallery-filter {
    position: fixed;
    top: calc(var(--nav-offset) + 12px);
    right: 24px;
    width: auto;
    z-index: 1040;
  }

.public-gallery-filter .gallery-filter-panel {
    position: fixed;
    top: calc(var(--nav-offset) + 60px);
    right: 24px;
    width: min(360px, calc(100vw - 32px));
    background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%) !important;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--white-color);
    border-radius: 12px;
    color: var(--white-color);
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

.public-gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

.public-gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

.public-gallery-item:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
  }

.gallery-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease, border-color 0.2s ease;
    opacity: 0;
    transform: translateY(28px);
    animation: galleryFadeInUp 0.55s ease forwards;
  }

.gallery-card:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
  }

@keyframes galleryFadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-card__media-wrap,
.gallery-card__lightbox {
    display: block;
    height: 100%;
  }

.gallery-card__media {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

.gallery-status,
.gallery-selected-chips,
.gallery-empty,
.gallery-empty-inline {
    color: var(--white-color);
    text-align: center;
  }

.gallery-selected-chips,
.gallery-filter-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
  }

.gallery-chip {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 14px;
    padding: 2px 8px;
    font-size: 16px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

.gallery-chip__x {
    border: none;
    background: transparent;
    color: var(--white-color);
    line-height: 1;
    padding: 0;
  }

.gallery-filter-check {
    color: var(--white-color);
  }

.public-gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

.gallery-pagination-btn {
    min-width: 60px;
    text-align: center;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

.gallery-pagination-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

.gallery-page-input {
    width: 72px;
    text-align: center;
    border: 1px solid var(--white-color);
    border-radius: 20px;
    padding: 5px 10px;
    background: transparent;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
  }

@media (max-width: 767px) {
    .public-gallery-actions {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .public-gallery-actions .gallery-actions-spacer {
        display: none;
    }

    .public-gallery-actions .gallery-filters {
        justify-content: center;
    }

    .public-gallery-filter {
        right: 16px;
    }

    .public-gallery-filter .gallery-filter-panel {
        right: 16px;
        width: min(320px, calc(100vw - 32px));
    }

    .public-gallery-actions .public-gallery-filter {
        justify-content: flex-end;
        width: auto;
    }

    .public-gallery-pagination {
        gap: 8px;
    }

    .gallery-pagination-btn {
        min-width: 40px;
        padding: 2px 8px !important;
    }

    .gallery-page-input {
        width: 56px;
        padding: 2px 8px !important;
    }
}

.gallery-caption-btn {
    border: 1px solid #001F4D;
    color: #001F4D;
    background: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease;
  }

.gallery-caption-btn:hover {
    background: #001F4D;
    color: #fff;
  }

.gallery-show-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }

.gallery-select {
    width: 100%;
  }

.image-preview-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
    background: transparent;
  }

#galleryImagePreviewContainer {
    max-height: 360px;
    overflow-y: auto;
    border-style: dotted;
  }

#galleryExistingPreviewContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-height: 70vh;
    overflow-y: auto;
  }

#galleryExistingPreviewContainer .gallery-image-card {
    width: 100%;
  }

#galleryImagePreviewContainer.drag-over {
    border-color: var(--light-blue);
    background: #eef5ff;
  }

.gallery-drop-placeholder {
    width: 100%;
    margin: 24px 0;
    color: dimgray;
    text-align: center;
    pointer-events: none;
  }

#bulkEditPreviewContainer {
    max-height: 360px;
    overflow-y: auto;
    border-style: dotted;
  }

.bulk-edit-modal .modal-content {
    height: 100%;
  }

.bulk-edit-modal .modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
  }

.bulk-edit-modal .image-upload-section {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-height: 0;
    margin: 0;
  }

.bulk-edit-modal #bulkEditGalleryForm {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

.bulk-edit-modal #bulkEditPreviewContainer {
    flex: 0 1 auto;
    min-height: 200px;
    max-height: clamp(200px, 65vh, 60vh);
    overflow-y: auto;
  }

.bulk-edit-modal .gallery-bulk-edit {
    flex: 0 0 auto;
  }

.add-gallery-modal .modal-content {
    height: 100%;
  }

.add-gallery-modal .modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
  }

.add-gallery-modal .image-upload-section {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-height: 0;
    margin: 0;
  }

.add-gallery-modal #addGalleryForm {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

.add-gallery-modal #galleryImagePreviewContainer {
    flex: 0 1 auto;
    min-height: 200px;
    height: clamp(200px, 65vh, 60vh);
    max-height: none;
    overflow-y: auto;
  }

.add-gallery-modal .gallery-bulk-edit {
    flex: 0 0 auto;
  }

.image-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
  }

.gallery-image-preview img {
    object-fit: contain;
    background: transparent;
    border-color: #fff;
  }

body.gallery-caption-open .modal-backdrop {
    background-color: #333;
    opacity: 0.7;
    z-index: 1060;
  }

body.gallery-caption-open #galleryCaptionModal {
    z-index: 1061;
  }

.image-preview .delete-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 10px;
}



/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.form-floating>label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.error-message {
  color: red;
  display: none; /* Hidden by default */
  font-style: italic;
  font-size: small;
  margin-left: 10px;
}

.warning-message {
  color: rgb(255, 111, 0);
  display: none; /* Hidden by default */
  font-style: italic;
  font-size: small;
  margin-left: 10px;
}

.contact-form button[type='submit'] {
  background: var(--light-blue);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type='submit']:hover {
  background: var(--dark-blue);
}

.public-contact-form .forms-preview {
  --public-form-border-color: rgba(220, 225, 232, 0.82);
  --forms-preview-text-color: var(--white-color);
  --forms-preview-background: transparent;
  --forms-preview-field-background: var(--dark-gray);
  width: 100%;
  background: var(--forms-preview-background);
  color: var(--forms-preview-text-color);
  padding-bottom: 3rem;
}

.public-contact-form .forms-preview__title {
  color: var(--forms-preview-text-color);
  margin-bottom: 1.5rem;
}

.public-contact-form .forms-preview,
.public-contact-form .forms-preview__form,
.public-contact-form .forms-preview__field,
.public-contact-form .forms-preview__choices,
.public-contact-form .forms-preview__choice,
.public-contact-form .forms-preview__switch,
.public-contact-form .forms-preview__switch-label,
.public-contact-form .forms-preview__autofill,
.public-contact-form .forms-preview__autofill-hint,
.public-contact-form .forms-preview__autofill-status,
.public-contact-form .forms-preview__applicant-label,
.public-contact-form .forms-preview__waiver,
.public-contact-form .forms-preview__waiver-body,
.public-contact-form .forms-preview__waiver-signature,
.public-contact-form .forms-preview__dropzone,
.public-contact-form .forms-preview__dropzone-body {
  color: var(--forms-preview-text-color);
}

.public-contact-form .forms-preview[data-field-background-mode="match"] {
  --forms-preview-field-background: var(--forms-preview-background);
}

.public-contact-form .forms-preview__form {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.public-contact-form .forms-preview__applicant-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.public-contact-form .forms-preview__applicant-tablist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.public-contact-form .forms-preview__applicant-tab,
.public-contact-form .forms-preview__applicant-arrow {
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--public-form-border-color);
  border-radius: 50px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  min-height: 42px;
  padding: 9px 16px;
  transition: background-size 0.75s ease-out, opacity 0.2s ease;
}

.public-contact-form .forms-preview__applicant-arrow {
  min-width: 42px;
  padding: 7px 13px;
  font-size: 1.35rem;
  line-height: 1;
}

.public-contact-form .forms-preview__applicant-tab:hover,
.public-contact-form .forms-preview__applicant-arrow:hover,
.public-contact-form .forms-preview__applicant-tab.is-active {
  background-size: 300%;
}

.public-contact-form .forms-preview__applicant-tab.is-active {
  border-color: #ffdb1a;
}

.public-contact-form .forms-preview__applicant-tab.is-invalid {
  border-color: red;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.32);
  position: relative;
}

.public-contact-form .forms-preview__applicant-tab.is-invalid::after {
  content: "!";
  position: absolute;
  top: -8px;
  right: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: red;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.public-contact-form .forms-preview__applicant-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.public-contact-form .forms-preview__applicant-label {
  flex-basis: 100%;
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.public-contact-form .forms-preview__applicant-panel {
  display: none;
}

.public-contact-form .forms-preview__applicant-panel.is-active {
  display: block;
}

.public-contact-form .forms-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1.5rem !important;
}

.public-contact-form .forms-preview__field {
  min-width: 0;
}

.public-contact-form .forms-preview__field.is-hidden {
  display: none !important;
}

.public-contact-form .forms-preview__field.is-disabled {
  opacity: 0.68;
}

.public-contact-form .forms-preview__label,
.public-contact-form .forms-preview__group-label {
  display: block;
  color: var(--forms-preview-text-color);
  font-weight: var(--font-weight-normal);
  margin-bottom: 0.45rem;
}

.public-contact-form .forms-preview__required {
  color: red;
  display: inline-block;
  margin-right: 0.2rem;
}

.public-contact-form .forms-preview__required[data-hidden] {
  display: none;
}

.public-contact-form .forms-preview__control,
.public-contact-form select.forms-preview__control,
.public-contact-form textarea.forms-preview__control {
  width: 100%;
  min-height: 58px;
  background-color: var(--forms-preview-field-background);
  border: 1px solid var(--public-form-border-color);
  border-radius: 0.25rem;
  color: var(--forms-preview-text-color);
  padding: 1rem 0.85rem;
  font: inherit;
}

.public-contact-form select.forms-preview__control option,
.public-contact-form .forms-preview__address-field option {
  background-color: var(--forms-preview-field-background);
  color: var(--forms-preview-text-color);
}

.public-contact-form select.forms-preview__control:invalid,
.public-contact-form .forms-preview__address-field:invalid {
  color: var(--forms-preview-text-color);
}

.public-contact-form .forms-preview__address-field:disabled,
.public-contact-form select.forms-preview__address-field:disabled,
.public-contact-form select.forms-preview__address-field:disabled option {
  color: var(--forms-preview-text-color);
  opacity: 1;
  -webkit-text-fill-color: var(--forms-preview-text-color);
}

.public-contact-form textarea.forms-preview__control {
  min-height: 160px;
  resize: vertical;
}

.public-contact-form .forms-preview__control:focus {
  border-color: var(--public-form-border-color);
  box-shadow: 0 0 0 0.2rem rgba(21, 92, 198, 0.25);
  outline: none;
}

.public-contact-form .forms-preview__control:not(.forms-preview__address-field)::placeholder {
  color: transparent;
  opacity: 1;
}

.public-contact-form .forms-preview__address-field::placeholder {
  color: transparent;
  opacity: 1;
}

.public-contact-form .forms-preview__address-floating {
  position: relative;
}

.public-contact-form .forms-preview__address-floating::before {
  content: attr(data-address-label);
  position: absolute;
  top: 1.05rem;
  left: 0.85rem;
  z-index: 1;
  color: var(--forms-preview-text-color);
  font-size: 1rem;
  line-height: 1.25;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
}

.public-contact-form .forms-preview__address-floating[data-address-required="true"]::before {
  left: 1.45rem;
}

.public-contact-form .forms-preview__address-floating[data-address-required="true"]::after {
  content: "*";
  position: absolute;
  top: 1.05rem;
  left: 0.85rem;
  z-index: 1;
  color: red;
  font-size: 1rem;
  line-height: 1.25;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease;
}

.public-contact-form .forms-preview__address-floating:has(.forms-preview__address-field:focus)::before,
.public-contact-form .forms-preview__address-floating:has(input.forms-preview__address-field:not(:placeholder-shown))::before,
.public-contact-form .forms-preview__address-floating:has(select.forms-preview__address-field option:checked:not([value=""]))::before {
  top: 0.42rem;
  color: var(--forms-preview-text-color);
  font-size: 0.78rem;
}

.public-contact-form .forms-preview__address-floating[data-address-required="true"]:has(.forms-preview__address-field:focus)::after,
.public-contact-form .forms-preview__address-floating[data-address-required="true"]:has(input.forms-preview__address-field:not(:placeholder-shown))::after,
.public-contact-form .forms-preview__address-floating[data-address-required="true"]:has(select.forms-preview__address-field option:checked:not([value=""]))::after {
  top: 0.42rem;
  font-size: 0.78rem;
}

.public-contact-form .forms-preview__address-floating .forms-preview__address-field {
  padding-top: 1.55rem;
}

.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field)) {
  position: relative;
}

.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field))::before {
  content: attr(data-label);
  position: absolute;
  top: 1.05rem;
  left: 0.85rem;
  z-index: 1;
  color: var(--forms-preview-text-color);
  font-size: 1rem;
  line-height: 1.25;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease;
}

.public-contact-form .forms-preview__field[data-required="true"]:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field))::before {
  content: attr(data-label);
  left: 1.45rem;
}

.public-contact-form .forms-preview__field[data-required="true"]:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field))::after {
  content: "*";
  position: absolute;
  top: 1.05rem;
  left: 0.85rem;
  z-index: 1;
  color: red;
  font-size: 1rem;
  line-height: 1.25;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease;
}

.public-contact-form .forms-preview__field:has(textarea.forms-preview__control:not(.forms-preview__address-field))::before {
  top: 1rem;
}

.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field):focus)::before,
.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea):not(.forms-preview__address-field):not(:placeholder-shown))::before,
.public-contact-form .forms-preview__field:has(select.forms-preview__control:not(.forms-preview__address-field) option:checked:not([value=""]))::before {
  top: 0.42rem;
  color: var(--forms-preview-text-color);
  font-size: 0.78rem;
}

.public-contact-form .forms-preview__field[data-required="true"]:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field):focus)::after,
.public-contact-form .forms-preview__field[data-required="true"]:has(.forms-preview__control:is(input, textarea):not(.forms-preview__address-field):not(:placeholder-shown))::after,
.public-contact-form .forms-preview__field[data-required="true"]:has(select.forms-preview__control:not(.forms-preview__address-field) option:checked:not([value=""]))::after {
  top: 0.42rem;
  font-size: 0.78rem;
}

.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field)) .forms-preview__label,
.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field)) .forms-preview__group-label {
  display: none;
}

.public-contact-form .forms-preview__field:has(.forms-preview__control:is(input, textarea, select):not(.forms-preview__address-field)) .forms-preview__control {
  padding-top: 1.55rem;
}

.public-contact-form .forms-preview__text-block {
  color: var(--forms-preview-text-color);
  line-height: 1.55;
}

.public-contact-form .forms-preview__text-block a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.public-contact-form .forms-preview__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forms-preview-text-color);
  line-height: 1.35;
}

.public-contact-form .forms-preview__divider::before,
.public-contact-form .forms-preview__divider::after {
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid var(--public-form-border-color);
}

.public-contact-form .forms-preview__divider:empty::before {
  flex-basis: 100%;
}

.public-contact-form .forms-preview__divider:empty::after {
  display: none;
}

.public-contact-form .forms-preview__error {
  color: red;
  font-style: italic;
  font-size: small;
  margin: 0.35rem 0 0 10px;
}

.public-contact-form .forms-preview__choice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.55rem;
  margin-bottom: 0.4rem;
  padding: 8px 11px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(red 0 0) top left / 0 3px no-repeat,
    linear-gradient(red 0 0) top right / 3px 0 no-repeat,
    linear-gradient(red 0 0) bottom right / 0 3px no-repeat,
    linear-gradient(red 0 0) bottom left / 3px 0 no-repeat;
}

.public-contact-form .forms-preview__choices--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.public-contact-form .forms-preview__choices--stacked .forms-preview__choice {
  margin-right: 0;
  margin-bottom: 0;
}

.public-contact-form .forms-preview__choice--radio {
  font-size: 1.08rem;
  line-height: 1.35;
}

.public-contact-form .forms-preview__choice input,
.public-contact-form .forms-preview__waiver-signature input {
  accent-color: var(--light-blue);
}

.public-contact-form .forms-preview__choice.is-attention {
  animation: waiver-signature-draw 1.15s ease forwards;
}

.public-contact-form .forms-preview__switch-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  width: 100%;
}

.public-contact-form .forms-preview__switch-row .forms-preview__group-label {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

.public-contact-form .forms-preview__switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 2.25rem;
  margin: 0;
  padding: 0.2rem 0.35rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  background:
    linear-gradient(red 0 0) top left / 0 3px no-repeat,
    linear-gradient(red 0 0) top right / 3px 0 no-repeat,
    linear-gradient(red 0 0) bottom right / 0 3px no-repeat,
    linear-gradient(red 0 0) bottom left / 3px 0 no-repeat;
}

.public-contact-form .forms-preview__switch.is-attention {
  animation: waiver-signature-draw 1.15s ease forwards;
}

.public-contact-form .forms-preview__switch input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.public-contact-form .forms-preview__slider {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 3.35rem;
  height: 1.75rem;
  border: 1px solid var(--public-form-border-color);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.public-contact-form .forms-preview__slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 0.25rem 0.8rem rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition: transform 0.22s ease;
}

.public-contact-form .forms-preview__switch input[type="checkbox"]:checked + .forms-preview__slider {
  border-color: rgba(59, 185, 255, 0.9);
  background: radial-gradient(circle at top left, #55d8ff 0%, #1d83ff 45%, #0758cf 100%);
  box-shadow: 0 0 1rem rgba(29, 131, 255, 0.32);
}

.public-contact-form .forms-preview__switch input[type="checkbox"]:checked + .forms-preview__slider::before {
  transform: translate(1.65rem, -50%);
}

.public-contact-form .forms-preview__switch input[type="checkbox"]:focus-visible + .forms-preview__slider {
  outline: 2px solid #ffdb1a;
  outline-offset: 3px;
}

.public-contact-form .forms-preview__switch-label {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.public-contact-form .forms-preview__waiver-scrollbox {
  position: relative;
  border: 1px solid var(--public-form-border-color);
  border-radius: 0.25rem;
  background-color: #141414;
}

.public-contact-form .forms-preview__waiver-body {
  max-height: 320px;
  overflow-y: auto;
  padding: 1rem;
  background-color: #141414;
}

.public-contact-form .forms-preview__waiver-body p,
.public-contact-form .forms-preview__waiver-body li,
.public-contact-form .forms-preview__waiver-body div,
.public-contact-form .forms-preview__waiver-body span,
.public-contact-form .forms-preview__waiver-body strong,
.public-contact-form .forms-preview__waiver-body em {
  color: var(--white-color) !important;
}

.public-contact-form .forms-preview__waiver-signature {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(red 0 0) top left / 0 3px no-repeat,
    linear-gradient(red 0 0) top right / 3px 0 no-repeat,
    linear-gradient(red 0 0) bottom right / 0 3px no-repeat,
    linear-gradient(red 0 0) bottom left / 3px 0 no-repeat;
  font-size: 1.08rem;
  line-height: 1.45;
}

.public-contact-form .forms-preview__waiver-signature input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 0;
}

.public-contact-form .forms-preview__waiver-signature span {
  display: block;
}

.public-contact-form .forms-preview__waiver-signature.is-attention {
  animation: waiver-signature-draw 1.15s ease forwards;
}

.public-contact-form .forms-preview__waiver-scroll-hint {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  color: #ffdb1a;
  font-size: 3rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  animation: waiver-bounce 0.8s ease-in-out infinite;
}

.public-contact-form .forms-preview__waiver-scroll-hint.is-hidden {
  display: none;
}

.public-contact-form .forms-preview__dropzone {
  border: 1px dashed var(--public-form-border-color);
  border-radius: 0.25rem;
  background-color: var(--dark-gray);
  padding: 1rem;
}

.public-contact-form .forms-preview__browse,
.public-contact-form .forms-preview__autofill-btn {
  border: 1px solid var(--public-form-border-color);
  background: transparent;
  color: var(--white-color);
}

@keyframes waiver-bounce {
  0%,
  100% {
    transform: translate(-50%, 50%) translateY(0);
  }
  50% {
    transform: translate(-50%, 50%) translateY(10px);
  }
}

@keyframes waiver-signature-draw {
  0% {
    background-size: 0 3px, 3px 0, 0 3px, 3px 0;
  }
  25% {
    background-size: 100% 3px, 3px 0, 0 3px, 3px 0;
  }
  50% {
    background-size: 100% 3px, 3px 100%, 0 3px, 3px 0;
  }
  75% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0;
  }
  100% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  }
}

.public-contact-form .forms-preview__field.field-error .forms-preview__control,
.public-contact-form .forms-preview__control.field-error {
  border-color: red;
}

.public-contact-form .forms-preview__footer {
  margin-top: 1.5rem;
  text-align: center;
}

.contact-form.public-contact-form button.forms-preview__submit[type='submit'] {
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--public-form-border-color);
  border-radius: 50px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px 28px;
  min-width: 120px;
  transition: background-size 0.75s ease-out;
}

.contact-form.public-contact-form button.forms-preview__submit[type='submit']:hover {
  background-size: 300%;
}

.public-contact-form .forms-preview__message {
  color: var(--white-color);
  margin-top: 1rem;
}

.public-contact-form .forms-preview__message--success {
  color: #7bd88f;
}

.public-contact-form .forms-empty {
  color: var(--white-color);
}

.public-contact-form .forms-preview__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.public-contact-form .forms-preview__submit-body.is-collapsed {
  display: none;
}

.event-register-header-detail {
  color: var(--white-color);
  font-size: 1.15rem;
  font-weight: var(--font-weight-bold);
  margin: 0.25rem 0 0;
}

.event-register-countdown {
  color: #ffdb1a;
}

.event-applicant-count {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  color: var(--white-color);
}

.event-applicant-count__label {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.event-applicant-count__select {
  width: 96px;
  min-height: 46px;
  background-color: var(--dark-gray);
  border: 1px solid rgba(220, 225, 232, 0.82);
  color: var(--white-color);
}

@media (max-width: 768px) {
  .public-contact-form .forms-preview__grid {
    display: block;
  }

  .public-contact-form .forms-preview__field {
    margin-bottom: 1.5rem;
  }
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--black-color);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  display: block;
  width: 50%;
}

.footer-menu-link {
  color: #6c757d;
  font-weight: var(--font-weight-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
}

.site-footer .social-icon-link {
  margin-top: 4px;
}

.site-footer .social-icon-link:hover,
.footer-menu-link:hover {
  color: var(--white-color);
}

.copyright-text {
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: #6c757d;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--dark-blue);
}

.semi-transparent-bg {
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  color: white; /* White text to contrast the background */
  padding: 0.5em 1em; /* Add some padding around the text */
  display: inline-block; /* Ensures the background only covers the text */
  border-radius: 5px; /* Optional: Adds rounded corners to the background */
}

/*---------------------------------------
  FACEBOOK EMBED               
-----------------------------------------*/
.facebook-embed-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto; /* Center the container horizontally and add vertical spacing */
  width: 100%; /* Ensure the container takes up full width */
  max-width: 90%; /* Optional: Constrain to 90% of the viewport width */
}

.facebook-embed-container .fb-page {
  width: 800px; /* Match the width set in the Facebook plugin data-width attribute */
  max-width: 100%; /* Prevent overflow on smaller screens */
}

/*---------------------------------------
  EVENT CALENDAR               
-----------------------------------------*/
#calendar-header {
  display: flex;
  justify-content: space-between; /* Space between Today and centered navigation */
  align-items: center;
  margin-bottom: 10px;
  position: relative; /* Allows centering independent of the Today button */
}

#top-left {
  position: absolute; /* Keep Today button on the far left */
  left: 0;

}

#month-navigation {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the navigation group */
  gap: 10px; /* Add space between Previous, Label, and Next */
  flex-grow: 1; /* Ensure it takes up available space for centering */
}

#calendar-header span {
  color: var(--white-color);
  font-weight: bold;
  font-size: 16px;
}

.calendar-nav-btn {
  min-width: 46px;
  height: 34px;
  margin-top: 8px;
  padding: 7px 15px;
  line-height: 1;
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.calendar-nav-btn:hover,
.calendar-nav-btn:focus {
  background-size: 300%;
  color: var(--white-color);
}

#calendar-container {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Ensure the header spans the container width */

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #ddd;
}

#day-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* Seven equal-width columns */
  text-align: center;
  font-weight: bold;
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  color: var(--white-color);
  font-family: Arial, sans-serif;
}

#day-names div {
  padding: 5px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  box-sizing: border-box;
}

#day-names div:last-child {
  border-right: none; /* Remove the right border for the last column */
}

#calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0; /* Remove spacing between cells */
  border-collapse: collapse;
}

.day-cell {
  position: relative;
  border: 1px solid #ddd;
  min-height: 150px; /* Ensures enough height for two events */
  padding: 2px; /* Minimized padding for a compact look */
  box-sizing: border-box;
}

.day-number {
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
  color: white;
}

.event {
  position: absolute;
  background-color: var(--light-blue);
  color: var(--white-color);
  border-radius: 2px; /* Slightly rounded corners */
  padding-left: 3px;
  font-size: 10px; /* Compact text size */
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 18px; /* Fixed height for stacking rows */
  cursor: pointer; /* Clickable events */
  box-sizing: border-box;
  z-index: 2;
  font-weight: bold;
  font-size: 14px;
  border-style:solid;
  border-width: 0.1px;
  border-color: #a3a3a3;
}





/*---------------------------------------
  EVENTS               
-----------------------------------------*/
@keyframes fadeInTop {
  from {
      opacity: 0;
      transform: translateY(-120px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  from {
      opacity: 0;
      transform: translateY(120px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-120px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(120px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.event-list {
  max-width: 90%;
  margin: auto auto;
  padding: 10px;
}

.event-details {
  max-width: 100%;
  margin: auto auto;
  padding: 10px;
}

.event-container {
  display: flex;
  background: var(--dark-grey);
  border-width: 5px;
  border-style: ridge;
  border-color: var(--light-blue);
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Start hidden */
  transform: translateY(-120px); /* Start slightly above */
  animation: fadeInTop 1.5s ease forwards;
}

.events-page .site-header {
  background: transparent;
}

.events-page .event-container {
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.88), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at top left, rgba(0, 172, 255, 0.16), transparent 45%);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.gradient-page .event-container,
.gradient-page .bio-card,
.gradient-page .accordion-item,
.gradient-page .gallery-card,
.gradient-page .sponsor-frame {
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.88), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at top left, rgba(0, 172, 255, 0.16), transparent 45%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.gradient-page .accordion-button,
.gradient-page .accordion-body {
  background: transparent;
  color: var(--white-color);
}

.gradient-page .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--white-color);
}

.gradient-page .event-details {
  background: transparent;
}

.gradient-page .header-image,
.gradient-page .event-register-header .header-image {
  background-color: transparent;
}

.gradient-page #calendar-container {
  background: transparent;
}

.gradient-page .day-cell {
  background: rgba(0, 0, 0, 0.16);
}

.gradient-page .public-gallery-filter .gallery-filter-panel {
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.94), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at top left, rgba(0, 172, 255, 0.16), transparent 45%);
}

.event-image {
  width: 150px;
  object-fit: cover;
}

/* General Styles */
.event-timeframe {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: var(--white-color);
  margin: 5px 0;
  font-weight: bold;
}

.event-rsvp-status {
  font-size: 1em;
  color: var(--white-color); /* Default text color (black) */
  margin-top: 10px;
  font-weight: bold;
}

.event-rsvp-status .highlight {
  color: #ff4400; /* Highlight color for "opens" or "closes" */
  font-weight: bold;
}

.event-timeframe .highlight {
  color: #00d70e;
  font-weight: bold;
}

.event-timeframe .highlight:hover {
  color: #009e0b;
  font-weight: bold;
  font-size: 1.1em;
}

.date-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.date-icon {
  fill: var(--white-color); /* Adjust icon color */
  width: 20px;
  height: 20px;
}

.event-notes {
  color: var(--white-color);
}

.event-content {
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
  flex: 1;
}

.event-title {
  margin: 0;
  font-size: 1.5em;
  color: var(--white-color);
}

.event-description {
  font-size: 1em;
  margin: 10px 0;
  color: var(--white-color);
}

.event-timeframe,
.event-attendees,
.event-cost {
  font-size: 1em;
  color: var(--white-color);
  margin: 5px 0;
}

.event-timeframe strong,
.event-attendees strong,
.event-cost strong {
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM SEND BUTTON               
-----------------------------------------*/
.fx-send-button {
  position: relative;
  overflow: hidden;
  color: white;
  border-radius: 30px;
  padding: 14px 28px;
  border: solid !important;
  border-width: 1px !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: fx-pulse 1.8s ease-in-out infinite;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
  transform-origin: center;
  transform: scaleX(1);
  width: 100%;

  /* Red center gradient (default state) */
  background: radial-gradient(circle at center, #ff3232, #930101) !important;
  box-shadow: none !important;
}

/* Shrink state (added temporarily during transition) */
.fx-send-button.fx-transitioning {
  transform: scaleX(0);
}

/* Ready = Blue gradient from center */
.fx-send-button.ready {
  background: radial-gradient(circle at center, var(--light-blue), #001F4D) !important;
  animation: fx-pulse 1.8s ease-in-out infinite;
}

/* readygreen = Green gradient from center */
.fx-send-button.readygreen {
  background: radial-gradient(circle at center, #00ac0b 0%, #005f0b 100%) !important;
  animation: fx-pulse 1.8s ease-in-out infinite;
}

/* Sending = Left-to-right gradient w/ glow + animation */
.fx-send-button.fx-sending {
  background: linear-gradient(to right, #001F4D, var(--light-blue)) !important;
  animation: fx-pulse 1.8s ease-in-out infinite;
}

@keyframes fx-pulse {
  0%   { box-shadow: 0 0 0 rgba(0, 255, 255, 0); }
  50%  { box-shadow: 0 0 12px 6px rgba(0, 255, 255, 0.3); }
  100% { box-shadow: 0 0 0 rgba(0, 255, 255, 0); }
}

.fx-send-button .fx-send-label {
  position: relative;
  z-index: 5;
  background: transparent !important; /* prevent it from showing solid bg */
  transition: opacity 0.3s ease;
}

.fx-send-wave {
  display: none; /* HIDE until needed */
  position: absolute;
  pointer-events: none;
  top: 0;
  left: -60%;
  width: 200%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  background: radial-gradient(
    ellipse at left center,
    #ffffff 0%,
    #00c3ff 25%,
    transparent 60%
  );
  clip-path: polygon(
    0% 0%,
    85% 0%,
    100% 50%,
    85% 100%,
    0% 100%
  );
  animation: none;
  pointer-events: none;
}

.fx-send-button.fx-sending .fx-send-wave {
  display: block;
}

.fx-send-button.fx-sending .wave1 {
  animation: fx-wave-fancy 3s linear infinite;
}
.fx-send-button.fx-sending .wave2 {
  animation: fx-wave-fancy 3s linear infinite;
  animation-delay: 0.5s;
}
.fx-send-button.fx-sending .wave3 {
  animation: fx-wave-fancy 3s linear infinite;
  animation-delay: 1s;
}

@keyframes fx-wave-fancy {
  0%   { left: -60%; transform: scaleY(0.4); }
  50%  { transform: scaleY(1.4); }
  100% { left: 100%; transform: scaleY(0.4); }
}




/*---------------------------------------
  CUSTOM TEXTAREA               
-----------------------------------------*/
.scrollbox-wrapper {
  position: relative;
}

#scroll-indicator {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

#arrow {
  animation: bounce 1s infinite;
  transform-origin: center;
  opacity: 1;
  transform: scale(1);
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(6px); }
  100% { transform: translateY(0); }
}

.animate-out {
  animation: fadeOutScale 0.4s forwards;
}

.animate-in {
  animation: fadeInScale 0.4s forwards;
}

@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*---------------------------------------
  YES NO DIALOG               
-----------------------------------------*/
.yes-no-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  
}

.yes-no-dialog-box {
  box-sizing: border-box;
  background: radial-gradient(circle at center, var(--light-blue) 0%, #001F4D 100%);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  border-style:solid;
  border-color: var(--white-color);
}

.yes-no-dialog-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.yes-no-dialog-btn-yes {
  background-color: green;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.yes-no-dialog-btn-no {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.yes-no-dialog-btn-yes:hover,
.yes-no-dialog-btn-no:hover {
  opacity: 0.9;
}


/*---------------------------------------
  CUSTOM CHECKBOX UNDERLINE               
-----------------------------------------*/

.animated-box {
  display: inline-flex;          /* shrink to content */
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;            /* add spacing around content */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 6px 0;
}

.animated-box input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px; /* visually align with first line of text */
  margin-right: 10px;
}

.animated-box label {
  display: inline-block;
  line-height: 1.4;
  flex: 1;
  word-break: break-word;
}

.border-line {
  position: absolute;
  background-color: red;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Individual sides */
.border-line.top {
  height: 4px;
  width: 0;
  top: 0;
  left: 0;
}

.border-line.right {
  width: 4px;
  height: 0;
  top: 0;
  right: 0;
}

.border-line.bottom {
  height: 4px;
  width: 0;
  bottom: 0;
  right: 0;
}

.border-line.left {
  width: 4px;
  height: 0;
  bottom: 0;
  left: 0;
}

/* Animate each line in sequence */
.animated-box.draw .top {
  width: 100%;
  transition-delay: 0s;
}

.animated-box.draw .right {
  height: 100%;
  transition-delay: 0.1s;
}

.animated-box.draw .bottom {
  width: 100%;
  transition-delay: 0.2s;
}

.animated-box.draw .left {
  height: 100%;
  transition-delay: 0.3s;
}

/* Collapse to center on check */
.animated-box.checked .border-line {
  width: 0 !important;
  height: 0 !important;
  transition-delay: 0s !important;
}

/* Checkmark in center */
.checkmark-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  color: green;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 2;
}

.animated-box.checked .checkmark-overlay {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}



/*---------------------------------------
  TESTIMONIAL               
-----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
  
}

.slick-testimonial {
  margin: auto;
  width: 50%;
  border: var(--light-blue);
  border-style: ridge;
  border-width: 5px;
  border-radius: 25px;
}


.slick-testimonial-caption {
  quotes: '❝' '❞';
  position: relative;
  padding: 3rem 5rem;
  font-size: 1rem;
  color: var(--white-color);
}

@media (min-width: 991px) {
  .slick-testimonial-caption {
    font-size: 1rem !important;
  }

  .slick-testimonial-caption::before { 
    font-size: 3rem;
  }

    .slick-testimonial-caption::after { 
    font-size: 3rem;
  }
}

.slick-testimonial-caption::before {
  content: open-quote;
  position: absolute;
  top: 20px;
  left: 2%;
  font-size: 3rem;
  color: var(--light-blue);
  line-height: 1;
}

.slick-testimonial-caption::after {
  content: close-quote;
  position: absolute;
  bottom: -20px;
  right: 2%;
  font-size: 3rem;
  color: var(--light-blue);
  line-height: 1;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--grey-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 1px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--black-color);
}

.home-testimonials-section {
  padding: 2.5rem 1rem 1rem;
}

.home-testimonials-title {
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

.home-testimonials-section .slick-testimonial {
  width: min(1180px, 96vw);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 31, 77, 0.92), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at top left, rgba(0, 172, 255, 0.2), transparent 42%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.home-testimonials-section .slick-testimonial-caption {
  min-height: 138px;
  padding: 2.15rem 5.75rem 1.6rem;
  font-size: 1.08rem;
  text-align: center;
}

.home-testimonials-section .slick-testimonial-caption::before,
.home-testimonials-section .slick-testimonial-caption::after {
  content: '"';
  font-size: 4rem;
  color: var(--light-blue);
  opacity: 0.9;
}

.home-testimonials-section .slick-testimonial-caption::before {
  top: 0.85rem;
  left: 1.35rem;
}

.home-testimonials-section .slick-testimonial-caption::after {
  bottom: -0.45rem;
  right: 1.35rem;
}

.slick-testimonial-quote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white-color);
  line-height: 1.75;
  font-weight: var(--font-weight-normal);
}

.slick-testimonial-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 1.35rem;
}

.slick-testimonial-name {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.slick-testimonial-role {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.home-testimonials-section .slick-testimonial .slick-dots {
  margin: 0;
  padding: 0 0 1.1rem;
}

.home-testimonials-section .slick-testimonial .slick-dots li {
  width: 34px;
  height: 4px;
  margin: 0 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.home-testimonials-section .slick-testimonial .slick-dots li:hover,
.home-testimonials-section .slick-testimonial .slick-dots .slick-active {
  background: var(--light-blue);
}

@media (max-width: 768px) {
  .home-testimonials-section {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .home-testimonials-section .slick-testimonial {
    width: 100%;
  }

  .home-testimonials-section .slick-testimonial-caption {
    min-height: 0;
    padding: 2.5rem 1.35rem 1.75rem;
    font-size: 0.98rem;
  }

  .home-testimonials-section .slick-testimonial-caption::before,
  .home-testimonials-section .slick-testimonial-caption::after {
    font-size: 2.6rem;
  }

  .home-testimonials-section .slick-testimonial-caption::before {
    top: 0.65rem;
    left: 0.75rem;
  }

  .home-testimonials-section .slick-testimonial-caption::after {
    right: 0.75rem;
    bottom: -0.35rem;
  }

  .slick-testimonial-quote {
    line-height: 1.58;
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 2000px) {
  .sponsor-frame {
    max-width: none;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }

  
}

@media screen and (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }
  .navbar .container {
    position: relative;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  :root {
    --nav-offset: 64px;
  }
  .navbar {
    min-height: var(--nav-offset);
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }
  #month-navigation {
    margin-left:95px;
  }

  .floating {
    position: absolute;
    pointer-events: none; /* Prevent interfering with touch events */
    z-index: 1060;
  }

  .placeholder {
      height: 48px; /* Match row height */
      background-color: #f0f0f0;
      border: 2px dashed #ccc;
  }

  h1 {
    font-size: 42px;
    margin-bottom: 0;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .lead {
    font-size: 16px;
    position: static;
    top: auto;
  }

  .navbar .dropdown ul {
    position: static;       /* Let it flow naturally */
    display: none;          /* Hidden by default */
    opacity: 1;             /* No fade needed on mobile */
    visibility: visible;    /* Always visible when shown */
    box-shadow: none;       /* Optional cleanup */
    border: none;
    background: transparent;
    margin-left: 0;
  }

  .navbar .dropdown ul li {
    background-color: transparent;
    border: none;
    list-style-type: none;
  }

  .navbar .dropdown ul li:hover {
    background-color: transparent;
    border: none;
  }

  .navbar .dropdown > .nav-link::after {
    visibility: hidden;
  }

  .navbar .dropdown-toggle {
    color:white !important;
  }

  .navbar .dropdown-toggle::after {
    visibility: hidden;
  }


  .navbar .dropdown ul {
    margin-left: 30px;
  }

  .navbar .dropdown.show ul {
    display: block;         /* Show on toggle */
  }

  .navbar-expand-lg {
    padding: 0;
  }

  .navbar-placeholder {
    padding: 10px 0px;
  }

  /* Center the Logo */
  .navbar-logo-container {
    position: absolute;
    top: calc(var(--nav-offset) / 2);
    left: 50%;
    width: 150px;
    height: 50px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

  body.nav-scaling .navbar-logo-container {
    transform: none;
    transform-origin: center;
  }

  /* Keep Left Button and Right Icon in Normal Flow */
  .navbar-toggler {
    position: absolute;
    left: 16px;
    top: calc(var(--nav-offset) / 2);
    transform: translateY(-50%);
    z-index: 1200;
  }

  .navbar-collapse {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: transparent;
    box-shadow: none;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: radial-gradient(circle at center, var(--light-blue), #001F4D);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  }

  .navbar-collapse .navbar-nav {
    padding: calc(var(--nav-offset) + 8px) 0 12px;
  }

  /* Prevent Collapsible Content from Pushing Logo */
  .collapse {
    position: relative; /* Ensure it doesn't affect absolute positioning */
  }

  .navbar .d-lg-none {
    position: absolute;
    right: 16px;
    top: calc(var(--nav-offset) / 2);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1.5rem;
  }

  .site-header {
    background-position: bottom;
  }

  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 13.5px 20px;
    cursor: pointer;
  }

  .slick-slideshow {
    overflow: hidden;
    height: calc(100vh - var(--nav-offset));
  }

  .slick-testimonial {
    width: 90vw;
  }

  .stat-block {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .slick-slideshow .custom-btn {
    padding-right: 27px;
    padding-left: 27px;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slick-custom img {
    height: 100%; /* Match slider height */
    width: 100%; /* Maintain aspect ratio */
    object-fit: cover;
    object-position: center;
    margin-top: 0;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  #cart-modal .modal-footer .row {
    width: 100% !important;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .site-header-image.section-padding-img {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .event-register-header .header-image {
    width: 100%;
    object-fit: cover;
  }

  .slick-testimonial-caption {
    padding: 3rem 1rem 3rem 1rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .slick-bottom .lead {
    width: 92% !important;
  }

  .slider-logo {
    position: absolute;
    left: 52%;
    width: 250px;
    height: 200px;
    z-index: 900;
    animation: slideDown 2s ease-in-out forwards;
    animation-delay: 1.1s;
    top: 5.3rem;
    pointer-events: none;
  }

  .slick-prev,
  .slick-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      font-size: 24px;
      color: #ffffff;
      cursor: pointer;
      z-index: 900;
      transition: color 0.3s ease, transform 0.3s ease;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }

  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem 2rem;
  }

  .full-image-img {
    bottom: 0;
  }

  .event-container {
    flex-direction: column;
  }

  .event-details {
    max-width: 100%;
  }

  .event-image {
      width: 100%;
      height: auto;
  }

  .event-timeframe {
    flex-flow: wrap;
    font-size: 0.8em;
    margin-bottom: 20px;
  }
  .center-explore-btn {
    top: calc(var(--nav-offset) + (100vh - var(--nav-offset)) / 2);
    bottom: auto;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .home-view-all-btn {
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .center-explore-btn-animate-start {
    transform: translate(-50%, -50%) scaleX(0.1); /* tighter scale if needed */
  }

  .center-explore-btn-animate-start.center-explore-btn-animate-show {
    transform: translate(-50%, -50%) scaleX(1);
  }

  .sponsor-frame {
    width: 90%;
    max-width: none;
  }
}

