/*-----------------------------------
🌐 Root Variables
-----------------------------------*/
:root {
  --primary-color: #6B183F;
  --primary-hover: #c82333;
  --secondary-color: #2c3e50;
  --section-bg-color: #d81b60;
  --section-font-color: #c2185b;
  --text-color: #333333;
  --heading-color: #212529;
  --bg-color: #f9f9f9;
  --normal-font-size: 1rem;
  --section-heading-size: 1rem;
  --section-content-size: 0.9em;
  --navbar-bg-color: #ff96c5;
  --navbar-font-color: #0f0f0f;
  --navbar-hover-bg-color: #8B005D;
}

/*-----------------------------------
🔧 Reset & Base Styles
-----------------------------------*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--text-color) !important;
  background-color: var(--bg-color);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: var(--heading-color);
}

/*-----------------------------------
✏️ Typography
-----------------------------------*/

p {
  margin-bottom: 0.5rem;
}

p.text-justify {
  line-height: 1.9;
}

.text-justify {
  text-align: justify;
}

/*-----------------------------------
🧭 Accessibility
-----------------------------------*/

.blink {
  animation: blinkAnimation 1.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes blinkAnimation {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.ringing {
  animation: ring 1s infinite;
  transform-origin: center;
  display: inline-block;
}

:focus-visible {
  outline: 2px dashed var(--primary-color);
  outline-offset: 4px;
}

/*-----------------------------------
📦 Sections
-----------------------------------*/

.section {
  padding: 1rem 0;
}

/*-----------------------------------
🔄 Loader (optional preloader)
-----------------------------------*/

#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #444;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  border-radius: 8px;
}

/*-----------------------------------
🔝 Scroll to Top Button
-----------------------------------*/

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 888;
  background-color: var(--primary-color);
  color: white;
  border: none;
  outline: none;
  padding: 5px 13px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 19px;
  display: none;
  transition: background 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

#scrollTopBtn:hover {
  background-color: var(--primary-hover);
}

/*-----------------------------------
🧩 Top Header
-----------------------------------*/

.top-header {
  background-color: #992f62;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 2px 0;
}

.top-header a {
  text-decoration: none;
  color: white;
}

.top-contact a:hover {
  text-decoration: none;
  color: rgba(255, 191, 0, 0.936) !important;
}

/* .sticky-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

/* Desktop & tablet */
header.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1040;
}

nav.sticky-header {
  position: sticky;
  top: 38px;
  z-index: 1030;
  border-top: 1px solid white;
}

.gap-navbar {
  gap: 1.6rem !important;
  /* Try reducing from 2.9rem */
}


/*-----------------------------------
📱 Social Media Icons
-----------------------------------*/
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.7),
    inset -3px -3px 7px rgba(0, 0, 0, 0.08),
    3px 3px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.3s, background 0.3s;
}

