* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
}
.hero-section {
    background-image: url(img/homebg2.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    opacity: 0.95;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 50px;
}

header h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

header h1 span {
    color: #9A9CC2;
}

.search-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.dropdown {
    position: relative;
    display: inline-block;
}




.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content label {
    color: black;
    padding: 12px 16px;
    display: block;
    cursor: pointer;
}

.dropdown-content label:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.search-btn {
    padding: 12px 36px;
    background-color: #7A1E1E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}


.results-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.profile-card {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 32px;
    }

    .search-container {
        flex-direction: column;
        align-items: center;
    }

    .dropdown, .search-btn {
        width: 100%;
        max-width: 300px;
    }

    .dropdown-btn {
        width: 100%;
    }

    .dropdown-content {
        width: 100%;
    }
}




/* Recent Couples carousel */
.recent-couples-section {
  width: 100%;
  max-width: 100%;
  padding: 40px 60px; /* side spacing */
  margin: 0;
}

.section-title { text-align:center; font-size:38px; margin-bottom:28px; color:#694222;padding: 50px;color:#2F4F75;  font-family:dancing script, cursive; }

/* wrapper */
.carousel-wrapper { position:relative; display:flex; align-items:center; }

/* track */
.carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  overflow: hidden;
  scroll-snap-type: none;
}


/* item */
.card {
  width: 100%;
  height: 420px;
  position:relative;
  border-radius:8px;
  overflow:hidden;
  scroll-snap-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
  background:#fff;
}

.card img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .4s ease;
}

/* overlay info */
.card .info {
  position:absolute;
  left:0; right:0;
  bottom:0;
  padding:16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.75) 100%);
  color:#fff;
  transform: translateY(30%);
  opacity:0;
  transition: all .28s ease;
}

.card .info h3 { margin:0 0 6px; font-size:18px; letter-spacing:0.2px; }
.card .info p { margin:0; font-size:14px; line-height:1.3; color:#f1f1f1; }

/* hover/focus to reveal */
.card:hover img { transform: scale(1.03); }
.card:hover .info,
.card.show-info .info,
.card:focus-within .info {
  transform: translateY(0);
  opacity:1;
}

/* arrows */
.carousel-btn {
  display: none;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  border:none;
  background: rgba(10,10,10,0.6);
  color:#fff;
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:4;
  transition: background .15s;
}
.carousel-btn:hover { background: rgba(10,10,10,0.85); }
.carousel-btn.prev { left:8px; }
.carousel-btn.next { right:8px; }

/* hide native scrollbar but keep scroll functionality */
.carousel::-webkit-scrollbar { height:8px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius:4px; }

/* Responsive */
@media (max-width:900px) {
  .card { flex:0 0 270px; height:380px; }
}

@media (max-width:600px) {
  .recent-couples-section {margin-top: -76px;}
  .card { flex:0 0 85%; height:340px; }
  .carousel-btn { width:40px; height:40px; font-size:20px; }
  /* on touch devices show info bar by default when not hovered */
  .card .info { transform:translateY(0); opacity:1; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%); 
  }
}




/* about section*/



.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.welcome-content {
    flex: 1;
}

.welcome-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #7A1E1E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.welcome-content h1 span {
    color: #7A1E1E;
    display: block;
}

