/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #000000;
  --secondary-color:              #000000;
  --section-bg-color:             #000000;
  --custom-btn-bg-color:          #000000;
  --custom-btn-bg-hover-color:    #04560b;
  --dark-color:                   #000000;
  --p-color:                      #000000;
  --border-color:                 #000000;
  --link-hover-color:             #000000;

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

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


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

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

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

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

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

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

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

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.text-outline {
  -webkit-text-stroke: 0.25px black;
  -webkit-text-fill-color: white;
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
  padding-top: 5px;
  padding-bottom: 5px;
}
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.7) !important; /* Slightly transparent grey */
  transition: background-color 0.3s ease;
}

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

.navbar-nav .nav-link {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .navbar {
    background-color: transparent !important;
  }
  .navbar.scrolled {
    background-color: rgba(128, 128, 128, 0.8) !important;
  }
}
/* background for letters */
.text-container {
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  padding: 15px;
  border-radius: 5px;
  color: #fff; /* white text for contrast */
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(#808080);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none; /* keep the hero fully interactive */
}

.custom-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-video-fallback { /* shown by <noscript> */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 8px;
  padding-bottom: 8px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: transparent ;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.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;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}

/* dark overlay on video */
.hero-section .section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* HERO text area (your .hero-cta block) */

/*---------------------------------------
  HERO CTA – Fade on Scroll
-----------------------------------------*/

.hero-cta.visible {
  opacity: 1;                 /* fade in */
}

.hero-cta h1 {
  background: none !important; /* remove grey background */
  padding: 0;
  margin-bottom: 20px;
}

.hero-cta.fade-out {
  opacity: 0; /* fade text away */
}

.hero-cta.hidden {
  opacity: 0;
}

.hero-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
  transition: opacity 0.2s linear; /* short smoothing */
  z-index: 3;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  position: relative;
  background-image: url('../images/Fondos/fondo1.jpg');
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

/* Position text in bottom-left */
.about-section .text-container {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  max-width: 600px;
}

/* Optional: responsive tweak for smaller screens */
@media (max-width: 768px) {
  .about-section .text-container {
    left: 20px;
    bottom: 20px;
    max-width: 90%;
  }
}



/*---------------------------------------
  TEAM           
-----------------------------------------*/

.team-hover .team-name,
.team-hover .team-role,
.team-hover .team-social {
  margin: 5px 0;
  color: var(--white-color);
}

.team-hover hr {
  margin: 10px auto;
  width: 50%;
  border-color: rgba(255,255,255,0.5);
}

.team-social a {
  display: inline-block;
  width: 40px;           /* Set a fixed width */
  height: 40px;          /* Set a fixed height */
  border-radius: 50%;    /* Makes it circular */
  background-color: var(--primary-color); /* Default background */
  color: var(--white-color);   /* Icon color */
  font-size: 1.5rem;     /* Icon size */
  line-height: 40px;     /* Vertically center the icon */
  text-align: center;    /* Center horizontally */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.team-social a:hover {
  background-color: var(--secondary-color);  /* Hover background */
  color: var(--white-color); /* Keep icon visible on hover */
}

/* LinkedIn icon fix */
.team-social a .bi-linkedin {
  opacity: 1 !important;
  color: var(--white-color) !important; /* Force contrast */
  font-size: 1.4rem;
  vertical-align: middle;
}

/* Optional: brand-specific LinkedIn styling */
.team-social a.linkedin {
  background-color: #0077B5; /* LinkedIn blue */
}

.team-social a.linkedin:hover {
  background-color: #005582; /* Darker LinkedIn blue on hover */
}

/* Force LinkedIn hover icon to still contrast */
.team-social a.linkedin:hover .bi-linkedin {
  color: #ffffff !important;
}

/* Team thumbnail styles */
.team-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  height: 300px; /* Equal height */
  object-fit: cover; /* Crop to fill */
}

.team-thumb:hover .team-hover {
  transform: translateY(0);
  opacity: 1;
}

.team-hover {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 10px;
  padding: 15px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  font-size: 0.9rem;
  text-align: center;
}

.team-hover p {
  margin: 0.3rem 0;
}

.team-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 80px;
  margin-right: 5px;
}

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

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


/*---------------------------------------
  Tech           
-----------------------------------------*/
.media-box {
  width: 100%;
  height: 300px; /* Adjust to desired height */
  object-fit: cover;
}
/*---------------------------------------
  Partnerships            
-----------------------------------------*/
.partners-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.partner-thumb {
  margin-bottom: 30px;
  position: relative;
}

.partner-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
}

.partner-image {
  width: 100%;
  height: 200px; /* Ensures all partner images are even in size */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.partner-thumb:hover .partner-image {
  transform: scale(1.05);
}

.partner-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
}

.partner-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/*---------------------------------------
  PRODUCTS SECTION (Section 6)
-----------------------------------------*/
/* ===== Desktop / Large screens ===== */
#section_6.products-section.section-bg {
  position: relative;
  background-image: url('../images/Fondos/fondo2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 75% center; /* aim toward the right since left 50% is covered */
  min-height: 100vh;
  padding: 0 !important;
  overflow: hidden;
}

/* Left white panel */
#section_6 .products-left-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: #fff;
  display: flex;
  align-items: stretch;
  z-index: 1;
  box-shadow: 10px 0 30px rgba(0,0,0,0.08);
}

#section_6 .products-left-inner {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===== Tablet: panel is ~65%, so nudge the visible image further right ===== */
@media (max-width: 992px) {
  #section_6 .products-left-panel { width: 65%; }
  #section_6 .products-left-inner { max-width: 560px; padding: 48px 28px; }
  #section_6.products-section.section-bg { background-position: 85% center; }
}