.social-icons a:hover {
  transform: scale(1.12);
  box-shadow:
    inset 2px 2px 7px rgba(255, 255, 255, 0.8),
    inset -3px -3px 8px rgba(0, 0, 0, 0.1),
    4px 4px 12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #fdfdfd, #e9e9e9);
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  height: 45%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  filter: blur(1.5px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.social-icons img {
  height: 26px;
  width: 26px;
  z-index: 1;
  transition: filter 0.3s;
}

.social-icons a:hover img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/*-----------------------------------
🔐 Login Button
-----------------------------------*/

.login-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 20px;
  color: white;
  padding: 6px 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  animation: flickerColors 1.5s infinite alternate;
}

.login-btn:hover {
  animation-play-state: paused;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  color: white;
}

@keyframes flickerColors {
  0% {
    background: linear-gradient(135deg, #f8b4c0, #e62179);
  }

  100% {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
  }
}

/* #timerTopbar,
.top-contact {
  font-weight: 500;
} */

/* ========================
   Mid Header Styles
======================== */
.main-header {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

/* VIVAH LOGO WRAPPER (With Shine) */
.vivah-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 4px;
  background: linear-gradient(145deg, #fff7fa, #ffe6f0);
  border-radius: 10px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); */
  border: 1px solid #ff427e;
  max-width: 200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.vivah-logo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.2) 100%);
  transform: skewX(-25deg);
  z-index: 3;
  animation: sweepLight 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sweepLight {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* DTS LOGO WRAPPER (No Shine) */
.dts-box {
  display: flex;
  height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 4px 4px;
  background: linear-gradient(145deg, #fff7fa, #ffe6f0);
  border-radius: 10px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); */
  border: 1px solid #ff427e;
  max-width: 200px;
  margin: auto;
  text-align: center;
  z-index: 1;
}

/* Shared Logo Styles */
.vivah-logo,
.dts-logo {
  max-height: 100px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
  transition: transform 0.3s ease-in-out;
  z-index: 2;
}

.vivah-logo-wrapper:hover .vivah-logo,
.dts-box:hover .dts-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

/* Vivah Caption Text */
.vivah-initiative-text {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #7a1e1e;
  line-height: 1.25;
  font-style: italic;
  animation: floatText 3s ease-in-out infinite;
  z-index: 2;
  text-align: center;
}

/* Floating Animation (used by Vivah text) */
@keyframes floatText {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-3px);
    opacity: 0.85;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.dts-caption-marquee {
  margin-top: 6px;
  position: relative;
  width: 100%;
  height: 1.25rem;
  overflow: hidden;
  text-align: center;
  font-size: 0.70rem;
  font-style: italic;
  color: #7a1e1e;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes blinkColor {

  0%,
  30% {
    color: #ff1c77;
  }

  50.01%,
  100% {
    color: var(--primary-color);
  }
}

.site-title {
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 0 8px rgba(255, 255, 255, 0.2);
  animation: blinkColor 2s ease-in-out infinite;
  transition: all 0.5s ease-in-out;
}

.site-title:hover {
  transform: scale(1.02);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 10px rgba(255, 255, 255, 0.3);
}

.site-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  transition: color 0.3s;
}

.site-subtitle:hover {
  color: #333;
  opacity: 0.9;
}

.carousel-item {
  height: 100vh;
  max-height: 350px;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.text-shadow {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Mobile: adjust navbar top offset */
@media (max-width: 767.98px) {
  nav.sticky-header {
    border-top: 1px solid white;
    top: 133px;
  }

  .gap-navbar {
    gap: 0 !important;
  }

}

@media (max-width: 768px) {
  .vivah-logo {
    max-height: 100px;
  }

  .site-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .vivah-logo {
    max-height: 100px;
  }

  .site-title {
    font-size: 2rem;
  }

  .site-subtitle {
    font-size: 1rem;
  }
}

/* .nav-active {
  background-color: #6B183F !important;
  color: white !important;
} */

.nav-active {
  background-color: #6B183F !important;
  color: white !important;
}

.navbar-custom {
  background-color: var(--navbar-bg-color);
  padding: 0.5rem 1rem;
}

.navbar-toggler {
  border: 1px solid #fff !important;
  padding: 6px 8px;
  border-radius: 4px;
  margin-left: auto;
  z-index: 1100;
  position: relative;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 18px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon div {
  top: 8px;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

/* Nav Items */
.navbar-nav .nav-item {
  font-size: var(--normal-font-size);
  font-weight: 600;
}

.navbar-nav .nav-link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--navbar-font-color);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #4B1032;
  background-color: rgba(255, 255, 255, 0.501);
}

.navbar-nav .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(0) translate(0, 0);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon div {
  opacity: 0;
}

/* Mobile Navbar Styling */
@media (max-width: 991.98px) {
  .float-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--navbar-bg-color);
    padding: 1rem 0;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    animation: slideDown 0.3s ease-in-out;
  }

  .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
}

/* Dropdown animation */
@keyframes slideDown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

footer {
  background: #f8c8dc;
}

footer h5 {
  color: #821c4b;
  font-weight: 600;
}

.footer-header {
  border-bottom: 1px solid #6B183F !important;
}

footer a {
  text-decoration: none !important;
  font-size: var(--normal-font-size);
  color: var(--navbar-font-color);
  font-weight: 600;
}

footer a:hover {
  text-decoration: none;
  color: #0f0f0f !important;
}

footer li {
  transition: transform 0.2s ease;
  padding: 2px;
}

footer li:hover {
  transform: translateX(4px);
}

.footer-copyright {
  background-color: #822B55;
  /* Matches top bar */
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-copyright strong {
  color: #ffffff;
  /* Optional: highlight company name */
}

.footer-copyright p {
  margin-bottom: 0;
}


.footer-social-text {
  font-size: 14px;
  color: #821c4b;
  text-align: center;
  margin-top: 10px;
}

.custom-header {
  background-color: var(--section-bg-color);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 0.5rem;
}

.card-list ul li {
  padding: 8px 8px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.card-list ul li:last-child {
  border-bottom: none;
}

.card-list ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.card-list ul li:hover {
  background-color: #f7e8e8;
  border-radius: 4px;
}

.card-list ul li:hover a {
  color: var(--primary-color);
  font-weight: 500;
}

.card-list ul li a i {
  font-size: 1rem;
  min-width: 20px;
}

.card-list ul li a strong {
  font-weight: 600;
}

.left-card,
.right-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quick-link-box {
  background-color: #f9f4f7;
  border: 1px solid #e0d6dd;
  min-height: 120px;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-wrap: break-word;
  overflow: hidden;
}

.quick-link-box:hover {
  background-color: #fff5fc;
  /* Softer pink background on hover */
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  border-color: #d5b8c7;
}

.quick-link-box a {
  color: #821c4b;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: block;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;

  transition: color 0.3s ease-in-out;
}

.quick-link-box:hover a {
  color: #b2005c;
}

.quick-link-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}


.faq-title-home {
  color: var(--section-font-color);
  font-size: 1.3rem;
}

.whychoose-headers {
  background-color: var(--section-font-color);
  border-radius: 15px 15px 0 0 !important;
}

.choose-card {
  height: 146px;
  border-radius: 15px 15px 0 0 !important;
  min-height: 146px;
  max-height: 220px;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 5px;
  transition: transform 0.3s ease;
  display: flex;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.choose-card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(255, 0, 102, 0.15) 0px 3px 8px;
}

.choose-card h5 {
  font-size: 1rem;
  color: #fff;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.choose-card p {
  font-size: 0.92rem;
  line-height: 1.4;
  padding: 0 20px 0 20px;
}

.btn-outline-maroon {
  border-color: var(--section-bg-color);
  color: var(--section-font-color);
  ;
}

.btn-outline-maroon:hover {
  background: var(--section-bg-color);
  color: #fff;
}

.choose-card.view-all-mode {
  flex: 1 1 calc(33.333% - 1rem);
  margin: 10px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 2px solid var(--section-font-color) !important;
  color: var(--section-font-color) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  transition: 0.3s ease !important;
}

.owl-nav button:hover {
  background-color: var(--section-font-color) !important;
  color: white !important;
}

@media (max-width: 767px) {
  #chooseCarousel {
    display: block !important;
  }

  #chooseCarousel .owl-stage-outer,
  #chooseCarousel .owl-stage,
  #chooseCarousel .owl-item {
    display: block !important;
    width: 100% !important;
  }

  .choose-card {
    display: block;
    width: 100% !important;
    margin: 2px auto !important;
  }

}