.description {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.cta-button:hover {
    color: #694222;
}

.additional-info {
    font-family: 'Poppins', sans-serif;
    color: black;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-text .label {
    font-family: 'Poppins', sans-serif;
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.contact-text .value {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.welcome-images {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
}

.image-1 {
    position: absolute;
    width: 70%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 4;
}

.image-2 {
    position: absolute;
    width: 70%;
    height: 370px;
    object-fit: cover;
    border-radius: 20px;
    left: 300px;
    bottom: -10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .welcome-container {
        flex-direction: column;
    }

    .welcome-content h1 {
        font-size: 3rem;
    }

    .welcome-images {
        width: 100%;
    }

    .image-stack {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 20px;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .image-stack {
        height: 300px;
    }

    .image-1, .image-2 {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .welcome-content h1 {
        font-size: 2rem;
    }

    .description, .additional-info {
        font-size: 1rem;
    }

    .image-stack {
        height: 250px;
    }

    .image-1, .image-2 {
        height: 200px;
    }
}

/* Replace the existing How it Works section styles with these */
.how-it-works {
    padding: 23px 20px;
    background-color: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .sub-heading {
    color: #7A1E1E;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #7A1E1E;;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin: 0;
    position: relative;
}

.section-header h2::after {
    content: '';
    background-image: url('path-to-your-floral-image.png');
    width: 150px;
    height: 30px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}

.steps-container {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    padding-left: 50px;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #7A1E1E;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step-card::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #7A1E1E;
    border-radius: 50%;
    position: absolute;
    left: -56.5px;
    top: 25px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #7A1E1E;
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    margin: 0 0 5px;
}

.step-content .timing {
    color: #FF1493;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

@media (max-width: 768px) {
    .steps-container {
        padding-left: 30px;
    }

    .step-card::before {
        left: -36.5px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2.2rem;
        color: #2F4F75;
    }

    .steps-container {
        padding-left: 25px;
    }

    .step-card::before {
        left: -31.5px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }
}



/* Premium Plans Section */
.premium-plans {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #7A1E1E;
    margin-bottom: 40px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #7A1E1E;
    margin: 10px auto;
    border-radius: 2px;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.plan-card h3 {
    font-size: 1.8rem;
    color: #7A1E1E;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    color: #8e2929;
    margin: 10px 0;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-card ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #2C2C2C;
    position: relative;
}

.plan-card ul li::before {
    content: '✔';
    color:#7A1E1E ;
    position: absolute;
    left: -20px;
}

.btn {
    background: linear-gradient(150deg, rgba(122, 30, 30, 0.85), rgba(169, 88, 88, 0.95));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 90%;
        margin-bottom: 20px;
    }
    
.hero-section .container {
    padding-top: 0px;
}
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px; /* more space for buttons */
    min-height: auto; /* allows full background cover */
    background-attachment: scroll; /* prevents zooming issues */
  }

  .search-bar {
    flex-direction: column; /* stack vertically */
    gap: 10px;
  }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
.hero-section .container {
    padding-top: 3px;
}
    .price {
        font-size: 1.5rem;
    }

    .plan-card h3 {
        font-size: 1.5rem;
    }
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
/* .hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
} */


.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
}

header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header h1 span {
  color: #C89B3C;
}

header p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Search Container */
.search-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  padding: 12px 20px;
  border-radius: 5px;
  border: none;
  background-color: #fff;
  color: #7A1E1E;
  font-weight: bold;
  min-width: 150px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  top: 100%;
  left: 0;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content label {
  display: block;
  padding: 10px;
  cursor: pointer;
}

.search-btn {
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.85), rgba(90, 15, 15, 0.95));
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.coupl{
  margin-top: -50px;
}

/* Recent Couples Section */
.recent-couples-section {
  padding: -1px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #7A1E1E;
  font-family: "Dancing Script", cursive;
  margin-bottom: 40px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
}

.card {
  flex: 0 0 300px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  position: relative;
}

.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.card .info {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 15px;
  text-align: left;
}

/* About Section
.welcome-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #9a9cc2, #99bddf);
  color: #fff;
} */

.welcome-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.welcome-content {
  flex: 1;
}

.welcome-content h1 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: #2f4f75;
  margin-bottom: 20px;
}

.cta-button {
  color: #fff;
  background: #2f4f75;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
}

.welcome-images {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-stack img {
  border-radius: 20px;
  width: 80%;
  object-fit: cover;
}

/* How It Works */
.how-it-works {
  padding: 35px 20px;
  background: #fff;
  color: #7A1E1E;
}

.steps-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.step-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-card img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}
.step-content h3 {
        font-size: 1.8rem;
        font-family: 'Times New Roman', Times, serif;
    }
/* Premium Plans */
.premium-plans {
 background: linear-gradient(175deg, #FAF5E8, #7A1E1E);
  padding: 80px 20px;
  text-align: center;
}

.plans-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.plan-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* MEDIA QUERIES */

/* Tablets */
@media (max-width: 1024px) {
  header h1 {
    font-size: 2.5rem;
  }

  .hero-section {
    height: 90vh;
  }

  .card img {
    height: 350px;
  }

  .welcome-content h1 {
    font-size: 2.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .container {
    padding: 0px 19px;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .search-container {
    flex-direction: column;
    align-items: center;
  }

  .dropdown,
  .search-btn {
    width: 100%;
    max-width: 300px;
  }

  .card {
    flex: 0 0 85%;
  }

  .welcome-container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-content h1 {
    font-size: 2.2rem;
  }

  .image-stack img {
    width: 90%;
    height: 325px;
  }

  .plans-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  header h1 {
    font-size: 1.6rem;
  }

  header h3 {
    font-size: 1.2rem;
  }

  .card img {
    height: 280px;
  }

  .welcome-content h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }

  .plan-card {
    width: 90%;
  }
}


/* Welcome Section */
.welcome-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #FAF5E8, #7A1E1E);

  color: #fff;
}

.welcome-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.welcome-content {
  flex: 1;
  min-width: 300px;
}

.welcome-content h1 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: #7A1E1E;
  margin-bottom: 20px;
  line-height: 1.2;
}

.welcome-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

.cta-button {
  color: #fff;
  background: #2f4f75;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #1d3651;
}

/* Welcome Images */
.welcome-images {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.image-stack img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* Responsive Design Starts Here */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
  .welcome-content h1 {
    font-size: 2.5rem;
  }

  .welcome-content p {
    font-size: 1rem;
  }

  .image-stack {
    max-width: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .welcome-container {
    flex-direction: column; /* stack text above image */
    text-align: center;
    gap: 30px;
  }

  .welcome-content h1 {
    font-size: 2.3rem;
  }

  .welcome-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 10px 25px;
  }

  .image-stack img {
    width: 80%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .welcome-content h1 {
    font-size: 1.8rem;
  }

  .welcome-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .image-stack img {
    width: 100%;
    height: 325px;
  }
}

/* ============================= */
/* Contact Info Section Centering */
/* ============================= */

.contact-info {
  display: flex;
  justify-content: center;
    gap: 0;
  margin-top: 40px;
}

.contact-info div,
.contact-info a {
  font-size: 1rem;
  color: #2f4f75;
  text-decoration: none;
 
  padding: 10px 20px;
  border-radius: 6px;
  
  transition: all 0.3s ease;
}

.contact-info a:hover {
  background: #2f4f75;
  color: #fff;
}

/* Mobile center fix */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 0px;
  }

  .contact-info div,
  .contact-info a {
    width: 68%;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .image-stack {
    gap: 15px;
  }

  .image-stack img {
    max-width: 90%;
    height: 100px;
  }
}
.image-stack {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center; /* center images */
  gap: 20px; /* space between each image */
}

.image-stack img {
  width: 100%;
  height: 400px;
  max-width: 400px; /* optional: control image size */
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-section {
    position: relative;  /* Add this */
    /* ...existing styles... */
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Adjust container padding to accommodate header */
.hero-section .container {
    padding-top: 45px;  /* Adjust this value based on your header height */
}



.trusted-brand {
  text-align: center;
  padding: 80px 20px;
 background: linear-gradient(120deg, #FAF5E8, #7A1E1E); 

.sub-heading {
  font-family: "Dancing Script", cursive;
  color:#7A1E1E;
   font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 36px;
  font-weight: 600;
  color: #7A1E1E ;
  font-family: "Dancing Script", cursive;
}

.main-heading span {
  font-size: 48px;
  color:#7A1E1E;
  font-family: "Dancing Script", cursive;
}

/*testimonial*/
.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  width: 350px;
  margin: 0 15px;
  padding: 80px 25px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  height: 400px;
}

.image-box {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.diamond {
  width: 130px;
  height: 130px;
  background: #fffaf0;
  border: 3px solid #fff;
  transform: rotate(45deg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.diamond img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 140%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.testimonial p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin-top: 150px;
}

.testimonial h4 {
  font-weight: 700;
  font-size: 16px;
  color: #7A1E1E;
  margin-top: 15px;
}

.testimonial span {
  font-size: 14px;
  color: #fff;
}

.nav-btn {
  background: #9A9CC2;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #e69a47;
}

.prev {
  position: absolute;
  left: 10px;
}

.next {
  position: absolute;
  right: 10px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .testimonial {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
    transform: none !important;
  }

  .testimonial {
    width: 90%;
    margin: 25px 0;
  }

  .nav-btn {
    display: none;
  }
}


/* Section Styling */
.why-choose-us {
  text-align: center;
  color: #7A1E1E;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  color: #2C2C2C;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* Single Feature */
.feature {
  width: 300px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 50px;
 background: linear-gradient(135deg, rgba(122, 30, 30, 0.85), rgba(90, 15, 15, 0.95));
 color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature:hover .icon {
  background: linear-gradient(135deg, rgba(122, 30, 30, 0.85), rgba(90, 15, 15, 0.95));;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 126, 0, 0.4);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .features {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .feature {
    width: 100%;
  }

  .icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }
}}

/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #7A1E1E;
    margin-bottom: 0px;
    font-family: 'Dancing Script', cursive;
}

.section-subtitle {
    text-align: center;
    color: #2C2C2C;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 50px;
    color: #7A1E1E;
}

.feature h3 {
    color: #2C2C2C;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #2C2C2C;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .features {
        gap: 20px;
    }
    
    .feature {
        min-width: 250px;
    }
}
@media (max-width: 768px){
.how-it-works{
  padding: 36px 20px;
}
.image-stack img{
  height: 315px;
}
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 30px 15px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 400px;
    }

.section-title {
        font-size: 2rem;
        margin-top: 97px;
    }
    .icon {
        width: 70px;
        height: 70px;
    }

    .icon i {
        font-size: 28px;
    }

    .feature h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 0px 15px;
        margin-top: -78px;
    }

    .section-subtitle {
        margin-bottom: 30px;
    }

    .feature {
        padding: 15px;
    }
}
@media (max-width: 768px) {
  .carousel {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .card {
    flex: 0 0 100%; /* Show only one card per view */
    scroll-snap-align: start;
  }

  /* Optional — hide scrollbar for a cleaner look */
  .carousel::-webkit-scrollbar {
    display: none;
  }

  /* Optional — adjust arrow buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}
.step-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* make the big image appear on the right */
.step-card .image {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-20%);
}

.step-card .image img {
  width: 300px;      /* adjust size */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* prevent overlapping of text and image */
.step-content {
  max-width: 60%;
}

/* optional: for smaller screens */
@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
  }

  .step-card .image {
    position: static;
    transform: none;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .step-card .image img {
    width: 90%;
  }

  .step-content {
    max-width: 100%;
  }
}
.step-card .image {
  position: absolute;
  right: -250px; /* move it more right (increase or decrease this value as you like) */
  top: 0;
  transform: translateY(-20%);
}
@media (max-width: 1024px) {
  .step-card .image {
    right: -150px; /* slightly less right for tablets */
    transform: translateY(-10%);
  }

  .step-card .image img {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    align-items: center;
  }

  .step-content {
    max-width: 100%;
    text-align: center;
  }

  .step-card .image {
    position: static; /* remove absolute positioning */
    transform: none;
    right: auto;
    margin-top: 20px;
    text-align: center;
  }

  .step-card .image img {
    width: 90%;
    max-width: 350px;
  }
  /* Make the second step image smaller to match the first one */
.step-card:nth-child(2) .image img {
  width: 197px;      /* reduce width */
  height: auto;      /* keeps proper proportion */
}

}


/* ===== STATIC LAYOUT — NO SCROLL ===== */
.carousel {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr); /* 4 cards in a row */
  gap: 25px;
  overflow: hidden !important; /* removes scroll */
  scroll-snap-type: none !important;
}

.card {
  width: 100% !important;
  flex: unset !important; /* kills carousel sizing */
  width: fit-content !important;
}

.carousel-btn {
  display: none !important; /* hide arrows */
}

.faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-title {
    color: #7A1E1E;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin: 0;
    position: relative;
    text-align: center;
}

.faq-item {
  border-bottom: 1px solid #b81f1f;
  padding: 18px 0;
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr 40px; /* text | icon */
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
}

.icon {
  text-align: center;
  font-size: 1.6rem;
}



.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 1rem;
  color: #444;
  padding-right: 30px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}



.faq-question span:first-child {
  flex: 1;
}


.faq-item.active .icon {
  transform: rotate(45deg);
}


@media (max-width: 768px) {

  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .faq-section {
    margin: 50px auto;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding-right: 10px;
  }

  .icon {
    font-size: 1.3rem;
  }
}
/* ===== MOBILE: BRING BACK CAROUSEL ===== */
@media (max-width: 768px) {

  .carousel {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 18px;
  }

  .card {
    flex: 0 0 85% !important; /* full card width */
    height: 340px !important;
    margin-top: -10px;
  }

  .carousel-btn {
    display: block !important;
  }
}
@media (max-width: 768px) {

  .carousel {
    overflow-x: hidden !important; /* stops next card peeking */
  }

  .card {
    flex: 0 0 100% !important; /* full width */
    max-width: 100% !important;
    margin: 0 auto;
  }
}