/* ================= BASE ================= */
.home {
  background: #fff;
}

.section {
  padding: 20px 0;
}

.center {
  text-align: center;
}

/* ================= HERO ================= */
/* ================= HERO SLIDER RESPONSIVE ================= */

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* 🔑 Image scaling */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills screen */
  object-position: center;
}

/* Keep text above */
.hero-slider .hero-inner {
  position: relative;
  z-index: 2;
}

/* Overlay */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
   background: transparent;
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-slider {
    min-height: 75vh;
  }
}

@media (max-width: 600px) {
  .hero-slider {
    min-height: 55vh;   /* smaller hero */
  }

  .slide img {
    object-position: top; /* focuses top area */
  }
}

/* ================= HERO SLIDER TEXT ================= */

.hero-slider {
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* Content wrapper */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 780px;
  color: #111;
}

/* Pill */
.hero-pill {
  display: inline-block;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Heading */
.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Gradient text */
.hero-title span {
  background: linear-gradient(90deg, #ff4fae, #ffb000, #4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 28px;
}

/* Button */
.hero-btn {
  padding: 14px 36px;
  font-size: 1rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-content {
    left: 6%;
    max-width: 460px;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }
}

/* ================= SLIDER DOTS ================= */

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active dot */
.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Hover / focus */
.slider-dots .dot:hover,
.slider-dots .dot:focus-visible {
  background: #ff4fae;
  outline: none;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .slider-dots {
    bottom: 18px;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}

/* ================= TRUSTED SPACE – SAFE PREMIUM ================= */

.trusted-space {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff3f7, #f2fbff);
  overflow: hidden;
}

.trusted-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,79,174,0.15), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(79,210,255,0.15), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255,176,0,0.15), transparent 45%);
  z-index: 0;
}

.trusted-inner {
  position: relative;
  z-index: 1;
}

/* ================= GRID ================= */

.trusted-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ================= ITEM ================= */

.trusted-item {
  position: relative;
  min-height: 260px;
  transition: transform 0.35s ease;
}

/* Decorative frame image */
.trusted-box {
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.4s ease;
}

/* ================= CARD ================= */

.trusted-card {
  position: relative;
  padding: 72px 26px 36px;
  text-align: center;
  background: transparent;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transition: transform 0.35s ease;
}

/* Stagger animation */
.trusted-item:nth-child(1) .trusted-card { animation-delay: 0.1s; }
.trusted-item:nth-child(2) .trusted-card { animation-delay: 0.25s; }
.trusted-item:nth-child(3) .trusted-card { animation-delay: 0.4s; }
.trusted-item:nth-child(4) .trusted-card { animation-delay: 0.55s; }

/* ================= SAFE HOVER ================= */

.trusted-item:hover {
  transform: translateY(-12px);
}

.trusted-item:hover .trusted-box {
  transform: scale(1.04);
}

.trusted-item:hover .trusted-card {
  transform: scale(1.02);
}

/* ================= ICON ================= */

.trusted-icon {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  animation: floatIcon 4s ease-in-out infinite;
}

.trusted-icon img {
  width: 100%;
}

/* ================= CONTENT ================= */

.trusted-content {
  max-width: 210px;
  margin: 0 auto;
}

.trusted-content h4 {
  margin-top: 64px;
  font-size: 1.1rem;
  font-weight: 700;
}

.trusted-content p {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIcon {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(-6px); }
  100% { transform: translateX(-50%) translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .trusted-box {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}



/* /new ui */
/* ================= PREMIUM ABOUT ================= */

.about-premium {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 79, 174, 0.12), transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(79, 210, 255, 0.12), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255, 176, 0, 0.12), transparent 40%);
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  margin: auto;
  text-align: center;
  padding: 0 110px;
}

.about-pill {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 30px;
}