/* Small Mobile: Stack cards vertically */
@media (max-width: 767px) {
  #chooseCarousel {
    display: block !important;
  }

  #chooseCarousel .owl-stage-outer,
  #chooseCarousel .owl-stage,
  #chooseCarousel .owl-item {
    display: block !important;
    width: 100% !important;
  }

  .choose-card {
    display: block;
    width: 100% !important;
    margin: 6px auto !important;
  }

  .choose-card p {
    padding: 0 10px;
  }

  .left-card,
  .right-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .choose-card.view-all-mode {
    flex: 1 1 calc(50% - 1rem);
    margin: 10px;
  }


}

.benfit-header {
  color: var(--section-font-color);
  font-size: 1.3rem;
}

.get-started-section {
  background: linear-gradient(to right, #fff5f5, #ffe5e5);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.getstart-heading {
  color: var(--section-font-color);
  font-size: 1.3rem;
}

.getstart-subtext {
  font-size: 0.9rem;
}

/* Grid Layout like "Why Choose" Section */
.cta-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 cards only */
  gap: 3.2rem;
  align-items: start;
  justify-content: center;
  margin-top: 1.2rem;
  position: relative;
}

/* Box Card */
.cta-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* padding: 1rem; */
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: flex-start;
}

.cta-box:hover {
  transform: translateY(-4px);
}

