/*--soft-pink: #ff4da6;
  --soft-pink-alt: #ff66b2;*/
:root {
  --white: #ffffff;
  --soft-pink: #ff4da6;
  --soft-pink-alt: #ff66b2;
  --dark-text: #2e1f2b;
  --muted-text: #6c5b69;
  --light-bg: #fff7fc;
  --shadow-soft: 0 15px 35px rgba(255, 77, 166, 0.12);
  --shadow-hover: 0 20px 45px rgba(255, 77, 166, 0.22);
  --radius-lg: 1.2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--dark-text);
}

a {
  color: var(--soft-pink);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #e43d95;
}

.section-padding {
  padding: 6rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #fff4fa 100%);
}

.section-head h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--muted-text);
  margin: 0;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at 20% 20%, #ffe3f2 0%, #fff 55%);
  display: grid;
  place-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border: 4px solid #ffd7ec;
  border-top-color: var(--soft-pink);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.custom-navbar {
  transition: all 0.35s ease;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.custom-navbar.navbar-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.navbar-brand span {
  color: var(--soft-pink);
  font-weight: 800;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 500;
  margin: 0 0.3rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--soft-pink), var(--soft-pink-alt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.12), transparent 40%),
    linear-gradient(135deg, #ff4da6 0%, #ff66b2 45%, #ff8ac8 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.05),
      rgba(0,0,0,0.12)
    );
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -250px;
  left: -150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  filter: blur(80px);
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -220px;
  right: -120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(80px);
}
.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.hero-subtitle {
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero-description {
  color: #fff6fb;
  max-width: 680px;
  font-size: 1.05rem;
}

.btn-premium,
.btn-outline-premium,
.btn-whatsapp {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: 0;
  transition: all 0.3s ease;
}

.btn-premium {
  background: linear-gradient(90deg, var(--soft-pink), var(--soft-pink-alt));
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 77, 166, 0.38);
}

.btn-premium:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 77, 166, 0.45);
}

.btn-outline-premium {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-premium:hover {
  color: var(--soft-pink);
  background: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ffe1f1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.founder-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.founder-image-wrap {
  text-align: center;
}

.founder-image {
  width: 280px;
  height: 400px;
  object-fit: contain;   /* Shows the entire image */
  border-radius: 12px;
  border: 7px solid #ffe4f3;
  background: #fff;
  box-shadow: 0 12px 28px rgba(255, 77, 166, 0.2);
}
.feature-card,
.winner-card,
.testimonial-card {
  border-radius: var(--radius-lg);
  border: 1px solid #ffd7ec;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.winner-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card {
  padding: 1.8rem 1.5rem;
}

.feature-icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--soft-pink), var(--soft-pink-alt));
}

.premium-carousel img {
  height: min(64vw, 570px);
  object-fit: cover;
}

.winner-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: linear-gradient(180deg, #fff8fc 0%, #fff1f9 100%);
  padding: 0.6rem;
  display: block;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.winner-card h3 {
  margin-bottom: 0.45rem;
}

.winner-meta {
  color: var(--soft-pink);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.testimonial-card {
  padding: 1.75rem;
}

.testimonial-card p {
  font-style: italic;
}

.testimonial-card h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--soft-pink);
}

.register-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.register-wrap h2 {
  margin-bottom: 0.8rem;
}

.text-pink {
  color: var(--soft-pink);
}

.contact-form .form-control {
  border-radius: 0.75rem;
  border: 1px solid #f4cbe3;
  padding: 0.75rem 0.95rem;
}

.contact-form .form-control:focus {
  border-color: #ff8fcb;
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 178, 0.18);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ffd3ea;
  border-radius: 999px;
  font-weight: 600;
}

.instagram-link:hover {
  background: #fff1f8;
  transform: translateY(-2px);
}

.footer-section {
  background: linear-gradient(150deg, #24121f, #3a1e31);
  color: #f8e5f2;
  padding: 4.2rem 0 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-section p a {
  color: #ffd3ea;
}

.footer-links a:hover,
.footer-section p a:hover {
  color: #fff;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-social a:hover {
  background: var(--soft-pink);
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(90deg, var(--soft-pink), var(--soft-pink-alt));
  box-shadow: 0 10px 25px rgba(255, 77, 166, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991.98px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .custom-navbar {
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-link {
    padding-left: 0.2rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .hero-description {
    font-size: 0.97rem;
  }

  .founder-image {
    width: 190px;
    height: 190px;
  }
}
/* Move carousel buttons outside */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

/* Allow buttons to be visible outside */
.premium-carousel {
  overflow: visible;
}

/* Style buttons (optional but better UI) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fdbadc;
  border-radius: 50%;
  padding: 15px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: #ff4da6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #ff4da6;
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- SCROLL PROGRESS BAR --- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #ff4da6, #ff8ac8, #ff4da6);
  background-size: 200% auto;
  z-index: 100000;
  transition: width 0.1s ease;
  animation: shine 3s linear infinite;
}

/* --- FLOATING BLOBS (BACKGROUND DECORATIONS) --- */
.blob-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  mix-blend-mode: multiply;
  animation: floatAround 25s ease-in-out infinite alternate;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: #ff8ac8;
  top: 15%;
  left: 10%;
  animation-duration: 28s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: #ffe3f2;
  bottom: 20%;
  right: 15%;
  animation-duration: 32s;
  animation-delay: -5s;
}

.blob-3 {
  width: 280px;
  height: 280px;
  background: #ff66b2;
  top: 50%;
  left: 60%;
  animation-duration: 24s;
  animation-delay: -10s;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(50px, -40px) scale(1.15) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 60px) scale(0.9) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

/* --- HERO TITLE GRADIENT SHIMMER --- */
.hero-title {
  background: linear-gradient(to right, #ffffff, #ffe3f2, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* --- CARD HOVER EFFECT UPGRADES --- */
.feature-card,
.winner-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.winner-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.feature-card:hover::before,
.winner-card:hover::before,
.testimonial-card:hover::before {
  left: 150%;
  transition: 0.75s;
}

/* Winner Card Image Zoom */
.winner-card {
  overflow: hidden;
}

.winner-card .winner-image {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.winner-card:hover .winner-image {
  transform: scale(1.06);
}

/* --- SOCIAL ICONS ROTATION --- */
.social-icons a:hover i {
  animation: rotateIcon 0.5s ease-in-out;
}

@keyframes rotateIcon {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(20deg) scale(1.2); }
  100% { transform: rotate(0deg); }
}

/* --- CONTACT FORM DYNAMICS --- */
.contact-form .form-control {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.contact-form .form-control:focus {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: var(--soft-pink);
  box-shadow: 0 8px 20px rgba(255, 77, 166, 0.15);
}

/* --- SPINNER ANIMATION FOR SENDING BUTTON --- */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: -0.125em;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}