.about-title span {
  background: linear-gradient(90deg, #ff4fae, #ffb000, #4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-card {
    position: relative;
    background-color: #ffffff;
    background-image: url("../../assets/images/section2/section-2_content-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 60px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
    text-align: left;
}


.about-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-card-bottom-image {
  position: absolute;
  bottom: -180px;
  left: -150px;
  width: 280px;
  pointer-events: none;
}

.about-card-bottom-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .about-card-bottom-image {
    width: 220px;
    bottom: -150px;
    left: -120px;
  }
}

@media (max-width: 992px) {
  .about-card-bottom-image {
    width: 180px;
    bottom: -120px;
    left: -100px;
  }
}

@media (max-width: 768px) {
  .about-card-bottom-image {
    display: none;
  }
}

.about-highlight {
  background: linear-gradient(135deg, #fff0f7, #f0fbff);
  padding: 22px 28px;
  border-radius: 20px;
  font-weight: 500;
  margin: 26px auto;
  max-width: 720px;
}

.about-cta-text {
  margin: 24px 0 10px;
  font-size: 1.05rem;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .about-card {
    padding: 26px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-card {
    width: 100%;
    min-width: auto;
  }
}


/* ================= TRUST ================= */
/* ================= TRUST – PREMIUM ================= */

/* ================= TRUST PREMIUM ================= */

.trust-premium {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Decorative bubble images */
.trust-premium::before,
.trust-premium::after {
  content: "";
  position: absolute;
  top: 0;
  width: 220px;
  height: 220px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.trust-premium::before {
  left: 0;
  background-image: url("../../assets/images/section3/section-3_bg_element1.png");
}

.trust-premium::after {
  right: 0;
  background-image: url("../../assets/images/section3/section-3_bg_element2.png");
}

/* Soft gradient background */
.trust-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 79, 174, 0.12), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(79, 210, 255, 0.12), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(255, 176, 0, 0.12), transparent 45%);
  z-index: 0;
}

.trust-premium .wrapper {
  position: relative;
  z-index: 1;
}

/* Header */
.trust-header {
  margin-bottom: 60px;
}

.trust-pill {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.trust-title {
  font-size: 2.4rem;
  font-weight: 800;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 34px; */
  gap: 40px;
}

/* Tiles */
.trust-tile {
  position: relative;
  background: #ffffff;
  padding: 52px 30px 34px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.35s ease;
}

.trust-tile:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

/* Icon centered on top border */
.trust-tile .icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.trust-tile .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Content */
.trust-tile h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-tile p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Color accents */
.trust-tile.pink {
  border-top: 5px solid #ff4fae;
}

.trust-tile.yellow {
  border-top: 5px solid #ffb000;
}

.trust-tile.blue {
  border-top: 5px solid #4fd2ff;
}

.trust-tile.green {
  border-top: 5px solid #6ce3c2;
}

.trust-tile.purple {
  border-top: 5px solid #b084ff;
}

/* Icon ring colors */
.trust-tile.pink .icon {
  border: 3px solid #ff4fae;
}

.trust-tile.yellow .icon {
  border: 3px solid #ffb000;
}

.trust-tile.blue .icon {
  border: 3px solid #4fd2ff;
}

.trust-tile.green .icon {
  border: 3px solid #6ce3c2;
}

.trust-tile.purple .icon {
  border: 3px solid #b084ff;
}

/* Kids image tile */
.trust-kids {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.trust-kids img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-title {
    font-size: 2rem;
  }
}

/* ================= VISION ================= */
/* ================= VISION – PREMIUM ================= */

.vision-premium {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Decorative bottom images */
.vision-premium::before,
.vision-premium::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 260px;
  height: 260px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

Bottom-left kids image .vision-premium::before {
  left: 0;
  background-image: url("../../assets/images/section4/kids-section4-1.png");
}

/* Bottom-right bubbles */
.vision-premium:after {
  background-image: url("../../assets/images/section4/section-4_bg_elements.png");
  right: 0;
  /* position: relative; 
  background-size: contain; */
  /* padding: 60px; */
  /* border-radius: 35px; */
  /* box-shadow: 0 30px 60px rgba(0,0,0,0.08); */
  /* margin-bottom: 28px; */
  /* text-align: left;  */
}

/* Soft gradient layer */
.vision-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 79, 174, 0.12), transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(79, 210, 255, 0.12), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255, 176, 0, 0.12), transparent 45%);
  z-index: 0;
}

