/* hero / carousel section */
:root {
    --navbar-height: 72px;
    --hero-banner-ratio: 3.2; /* 1920×600 style banners */
    --site-max-width: 1320px;
}

.site-main {
    padding-top: calc(var(--navbar-height) + 1rem);
    padding-bottom: 2rem;
}

.site-main > .container {
    max-width: var(--site-max-width);
}

.site-main section {
    width: 100%;
}

.site-main .trust-bar,
.site-main .premium-section,
.site-main .bg-light.rounded-4 {
    width: 100%;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    color: #fff;
    margin-top: 0;
    border-radius: 14px;
    height: min(520px, max(220px, calc(100vw / var(--hero-banner-ratio))));
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.slide-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a0e2e 0%, #c2185b 100%);
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Full designed banners (image includes text + search UI) */
.hero-section--banner {
    height: auto;
    min-height: 0;
    overflow: hidden;
    margin-top: 0;
    border-radius: 14px;
}

.hero-section--banner .hero-slider {
    position: relative;
    inset: auto;
    height: auto;
}

.hero-section--banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-section--banner .slide.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.hero-section--banner .slide-media {
    display: block;
    background: #fdf8fa;
    overflow: visible;
}

.hero-section--banner .slide img {
    width: 100%;
    height: auto;
    max-height: min(720px, 85vh);
    object-fit: contain;
    object-position: top center;
}

.hero-section--banner .hero-dots {
    bottom: 18px;
}

.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.hero-overlay .hero-content {
    pointer-events: auto;
}

.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.15);
}

.hero-content {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-content h1,
.hero-title {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p,
.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    margin: 0.75rem 0 1.25rem;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 5vw, 4.5rem);
}

.match-btn {
    background: #00a7b5;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    z-index: 2;
}

.slide-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0066, #8e0038);
}

@media (max-width: 991px) {
    .hero-section {
        height: min(420px, max(200px, calc(100vw / 2.4)));
    }

    .slide img {
        object-position: center center;
    }
}

@media (max-width: 575px) {
    :root {
        --navbar-height: 64px;
    }

    .site-main {
        padding-top: calc(var(--navbar-height) + 0.75rem);
    }

    .hero-section {
        border-radius: 10px;
        height: min(320px, max(180px, calc(100vw / 1.8)));
    }

    .hero-overlay {
        padding: 0.75rem;
    }

    .hero-dots {
        bottom: 10px;
    }
}
/* story section */
.story-card{
        background:#fff;
        padding:20px;
        border-radius:10px;
        box-shadow:0 5px 15px rgba(0,0,0,0.1);
        margin-bottom:20px;
    }

    .story-card img{
        width:100%;
        height:220px;
        object-fit:cover;
        border-radius:10px;
    }


/* shadi exprience section card */
/* SECTION */
.shaadi-exp {
  background:#f5f7fa;
  padding:50px 20px;
}

/* TITLE */
.shaadi-exp .title {
  font-size:32px;
  font-weight:600;
  margin-bottom:30px;
}

/* CONTAINER */
.shaadi-exp .container {
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

/* CARD */
.shaadi-exp .card {
  flex:1;
  min-width:280px;
  background:#fff;
  border-radius:20px;
  padding:25px;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  transition:0.3s;
}

.shaadi-exp .card:hover {
  transform:translateY(-5px);
}

/* ICON BOX */
.shaadi-exp .icon-box {
  width:70px;
  height:70px;
  border-radius:20px;
  background:#e6f7f8;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

/* ICON */
.shaadi-exp .icon {
  font-size:30px;
  color:#00a5a5;
}

/* HEADING */
.shaadi-exp h3 {
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
}

/* TEXT */
.shaadi-exp p {
  font-size:14px;
  color:#555;
  line-height:1.6;
}





/* footer section css */
.footer-section {
    background: linear-gradient(135deg, #ff0066, #8e0038);
    background-size: 200% 200%;
    padding: 60px 0 20px;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% {background-position: 0%}
    50% {background-position: 100%}
    100% {background-position: 0%}
}
.brand {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.footer-text {
    color: #eee;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* CENTER ROUND LOGO */
.logo-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 4px solid #28a745;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    margin: 6px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #ff0066;
    transform: translateY(-5px);
}


/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    color: #eee;
}

.footer-bottom span {
    font-weight: bold;
}

@media (max-width: 768px){

    /* full center layout */
    .footer-section{
        text-align: center;
        padding: 40px 15px 15px;
    }

    /* brand size thoda chhota */
    .brand{
        font-size: 20px;
    }

    /* text readability */
    .footer-text{
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* links spacing */
    .footer-links{
        margin-bottom: 15px;
    }

    /* LOGO size mobile me kam karo */
    .logo-circle{
        width: 140px;
        height: 140px;
        margin: 20px auto;
    }

    /* right section spacing */
    .footer-section h5{
        margin-top: 20px;
    }

    /* contact text */
    .footer-section p{
        font-size: 13px;
    }

    /* social icons center */
    .social-icons{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icons a{
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    /* bottom text */
    .footer-bottom{
        font-size: 12px;
        padding-top: 10px;
    }

}

/* .footer-section {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.brand {
    font-weight: bold;
    font-size: 24px;
}

.footer-text {
    color: #bbb;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}


.logo-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 4px solid #28a745;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icons a {
    display: inline-block;
    margin: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #222;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #28a745;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 768px){

    .footer-section{
        text-align: center;
        padding: 40px 15px 15px;
    }

    .brand{
        font-size: 20px;
    }

    .footer-text{
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-links{
        margin-bottom: 15px;
    }

    .logo-circle{
        width: 140px;
        height: 140px;
        margin: 20px auto;
    }

    .footer-section h5{
        margin-top: 20px;
    }

    .footer-section p{
        font-size: 13px;
    }

    .social-icons{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icons a{
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    .footer-bottom{
        font-size: 12px;
        padding-top: 10px;
    }

} */