
.wedding-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.tag {
  color: #e09e1f;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.tag.gold {
  color: #d4a437;
}

.top-content h2 {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.top-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.bottom-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  align-items: flex-start;
}

.bottom-content .text {
  flex: 1 1 55%;
}

.bottom-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #144c52;
}

.bottom-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.bottom-content .image {
  flex: 1 1 40%;
}

.bottom-content .image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



.why-choose-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.image-text-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.image-column {
  display: flex;
  gap: 20px;
  flex: 1;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.image-stack img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.portrait-image {
  flex: 1;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.text-column {
  flex: 1.2;
}

.text-column .tag {
  color: #c47b00;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
}

.text-column h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.text-column h2 .highlight {
  color: #1a676b;
}

.text-column p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.feature-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
}
@media (max-width: 768px) {
  .image-text-wrapper {
    flex-direction: column;
  }

  .text-column {
    order: 1;
    width: 100%;
  }

  .text-column .tag,
  .text-column h2,
  .text-column p:first-of-type {
    text-align: center;
  }

  .text-column p:not(:first-of-type) {
    text-align: justify;
  }

  .image-column {
    flex-direction: column;
    width: 100%;
    order: 2;
  }

  .image-stack {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }

  .image-stack img {
    height: 120px;
    width: 45%;
  }

  .portrait-image img {
    height: 300px;
    width: 100%;
    margin-top: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-box h4,
  .feature-box p {
    text-align: center;
  }
}



/*removing gap between wedding section and why choose section*/
.wedding-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-section {
  margin-top: 0;
  padding-top: 0;
}



/*css What Services Do We Provide */
.container3 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

.subtitle3 {
  color: #F7A600;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-heading3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.highlight3 {
  color: #245D5F;
}

.intro3 {
  font-size: 16px;
  text-align: justify;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cards-grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card3 {
  position: relative;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Progression line */
.card3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background-color: #F7A600;
  transition: width 0.4s ease;
}

.card3:hover::after {
  width: 100%;
}

.card3:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card3 h4 {
  font-weight: 700;
  margin-bottom: 10px;
  border-left: 4px solid #F7A600;
  padding-left: 10px;
  color: #000;
}

.card3 p {
  text-align: justify;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.services-section3 {
  background-color: #f4f4f4;
  padding: 60px 0;
  margin-top: 0;
  padding-top: 20px;
}

.why-choose-section {
  padding-bottom: 20px;
}




/*Section code*/
.wedding-section5 {
    display: flex;
    min-height: 100vh;
    background: #f5f5f5;
}

.content-side5 {
    flex: 1;
    background: #4a6b6b;
    padding: 60px 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-tag5 {
    color: #f4c430;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-heading5 {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    border-left: 4px solid #f4c430;
    padding-left: 20px;
}

.content-text5 {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e8f4f8;
}

.image-side5 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image5 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .wedding-section5 {
        flex-direction: column;
    }

    .content-side5 {
        padding: 40px 30px;
    }

    .main-heading5 {
        font-size: 32px;
    }

    .image5 {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .content-side5 {
        padding: 30px 20px;
    }

    .main-heading5 {
        font-size: 28px;
    }

    .content-text5 {
        font-size: 15px;
    }
}


/*FAQ*/
 :root {
      --primary: #136b72;
      --background: #ffffff;
      --text: #222;
      --muted: #666;
      --transition: 0.4s ease;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: var(--background);
      color: var(--text);
      margin: 0;
      padding: 0;
    }

    .faq-section {
      max-width: 800px;
      margin: auto;
      padding: 2rem 1rem;
    }

    .faq-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .faq-section h2 span {
      color: var(--primary);
    }

    .faq-section p {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    .faq-item {
      background: #f9f9f9;
      margin-bottom: 1rem;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      transition: all var(--transition);
    }

    .faq-question {
      padding: 1rem 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: background var(--transition);
    }

    .faq-question:hover {
      background: #eefafa;
    }

    .faq-toggle {
      font-size: 1.2rem;
      transform: rotate(0deg);
      transition: transform var(--transition);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: #ffffff;
      padding: 0 1.5rem;
      font-size: 1rem;
      color: #444;
      transition: max-height var(--transition), padding var(--transition);
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
      padding: 1rem 1.5rem;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(180deg);
    }

    @media (max-width: 600px) {
      .faq-section h2 {
        font-size: 2rem;
      }

      .faq-question {
        font-size: 1rem;
      }
    }


/*Parallax*/
.parallax {
  background-image: url('../images/section-bg.png');
  height: 60vh; /* 👈 reduced from 100vh */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}


    .parallax h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .parallax p {
      font-size: 1.2rem;
      max-width: 800px;
      margin-bottom: 30px;
    }

    .call-button {
      background-color: #FFD700;
      color: black;
      border: none;
      padding: 15px 30px;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .call-button:hover {
      background-color: #FFC107;
    }


@media (max-width: 768px) {
  .parallax {
    height: auto; /* Allow height to grow naturally with content */
    padding: 40px 20px; /* Add spacing */
    background-attachment: fixed; /* Fix iOS Safari issue with parallax */
  }

  .parallax h1 {
    font-size: 1.5rem; /* Smaller heading */
    line-height: 1.3;
  }

  .parallax p {
    font-size: 1rem; /* Slightly smaller paragraph */
  }

  .call-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}



    