.cta-box:nth-child(1)::after,
.cta-box:nth-child(2)::after {
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.5rem;
  color: #b70039;
  position: absolute;
  top: 34%;
  right: -2.8rem;
  transform: translateY(-50%);
  animation: arrowBounce 1.5s infinite ease-in-out;
}

.cta-header {
  background-color: var(--section-bg-color);
  color: white;
  border-radius: 15px 15px 0 0 !important;
  padding: 10px 10px;
}

.cta-header h5 {
  font-size: 1rem;
  margin: 0;
  color: white;
}

.cta-box p {
  margin: 5px 0 0 0;
  font-size: 0.92rem;
  line-height: 1.4;
  padding: 0 20px 0 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrows between boxes */
.cta-arrow-box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #b70039;
  animation: arrowBounce 1.5s infinite ease-in-out;
}

/* Full-width for last box */
.full-width {
  grid-column: 1 / -1;
}

/* Vivah Logo */
.vivah-logo-animation {
  border-radius: 6px;
  padding: 3px;
  animation: float 2s ease-in-out infinite;
}

.vivah-logo-final-step {
  max-height: 71px;
  border: 2px solid #821c4b;
}

.cta-box.full-width {
  margin-top: -2rem;
  /* adjust this value to suit your layout */
}


.btn-start-now {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #821c4b, #ff6b6b);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 5px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  gap: 10px;
  box-shadow: 0 0 0 rgba(255, 107, 107, 0.5);
  animation: soft-glow 2s infinite ease-in-out;
  transition: all 0.3s ease;
}


/* Animations */
@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(4px);
    opacity: 0.7;
  }
}

@keyframes arrowBounceMobile {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(3px);
    opacity: 0.7;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {

  .cta-flow-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    height: 200px;
  }

  .cta-box.full-width {
    margin-top: 0;
    /* adjust this value to suit your layout */
  }

  .cta-box:nth-child(1)::after,
  .cta-box:nth-child(2)::after,
  .cta-box:nth-child(3)::after {
    content: "\f309";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.5rem;
    color: #b70039;
    position: absolute;
    top: 45%;
    right: 9.7rem;
    margin-top: 6.4rem;
    transform: translateY(-50%);
    animation: arrowBounceMobile 1.5s infinite ease-out;
  }


  .btn-start-now {
    font-size: 0.9rem !important;
  }

  .btn-start-now i {
    font-size: 2.8rem !important;
  }
}

.btn-start-now:hover {
  color: #fff;
  background: linear-gradient(90deg, #c82333, #ff4d4d);
  box-shadow: 0 0 12px 3px rgba(255, 107, 107, 0.4);
  transform: scale(1.03);
}

.vivah-logo-suffix {
  width: 100px;
  border-radius: 5%;
  height: auto;
}

.btn-start-now::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-start-now:hover::after {
  animation: shine-slide 1s ease forwards;
  opacity: 1;
}

.btn-start-now:not(:hover)::after {
  animation: none !important;
}

.btn-start-now {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

@keyframes shine-slide {
  0% {
    left: -75%;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}


@keyframes soft-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 109, 109, 0.765);
    /* warm amber */
  }

  50% {
    box-shadow: 0 0 9px 6px rgba(255, 191, 1, 0.93);
    /* strong coral/orange */
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 213, 87, 0.988);
  }
}

