body {
    background-color: #fff2f7;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 5rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

/* Content container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: auto;
}

.hero-left {
    max-width: 600px;
    justify-items: left;
}

/* ============================= */
/* HEADING */
/* ============================= */
.hero-heading {
  letter-spacing: 1px;
  color: #0b0224;
  margin-bottom: 1.5rem;
  max-width: 540px;
  font-weight: 800;

  /* Responsive scaling */
  font-size: clamp(1.9rem, 6vw, 3rem);
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-text {
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.6;

  /* Responsive scaling */
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.badge {
  display: inline-block;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  font-size: 1rem;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 1.6rem;
}

.hero-button {
  text-decoration: none;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 16px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(45deg, #7b5cff, #ff6aa2);
  display: inline-block;
  box-shadow: 0 2px 10px #7b5cff;
}

.hero-button:hover {
  transform: translateY(-2px);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.decorative-btns {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.decorative-btns-text {
    margin-top: 1.4rem;
    background-color: white;
    border-radius: 18px;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 10px #7b5cff;
}

.hero-images {
  position: relative;
  width: 560px;
  height: 500px;
}

.card {
  position: absolute;
  width: 190px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-style: solid;
  border-color: #fff;
  border-width: 1rem;
}

.card1 {
  top: 0;
  left: 80px;
  transform: rotate(-10deg);
}

.card2 {
  top: 40px;
  right: 0;
  transform: rotate(10deg);
}

.card3 {
  bottom: 0;
  left: 120px;
  transform: rotate(5deg);
}

.card4 {
  bottom: 40px;
  right: 40px;
  transform: rotate(-8deg);
}

/* ============================= */
/* MOBILE SPACING FIX */
/* ============================= */
@media (max-width: 600px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-container {
    padding: 1rem;
  }
}




/* ============================= */
/* SUBSCRIPTION SECTION */
/* ============================= */
.subscription {
    padding: 3rem 1rem;
    font-family: 'Times New Roman', Times, serif;
}

.subscription-container {
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: auto;
}

.subscription-heading {
    font-size: 40px;
    font-weight: 600;
    color: #0b0224;
}

.subscription-text {
    color: #000;
    font-size: 18px;
}


.subscription-section1 {
    display: flex;
    flex-direction: column;
}

.subscription-section2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.4rem 0rem;
    justify-self: center;
    gap: 3.6rem;
}

.subscription-section {
    max-width: 350px;
    background-color: #ffffff;
    padding: 1.4rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px #7b5cff;
    color: #000;
}

.subscription-section-text {
    font-size: 18px;
}

.subscription-section-heading {
    font-size: 20px;
    font-weight: 600;
}










/* ============================= */
/* 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;
}