
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.hero,
.navbar {
  overflow-x: clip;
}
body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  position: relative;
}

/* FIX NAVBAR CLICK BLOCKING */
.navbar,
.nav-container,
.nav-links,
.nav-link {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}

/* Disable click capture on ALL decorative layers */
.global-glow,
.glow,
.glow *,
.hero,
.hero *::before,
.hero *::after {
  pointer-events: none;
}
/* Re-enable interaction for CTA */
.cta-layer,
.get-started-btn,
.get-started-btn * {
  pointer-events: auto;
}



/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 45px;        /* adjust as needed */
  width: auto;         /* keeps aspect ratio */
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}
.register-btn {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: rgba(179, 179, 179, 0.3);
  border: 2px solid rgba(194, 49, 202, 1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: color 0.6s ease;
}

.register-btn::before {
  content: "";
  position: absolute;
  bottom: 0;              
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(194, 49, 202, 1);
  border-radius: 100% 100% 0 0;
  transform: translate(-50%, 100%) scale(0); 
  transform-origin: center bottom;
  z-index: -1;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.register-btn:hover { 
  border-color: #fff; 
}
.register-btn:hover .arrow-circle {
  background: #fff;
  transition: background 0.3s ease;
}

.register-btn:hover .arrow {
  color: rgba(210, 70, 225, 1);  
  transform: rotate(45deg);      
  transition: transform 0.3s ease, color 0.3s ease;
}

.register-btn:hover::before {
  transform: translate(-50%, 0) scale(1); 
}

.register-btn span {
  position: relative;
  z-index: 1; 
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;      
  height: 28px;      
  background: rgba(210, 70, 225, 1);
  border-radius: 50%;
  flex-shrink: 0;   
  transition: transform 0.3s ease, background 0.3s ease;
}

.arrow {
  font-size: 0.9rem; 
  color: #fff;
  line-height: 1;
  display: inline-block;
  text-align: center;
}

/* Hero */
.hero {
  position: relative; 
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-top: 60px;
  max-width: 1600px;   /* 👈 ADD HERE */
  margin-left: auto;   /* 👈 ADD HERE */
  margin-right: auto; 
}
.cta-layer {
  position: absolute; 
  left: 50%;          
  bottom: 40px;       
  transform: translateX(-50%); 
}
.get-started-btn {
  transform: none !important; 
}
.hero-title {
  position: relative;
  width: min(90vw, 1100px);
  height: 380px;
  margin: 0 auto 2.5rem;
  transform: translateX(100px);
}
.title-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  z-index: 1;
  opacity: 0;
  transform-origin: left center;
  animation: titleSlideIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.title-26 {
  position: absolute;
  right: 0;
  left: 64%;
  top: 50%;
  transform: translateY(-50%);
  width: 370px;
  z-index: 1;
  opacity: 0;
  animation: title26SpringIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.title-boy {
  position: absolute;
  left: 55%;
  bottom: -60px;
  width: 530px;
  z-index: 3;
  opacity: 1;
  animation: boySpringIn 1.8s cubic-bezier(0.16, 1, 0.3, 1)forwards;
}
@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translate(-120%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes title26SpringIn {
  0% {
    opacity: 0;
    transform: translate(120%, -50%);
  }

  65% {
    opacity: 1;
    transform: translate(-8%, -50%);
  }

  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes boySpringIn {
  0% {
    transform: translateX(120%) translateY(140px) scale(0.95);
  }

  65% {
    transform: translateX(-54%) translateY(-14px) scale(1.04);
  }

  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
.get-started-btn {
  background: rgba(179, 179, 179, 0.3);
  border: 2px solid rgba(58, 72, 200, 1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  cursor: pointer;
  position: relative;
  overflow: visible;
  white-space: nowrap;
  transition: color 0.4s ease; 
}
.get-started-btn .arrow {
  font-size: 0.95rem;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}


.get-started-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(58, 72, 200, 1); 
  clip-path: ellipse(0% 0% at 100% 100%);
  transition: clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 8px;
  z-index: -1;
}
.get-started-btn:hover::before {
  clip-path: ellipse(150% 150% at 100% 100%);
}
.get-started-btn span {
  position: relative;
  z-index: 1; 
}

.cta-anim {
  opacity: 0;
  animation: ctaSpringIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.9s;
}
@keyframes ctaSpringIn {
  0% {
    opacity: 0;
    transform: translateX(120%);
  }

  65% {
    opacity: 1;
    transform: translateX(-8%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Glow Layers */
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.glow-blue {
  position: fixed;
  width: 622px;
  height: 622px;
  top: -255px;
  left: 112px;
  pointer-events: none;
  z-index: 1;
  background: rgba(76, 93, 215, 0.59);
  opacity: 1;
  border-radius: 50%;
  filter: blur(224px);
  mix-blend-mode: screen;
  transform: translateY(-100%);
  animation: blueSlideIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}
.glow-pink {
  position: absolute;
  width: 622px;
  height: 622px;
  top: 305px;
  left: 1152px;
  pointer-events: none;
  z-index: 1;
  background: rgba(210, 70, 225, 0.85);
  border-radius: 50%;
  filter: blur(224px);
  mix-blend-mode: screen;
  transform: translateX(40%);
  animation: slidePinkIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.15s;
}
@keyframes blueSlideIn {
  to {
    transform: translateY(0);
  }
}
@keyframes slidePinkIn {
  to {
    transform: translateX(0);
  }
}
/* Responsive */
@media (max-width: 880px) {
  .navbar {
    padding: 1.2rem 1rem;
  }

  .nav-container {
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: space-between;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 1.2rem;
    justify-content: flex-end;
  overflow-x: hidden;
  flex-wrap: nowrap;
  }

  .register-btn {
    padding: 0.3rem 0.9rem;
    font-size: 0.9rem;
  }
  .hero-title {
  position: relative;
  width: min(80vw, 900px);
  height: 380px;
  margin: 0 auto 2.5rem;
  transform: none;
}
.title-text {
  left: -40px;
  top: 40%;
  width: 290px;
}
.title-26 {

  right: 0;
  left: 59%;
  top: 40%;
  width: 200px;
}
.title-boy {
  left: 50%;
  bottom: 92px;
  width: 290px;
}
  .get-started-btn {
    transform: none !important; /* only mobile */
    margin: 16px auto 0;
    display: block;
    margin-top: 120px;
    left: -20px;
    font-size: 0.9rem;
    padding: 7px 8px;
    white-space: nowrap;
  }

  .glow-blue {
    width: 400px;
    height: 500px;
    left: -100px;
    filter: blur(150px);
  }

  .glow-pink {
    width: 350px;
    height: 350px;
    left: auto;
    right: -100px;
    filter: blur(150px);
  }
}
@media screen and (max-width: 480px) {


  .hero-title {
    position: relative;
    width: 100%;
    height: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto 16px;
    
  }
  .title-text {
    content: url("assets/tan tra_phone.png");
    width: 220px;
    top: -180px;
    left: 3%;
  }

  .title-26 {
    content: url("assets/26_phone.png");
    width: 250px;
    left: 8%;
    top: -40px;
  }

  .title-boy {
    content: url("assets/TANTRA_CHARACTER_PHONE.png");
    width: 240px;
    top:-320px;
    left: 49%;
    transform: translateX(55%);
}
  @keyframes boySpringIn {
    0% {
      transform: translateX(90%) translateY(140px) scale(0.95);
    }

    65% {
      transform: translateX(5%) translateY(-14px) scale(1.04);
    }

    100% {
      transform: translateX(12%) translateY(0) scale(1);
    }
  }
.cta-layer {
    position: relative;  
    display: flex;
    left: -19.5%;             
    transform: translateX(-50%);
    justify-content: center;
    width: 100%;
    transform: none;
  }

  .get-started-btn {
    transform: none !important;
    margin-top: 160px; 
  }
  .register-btn{
   padding: 0.35rem 0.7rem; 
  font-size: 0.85rem;     
  gap: 0.3rem;  
  }
}

@media screen and (max-width: 368px) {

  .hero-title {
    width: 100%;
    height: auto;
    transform: none;
    margin: 0 auto;
  }

  .title-text {
    content: url("assets/tan tra_phone.png");
    width: 190px;
    top: -180px;
    left: 5%;
  }

  .title-26 {
    content: url("assets/26_phone.png");
    width: 230px;
    top:  -60px;
   
  }

  .title-boy {
    content: url("assets/TANTRA_CHARACTER_PHONE.png");
    top: -315px;
    width: 230px;
    left: 59%;
    transform: translateX(55%);
}
  @keyframes boySpringIn {
    0% {
      transform: translateX(90%) translateY(140px) scale(0.95);
    }

    65% {
      transform: translateX(-5%) translateY(-14px) scale(1.04);
    }

    100% {
      transform: translateX(3%) translateY(0) scale(1);
    }
  }

  .cta-layer {
    position: relative;  
    display: flex;
    left: -19.5%;            
    transform: translateX(-50%);
    justify-content: center;
    width: 100%;
    transform: none;
  }

  .get-started-btn {
    transform: none !important; 
    margin-top: 160px; 
  }
  .register-btn{
   padding: 0.35rem 0.7rem;
  font-size: 0.85rem;      
  gap: 0.3rem;  
  }
}
@media (min-width: 881px) {
   .cta-layer {
    position: absolute;
    top: calc(68% + 20px);
    left: calc(54.5% + 370px + 10px); /* title-26 left + width + 10px */
    transform: translateY(-50%);
  }
}
@media (max-width: 355px) {

  .navbar {
    padding-top: 1rem;
    padding-bottom: 0.6rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .nav-link {
    font-size: 0;
    position: relative;
  }

  .nav-link::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
  }

  .nav-links {
    gap: 1.2rem;
  }
}



/* about-us */
.about-section {
  padding: 90px 180px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT TEXT */
.about-text {
  max-width: 520px;
}

.about-text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.about-text p {
  margin-top: 24px;
  line-height: 1.8;
  color: #d0d0d0;
}

/* SLIDER */
.slider-wrapper {
  width: 760px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform 0.8s ease-in-out;
}

/* CARD */
.card {
  background: linear-gradient(180deg, #3a0a55,#08020b);
  border-radius: 22px;
  padding: 18px;
 border: 1.5px solid rgb(121, 193, 255);

  flex-shrink: 0;
  transition: all 0.8s ease;
}

/* BIG & SMALL */
.card.big {
  width: 340px;
  transform: scale(1);
}

.card.small {
  width: 260px;
  transform: scale(0.88);

}

/* IMAGE */
.card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.card-desc h3 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 6px;
}

.card-desc p {
  font-size: 13px;
  text-align: center;
  color: #f1e9ff;
  line-height: 1.5;
}
/* ========================= */
/* LARGE TABLETS & SMALL LAPTOPS */
/* ========================= */
@media (max-width: 1200px) {

  .about-section {
    padding: 80px 60px;
    margin-top: -90px;
  }

  .about-container {
    flex-wrap: wrap;            /* KEY FIX */
    justify-content: center;
    gap: 50px;
  }

  .about-text {
    max-width: 100%;
  }

  .slider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .slider-track {
    justify-content: center;
  }
}


/* ========================= */
/* TABLETS */
/* ========================= */
@media (max-width: 992px) {

  .about-text h1 {
    font-size: 38px;
  }

  .slider-wrapper {
    overflow-x: auto;           /* swipe enabled */
  }

  .slider-track {
    justify-content: flex-start;
    padding: 10px 0;
  }

  .card.big,
  .card.small {
    width: 280px;
    transform: scale(1);
  }
}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .about-section {
    padding: 60px 25px;
    margin-top: -90px;
  }

  .about-container {
    gap: 40px;
    text-align: center;
  }

  .about-text h1 {
    font-size: 34px;
  }

  .about-text p {
    font-size: 15px;
  }

  .card.big,
  .card.small {
    width: 260px;
  }
  .about-section {
  padding-top: 30px;
}
}


/* ========================= */
/* SMALL PHONES */
/* ========================= */
@media (max-width: 480px) {

  .about-text h1 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 14px;
  }

  .card.big,
  .card.small {
    width: 230px;
  }

  .card-desc h3 {
    font-size: 14px;
  }

  .card-desc p {
    font-size: 12px;
  }
}


