:root {
  --default-font: 'Alphakind';
  --color-main: #2A3284;
  --color-main-text: #6ee0ff;
  --color-white: #FFFFFF;

}
html, body { 
  scroll-behavior: auto;
}
html {overflow-x: hidden; width: 100%; padding: 0; margin: 0;font-family: var(--default-font);}
body{margin: 0;padding: 0;overflow-x: hidden;}
p{font-family: var(--default-font);}
/* a:hover{color: var(--color-main-text); } */
.jqError {color: red;}
@font-face {
    font-family: 'Alphakind';
    font-style: normal;
    font-weight: 400;
    src: local('Alphakind'), url('../fonts/Alphakind-X3Waa.woff') format('woff');
}
@font-face {
  font-family: 'Niramit Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Regular'), url('../fonts/Niramit-Regular.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Italic'), url('../fonts/Niramit-Italic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit ExtraLight Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit ExtraLight Regular'), url('../fonts/Niramit-ExtraLight.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Light Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Light Regular'), url('../fonts/Niramit-Light.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Medium Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Medium Regular'), url('../fonts/Niramit-Medium.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit SemiBold Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit SemiBold Regular'), url('../fonts/Niramit-SemiBold.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Bold Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Bold Regular'), url('../fonts/Niramit-Bold.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit ExtraLight Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit ExtraLight Italic'), url('../fonts/Niramit-ExtraLightItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Light Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Light Italic'), url('../fonts/Niramit-LightItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Medium Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Medium Italic'), url('../fonts/Niramit-MediumItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit SemiBold Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit SemiBold Italic'), url('../fonts/Niramit-SemiBoldItalic.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Niramit Bold Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Niramit Bold Italic'), url('../fonts/Niramit-BoldItalic.woff') format('woff');
  }

a {
  text-decoration: none !important;
}
/* .formText::placeholder,.formTextarea::placeholder  {
  color: var(--color-main-text); opacity: 1;
  font-family: var(--default-font);
} */

.defaultFont { font-family: var(--default-font); }

/* =========================================
   HEADER SECTION
   ========================================= */
.absolute-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}


.SpaceSpiral {position: absolute;top: -14%;z-index: 100;text-align: center;width: 100%;}
.secondRd .SpaceSpiral {top: -21%;}
.thirdRd .SpaceSpiral {top: -21%;}

.header {
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--color-main) !important;
  position: fixed;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.hero-buttons {position:relative;top:30px;z-index: 5;}

