/*

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;

  --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%;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
    background: var(--dark-grey);
    font-family: var(--body-font-family);    
    position: relative;
}

body.nav-open {
  overflow: hidden;
}

/*---------------------------------------
  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: absolute;
  bottom: -75px;
}

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;
}

#exploreClickCatcher {
  position: absolute;
  border-radius: 50px;
  z-index: 5;
  background: transparent;
  pointer-events: none;
  cursor: pointer;
}


.center-explore-btn {
  position: absolute;
  left: 50%;
  bottom: 7rem;
  transform-origin: center;
  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: translateX(-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: translateX(-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;
}


@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: 1000;
  will-change: transform;
  transition: transform 300ms linear;
  transform: translateY(-100%); /* Start off-screen */
  animation: navBarSlideDown 1s ease-in-out forwards; /* Slide in on load */
  animation-delay: 1.1s;
}

.navbar .dropdown ul {
  position: absolute;
  top: 25px;
  left: 14px;
  z-index: 99;
  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;
}

/*---------------------------------------
  SLICK SLIDESHOW               
-----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    height: 80vh;
  }
}

.slick-slideshow {
  height: calc(100vh - 100px); /* Example: Full height minus header size */
  overflow: hidden;
}

.slick-title {
  color: var(--white-color);
}

.slick-custom {
  position: relative;
}

.slick-custom img {
  height: 100vh; /* Match slider height */
  width: 100%; /* Maintain aspect ratio */
  object-fit: cover;
  object-position: center;
  margin-top: 19px;
}

.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%;
}

.slick-bottom .container {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%);
}

.slick-bottom .lead {
    width: 100% !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: 25%;
    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;
}

.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: 20%; /* Adjust position */
}

.slick-next {
    right: 20%; /* Adjust position */
}

.slider-logo {
  position: absolute;
  top: 6rem;
  left: 51.1%;
  width: 20%;
  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 */
@keyframes navBarSlideDown {
  from {
      transform: translateY(-100%);
      visibility: visible; /* Make it visible at the start of animation */
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@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;
  margin: 3rem;
}

.stat-icon {
  width: 64px;
  height: 64px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-color);
}


/*---------------------------------------
  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;
}

.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 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 {
  margin-top: 0px;
  font-size: 1rem;
  padding: 0;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  z-index: 60;
  top: -63.5px;
  background: transparent;
  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-preview-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
}

.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;
}

.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;
}

.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);
}

/*---------------------------------------
  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 {
  font-weight: bold;
  font-size: 16px;
}

#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;
}

.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;
}

@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);
}

/*---------------------------------------
  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) {
  #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: absolute;
    top: -60px;
  }

  .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: 10px 0px;
  }

  .navbar-placeholder {
    padding: 10px 0px;
  }

  /* Center the Logo */
  .navbar-logo-container {
    position: absolute;
    top: 30px; /* Center vertically */
    left: 52%; /* Center horizontally */
    transform: translate(-50%, -50%);
}

  /* Keep Left Button and Right Icon in Normal Flow */
  .navbar-toggler {
    position: relative; /* Remain on the left */
  }

   /* Prevent Collapsible Content from Pushing Logo */
   .collapse {
    position: relative; /* Ensure it doesn't affect absolute positioning */
  }

  .navbar-icons {
    position: relative; /* Remain on the right */
  }

  .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: 350px;
  }

  .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: 350px; /* Match slider height */
    width: 100%; /* Maintain aspect ratio */
    object-fit: cover;
    object-position: center;
    margin-top: 55px;
  }

  .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;
  }

  .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: 51.4%;
    width: 125px;
    height: 100px;
    z-index: 900;
    animation: slideDown 2s ease-in-out forwards;
    animation-delay: 1.1s;
    top: 4.5rem;
    pointer-events: none;
  }

  .slick-prev,
  .slick-next {
      position: absolute;
      transform: translateY(40%);
      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 {
    bottom: 76px;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .center-explore-btn-animate-start {
    transform: translateX(-50%) scaleX(0.1); /* tighter scale if needed */
  }

  .center-explore-btn-animate-start.center-explore-btn-animate-show {
    transform: translateX(-50%) scaleX(1);
  }

  .sponsor-frame {
    width: 90%;
    max-width: none;
  }
}

