body {
    background-color: #fff2f7;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 4rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}


/* ============================= */
/* CONTAINER */
/* ============================= */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;

  max-width: 1100px;
  margin: 0 auto;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */
.hero-left {
  flex: 1;
  max-width: 520px;
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0b0224;
  margin-bottom: 1.2rem;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: #000;
}

/* Badge */
.badge {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================= */
/* HERO BUTTONS */
/* ============================= */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.hero-button {
  padding: 0.7rem 1.6rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  box-shadow: 0 4px 12px rgba(123,92,255,0.4);
  transition: all 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(123,92,255,0.5);
}

/* ============================= */
/* FEATURE PILLS (FIXED) */
/* ============================= */
.decorative-btns {
  display: flex;
  flex-wrap: wrap;              /* 👈 allows wrapping */
  gap: 0.8rem; 
  margin-top: 1rem;
}

.decorative-btns-text {
  background: #fff;
  border-radius: 18px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(123,92,255,0.2);
  white-space: nowrap;          /* keeps text clean */
}

/* ============================= */
/* IMAGE STACK */
/* ============================= */
.hero-images {
  flex: 1;
  position: relative;
  max-width: 480px;
}

/* Cards */
.card {
  position: absolute;
  width: 150px;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.card {
  width: clamp(90px, 12vw, 150px); /* 👈 KEY FIX */
  height: auto;
}

/* Positioning */
.card1 {
  top: 0;
  left: 30px;
  transform: rotate(-8deg);
}

.card2 {
  top: 30px;
  right: 0;
  transform: rotate(8deg);
}

.card3 {
  bottom: 0;
  left: 80px;
  transform: rotate(4deg);
}

.card4 {
  bottom: 30px;
  right: 30px;
  transform: rotate(-6deg);
}

/* Hover */
.card:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 2;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-images {
    margin-top: 2rem;
    height: 320px;
  }

  .card {
    width: 120px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 500px) {
  .hero {
    padding: 2.5rem 1rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .decorative-btns {
    flex-direction: column;     /* 👈 STACK FIX */
    align-items: center;
  }

  .decorative-btns-text {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .hero-images {
    position: static;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .card {
    position: static;
    width: 90px;
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero-images {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .card {
    position: static;
    transform: none;
    width: 80px;
  }
}

/* ============================= */
/* DESKTOP – LESS OVERLAP */
/* ============================= */
@media (min-width: 992px) {

  .hero-images {
    max-width: 520px;
    height: 420px;
  }

  .card {
    width: 170px;
  }

  .card1 {
    top: 0;
    left: 0;
    transform: rotate(-6deg);
  }

  .card2 {
    top: 20px;
    right: 0;
    transform: rotate(6deg);
  }

  .card3 {
    bottom: 0;
    left: 40px;
    transform: rotate(3deg);
  }

  .card4 {
    bottom: 20px;
    right: 40px;
    transform: rotate(-4deg);
  }
}



/* ============================= */
/* SUBSCRIPTION SECTION */
/* ============================= */
.subscription {
  padding: 3rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

/* Container */
.subscription-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* ============================= */
/* TEXT */
/* ============================= */
.subscription-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #0b0224;
  margin-bottom: 0.5rem;
}

.subscription-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #000;
  margin-bottom: 2rem;
}

/* ============================= */
/* LAYOUT */
/* ============================= */
.subscription-section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Grid */
.subscription-section2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr; /* mobile default */
}

/* Tablet */
@media (min-width: 768px) {
  .subscription-section2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .subscription-section2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* CARDS */
/* ============================= */
.subscription-section {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;

  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px #7b5cff;

  text-align: left;
}

/* Card text */
.subscription-section-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subscription-section-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================= */
/* MOBILE SPACING */
/* ============================= */
@media (max-width: 500px) {
  .subscription {
    padding: 2.5rem 1rem;
  }
}




/* ============================= */
/* TESTIMONIAL SECTION WRAPPER */
/* ============================= */
.testimonials {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* TOP INTRO GRID */
/* ============================= */
.testimonials-container {
  display: grid;
  align-items: center;
}

/* Desktop: 2 columns */
@media (min-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================= */
/* INTRO TEXT */
/* ============================= */
.testimonial-heading {
  letter-spacing: 1px;
  font-weight: bold;
  color: #0b0224;
  margin-bottom: 1rem;
  text-align: center;

  /* Responsive scaling */
  font-size: clamp(2rem, 6vw, 4rem);
}

.testimonial-text {
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
  max-width: 500px;
  text-align: center;
}

/* ============================= */
/* IMAGE */
/* ============================= */
.testimonial-photo {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================= */
/* CAROUSEL BOXES */
/* ============================= */
.testimonial-box {
  max-width: 400px;
  min-height: 220px;
  padding: 1.5rem;
  
  display: flex;
  flex-direction: column;
  justify-content: center;

  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  text-align: center;
}

.testimonial-footer {
    background-color: #fff2f7;
}

/* ============================= */
/* CAROUSEL ROW */
/* ============================= */
.row.text-center {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  padding: 3rem 0 2rem;
  flex-wrap: wrap;
}

/* ============================= */
/* MOBILE STACK FIX */
/* ============================= */
@media (max-width: 767px) {
  .row.text-center {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-text {
    max-width: 100%;
  }
}




/* ============================= */
/* CONTACT FORM */
/* ============================= */
.contact-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Times New Roman', Times, serif;
}

.contact-container {
    background: rgb(255, 255, 255);
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-heading {
  color: #000;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtext {
    margin-bottom: 30px;
    color: #000000d6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    font-size: 16px;
    transition: 0.2s ease;
    background: #fafafa;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #7b5cff;
    background: white;
    box-shadow: 0 0 0 3px #7b5cff;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-button {
    background: linear-gradient(45deg, #7b5cff, #ff6aa2);
    color: black;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #7b5cff;
}

/* Hide honeypot */
.honeypot {
    display: none;
}

/* ============================= */
/* RESPONSIVE CONTACT FORM */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    .contact-container {
        padding: 40px 30px;
        border-radius: 14px;
    }

    .contact-heading {
        font-size: 28px;
    }
}

/* Phones */
@media (max-width: 600px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-container {
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: none;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-subtext {
        font-size: 14px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    textarea {
        min-height: 120px;
    }

    .contact-button {
        font-size: 15px;
        padding: 12px;
    }
}







/* ============================= */
/* BLOG SECTION */
/* ============================= */
.blog {
  padding: 4rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* ============================= */
/* HEADINGS */
/* ============================= */
.blog-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #0b0224;
  margin-bottom: 0.5rem;
}

.blog-subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 2.5rem;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */
.blog-sections {
  display: grid;
  gap: 2rem;
}

/* 1 column on phones */
@media (max-width: 767px) {
  .blog-sections {
    grid-template-columns: 1fr;
  }
}

/* 2 columns on tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on desktop */
@media (min-width: 1024px) {
  .blog-sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* BLOG CARDS */
/* ============================= */
.blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Images */
.blog-section-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #ffffff;
}

/* Card heading */
.blog-section-heading {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.5rem;
}

/* Card text */
.blog-section-text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 320px;
}

/* Read more link */
.blog-section-link {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #7b5cff;
  text-decoration: none;
}

.blog-section-link:hover {
  text-decoration: underline;
}