.header-appear {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1111;
  background:var(--color-main) !important;
  -webkit-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-logo {
  max-width: 240px; /* Adjust according to original image ratio */
  height: auto;
}
.header-logo-2{
  max-width: 250px;
}
.hero-subtitle-1 {display: block;}

.text-turquoise {
  color: var(--color-main-text) !important; /* Turqiouse variable didn't look completely accurate from image, forcing exact hex might be better, but we will use the one matching the image */
}

/* Add alphakind font to uppercase nav links */
.navbar-nav .nav-link {
  font-family: 'Alphakind', sans-serif;
  font-size: 24pt;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
}

.navbar-nav .nav-link:hover {
  color: var(--color-white) !important;
  transform: scale(1.05); /* Slight popup on hover */
}

/* Navbar toggle adjustment */
.navbar-toggler.focus-none {
  box-shadow: none !important;
  outline: none !important;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  background-color: var(--color-main);
  background-image: url('../img/new/Glurbs-SiteBackground-new-bottom.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 80px;
}

/* Title */
.hero-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 38pt;
  line-height: 1.1;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
  margin-top: 0;
  margin-bottom: 1.25rem;
  letter-spacing: 1.5px;
}

/* Subtitle */
.hero-subtitle {
  font-family: 'Niramit Bold Regular', sans-serif;
  font-size: 20pt;
  line-height: 1.35;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}

/* Spaceship (legacy, unused in current markup) */
.hero-spaceship {
  top: 15%;
  left: 8%;
  max-width: 200px;
  animation: floatSpaceship 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatSpaceship {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Hero visual wrapper (holds robot + slider together) */
.hero-visual {
  display: inline-block;
  max-width: 650px;
  width: 100%;
}

/* Robot floating above the slider */
.hero-robot {
  /* top: -130px;
  left: 50%;
  transform: translateX(-50%); */
  max-height: 220px;
  width: auto;
  z-index: 1;
  filter: drop-shadow(3px 5px 8px rgba(0, 0, 0, 0.4));
}

/* Button hover anim */
.hover-scale {
  transition: transform 0.3s ease;
  display: inline-block;
}

.hover-scale:hover {
  transform: scale(1.08);
}

/* Slider container */
.hero-slider-mockup {
  max-width: 100%;
  z-index: 3;
}

.hero-game-img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 650px;
}

.sliderOneSlide img{
  max-width: 650px;
  width: 100%;
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.5); */
}

.sliderOneSlide {
    opacity: 0;
}

.sliderOneSlide.slick-initialized {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.sliderOneSlide .slick-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sliderOneSlide .slick-active {
    opacity: 1;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 18px;
  height: 18px;
  padding: 0;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50%;
}
.slick-dots li button::before {
  font-family: slick;
  font-size: 75px;
  line-height: 18px;
  position: absolute;
  top: -1px;
  left: -4px;
  width: 18px;
  height: 18px;
  content: '•';
  text-align: center;
  color: #000;
}

.slick-dots {text-align: center;margin-top: 18px;}
.slick-initialized .slick-slide {
	display: flex;
	text-align: end;
	float: inline-start;
	justify-content: end;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots li, .slick-next, .slick-prev {
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li, .slick-list, .slick-slider, .slick-track {
  position: relative;
}
.slick-dots li.slick-active button::before {
  color: #ef7911;
}
/* =========================================
   HERO RESPONSIVE
   ========================================= */

/* XXL screens */
@media (min-width: 1900px) {
  .hero-section .container-fluid {
    max-width: 1550px;
    margin: 0 auto;
  }
  .hero-title { font-size: 42pt; }
  .hero-subtitle { font-size: 24pt; }
  .hero-visual { max-width: 720px; }
}

/* Desktop */
@media (max-width: 1399px) {
  .hero-title { font-size: 34pt; }
  .hero-subtitle { font-size: 19pt; }
}

@media (max-width: 1199px) {
  .hero-title { font-size: 30pt; }
  .hero-subtitle { font-size: 18pt; }

}

/* Tablet & below */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background-position: center;
  }
  .hero-title {
    font-size: 28pt;
  }
  .hero-subtitle {
    font-size: 18pt;
  }
  .hero-subtitle-1 {
    display: inline;
  }
  .hero-visual {
    max-width: 500px;
  }
  .navbar-nav .nav-link {
    font-size: 20pt;
    text-align: center;
    padding: 10px 0 !important;
  }
  .navbar-nav {
    background: rgba(42, 50, 132);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #6a92df;
  }
  .hero-spaceship {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 24pt;
  }
  .hero-subtitle {
    font-size: 16pt;
  }
  .hero-visual {
    max-width: 420px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding-top: 80px;
  }
  .hero-title {
    font-size: 20pt;
    letter-spacing: 1px;
  }
  .hero-subtitle {
    font-size: 14pt;
  }
  .header-logo,.header-logo-2 {
    max-width: 120px;
  }
  .navbar .col-4 {padding-left: 0px;}
  .navbar .col-4.text-center {padding-left: 10px;}
}

/* =========================================
   WHY GLURBS WORKS SECTION
   ========================================= */

.why-glurbs-section {
  background-color: var(--color-white); /* White base as seen in design */
  /* overflow: hidden; */
}

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

/* 36pt Alphakind */
.why-glurbs-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 36pt;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 200;
}

/* Stars positioning */
.stars-left {
  top: 0%;
  left: 0%;
  height: 100%;
  z-index: 1;
}

.stars-right {
  top: 0%;
  right: 0%;
  height: 100%;
  z-index: 1;
}
.stars-right-new-home {
    top: -10%;
    right: -5%;
    height: 37%;
  z-index: 0;
}
.stars-right-new {
    top: -10%;
    right: 3%;
    z-index: 0;
    height: 15%;
    width: 100%;
}

.stars-right-new-how {
  top: -6%;
    right: 3%;
    z-index: 0;
    height: 15%;
    width: 100%;
}

/* Spaceship positioning for section 2 */
.why-spaceship {
  bottom: 60px;
  left: 5%;
  max-width: 130px;
  z-index: 3;
}
.heroSecContent{max-width: 623px;}
@media (max-width: 1700px) {
  .why-spaceship{left: 1%;}
 }

@media (max-width: 1400px) {
 .SpaceSpiral{top: -12%;}
 .secondRd .SpaceSpiral {top: -17%;}
}

@media (max-width: 1200px) {
  .why-spaceship {
    left: 0%;
    bottom: 37px;
  }
}
@media (max-width: 1100px) {
 .SpaceSpiral{top: -9%;}
  .secondRd .SpaceSpiral {top: -13%;}
}
@media (max-width: 991px) {
 .SpaceSpiral{top: -6%;}
 .secondRd .SpaceSpiral {top: -9%;}
 .thirdRd .SpaceSpiral {top: -7%;}
}
@media (max-width: 850px) {
 .SpaceSpiral{top: -5%;}
 .secondRd .SpaceSpiral {top: -10%;}
  .thirdRd .SpaceSpiral {top: -6%;}
}
@media (max-width: 767px) {
 .SpaceSpiral{top: -4%;}
  .secondRd .SpaceSpiral {top: -10%;}
}

@media (max-width: 575px) {
 .SpaceSpiral{top: -2%;}
 .secondRd .SpaceSpiral {top: -7%;}
  .thirdRd .SpaceSpiral {top: -4%;}
}
@media (max-width: 400px) {
 .secondRd .SpaceSpiral {top: -5%;}
}
/* Cards using panel background */
.why-card {
  background-image: url('../img/new/Glurbs-Site-PanelVertical.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px; 
  padding: 30px 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* 18pt Alphakind */
.why-card-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 24pt;
  line-height: 1.25;
}

/* 14pt Niramit Bold */
.why-card-text {
  font-family: 'Niramit Bold Regular', sans-serif;
  font-size: 15pt;
  line-height: 1.45;
}

/* Bottom area styling */
.rusty-lucy-img {
  max-width: 250px;
  height: auto;
}

/* 18pt Niramit Bold */
.powered-by-text, .powered-by-text p, .powered-by-text span {
  font-family: 'Niramit Bold Regular', sans-serif;
  font-size: 18pt;
  line-height: 1.35;
}

.inline-logo-glurbs {
  height: 38px;
  object-fit: contain;
  margin-top: -5px; /* Alignment tweak */
}

.inline-logo-la {
  height: 38px;
  object-fit: contain;
  margin-top: -5px;
}

/* Responsiveness adjustments */
@media (max-width: 1399px) {
  .why-card {
    min-height: 420px;
  }
}

@media (max-width: 1199px) {
  .powered-by-text, .powered-by-text p, .powered-by-text span {
    font-size: 16pt;
  }
  .inline-logo-glurbs { height: 32px; }
  .inline-logo-la { height: 32px; }
}

@media (max-width: 991px) {
  .why-spaceship {
    display: none !important;
  }
  .rusty-lucy-img {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .why-glurbs-title {
    font-size: 28pt;
  }
  .why-card {
    min-height: 380px;
    margin-bottom: 20px;
  }
  .rusty-lucy-img {
    max-width: 160px;
  }
  .powered-by-text, .powered-by-text p, .powered-by-text span {
    font-size: 14pt;
    text-align: center;
  }
  .inline-logo-glurbs { height: 26px; }
  .inline-logo-la { height: 26px; }
  .why-card-text { font-size: 13pt; }
}

/* =========================================
   HOW GLURBS WORKS SECTION
   ========================================= */

.how-glurbs-section {
  /* background-color: var(--color-main); */
  background-image: url('../img/new/Glurbs-SiteBackground-new.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 800px;
}

.how-glurbs-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 36pt;
  letter-spacing: 1.5px;
  text-shadow: 2px 3px 5px rgba(0,0,0,0.5);
}

.how-card {
  /* background-color: #E8F5FB;
  border: 10px solid #C4C4C4;
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), inset 0 0 15px rgba(255,255,255,0.8);
  transition: transform 0.3s ease; */
  z-index: 2;
  min-height: 420px;
  background-image: url('../img/new/how-glubs-work.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* .how-card:hover {
  transform: translateY(-8px);
} */

.how-card-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 39pt;
  letter-spacing: 1px;
  color: #303ca1 !important;
}

.how-card-subtitle {
  font-family: 'Alphakind', sans-serif;
  font-size: 18pt;
  line-height: 1.2;
}

.how-card-text {
  font-family: 'Niramit Bold Regular', sans-serif;
  font-size: 16pt;
  line-height: 1.45;
}

.how-card-icon {
  max-width: 200px;
  height: auto;
}

.how-card-badge {
  /* max-width: 150px; */
  height: auto;
}

.how-card-costume {
  width: 170px;
  bottom: -45px;
  left: -95px;
  z-index: 5;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.how-card-gems {
  width: 100px;
  bottom: -30px;
  right: -10px;
  z-index: 5;
  filter: drop-shadow(3px 5px 8px rgba(0,0,0,0.4));
}

@media (max-width: 1399px) {
  .how-card-badge { max-width: 130px; }
  .how-card-title { font-size: 26pt; }
}

@media (max-width: 1199px) {
  .how-card-title { font-size: 22pt; }
  .how-card-costume { width: 140px; }
  .how-card-gems { width: 80px; bottom: -20px; right: -5px; }
  .how-card-subtitle { font-size: 14pt; }
  .how-card-text { font-size: 13pt; }
}

@media (max-width: 767px) {
  .how-glurbs-title { font-size: 26pt; }
  .how-card-title { font-size: 20pt; }
  .how-card { margin-bottom: 40px; }
  .how-card-costume { width: 120px; left: -15px; }
  .how-card-gems { width: 70px; right: 0; }
}

/* =========================================
   WHAT CHILDREN LEARN SECTION
   ========================================= */
.zindex-200 {z-index: 200;}
.imgBoxshed {border-radius: 20px;box-shadow: 0 3px 5px rgba(0,0,0,0.4), inset 0 0 15px rgba(255,255,255,0.8);}
.what-learn-section {
  background-color: var(--color-white);
  /* overflow: hidden; */
}

.what-learn-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 36pt;
  letter-spacing: 1.5px;
}

.what-learn-subtitle {
  font-family: 'Niramit Bold Regular', sans-serif;
  font-size: 18pt;
  line-height: 1.4;
}

.learn-icon-wrapper {
  width: 110px; /* Fixed width to align text perfectly */
}

.learn-icon {
  max-width: 100%;
  max-height: 90px;
  height: auto;
  object-fit: contain;
}

.learn-item-title {
  font-family: 'Niramit Bold Regular', sans-serif;
  font-size: 28pt;
  line-height: 1.2;
}

.learn-item-text {
  font-family: 'Niramit SemiBold Regular', sans-serif;
  font-size: 18pt;
  line-height: 1.35;
}

.learn-image {
  max-width: 100%;
}

@media (max-width: 1399px) {
  .learn-item-title { font-size: 26pt; }
  .learn-item-text { font-size: 17pt; }
}

@media (max-width: 1199px) {
  .learn-item-title { font-size: 24pt; }
  .learn-item-text { font-size: 16pt; }
  .what-learn-subtitle { font-size: 16pt; }
  .learn-icon-wrapper { width: 90px; }
}

@media (max-width: 991px) {
  .learn-item-title { font-size: 22pt; }
  .learn-item-text { font-size: 15pt; }
  .what-learn-title { font-size: 32pt; }
  .learn-icon-wrapper { width: 80px; margin-right: 20px !important; }
}

@media (max-width: 767px) {
  .what-learn-title { font-size: 28pt; }
  .what-learn-subtitle { font-size: 14pt; }
  .learn-item-title { font-size: 20pt; }
  .learn-item-text { font-size: 14pt; }
  .learn-icon-wrapper { width: 60px; margin-right: 15px !important; }
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing-section {
  /* background-color: var(--color-main); */
  background-image: url('../img/new/Glurbs-SiteBackground-new.png');
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 800px; /* similar to how-glurbs section */
}

.pricing-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 36pt;
  color: var(--color-main-text);
  letter-spacing: 1.5px;
  text-shadow: 2px 3px 5px rgba(0,0,0,0.4);
}

.pricing-subtitle {
  font-family: 'Niramit Regular', sans-serif;
  font-size: 16pt;
  color: var(--color-white);
  line-height: 1.4;
}

.pricing-card {
  background-color: #E2FAFF; /* Light cyan */
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.pricing-card.free-tier {
  border: 5px solid var(--color-main-text);
}

.pricing-card.paid-tier {
  border: 5px solid #FFCD00;
  margin-top: 15px; /* space for the top pill */
}

.pricing-card-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 24pt;
  color: var(--color-main);
  margin-bottom: 25px;
}

.paid-tier-pill {
  background-color: #FFCD00;
  border-radius: 20px;
  padding: 8px 30px;
  font-family: 'Alphakind', sans-serif;
  font-size: 20pt;
  color: var(--color-main);
  /* white-space: nowrap; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 3;
  margin-bottom: 19px;
}
.paid-tier-pill-free {
  background-color: #6ee0ff;
  border-radius: 20px;
  padding: 8px 30px;
  font-family: 'Alphakind', sans-serif;
  font-size: 20pt;
  color: var(--color-main);
  /* white-space: nowrap; */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 3;
  margin-bottom: 19px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.pricing-list li {
  font-family: 'Niramit Regular', sans-serif;
  font-size: 18pt;
  color: var(--color-main);
  margin-bottom: 15px;
  line-height: 1.3;
  padding-left: 35px;
  position: relative;
}


.free-tier .pricing-list li i.fa-star {
  position: absolute;
  left: 0;
  top: 5px;
  color: #6ee0ff !important; /* based on image reference for free-tier list */
}
.paid-tier .pricing-list li {
  position: relative;
  padding-left: 35px;
}

.paid-tier .pricing-list li i.fa-star {
  position: absolute;
  left: 0;
  top: 5px;
  color: #FFCD00;
  font-size: 16pt;
}

.pricing-robot {
  position: absolute;
  right: -60px;
  top: -35%;
  width: 140px;
  z-index: 1; /* behind the card */
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

@media (min-width: 992px) {
  .pricing-card.paid-tier {
    margin-top: 0; 
  }
}

@media (max-width: 1199px) {
  .pricing-card-title { font-size: 20pt; }
  .paid-tier-pill { font-size: 18pt; padding: 6px 20px; top: -26px; }
  .pricing-list li { font-size: 16pt; }
  .pricing-robot { right: -50px; width: 110px; }
}

@media (max-width: 991px) {
  .pricing-title { font-size: 32pt; }
  .pricing-subtitle { font-size: 15pt; }
  .pricing-robot { display: none; } /* Hide on tablet to avoid layout breaking */
}

/* =========================================
   TESTIMONIAL SECTION
   ========================================= */

.testimonial-section {
  background-color: var(--color-white);
  padding-bottom: 80px;
}

.testimonial-section .slick-prev,
.testimonial-section .slick-next {
    display: none !important;
}

.testimonial-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 36pt;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 15px rgba(255,255,255,0.8);
}
.testimonial-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(232,245,251,0.8) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  filter: blur(10px);
}

.testimonial-banner {
  /* background-color: #E2FAFF; */
  border-radius: 0;
  padding: 0px 20px 150px 20px;
  min-height: 350px;
  margin-top: 40px;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.testimonial-slider {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-bottom: 30px; /* space for bullets */
}

/* Force equal height via Slick flex track */
.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: inherit !important;
}

/* .testimonial-slider .slick-slide > div {
  height: 100%;
} */

.testimonial-item {
  height: 100%;
}

/* Card Design */
.testimonial-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px 40px 40px 40px;
  margin: 20px 15px;
  box-shadow: 0 15px 35px rgba(42,50,132,0.1);
  position: relative;
  transition: transform 0.3s ease;
  border: 4px solid #6DE2FA;
  height: calc(100% - 40px); /* 20px top + 20px bottom margin */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-slider .slick-list{  overflow: initial;}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Big Quote Mark */
.testimonial-card::before {
  content: '\201C'; /* Left double quote */
  font-family: 'Alphakind', sans-serif;
  font-size: 100pt;
  color: #FFCD00;
  position: absolute;
  top: -30px;
  left: 30px;
  line-height: 1;
  opacity: 0.8;
}

.testimonial-text {
  font-family: 'Alphakind', sans-serif;
  font-size: 15pt;
  color: var(--color-main);
  margin-bottom: 25px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-family: 'Alphakind', sans-serif;
  font-size: 20pt;
  color: #A43C95;
  margin-bottom: 0;
}

.testimonial-slider .slick-dots {
  bottom: -45px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
  position: relative;
}

.testimonial-slider .slick-dots li {
  margin: 0 6px;
  width: auto;
  height: auto;
}

.testimonial-slider .slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(42,50,132, 0.3); /* muted brand color */
  border: none;
  padding: 0;
  color: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  outline: none;
}

.testimonial-slider .slick-dots li button:before {
  display: none !important; /* Hide slick default character */
}

.testimonial-slider .slick-dots li.slick-active button {
  width: 40px;
  border-radius: 20px;
  background-color: var(--color-main); /* active pill */
}

.testimonial-slider .slick-dots li button:hover {
  background-color: var(--color-main);
  opacity: 0.8;
}

.testimonial-robot {
  bottom: 0px;
  left: 2%;
  max-width: 250px;
  z-index: 5;
  filter: drop-shadow(3px 5px 8px rgba(0,0,0,0.3));
}

@media (max-width: 991px) {
  .testimonial-title { font-size: 32pt; }
  .testimonial-text { font-size: 28pt; }
  .testimonial-banner { min-height: 200px; padding: 40px 15px; }
}
@media (max-width: 767px) {
  .testimonial-title { font-size: 28pt; }
  .testimonial-text { font-size: 22pt; }
  .testimonial-card {padding: 30px 20px 30px 20px;}
  .lunchTextSec {width: 100%;}
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section {
  /* background-color: var(--color-main); */
  background-image: url('../img/new/Glurbs-SiteBackground-new.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 600px;
}

.faq-title {
  font-family: 'Alphakind', sans-serif;
  font-size: 42pt;
  color: var(--color-white);
  letter-spacing: 2px;
  text-shadow: 2px 3px 5px rgba(0,0,0,0.4);
}

.faq-robot {
  max-width: 120px;
  vertical-align: middle;
}

.faq-accordion .accordion-item {
  background: transparent;
}

.faq-accordion .accordion-button {
  background-color: #6DE2FA;
  border-radius: 12px !important;
  color: var(--color-main) !important;
  font-family: 'Alphakind', sans-serif;
  font-size: 18pt;
  padding: 15px 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #6DE2FA;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Custom Icon */
.faq-accordion .accordion-button::after {
  display: none !important;
}
.faq-section .accordion-body p {font-family: 'Niramit Regular', sans-serif;}

.faq-icon {
  position: absolute;
  right: 20px;
  font-size: 22pt;
  color: var(--color-main);
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg); /* Turns plus to slightly rotated or standard transform, from design it seems just a plus, maybe changes to minus */
}

.faq-accordion .accordion-body {
  background-color: #E2FAFF;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 20px 25px;
  font-family: 'Niramit Regular', sans-serif;
  font-size: 16pt;
  color: var(--color-main);
  border-top: 2px solid rgba(42,50,132,0.1);
}

@media (max-width: 991px) {
  .faq-title { font-size: 36pt; }
  .faq-robot { max-width: 100px; }
  .faq-accordion .accordion-button { font-size: 16pt; }
}

@media (max-width: 767px) {
  .faq-title { font-size: 32pt; }
  .faq-robot { max-width: 80px; }
  .faq-accordion .accordion-button { font-size: 14pt; padding: 12px 15px; padding-right: 45px;}
  .faq-icon { right: 15px; font-size: 18pt; }
  .faq-accordion .accordion-body { font-size: 14pt; }
}

/* =========================================
   FOOTER SECTION
   ========================================= */

.footer-section {
  /* background-color: var(--color-main);
  background-image: url('../img/new/Glurbs\ Site\ BackgroundBottomFade.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat; */
  padding-top: 80px;
  padding-bottom: 100px;
}

.footer-banner {
  background-color: var(--color-main-text);
  border-radius: 20px;
  padding: 35px 0px 25px 0px;

}

.footer-banner .row {
  row-gap: 24px;
  align-items: flex-start !important;
}

.footer-scene-img {
  margin-top: -195px;
  margin-left: -10px;
  max-width: 100%;
  /* width: 580px;  */
  z-index: 10;
  position: relative;
  pointer-events: none;
}

.footer-links-wrapper {
  position: relative;
  z-index: 12;
}

.footer-btn-wrapper {
  background-image: url('../img/new/Glurbs-SitePanelContactUs.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 12px;
}

.footer-btn-wrapper.contact-us-btn {
  padding: 12px 50px;
}

.footer-btn-wrapper .btn-text {
  font-family: 'Alphakind', sans-serif;
  font-size: 26pt;
  color: var(--color-white);
  letter-spacing: 1.5px;
}

.footer-link, .footer-text {
  font-family: 'Alphakind', sans-serif;
  font-size: 20pt;
  color: var(--color-main);
  text-decoration: none;
  line-height: 1.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover, .footer-text:hover {
  opacity: 0.8;
  color: var(--color-main);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  gap: 14px;
  height: 100%;
}

.footer-column .footer-btn-wrapper {
  width: 100%;
  max-width: 320px;
  min-height: 74px;
  margin-bottom: 0 !important;
}

.footer-social-img {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.footer-download-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.footer-download-links .btn-store img {
  display: block;
  width: 180px;
  height: 54px;
  object-fit: contain;
}

.footer-legal-links {
  border-top: 1px solid rgba(42, 50, 132, 0.25);
  padding-top: 18px;
  margin-top: 6px;
  gap: 0;
}

.footer-legal-divider {
  flex-shrink: 0;
  width: 1px;
  height: 1.35em;
  margin: 0 16px;
  background-color: rgba(42, 50, 132, 0.45);
  align-self: center;
}

.footer-column .footer-text {
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .footer-scene-img { width: 500px; margin-left: -30px; margin-top: -120px; }
  .footer-btn-wrapper .btn-text { font-size: 22pt; }
  .footer-btn-wrapper.contact-us-btn { padding: 12px 40px; }
  .footer-link, .footer-text { font-size: 18pt; }
}

@media (max-width: 1199px) {
  .footer-scene-img { width: 420px; margin-left: -20px; margin-top: -100px; }
  .footer-btn-wrapper .btn-text { font-size: 20pt; }
  .footer-link, .footer-text { font-size: 16pt; }
}

@media (max-width: 991px) {
  .footer-banner { padding: 30px 15px; }
  .footer-scene-img { margin-top: -70px; margin-left: 0; width: 400px; margin-bottom: 20px; }
  .footer-section {padding-top: 0px;}
  .slick-dots {text-align: center;}
  .slick-initialized .slick-slide{justify-content: center;}
  .footer-column {
    margin-bottom: 0;
    gap: 12px;
  }
  .footer-column .footer-btn-wrapper {
    max-width: 270px;
    min-height: 68px;
  }
  .footer-link, .footer-text {
    line-height: 1.5;
  }
  .footer-banner .row {
    row-gap: 20px;
  }
  .navbar-collapse{
    position: absolute;
  width: 100%;
  left: 0px;
  }
}

@media (max-width: 767px) {
  .footer-section { padding-top: 0px; }
  .footer-scene-img { width: 100%; max-width: 350px; margin-top: -50px; }
  .footer-btn-wrapper.contact-us-btn { padding: 10px 30px; }
  .footer-btn-wrapper .btn-text { font-size: 18pt; }
  .footer-link, .footer-text { font-size: 16pt; }
  .footer-social-img {
    max-width: 100px;
  }
  .footer-download-links .btn-store img {
    width: 165px;
    height: 50px;
  }
  .footer-legal-divider {
    width: 70%;
    max-width: 180px;
    height: 1px;
    margin: 10px auto;
    order: 2;
    flex-basis: 100%;
  }

  .footer-legal-links .footer-link:first-of-type {
    order: 1;
    flex-basis: 100%;
    text-align: center;
  }

  .footer-legal-links .footer-link:last-of-type {
    order: 3;
    flex-basis: 100%;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
  }
  .footer-column .footer-btn-wrapper {
    max-width: 250px;
    min-height: 62px;
  }
  .footer-banner .row {
    row-gap: 16px;
  }
}
