@font-face {
  font-family: 'Gotham Bold';
  src: url('fonts/Gotham-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Light';
  src: url('fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  /* Light weight */
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat ExtraLight';
  src: url('fonts/montserratextralight.ttf') format('truetype');
  font-weight: 400;
  /* ExtraLight is usually 200 */
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat ExtraBold';
  src: url('fonts/montserratextrabold.ttf') format('truetype');
  font-weight: 800;
  /* ExtraBold is typically weight 800 */
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat Medium';
  src: url('fonts/montserratmedium.ttf') format('truetype');
  font-weight: 500;
  /* Medium weight */
  font-style: normal;
}




/* Gotham Light */
.font-gotham-light {
  font-family: 'Gotham Light', sans-serif;
  font-weight: 300;
}

/* Gotham Bold */
.font-gotham-bold {
  font-family: 'Gotham Bold', sans-serif;
  font-weight: 700;
}

.font-montserrat-extrabold {
  font-family: 'Montserrat ExtraBold', sans-serif;
  font-weight: 800;
}

.font-montserrat-medium {
  font-family: 'Montserrat Medium', sans-serif;
  font-weight: 400;
}

.montserrat-extra-light {
  font-family: 'Montserrat ExtraLight', sans-serif;
  font-weight: 400;
}


ul li strong {
  font-family: 'Gotham Bold', sans-serif; /* your bold font */
  font-weight: 700; /* or bold */
}


/* ================ */
/* COLOR SYSTEM */
/* ================ */
:root {
  /* Font Families */
  --font-primary: "Gotham Light", sans-serif;
  --font-secondary: Arial, sans-serif;
  /* Add fallback if needed */

  /* Primary Colors */
  --bs-primary-rgb: 151, 72, 154;
  /* Your pink color in RGB format */
  --bs-primary: #97489a;
  /* Your pink color in HEX */
  --color-primary-light: #b36db6;
  --color-primary-dark: #79367c;

  /* Secondary Colors */
  --color-secondary: #6cc7ab;
  --color-secondary-light: #8ad5bf;
  --color-secondary-dark: #4e9f87;

  /* Neutral Colors */
  --color-light: #ffffff;
  --color-dark: #29302a;
  --color-gray: #d3d6d8;
  --color-gray-dark: #7f8c8d;
  --color-lightgray: #d1d6d651;
  --color-charcoal: #333333;
  --color-lavendar: rgba(240, 230, 246, 0.25);
  --color-MP: rgba(216, 201, 233, 1);
  --color-dullwhite: rgba(245, 245, 245, 0.8);


  /* Utility Colors */
  --color-success: #27ae60;
  --color-danger: #e74c3c;
  --color-warning: #f39c12;
  --color-info: #1abc9c;
}

/* Text Colors */
.text-primary {
  color: var(--color-primary) !important;
}

.text-green {
  color: var(--color-secondary-dark) !important;
}

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

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

.text-gloss {
  color: #07402f
}

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

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

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

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

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

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

/* Background Colors */
.bg-primary {
  background-color: #97489a !important;
}

/* for btn background */
.bg-brand {
  background-color: #97489a !important;
}

.bg-gloss {
  background-color: var(--color-secondary-dark) !important;
}

.bg-gloss-Light {
  background-color: var(--color-secondary-light) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-light {
  background-color: var(--color-light) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-lavendar {
  background-color: var(--color-lavendar) !important;
}

.bg-MP {
  background-color: var(--color-MP) !important;
}

.bg-dullwhite {
  background-color: var(--color-dullwhite) !important;
}

.bg-gray {
  background-color: var(--color-gray) !important;
}

.bg-lightgray {
  background: var(--color-lightgray) !important;
}

.bg-success {
  background-color: var(--color-success) !important;
}

.bg-danger {
  background-color: var(--color-danger) !important;
}

.bg-warning {
  background-color: var(--color-warning) !important;
}

.bg-info {
  background-color: var(--color-info) !important;
}

/* Button Colors */
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary-dark);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary-dark);
  color: white;
}

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

/* Border Colors */
.border-primary {
  border-color: var(--color-primary) !important;
}

.border-secondary {
  border-color: var(--color-secondary) !important;
}

/* Gradients */
.bg-gradient-primary {
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
}

/* ================ */
/* TYPOGRAPHY SYSTEM */
/* ================ */
:root {
  /* Font Families */
  --font-primary: "Gotham Light", sans-serif;
  --font-secondary: Arial, sans-serif;
  /* Add fallback if needed */

  /* Base Font Size (1rem = 16px by default) */
  --text-base-size: 1rem;
  /* 16px */

  /* Type Scale (Major Third 1.25) */
  --text-xs: 0.64rem;
  /* 10.24px */
  --text-sm: 0.8rem;
  /* 12.8px */
  --text-md: 1rem;
  /* 16px */
  --text-lg: 1.25rem;
  /* 20px */
  --text-xl: 1.563rem;
  /* 25px */
  --text-2xl: 1.953rem;
  /* 31.25px */
  --text-3xl: 2.441rem;
  /* 39px */
  --text-4xl: 3.052rem;
  /* 48.83px */
  --text-5xl: 3.815rem;
  /* 61px */
  --text-6xl: 4.768rem;
  /* 76.29px */

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Font Weights */
  --font-thin: 100;
  --font-extralight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
}

/* ================ */
/* BASE TYPOGRAPHY */
/* ================ */
body {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  font-weight: var(--font-normal);
  color: var(--color-dark);
  overflow-x: hidden;
  font-family: "Inter", sans-serif !important;
}

.img-css {
  width: 100%;
  height: 100%;
}

/* ================ */
/* HEADINGS */
/* ================ */
h1,
.h1 {
  font-size: var(--text-);
  line-height: var(--leading-tight);
  font-weight: var(--font-bold);
}

h2,
.h2 {
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  font-weight: var(--font-bold);
}

h3,
.h3 {
  font-size: var(--text-3xl);
  line-height: var(--leading-snug);
  font-weight: var(--font-bold);
}

h4,
.h4 {
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  font-weight: var(--font-semibold);
}

h5,
.h5 {
  font-size: var(--text-xl);
  line-height: var(--leading-normal);
  font-weight: var(--font-semibold);
  font-family: 'Gotham Bold', sans-serif;
}


h6,
.h6 {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  font-weight: var(--font-semibold);
}

/* ================ */
/* TEXT SIZE UTILITIES */
/* ================ */
.text-xs {
  font-size: var(--text-xs) !important;
}

.text-sm {
  font-size: var(--text-sm) !important;
}

.text-md {
  font-size: var(--text-md) !important;
}

.text-lg {
  font-size: var(--text-lg) !important;
}

.text-xl {
  font-size: var(--text-xl) !important;
}

.text-2xl {
  font-size: var(--text-2xl) !important;
}

.text-3xl {
  font-size: var(--text-3xl) !important;
}

.text-4xl {
  font-size: var(--text-4xl) !important;
}

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

.text-6xl {
  font-size: var(--text-6xl) !important;
}

ul.text-sm li {
  font-size: 1.2rem;
}


/* ================ */
/* FONT WEIGHT UTILITIES */
/* ================ */
.font-thin {
  font-weight: var(--font-thin) !important;
}

.font-extralight {
  font-weight: var(--font-extralight) !important;
}

.font-light {
  font-weight: var(--font-light) !important;
}

.font-normal {
  font-weight: var(--font-normal) !important;
}

.font-medium {
  font-weight: var(--font-medium) !important;
}

.font-semibold {
  font-weight: var(--font-semibold) !important;
}

.font-bold {
  font-weight: var(--font-bold) !important;
}

.font-extrabold {
  font-weight: var(--font-extrabold) !important;
}

.font-black {
  font-weight: var(--font-black) !important;
}

/* ================ */
/* LINE HEIGHT UTILITIES */
/* ================ */
.leading-none {
  line-height: var(--leading-none) !important;
}

.leading-tight {
  line-height: var(--leading-tight) !important;
}

.leading-snug {
  line-height: var(--leading-snug) !important;
}

.leading-normal {
  line-height: var(--leading-normal) !important;
}

.leading-relaxed {
  line-height: var(--leading-relaxed) !important;
}

.leading-loose {
  line-height: var(--leading-loose) !important;
}

/* ================ */
/* RESPONSIVE TYPE SCALE */
/* ================ */
@media (max-width: 1400px) {
  :root {
    --text-: 4rem;
    /* Adjust for large screens */
    --text-4xl: 2.7rem;
    --text-2xl: 1.7rem;

  }

  ul.text-sm li {
    font-size: 1rem;
  }


}

@media (max-width: 1300px) {
  :root {
    --text-: 3rem;
    /* Adjust for large screens */
    --text-4xl: 2.7rem;
  }

  ul.text-sm li {
    font-size: 1.1rem;
  }

  .img-css {
    width: 100%;
    height: 75%;
  }
}

@media (max-width: 1200px) {
  :root {
    --text-: 2.7rem;
    /* Adjust for large screens */
    --text-4xl: 2.3rem;
    --text-2xl: 1.6rem;
    --text-xl: 1.4rem;
  }

  ul.text-sm li {
    font-size: 1rem;
  }

}

@media (max-width: 1100px) {
  :root {
    --text-: 3rem;
    /* Adjust for large screens */
    --text-4xl: 2.1rem;
  }

  ul.text-sm li {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  :root {
    --text-: 2.5rem;
    --text-4xl: 1.7rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
  }
}

@media (max-width: 767px) {
  :root {
    --text-: 1.8rem;
    --text-4xl: 2.5rem;
    --text-3xl: 1.2rem;
    --text-2xl: 1.2rem;
    --text-lg: 1.0rem;
    --text-md: 0.7rem;
  }

  .img-css {
    width: 100%;
    height: 100%;
  }

  .mobile-img {
    max-width: 50%;
  }
}

/* @media (max-width: 767px) {
  :root {
    --text-
    
    
    
    : 1.9rem;
    --text-4xl: 1.9rem;
    --text-3xl: 1.5rem;
    --text-2xl: 2rem;
    --text-lg: 1.0rem;
    --text-md: 0.7rem;

  }
} */

/* ================ */
/* COMPONENT-SPECIFIC TYPOGRAPHY */
/* ================ */
.text-over-video {
  font-size: var(--text-4xl) !important;
  font-weight: var(--font-bold);
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

.text-over-video1 {
  font-size: var(--text-md) !important;
  font-weight: var(--font-bold);
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

.video-input-text {
  font-size: var(--text-lg) !important;
}

.savings-text {
  font-size: var(--text-xl) !important;
  font-weight: var(--font-bold);
}

.review-card {
  font-size: var(--text-md);
}







/* old css */

h1 {
  font-size: 60px !important;
}

P {
  font-size: 18px;
}




/* Add this to your CSS */
.row.m-0.py-5[style*="background-color: #29302a"] {
  position: relative;
  z-index: 999999 !important;
}

/* This will affect all buttons with the JUMP THE QUEUE text */
.btn[style*="background-color: #6cc7ab"] {
  position: relative;
  z-index: 999999 !important;
}

.glow-btn {
  box-shadow: 0 0 6px #97489a, 0 0 12px #97489a;
  animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 4px #97489a, 0 0 8px #97489a;
  }

  50% {
    box-shadow: 0 0 10px #97489a, 0 0 16px #97489a;
  }

  100% {
    box-shadow: 0 0 4px #97489a, 0 0 8px #97489a;
  }
}

/* Make the fallback message always visible with maximum z-index */
video {
  position: relative;
}

video::after {
  content: "Your browser does not support the video tag";
  display: block;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  border-radius: 5px;
  z-index: 999999 !important;
  font-size: 18px;
}

.battery-section {
  position: relative !important;
  z-index: 999999 !important;
}

.jump-queue-btn {
  position: relative !important;
  z-index: 999999 !important;
}

.btn-hover {
  background: linear-gradient(135deg, #97489a, #6a1b9a);
  color: white;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  /* rounded-pill */
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  display: inline-block;
  user-select: none;
}

.btn-hover:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(151, 72, 154, 0.7);
  color: white;
}

.right-section-content {
  background: linear-gradient(135deg, #6a1b9a, #97489a);
  box-shadow: 0 8px 16px rgba(151, 72, 154, 0.4);
}

.btn-custom-purple {
  background-color: #d7e2e4d8 !important;
  color: #4b2c5e;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(240, 225, 48, 0.4);
}

.btn-custom-purple:hover {
  background-color: #ffef5a;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(240, 225, 48, 0.6);
  color: #3a1c4b;
}

.form-control:focus {
  box-shadow: 0 0 8px #f0e130;
  border-color: #f0e130;
}


.savings-circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: linear-gradient(135deg, #97489a, #6a1b9a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.savings-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.savings-text {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

.review-card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  height: 100%;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 1;
}

.hero-person {
  max-height: 400px;
  margin-top: 1rem;
}

.custom-input {
  border-radius: 25px;
  width: 280px;
  height: 40px;
  padding-left: 1rem;
}

.custom-purple {
  background-color: #97489a;
  border: none;
  border-radius: 25px;
}

.bg-blur {
  background-color: rgba(255, 255, 255, 0.1);
  /* or any tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
}




.navbar {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 90px;
  align-items: center;
  z-index: 10;
}

.third-right {
  padding-right: 0px;
}

.progress-container {
  cursor: pointer;
  height: 12px !important;
  width: 60%;
  margin: 20px auto;
}

.progress {
  background-color: #cee7dc;
  border-radius: 10px !important;
  height: 100% !important;
}

.progress-bar {
  background-color: #75bfa6 !important;
  border-radius: 10px !important;
}

.knob {
  width: 20px !important;
  height: 20px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.knob-value {
  color: #75bfa6 !important;
  font-size: 14px;
  top: -25px !important;
}

.star-rating {
  color: #fbc02d;
}

.review-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  background-color: #fff;
  height: 100%;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.trust-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 1400px) {}

@media (max-width: 1300px) {}

@media (max-width: 1200px) {
  h1 {
    font-size: 40px !important;
  }
}

@media (max-width: 1100px) {

  /* first section responsive style  */
  hero-content {
    margin-top: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 30px !important;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 25px !important;
  }

  #servicesCarousel .col-md-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  #servicesCarousel .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-right: 0;
    margin-left: 0;
  }

  #servicesCarousel .carousel-inner {
    overflow: visible;
  }

  .savings-circle {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .right-section-content {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 20px !important;
  }
}



/* first  section style css  */
.main-video-container {
  height: 100vh;
  overflow: hidden;
}

/* .first-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */
.hero-wrapper {
  position: relative;
  background: linear-gradient(to right, #6cc7ab, #97489a);
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.video-auto-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-sound-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sound-unmute {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.video-speaker-name {
  position: absolute;
  bottom: 20px;
  left: 5%;
  transform: translateX(-50%);

  color: white;
  padding: 8px 40px;
  border-radius: 20px;
  font-size: 1rem;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  /* margin-top: 100px;
  margin-left: 190px; */
}

.text-over-video-container {
  top: 35%;
  left: 40px;
}

/* .text-over-video {
  top: 35%;
  left: 40px;
  max-width: 800px;
  font-size: 2rem !important;
  font-weight: 700;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
  top: 35%;
  left: 40px;
  max-width: 800px;
} */

.video-input-container {
  position: absolute;
  /* REQUIRED for bottom/right to work */
  bottom: 40px;
  right: 40px;
  max-width: 400px !important;
}

.video-input-text {
  border-radius: 30px !important;
  background-color: #97489a;
  font-size: 1.2rem;
}

/* second section style css  */
.say-goodbye-sec {
  background: #97489a;
  color: white;
}

.jump-button {
  background-color: #6cc7ab !important;
  border: none;
  max-width: 200px;
}

.hoverable-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hoverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}