/* Layout */
.vision-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.vision-pill {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.vision-text {
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* Right card */
.vision-card {
  position: relative;
  background:
    url("../../assets/images/section4/Our featured content_bg.png") no-repeat;
  background-size: cover;

  padding: 36px 34px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0  40px 80px rgba(0,0,0,0.12); */
}

.vision-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* List */
.vision-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.vision-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

/* Button */
.vision-btn {
  display: inline-block;
  margin-top: 10px;
}

.vision-premium .vision-left .icon {
  margin-top: 100px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .vision-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vision-text {
    margin: auto;
  }
}


/* ================= VIDEOS ================= */
/* ================= VIDEOS ================= */

.videos-premium {
  background: linear-gradient(135deg, #fff7f4, #ffffff);
}

.videos-pill {
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.videos-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  padding: 0;
}

.video-card img {
  width: 100%;
  height: 180px;
  /* 👈 controls size */
  object-fit: cover;
  display: block;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 6px;
  border-radius: 26px;
}

@media (max-width: 768px) {
  .video-card img {
    height: 160px;
  }
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-card:hover {
  transform: translateY(-12px) scale(1.03);
}

.video-info {
  padding: 14px 18px 18px;
}

.video-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.tag.pink {
  background: #ffe4f2;
  color: #ff4fae;
}

.tag.yellow {
  background: #fff1d6;
  color: #ffb000;
}

.tag.blue {
  background: #e9f7ff;
  color: #4fd2ff;
}

/* ================= LIGHTBOX ================= */

.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-lightbox.active {
  display: flex;
}

.video-frame {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: #ff4fae;
}

.video-card.blue {
  position: relative;
  background: url(../../assets/images/section5/video_btn_bg_1.png) no-repeat;
  background-size: cover;
  /* padding: 36px 34px;
    border-radius: 28px; */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card.pink {
  position: relative;
  background: url(../../assets/images/section5/video_btn_bg_2.png) no-repeat;
  background-size: cover;
  /* padding: 36px 34px;
    border-radius: 28px; */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card.yellow {
  position: relative;
  background: url(../../assets/images/section5/video_btn_bg_3.png) no-repeat;
  background-size: cover;
  /* padding: 36px 34px;
    border-radius: 28px; */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card.red {
  position: relative;
  background: url(../../assets/images/section5/video_btn_bg_4.png) no-repeat;
  background-size: cover;
  /* padding: 36px 34px;
    border-radius: 28px; */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card.green {
  position: relative;
  background: url(../../assets/images/section5/video_btn_bg_5.png) no-repeat;
  background-size: cover;
  /* padding: 36px 34px;
    border-radius: 28px; */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card.skyblue {
  position: relative;
  background: url(../../assets/images/section5/video_btn_bg_1.png) no-repeat;
  background-size: cover;
  /* padding: 36px 34px;
    border-radius: 28px; */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Responsive */
@media(max-width:900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= JOIN ================= */
/* ================= JOIN – PREMIUM ================= */

.join-premium {
  position: relative;
  overflow: hidden;
  background: #fff6ec;
  padding: 70px 20px;
}

/* Background gradients */
.join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 79, 174, 0.18), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(79, 210, 255, 0.18), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255, 176, 0, 0.18), transparent 45%);
  z-index: 0;
}

/* Top pill */
.join-top {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

/* Pill */
.join-pill {
  background: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Bottom split */
.join-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Left content */
.join-content {
  text-align: left;
}

.about-title span {
  font-size: 2.6rem;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

.join-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 34px;
  text-align: center;
}

/* Buttons */
.join-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.join-actions .btn-primary {
  padding: 14px 36px;
  font-size: 1rem;
}

.join-actions .btn-secondary {
  padding: 12px 34px;
  font-size: 0.95rem;
}

/* Right image */
.join-image img {
  width: 100%;
  max-width: 450px;
  display: block;
  margin-left: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .join-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .join-content {
    text-align: center;
  }

  .join-actions {
    justify-content: center;
  }

  .join-image img {
    margin: 40px auto 0;
    max-width: 280px;
  }
}

/* ================= BUTTONS ================= */


.btn-secondary {
  border: 2px solid #ff4fae;
  color: #ff4fae;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  margin: 10px;
}

.gradient-bg {
  background: linear-gradient(90deg, #ff4fae, #ffb000, #4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .hero {
    min-height: 80vh;
  }



  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: 75vh;
  }



  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 52vh;
  }


  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .trust-grid,
  .video-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ================= GLOBAL MOBILE FIX ================= */

@media (max-width: 768px) {

  .wrapper {
    padding: 0 20px;
  }

  .hero-content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    padding: 40px 20px;
  }

  .trusted-grid,
  .trust-grid,
  .vision-inner,
  .join-bottom {
    grid-template-columns: 1fr !important;
  }

  .about-card {
    padding: 24px;
  }

  .about-card-bottom-image {
    display: none;
  }

  .hero-title {
    font-size: 1rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .join-text {
    text-align: center;
  }

}