.custom-image-slider-right {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sections-heading {
  color: var(--section-font-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.sections-heading:not(:first-child) {
  margin-top: 1.8rem;
}

.sections-content {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 16px;
}

.common-card {
  height: 146px;
  border-radius: 15px 15px 0 0 !important;
  min-height: 146px;
  max-height: 220px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 5px;
  transition: transform 0.3s ease;
  /* margin: 6px; */
  display: flex;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.common-card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.common-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(255, 0, 102, 0.15) 0px 3px 8px;
}

.common-card h5 {
  font-size: 1rem;
  color: #fff;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.common-card p {
  font-size: 0.92rem;
  line-height: 1.4;
  padding: 0 20px 0 20px;
}

.common-card-headers {
  background-color: var(--section-font-color);
  border-radius: 15px 15px 0 0 !important;
}

.matrimonyx-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.matrimonyx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.matrimonyx-btn-primary {
  background: linear-gradient(90deg, #ff416c, #dd0055);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.matrimonyx-btn-primary:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #dd0055, #ff416c);
}

.matrimonyx-feature-section {
  padding: 20px 0;
}

.matrimonyx-feature-icon {
  font-size: 2.5rem;
  color: #ff416c;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.matrimonyx-feature-card:hover .matrimonyx-feature-icon {
  transform: rotate(360deg);
}

.matrimonyx-footer {
  padding: 10px 0;
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Input Fields */
.form-control {
  border-radius: 0.6rem;
  border: 1px solid #dee2e6;
  box-shadow: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #ff416c;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

/* Textareas */
textarea.form-control {
  resize: vertical;
}

/* Labels */
.form-label {
  font-weight: 500;
  color: #495057;
}

/* Checkbox */
.form-check-input {
  cursor: pointer;
  border-radius: 0.25rem;
}

.form-check-label {
  font-size: 0.95rem;
  color: #6c757d;
}

.faq-matrimoney .accordion-button {
  border-radius: 1rem 1rem 0 0;
  font-weight: 600;
  color: #212529;
  transition: all 0.3s ease-in-out;
  padding: 1rem 1rem;
  font-size: 1rem;
}

.faq-matrimoney .accordion-button:not(.collapsed) {
  background-color: #ffe4ec;
  color: #d63384;
  box-shadow: none;
}

.faq-matrimoney .accordion-item {
  border: none;
  border-radius: 0.5rem;
  background-color: #fff;
}

.faq-matrimoney .accordion-body {
  background-color: #f8f9fa;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.faq-matrimoney i {
  font-size: 1.1rem;
}

.benefit-section-home p {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.benefit-section-home i {
  font-size: 1.1rem;
  vertical-align: middle;
}

.text-indigo {
  color: #6610f2 !important;
}

.text-teal {
  color: #20c997 !important;
}

/* Pricing Cards */
.pricing-card {
  background-color: #fff;
  border: 2px solid #ebd3df;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(163, 2, 86, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(163, 2, 86, 0.15);
}

/* Header Style */
.pricing-header {
  padding: 1rem;
  font-size: 1.2rem;
  background: var(--section-font-color);
  color: white;
}

/* Standard Card */
.standard-style {
  border-color: #f8d2e3;
  background: #ffffff;
}

/* Advanced Card */
.advanced-style {
  border-color: #a30256;
  background: linear-gradient(to bottom right, #fff0f5, #ffffff);
  position: relative;
}

/* Ribbon */
.popular-ribbon {
  position: absolute;
  top: -1px;
  right: 0;
  background: #ffd7e9;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 0 0 0 10px;
  z-index: 10;
}

/* List Items */
.list-group-item {
  background: transparent;
  border: none;
  padding: 0.65rem 0;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.list-group-item:last-child {
  border-bottom: none;
}

.list-group-item i {
  font-size: 1rem;
  margin-right: 0.6rem;
  min-width: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-header h5 {
    font-size: 1rem;
  }

  .list-group-item {
    font-size: 0.95rem;
    padding: 0.6rem 0.4rem;
  }

  .popular-ribbon {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

.text-maroon {
  color: var(--section-bg-color) !important;
}

.bg-maroon {
  background-color: var(--section-bg-color) !important;
}

.bg-light-pink {
  background-color: #fce4ec !important;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--section-font-color);
  /* matches your maroon */
  border-left: 4px solid var(--section-font-color);
  ;
  padding-left: 10px;
  margin-bottom: 15px;
}

.contact-card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-maroon {
  background-color: var(--section-bg-color);;
  color: #fff;
  border: none;
  transition: 0.3s ease-in-out;
}

.btn-maroon:hover {
  background-color:var(--section-font-color);
  color: #fff;
}

.form-label {
  font-weight: 500;
}