/* ===== Mobile: make image perfectly symmetric as a separate band below ===== */
@media (max-width: 768px) {
  /* remove background from the section to avoid awkward crops */
  #section_6.products-section.section-bg {
    background-image: none;
    min-height: auto;
  }

  /* panel becomes normal flow, full width */
  #section_6 .products-left-panel {
    position: relative;
    width: 100%;
    box-shadow: none;
  }
  #section_6 .products-left-inner {
    margin-left: 0;
    max-width: 100%;
    padding: 36px 20px;
  }

  /* add a symmetric image band AFTER the products */
  #section_6.products-section.section-bg::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;                 /* nice symmetric band; tweak as you like */
    background: url('../images/Fondos/fondo2.jpg') center / cover no-repeat;
  }
}

/* --- existing card styles (scoped) --- */
#section_6 .product-card {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 40px;
  background-color: #fff;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
#section_6 .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,.1); }
#section_6 .product-header h3 { font-size: 2rem; margin-bottom: 10px; color: var(--primary-color); }
#section_6 .product-status { font-size: 1.2rem; color: var(--secondary-color); margin-bottom: 20px; }
#section_6 .product-description { font-size: 1rem; margin-bottom: 30px; color: #555; }
#section_6 .join-waitlist {
  display: inline-block; background-color: var(--primary-color); color: #fff;
  padding: 12px 25px; border-radius: var(--border-radius-medium); text-decoration: none; font-weight: bold;
  transition: background-color .3s ease;
}
#section_6 .join-waitlist:hover { background-color: var(--secondary-color); }

/*---------------------------------------
  RESPONSIVE TWEAKS
-----------------------------------------*/
@media (max-width: 992px) {
  #section_6 .products-left-panel {
    width: 65%; /* give more space on tablets */
  }
  #section_6 .products-left-inner {
    max-width: 560px;
    padding: 48px 28px;
  }
}

@media (max-width: 768px) {
  #section_6.products-section.section-bg {
    min-height: auto; /* let content decide height on mobile */
  }
  #section_6 .products-left-panel {
    position: relative;
    width: 100%;
    box-shadow: none;
  }
  #section_6 .products-left-inner {
    margin-left: 0;
    max-width: 100%;
    padding: 36px 20px;
  }
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.news-section {
  background-color: #fff;
  padding: 60px 0;
}

.news-card {
  border: 1px solid #ddd;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-content h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.news-content p {
  font-size: 0.95rem;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-color);
}

.newsletter-form {
  background-color: #e9f5ff;
  border-radius: var(--border-radius-medium);
  padding: 30px;
}

.newsletter-signup input.form-control {
  border-radius: var(--border-radius-medium);
  margin-bottom: 15px;
}

.newsletter-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: var(--border-radius-medium);
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}


.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

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


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/

.hero-section .social-share {
  position: absolute;
  bottom: 20px;  /* distance from bottom */
  left: 20px;    /* distance from left */
  z-index: 3;    /* above video */
}

.social-icon {
  margin: 0;
  padding: 0;
}

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

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    position: fixed; /* Ensures navbar stays at the top */
    width: 100%;
    z-index: 1000; /* Ensures it's above other content */
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

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

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/*---------------------------------------
  Waitlist add             
-----------------------------------------*/

.waitlist-section {
  background: #f0f8ff;
  padding: 80px 0;
}
.waitlist-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-medium);
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.waitlist-card:hover {
  transform: translateY(-5px);
}
.waitlist-card h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
}
.waitlist-form .form-control {
  border-radius: var(--border-radius-medium);
  margin-bottom: 20px;
  padding: 15px;
  font-size: 1rem;
}
.waitlist-form button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius-medium);
  padding: 12px 30px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.waitlist-form button:hover {
  background-color: var(--secondary-color);
}

/* ===== Partner marquee ===== */
.partner-marquee {
  --marquee-speed: 32s;           /* tweak speed */
  --gap: 32px;                    /* space between logos */
  background: #f5f5f5;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

.partner-marquee .marquee-track {
  display: flex;
  width: max-content;             /* shrink to content so animation works */
  gap: var(--gap);
  animation: marquee-scroll var(--marquee-speed) linear infinite;
}

.partner-marquee .marquee-group {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-marquee img {
  height: 56px;                   /* unified logo height */
  width: auto;
  display: block;
  filter: grayscale(0.2);
  opacity: 0.95;
  transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}

.partner-marquee img:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
  filter: grayscale(0);
}

/* Pause on hover (desktop) */
.partner-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Reduced motion: stop animation, wrap normally */
@media (prefers-reduced-motion: reduce) {
  .partner-marquee .marquee-track {
    animation: none;
    flex-wrap: wrap;
  }
}

/* Keyframes */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* exactly one group's width because you duplicated lists */
}


/* Initial “hold” animation (keeps it fully visible for a bit) */
@keyframes heroCtaHold {
  0%   { opacity: 0; transform: translate(-50%,-46%) scale(.98); }
  15%  { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 1; }
}

/* Respect users who prefer reduced motion: skip animation & pin it minimized immediately */
@media (prefers-reduced-motion: reduce) {
  .hero-cta { animation: none; transition: none; }
}

/* Small screens: ensure the minimized card stays readable and out of the notch */
@media (max-width: 576px) {
  .hero-cta.minimized {
    width: min(86vw, 360px);
    left: max(12px, env(safe-area-inset-left));
    top: max(12px, env(safe-area-inset-top));
  }
}









