/* =========================================================
   Fair Deal Services — Custom Styles
   ========================================================= */

:root {
    --fds-maroon: #2b0e12;
    --fds-maroon-dark: #200a0d;
    --fds-maroon-light: #3a1319;
    --fds-gold: #e0b975;
    --fds-gold-dark: #d4a75c;
    --fds-cream: #f2ecd9;
    --fds-white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    background:#290D0E;

    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #e0b975;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
}
h3 {
    color: #e0b975;
}
p {
    font-size: 18px !important;
    font-weight: 600;
    margin: 0;
}

a {
    text-decoration: none;
    color: #e0b975;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================== HEADER =========================== */
.fds-header {
    background: var(--fds-maroon);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.fds-navbar {
    padding: .75rem 0;
}

.fds-brand {
    display: flex;
    align-items: center;
    /* gap: .75rem; */
    color: var(--fds-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.2;
}

.fds-brand img {
    height: 75px;
    width: auto;
}

.fds-brand span {
    font-family: Georgia, serif;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: var(--fds-gold) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--fds-gold) !important;
}

.navbar-toggler {
    border: 1px solid var(--fds-gold);
    color: var(--fds-gold);
}

.navbar-toggler i {
    color: var(--fds-gold);
    font-size: 1.5rem;
}

/* Hamburger <-> X swap */
.navbar-toggler .fds-toggler-close {
    display: none;
}

.navbar-toggler.is-open .fds-toggler-open {
    display: none;
}

.navbar-toggler.is-open .fds-toggler-close {
    display: inline-block;
    font-size: 1.25rem;
}

/* Rotate the Weddings / About Us chevron when its dropdown is open */
.fds-navbar .dropdown-toggle::after {
    display: none;
}

.fds-navbar .nav-link .bi-chevron-down {
    transition: transform .25s ease;
}

.fds-navbar .nav-item.dropdown.show>.nav-link .bi-chevron-down {
    transform: rotate(180deg);
}

/* Desktop: open Weddings / About Us dropdown on hover, not just click */
@media (min-width: 1200px) {
    .fds-navbar .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .fds-navbar .nav-item.dropdown:hover>.nav-link .bi-chevron-down {
        transform: rotate(180deg);
    }
}

.fds-navbar .nav-link {
    color: var(--fds-white);
    font-weight: 600;
    padding: .5rem 1rem;
    transition: color .2s ease;
}

.fds-navbar .nav-link:hover,
.fds-navbar .nav-link.active {
    color: var(--fds-gold);
}

.fds-navbar .dropdown-menu {
    background: var(--fds-maroon-light);
    border: 1px solid var(--fds-gold);
    border-radius: 10px;
}

.fds-navbar .dropdown-item {
    color: var(--fds-white);
    font-weight: 500;
}

.fds-navbar .dropdown-item:hover {
    background: var(--fds-gold);
    color: var(--fds-maroon);
}

.fds-navbar .dropdown-menu {
    min-width: 230px;
    padding: .5rem 0;
}

/* Nested submenu (Weddings > Venue > Domestic/International) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fds-caret {
    font-size: .75rem;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.dropdown-submenu>.dropdown-item:hover .fds-caret {
    color: inherit;
}

.dropdown-submenu>.dropdown-menu.submenu {
    top: -.5rem;
    left: 100%;
    margin-left: 2px;
    display: none;
}

@media (min-width: 1200px) {
    .dropdown-submenu:hover>.dropdown-menu.submenu {
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-item .fds-caret {
        transform: rotate(90deg);
    }
}

/* Mobile / touch: toggled via JS with .show-submenu class */
.dropdown-submenu>.dropdown-menu.submenu.show-submenu {
    display: block;
}

.dropdown-submenu>.dropdown-item.fds-submenu-open .fds-caret {
    transform: rotate(90deg);
}

.fds-btn-gold {
  background-image: linear-gradient(247deg, #DFB960 0%, #AF7E2F 100%);
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 700;
    fill: #290D0E;
    color: #fff;
    box-shadow: 1px 7px 17px -3px #e0b975;
    border-radius: 19px 19px 19px 19px;
} 
  
.fds-btn-gold:hover {
   background-color: #e0b975;
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 700;
    fill: #290D0E;
    color: #fff;
    box-shadow: 1px 7px 17px -3px #e0b975;
    border-radius: 19px 19px 19px 19px;
}

.fds-btn-dark {
    margin-top: 10px;
    background: var(--fds-maroon) !important;
    color: var(--fds-white) !important;
    font-weight: 600;
    border: none;
    box-shadow: 3px 3px 0 var(--fds-gold);
    transition: all .25s ease;
}

.fds-btn-dark:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--fds-gold);
    color: var(--fds-white) !important;
}

.fds-social a {
    color: var(--fds-white);
    font-size: 1.1rem;
    transition: color .2s ease;
}

.fds-social a:hover {
    color: var(--fds-gold);
}

/* =========================== HERO =========================== */
.fds-hero {
    position: relative;                  
}

.carousel-item {
    margin-top: -100px;
    height: 88vh;
    min-height: 480px;
    background-size: cover;
    /* FIX: image ab top se pura dikhega, crop sirf bottom se hoga */
    background-position: top center;
    position: relative;
}

.fds-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(30 10 12 / 1%) 0%, rgb(30 10 12 / 40%) 60%, rgb(30 10 12 / 9%) 100%);
}

.fds-slide-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.fds-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.fds-eyebrow {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: .5rem;
}

.fds-hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.fds-hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    z-index: 3;
}

.fds-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    backdrop-filter: blur(3px);
}

.fds-indicators [data-bs-target] {
     display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--fds-gold);
    opacity: .5;
}

.fds-indicators .active {
    opacity: 1;
}

/* =========================== ABOUT =========================== */
.fds-about {
    background: var(--fds-maroon);
    position: relative;
    padding-top: 6rem !important;
}

.fds-about-card {
    background: var(--fds-white);
    padding: 3rem 2.5rem;
    border-radius: 6px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.fds-about-card h2 {
  font-family: "Poppins", Sans-serif;
    font-size: 37px;
    font-weight: 800;
    color: #440005;
}

.fds-about-card p {
  font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #020202;
}

/* ---- Continuous auto-scrolling marquee (matches live site pattern) ---- */
.fds-about-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.fds-about-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    animation: fdsMarquee 28s linear infinite;
}

.fds-about-marquee:hover .fds-about-track {
    animation-play-state: paused;
}

@keyframes fdsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.fds-about-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    flex: 0 0 auto;
    width: 400px;
    height: 450px;
}

.fds-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fds-badge-gold {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fds-gold);
    color: var(--fds-maroon);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem .5rem;
}

.fds-stats-strip h3 {
    color: var(--fds-gold);
    font-size: 2.2rem;
    margin-bottom: .25rem;
}

.fds-stats-strip p {
    color: var(--fds-white);
    font-weight: 600;
    letter-spacing: .5px;
}

/* =========================== OFFER =========================== */
.fds-offer {
    background: var(--fds-maroon);
}

.fds-section-title {
    color: var(--fds-gold);
    font-size: 50px;
}

.fds-section-sub {
    color: var(--fds-white);
    max-width: 700px;
    font-weight: 600;
    margin-top: .75rem;
}

.fds-offer-card {
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease;
}

.fds-offer-card:hover {
    transform: translateY(-8px);
}

.fds-offer-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.fds-offer-body {
    background: var(--fds-gold);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: calc(100% - 190px);
}

.fds-offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fds-white);
    color: var(--fds-maroon);
    font-size: 1.3rem;
    margin-bottom: .75rem;
}

.fds-offer-body h4 {
    color: var(--fds-maroon);
    font-size: 1.25rem;
    margin-bottom: .6rem;
}

.fds-offer-body p {
    color: var(--fds-maroon-dark);
    
    line-height: 1.5;
}

/* =========================== FOUNDER =========================== */
.fds-founder {
    background: var(--fds-maroon);
}

.fds-founder-card {
    max-width: 900px;
    border: 1px solid var(--fds-gold);
    border-radius: 10px;
    padding: 3rem 2rem;
}

.fds-founder-img {
   width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
}

.fds-founder-card h3 {
    color: var(--fds-gold);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.fds-founder-bio {
    color: var(--fds-white);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.fds-founder-stats {
    /*border-top: 1px solid rgba(224, 185, 117, .35);*/
    padding-top: 2rem;
}

.fds-founder-stats>div {
    border-right: 1px solid rgba(224, 185, 117, .35);
    padding: .5rem 1rem;
}

.fds-founder-stats>div:last-child {
    border-right: none;
}

.fds-founder-stats h2 {
    color: var(--fds-white);
    font-size: 2.4rem;
    margin-bottom: .25rem;
}

.fds-founder-stats p {
    color: var(--fds-gold);
    font-weight: 600;
}

/* =========================== REVIEWS =========================== */
.fds-reviews {
    background: var(--fds-maroon);
}

.fds-eyebrow-gold {
    color: var(--fds-gold);
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: .5rem;
}

.fds-review-carousel {
    min-height: 300px;
    padding-bottom: 10px;
}

.fds-review-slide {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.fds-review-slide img {
    width: 100%;
    max-width: 400px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.fds-review-box {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--fds-white);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    width: 46%;
    min-height: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

.fds-review-box h5 {
    color: var(--fds-maroon);
    font-size: .95rem;
    margin-bottom: .35rem;
}

.fds-stars {
    color: var(--fds-gold-dark);
    font-size: .75rem;
    margin-bottom: .5rem;
}

.fds-review-box p {
    color: #555;
    line-height: 1.5;
    font-size: .78rem;
}

.fds-review-nav {
    display: flex;
    gap: .6rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.fds-review-nav .btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--fds-gold);
    color: var(--fds-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: .85rem;
}

.fds-review-nav .btn:hover {
    background: var(--fds-gold);
    color: var(--fds-maroon);
}

/* =========================== WEDDING BANNER =========================== */
.fds-wedding-banner {
    background-attachment: fixed !important;
    position: relative;
    background: url('../img/ring-banner.png') center/cover no-repeat;
    padding: 13rem 1rem;
}

.fds-wedding-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 6, 8, .65);
}

.fds-wedding-banner h3 {
    position: relative;
    color: var(--fds-gold);
   font-family: "Poppins", Sans-serif;
    font-size: 50px;
    line-height: 1.5;
}

.fds-ring-icon {
    width: 70px;
    margin: 0 auto 1.5rem;
    position: relative;
}

/* =========================== GALLERY =========================== */
.fds-gallery {
    background: var(--fds-maroon);
}

.fds-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1/1;
}

.fds-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.fds-gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================== FAQ =========================== */
.fds-faq {
    background: var(--fds-maroon);
}

.fds-faq-box { 
    /*max-width: 950px;*/
    border: 1px solid var(--fds-gold);
    border-radius: 10px;
    padding: 2.5rem 2rem;
}

.fds-faq-box h2 {
    color: var(--fds-gold);
    font-size: 1.6rem;
}

.fds-faq-line {
    border-color: rgba(224, 185, 117, .4);
    margin: 1.5rem auto 2rem;
    width: 100px;
    opacity: 1;
}

.fds-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(224, 185, 117, .25);
}

.fds-accordion .accordion-button {
    background: transparent;
    color: var(--fds-gold);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: none;
    padding: 1.1rem 0;
}

.fds-accordion .accordion-button:not(.collapsed) {
    color: var(--fds-gold);
    background: transparent;
    box-shadow: none;
}

.fds-accordion .accordion-button::after {
    filter: invert(78%) sepia(28%) saturate(500%) hue-rotate(6deg) brightness(105%);
}

.fds-accordion .accordion-body {
    color: var(--fds-white);
    line-height: 1.7;
    padding: 0 0 1.5rem;
}

/* =========================== CONTACT =========================== */
.fds-contact {
    background: var(--fds-cream);
    /*padding-bottom: 0 !important;*/
}

.fds-contact-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .1);
}

.fds-contact-media {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.fds-contact-media img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    min-height: 400px;
}

.fds-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.fds-play-btn:hover {
    background: var(--fds-gold);
    border-color: var(--fds-gold);
    color: var(--fds-maroon);
}

.fds-contact-form {
    background: var(--fds-cream);
    padding: 0rem 2.5rem;
    height: 100%;
}

.fds-contact-form h2 {
    color: var(--fds-maroon);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.fds-input {
    border-radius: 30px;
    border: none;
    padding: .9rem 1.4rem;
    background: var(--fds-white);
}

textarea.fds-input {
    border-radius: 20px;
}

.fds-input:focus {
    box-shadow: 0 0 0 3px rgba(224, 185, 117, .5);
}

/* =========================== FOOTER =========================== */
.fds-footer {
    background: var(--fds-maroon-dark);
    color: #ddd;
}

.fds-footer-logo {
    height: 100px;
    width: auto;
}

.fds-footer h5 {
    color: var(--fds-gold);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}

.fds-footer p {
    line-height: 1.5;
    font-size: 14px !important;
    margin-bottom: .6rem;
}

.fds-footer-links li {
    margin-bottom: .6rem;
}

.fds-footer-links a {
    color: #ddd;
    font-size: .95rem;
    transition: color .2s ease;
}

.fds-footer-links a:hover {
    color: var(--fds-gold);
}

.fds-map {
    border-radius: 8px;
    overflow: hidden;
}

.fds-footer-line {
    border-color: rgba(224, 185, 117, .25);
    opacity: 1;
}

.fds-copyright {
    color: var(--fds-gold);
    font-size: .9rem;
}

/* =========================== WHATSAPP + BACK TO TOP =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    z-index: 1040;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

.fds-back-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--fds-gold);
    color: var(--fds-maroon);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1040;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

/* Tighten spacing between 1200px and 1350px so the full-width
           navbar doesn't feel cramped just above the new breakpoint */
@media (min-width: 1200px) and (max-width: 1350px) {
    .fds-navbar .nav-link {
        padding: .5rem .6rem;
        font-size: .93rem;
    }

    .fds-navbar .navbar-nav {
        gap: .1rem;
    }
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1199.98px) {
    .fds-navbar .navbar-nav {
        text-align: left;
        margin-top: 1rem;
    }

    .fds-navbar .dropdown-menu {
        text-align: left;
    }

    /* ---- HEADER MOBILE FIX ---- */
    .fds-navbar {
        padding: .5rem 0;
    }

    .fds-brand img {
        height: 42px;
    }

    .fds-brand span {
        font-size: .95rem;
    }

    .navbar-toggler {
        padding: .4rem .6rem;
        font-size: .9rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* push the Weddings / About Us chevron to the far right edge */
    .fds-navbar .nav-item.dropdown>.nav-link.dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .fds-navbar .nav-item.dropdown>.nav-link.dropdown-toggle .bi-chevron-down {
        margin-left: auto;
    }

    /* Collapsed nav becomes a scrollable panel so a long
               Weddings sub-menu doesn't push the page or get cut off */
    .navbar-collapse {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding-bottom: 1rem;
    }

    /* Top-level dropdown menus (Weddings / About Us) must NOT be
               position:absolute on mobile — that causes horizontal
               overflow / misalignment inside the collapsed nav */
    .fds-navbar .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, .18);
        box-shadow: none;
        padding: .25rem 0;
    }

    .fds-navbar .dropdown-item {
        padding: .6rem 1rem;
        white-space: normal;
    }

    /* nested submenu (Domestic/International etc.) stacked, not absolute */
    .dropdown-submenu>.dropdown-menu.submenu {
        position: static;
        margin-left: 0;
        border: none;
        background: rgba(0, 0, 0, .15);
        box-shadow: none;
        display: none;
    }

    .dropdown-submenu>.dropdown-menu.submenu.show-submenu {
        display: block;
    }

    /* nested submenu chevron rotates to point down when expanded on mobile */
    .dropdown-submenu>.dropdown-item.fds-submenu-open .fds-caret {
        transform: rotate(90deg);
    }

    .fds-navbar .navbar-nav>.nav-item {
        border-bottom: 1px solid rgba(224, 185, 117, .15);
    }

    .fds-navbar .navbar-nav>.nav-item:last-child {
        border-bottom: none;
    }

    .d-flex.flex-column.flex-xl-row {
        width: 100%;
    }

    .d-flex.flex-column.flex-xl-row .fds-btn-gold {
        width: 100%;
        text-align: center;
    }

    .fds-social {
        justify-content: center;
        width: 100%;
    }

    .carousel-item {
        height: 70vh;
        min-height: 420px;
    }

    .fds-about {
        padding-top: 3rem !important;
    }

    .fds-about-img {
        width: 200px;
        height: 250px;
    }

    .fds-review-box {
        position: static;
        transform: none;
        width: 100%;
        border-radius: 20px;
        margin-top: -40px;
    }

    .fds-review-slide {
        flex-direction: column;
    }

    .fds-review-slide img {
        max-width: 100%;
    }

    .fds-founder-stats>div {
        border-right: none;
        border-bottom: 1px solid rgba(224, 185, 117, .35);
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .fds-contact-media {
        min-height: 280px;
    }

    .fds-contact-media img {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .fds-brand span {
        font-size: 21px;
    }

    .fds-brand img {
        height: 65px;
    }

    .fds-header .container {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .fds-hero-title {
        font-size: 2rem;
    }

    .fds-about-card {
        padding: 2rem 1.5rem;
    }

    .fds-about-img {
        width: 170px;
        height: 210px;
    }

    .fds-founder-card {
        padding: 2rem 1.25rem;
    }

    .fds-contact-form {
        padding: 2rem 1.5rem;
    }
}

/* =========================== TESTIMONIALS =========================== */
/* Section Base Styling */
.testimonial-section {
    background-color: #210a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-title {
    text-transform: uppercase;
    color: #DFB960;
    font-size: 40px;
    font-weight: 700;
}

/* Slider Container & Track for Smooth Sliding Animation */
.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Slide */
.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    min-height: 550px;
}

/* Image with Curved Corners — bada size, sirf top-left rounded */
.slide-image-wrapper {
    border-bottom-right-radius: 90px !important;
    width: 68%;
    margin-left: auto;
    height: 550px !important; 
    min-height: 550px;
    border-radius: 0;
    border-top-left-radius: 90px;
    overflow: hidden;
}

.slide-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;  
}

.testimonial-card {
  border-bottom-left-radius: 90px !important;
    position: absolute;
    top: auto;
    bottom: 0px;
    left: 0;
    transform: none;
    width: 44%;
    background-color: #ffffff;
    color: #210a0a;
    padding: 80px;
    border-radius: 0;
    border-top-right-radius: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 2;
}

.star-rating {
    color: #f5a623;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Arrow Buttons — circular gold border */
.slider-arrows {
    display: flex;
    gap: 14px;
}

.arrow-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #e5c158;
    color: #e5c158;
    font-size: 1.3rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.arrow-btn i {
    font-size: 1.3rem;
}

.arrow-btn:hover {
    background-color: #e5c158;
    color: #210a0a;
    transform: scale(1.05);
}

/* Pagination Dots */
.dots-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10%;
}

/*.dot {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    background-color: rgba(255, 255, 255, 0.25);*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s ease, transform 0.3s ease;*/
/*}*/

.dot:hover {
    background-color: rgba(229, 193, 88, 0.6);
}

.dot.active {
    background-color: #e5c158;
    transform: scale(1.2);
}
/* FIXED: Mobile & Tablet Responsiveness — Clean Stacked Layout (v2, anti-clip) */
@media (max-width: 768px) {
    .testimonial-section {
        overflow: visible !important;
        min-height: auto !important;
        height: auto !important;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .section-title {
        font-size: 26px;
    }

    .testimonial-slider-wrapper {
        overflow: hidden !important;
        height: auto !important;
    }

    .slider-track {
        align-items: flex-start !important;
    }

    /* Slide becomes a simple stacked column: image on top, card below */
    .testimonial-slide {
        min-height: 0 !important;
        height: auto !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .slide-image-wrapper {
        position: static !important;
        width: 100% !important;
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
        margin-left: 0 !important;
        border-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .slide-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
      
            
    .testimonial-card {
        position: static !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 295px;
        height:300px;
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
        margin: -30px auto 0 auto !important;
        background-color: #ffffff !important;
        border-radius: 20px !important;
        border-top-right-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
        padding: 17px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
        text-align: center !important;
        z-index: 2 !important;
        display: block !important;
    }

    .testimonial-card h4 {
        display: block !important;
        font-size: 1.15rem;
        color: #210a0a !important;
        margin-bottom: 0.5rem !important;
    }

    .star-rating {
        display: block !important;
        font-size: 1rem;
        margin-bottom: 0.75rem !important; 
    }

    .testimonial-text {
        display: block !important;
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow: visible !important;
    }

    /* Controls footer centered below the card */
    .testimonial-section .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem !important;
    }

    .dots-container {
        margin-left: 0;
    }

    /*.dot {*/
    /*    width: 9px;*/
    /*    height: 9px;*/
    /*    border-radius: 50%;*/
    /*    background-color: rgba(255, 255, 255, 0.25);*/
    /*    cursor: pointer;*/
    /*    transition: background-color 0.3s ease, transform 0.3s ease;*/
    /*}*/

    .arrow-btn {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    .arrow-btn i {
        font-size: 1.05rem;
    }
}

/* --- Section 1: Hero Banner --- */
.hero-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://fairdeal-services.com/wp-content/uploads/2025/10/unnamed.webp');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.breadcrumb-text {
    font-size: 23px;
    color: #ffffff;
    font-family: Georgia, serif;
}

.elementor-kit-56 h1 {
    font-size: 50px !important;
}

/* Floating Contact Bar */
.contact-bar-container {
    position: absolute;
    bottom: -40px;
    width: 90%;
    max-width: 1100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff8e2;
    padding: 25px;
    border-radius: 15px 0px 15px 0px;
    z-index: 10;
}

.contact-bar-container input {
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}

.btn-dark-custom {
    font-size: 15px;
    background-color: #1a0202;
    color: white;
    padding: 10px 20px;
    border: none;
    width: 100%;
    border-radius: 15px 0px 15px 0px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Section 2: Main Content --- */
.main-content-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.section-heading {
    color: #e0b975;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.description-text {
    color: #f1f1f1;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-gold {
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: #e0b975;
    color: #2E0404;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    margin-right: 10px;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.stats-box {
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #e0b975;
}

/* Image Grid Layout */
.image-grid img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* --- Section 3: Services List & Sidebar --- */
.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu li a {
    color: #e0b975;
    text-decoration: none;

}

.sidebar-menu li.active {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

.sidebar-menu li.active a {
    color: var(--bg-dark);
    font-weight: 600;
}

.services-list {
    color: white;
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* --- Section 4: Why Choose --- */
.why-choose-heading {
    color: #e0b975;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    color: white;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.why-choose-list li::before {
    content: "\F5D1";
    /* Bootstrap star icon */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #e0b975;
}

.contact-info {
    color: #e0b975;
    font-weight: 600;
    margin-top: 20px;
}

.overlap-images {
    position: relative;
}

.img-small {
    width: 60%;
    border-radius: 10px;
}

.img-large {
    width: 62%;
    margin-top: -50px;
    margin-left: 32%;
    border: 5px solid var(--bg-dark);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-bar-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .main-content-section {
        padding-top: 50px;
    }
}

/*.btn:hover {*/
/*    color: var(--bs-btn-hover-color);*/
/*    background-color: #1a0202 !important;*/
/*    border-color: var(--bs-btn-hover-border-color);*/
/*}*/


.corp-hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.corp-hero-desc+.corp-hero-desc {
    margin-top: 1rem;
}

.corp-hero-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
}

.corp-moments-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--gold, #DFB960);
}

.corp-moments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .corp-moments-grid {
        grid-template-columns: 1fr;
    }
}

.corp-moment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0.9rem;
    padding: 1.5rem;
}

.corp-moment-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.corp-moment-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.corp-moment-text {
    color: rgba(255, 255, 255, 0.7);

    margin: 0;
}

.corp-dream-heading {
    color: var(--gold, #DFB960);
    font-weight: 700;
    margin-top: 2rem;
}

.corp-expertise-list,
.corp-why-list {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.corp-expertise-list li,
.corp-why-list li {
    color: white;
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.corp-expertise-list li::before,
.corp-why-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--gold, #DFB960);
}

.corp-overlap-images {
    position: relative;
    min-height: 320px;
}

.corp-img-small {
    width: 55%;
    border-radius: 0.9rem;
    position: relative;
    z-index: 1;
}

.corp-img-large {
    width: 65%;
    border-radius: 0.9rem;
    position: absolute;
    right: 0;
    bottom: -1.5rem;
    z-index: 2;
}

.corp-tagline {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.corp-faq-box {
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.corp-faq-heading {
    color: var(--gold, #DFB960);
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.corp-faq-item {
    margin-bottom: 1.25rem;
}

.corp-faq-item:last-child {
    margin-bottom: 0;
}

.corp-faq-q {
    color: #DFB960;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.corp-faq-a {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

h1.hero-title {
    color: #d9ab52;
    font-family: Georgia, serif;
}

p {
    color: white;
}

/* ---------- Page Header ---------- */
.fds-page-header {
    background: linear-gradient(180deg,
            #F0D06A 0%,
            #D9B24C 35%,
            #C99A2E 65%,
            #A8761A 100%);
    padding: 70px 0 60px;
    text-align: center;
    color: #fff;
}

.fds-page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.fds-page-header h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--fds-gold);
    margin: 16px auto 0;
}

.fds-breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: .9rem;
    letter-spacing: .03em;
    color: #d9cfbf;
}

.fds-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: var(--fds-gold);
}

.fds-breadcrumb li:last-child {
    color: var(--fds-gold);
}

/* ---------- Info cards ---------- */
.fds-info-section {
    background: var(--fds-cream);
    padding: 60px 0;
}

.fds-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 24px rgba(43, 38, 34, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.fds-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(43, 38, 34, .12);
}

.fds-info-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: rgba(179, 137, 60, .12);
    color: var(--fds-gold-dark);
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.fds-info-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.5;
}

.fds-info-card p {
    color: var(--fds-muted);
    font-size: .9rem;
    margin: 0;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* ---------- Map ---------- */
.fds-map iframe {
    width: 100%;
    height: 100px;
    border: 0;
    display: block;
}

/* ---------- Form ---------- */
.fds-form-section {
    padding: 70px 0 90px;
}

.fds-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee2cf;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(43, 38, 34, .06);
}

.fds-form-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.fds-form-wrapper .fds-sub {
    text-align: center;
    color: var(--fds-muted);
    margin-bottom: 36px;
    font-size: .95rem;
}

.fds-form-wrapper .form-control {
    border-radius: 6px;
    border: 1px solid #e2dccf;
    padding: 12px 16px;
    font-size: .95rem;
}

.fds-form-wrapper .form-control:focus {
    border-color: var(--fds-gold);
    box-shadow: 0 0 0 .2rem rgba(179, 137, 60, .15);
}

.fds-btn-submit {
    background: var(--fds-gold);
    border: none;
    color: #fff;
    padding: 13px 42px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: .04em;
    transition: background .2s ease;
}

.fds-btn-submit:hover {
    background: var(--fds-gold-dark);
    color: #fff;
}

@media (max-width: 767px) {
    .fds-page-header {
        padding: 50px 0 40px;
    }

    .fds-page-header h1 {
        font-size: 2rem;
    }

    .fds-form-wrapper {
        padding: 30px 20px;
    }
}

.dest-canvas-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.dest-canvas-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
}

.dest-dream-heading {
    color:#e0b975;
    font-weight: 700;
    margin-top: 1.5rem;
}

.dest-section-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color:#e0b975;
    margin-bottom: 0.75rem;
}

.dest-divider {
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    margin-bottom: 2rem;
}

.dest-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

@media (max-width: 767px) {
    .dest-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.dest-col-right {
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    padding-left: 3rem;
}

@media (max-width: 767px) {
    .dest-col-right {
        border-left: none;
        padding-left: 0;
    }
}

.dest-loc-item {
    margin-bottom: 1.75rem;
}

.dest-loc-title {
    color:#e0b975;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0.5rem;
}

.dest-loc-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.dest-faq-item {
    margin-bottom: 1.75rem;
}

.dest-faq-q {
    color:#e0b975;
    font-weight: 700;
    font-size: 20px;

}

.dest-faq-a {
    color: #fff;

    line-height: 1.65;
    margin: 0;
}

.dest-list {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
} 
 
.dest-list li {
    color:white;
    position: relative;
    padding-left: 1.6rem;                   
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.dest-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color:#e0b975;
}
/* =========================== MOBILE FONT SIZE FIXES =========================== */
@media (max-width: 767.98px) {

    /* Global paragraph text — 18px bahut bada tha mobile ke liye */
    p {
        font-size: 15px !important;
    }

    h1 {
        font-size: 1.9rem !important;
        line-height: 1.25 !important;
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    /* Hero */
    .fds-eyebrow {
        font-size: 0.95rem;
    }

    .fds-hero-title {
        font-size: 1.9rem !important;
    }

    .fds-hero-sub {
        font-size: 0.95rem !important;
    }

    /* About */
    .fds-about-card h2 {
        font-size: 1.6rem !important;
    }

    .fds-about-card p {
        font-size: 14px !important;
    }

    .fds-badge-gold {
        font-size: 0.9rem;
        padding: 0.6rem 0.4rem;
    }

    /* Section titles (Offer, Gallery, etc.) */
    .fds-section-title {
        font-size: 1.8rem !important;
    }

    .fds-section-sub {
        font-size: 0.9rem !important;
    }

    /* Offer cards */
    .fds-offer-body h4 {
        font-size: 1.05rem;
    }

    .fds-offer-body p {
        font-size: 14px !important;
    }

    /* Founder section */
    .fds-founder-card h3 {
        font-size: 1.25rem;
    }

    .fds-founder-bio {
        font-size: 14px;
    }

    .fds-founder-stats h2 {
        font-size: 1.6rem !important;
    }

    .fds-founder-stats p {
        font-size: 13px !important;
    }

    /* Testimonials */
    .section-title {
        font-size: 22px !important;
    }

    /* Wedding banner */
    .fds-wedding-banner h3 {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
    }

    /* FAQ */
    .fds-faq-box h2 {
        font-size: 1.25rem !important;
    }

    .fds-accordion .accordion-button {
        font-size: 14px !important;
        padding: 0.9rem 0 !important;
    }

    .fds-accordion .accordion-body {
        text-align: justify;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Contact form */
    .fds-contact-form h2 {
        font-size: 1.5rem !important;
    }

    .fds-input {
        font-size: 14px;
    }

    /* Footer */
    .fds-footer h5 {
        font-size: 1rem;
    }

    .fds-footer p {
        font-size: 13px !important;
    }

    .fds-footer-links a {
        font-size: 13px;
    }

    /* Page header (inner pages) */
    .fds-page-header h1 {
        font-size: 1.6rem !important;
    }

    .fds-breadcrumb {
        font-size: 0.8rem;
    }

    /* Info cards */
    .fds-info-card h3 {
        font-size: 0.95rem;
    }

    .fds-info-card p {
        font-size: 0.8rem !important;
    }

    /* Corporate / Destination pages */
    .corp-hero-desc,
    .dest-canvas-desc {
        font-size: 0.9rem !important;
    }

    .corp-moment-title {
        font-size: 1rem;
    }

    .corp-moment-text {
        font-size: 0.85rem;
    }

    .corp-faq-q,
    .dest-faq-q {
        text-align: justify;
        font-size: 17px !important;
    }

    .corp-faq-a,
    .dest-faq-a {
        text-align: justify;
        font-size: 0.88rem !important;
    }

    .dest-loc-title {
        font-size: 19px !important;
    }

    .dest-loc-text {
        font-size: 0.88rem !important;
    }

    .section-heading {
        font-size: 1.6rem !important;
    }

    .description-text {
        text-align: justify;
        font-size: 0.9rem !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .fds-hero-title {
        font-size: 1.6rem !important;
    }

    .fds-section-title {
        font-size: 1.5rem !important;
    }
 
    p {
      
        font-size: 14px !important;
    }
    .fds-about-card {
    text-align: justify;
    }
    .destination-wedding {
    margin-top: 100px;
        color: #e0b975;
    }
    .dest-col-left {
    text-align: justify;
}
}

    .baraat-services-sidebar{
    background:var(--baraat-maroon);
    border-radius:8px;
    padding:1.8rem 1.6rem;
  }
  .baraat-services-sidebar .side-brand{
    display:flex;
    align-items:center;
    gap:.8rem;
    color:#fff;
    font-family:var(--baraat-font-display);
    font-weight:700;
    font-size:1.15rem;
    line-height:1.15;
  }
  .baraat-services-sidebar .side-brand img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
  }
  .baraat-services-sidebar ul{
    list-style:none;
    padding:0;
    margin:1.2rem 0 0;
  }
  .baraat-services-sidebar ul li a{
    display:block;
    color:var(--baraat-text-muted);
    padding:.6rem 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    font-size:.94rem;
    transition:color .2s ease, padding-left .2s ease;
  }
  .baraat-services-sidebar ul li:last-child a{ border-bottom:none; }
  .baraat-services-sidebar ul li a:hover,
  .baraat-services-sidebar ul li a.active{
    color:var(--baraat-gold);
    padding-left:.4rem;
  }

  .baraat-services-list{ list-style:none; padding:0; margin:0; }
  .baraat-services-list li{
    display:flex;
    gap:.9rem;
    padding:1rem 0;
    border-bottom:1px dashed rgba(255,255,255,.1);
    color:var(--baraat-text-muted);
    line-height:1.7; 
  }
  .baraat-services-list li:last-child{ border-bottom:none; }
  .baraat-services-list li i{
    color:#E2C34E;
    margin-top:.3rem;
  }
  .baraat-services-list strong{ color:#fff; }

  .baraat-banner-img{
    width:100%;
    border-radius:8px;
    object-fit:cover;
    height:280px;
    margin-top:2.5rem;
  }
  
  /* ---------- Service cards ---------- */
  .baraat-cards-heading{ text-align:center; }
  .baraat-cards-heading p{
    color:white;
    max-width:560px;
    margin:.8rem auto 0;
  }

  .baraat-card{
    background:#38120f;
    border-radius:10px;
    padding:2.2rem 1.6rem;
    text-align:center;
    height:100%;
    transition:transform .25s ease, background .25s ease;
    border:1px solid rgba(255,255,255,.05);
  }
  .baraat-card:hover{
    transform:translateY(-6px);
    background:var(--baraat-maroon-light);
  }
  .baraat-card .icon-wrap{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#d9ab52; 
    color:black;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 1.2rem;
    font-size:1.4rem;
  }
  .baraat-card h5{
    color:#fff;
    font-weight:700;
    margin-bottom:.6rem;
    font-size:1.05rem; 
  }
  .baraat-card p{
    color:white;
    font-size:.9rem !important;
    margin:0;
    line-height:1.6;   
  }

@media (max-width: 767px) {
    .hero-banner {
        display: block;
        padding: 50px;
    }
}

    .rajasthan-venue-page .hero-banner {
        min-height: 380px;
    }
  
    .rajasthan-venue-page .dest-venue-card {
        border: 2px solid #e0b975;
        border-radius: 10px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #2a0d0d;
    }

    .rajasthan-venue-page .dest-venue-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .rajasthan-venue-page .dest-venue-card-body {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .rajasthan-venue-page .dest-venue-card-body .btn-gold {
        margin-top: auto;
        align-self: flex-start;
    }

    .rajasthan-venue-page .dest-tip-card {
        border: 2px solid #e0b975;
        border-radius: 10px;
        overflow: hidden;
        height: 100%;
        background: #2a0d0d;
    }

    .rajasthan-venue-page .dest-tip-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .rajasthan-venue-page .dest-tip-card h5,
    .rajasthan-venue-page .dest-tip-card p {
        padding: 0 1rem;
    }

    .rajasthan-venue-page .dest-tip-card h5 {
        margin-top: 1rem;
    }

    .rajasthan-venue-page .dest-tip-card p {
        padding-bottom: 1rem;
    }

.fds-team-section {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

    .artist-split-section {
    padding: 60px 0;
}

.artist-split-wrapper {
    display: flex;
    width: 100%;
    height: 520px;
}

.artist-split-panel { 
    position: relative;
    flex: 1;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: flex 0.6s ease;
}

.artist-split-panel:hover {
    flex: 1.3;
}

.artist-split-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.artist-split-panel:hover img {
    transform: scale(1.08);
}

.artist-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.15) 100%);
    transition: background 0.4s ease;
}

.artist-split-panel:hover .artist-split-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.1) 100%);
}

.artist-split-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 36px;
    color: #fff;
    text-decoration: none;
}

.artist-split-tag {
    display: inline-block;
    color: #e0b975;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.artist-split-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.artist-split-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 18px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.artist-split-panel:hover .artist-split-content p {
    opacity: 1;
    max-height: 60px;
}

.artist-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e0b975;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #e0b975;
    padding-bottom: 4px;
    transition: gap 0.3s ease;
}

.artist-split-panel:hover .artist-split-cta {
    gap: 14px;
}

@media (max-width: 767px) {
    .artist-split-wrapper {
        flex-direction: column;
        height: auto;
    }

    .artist-split-panel {
        height: 320px;
    }

    .artist-split-panel:hover {
        flex: 1;
    }

    .artist-split-content p {
        opacity: 1;
        max-height: none;
    }
}


.fds-team-heading {
  text-align: center;
  margin-bottom: 40px;
}

.fds-team-heading h2 {
  font-size: 28px;
  font-weight: 600;  
}

/*.fds-team-heading .divider-line {*/
/*  width: 60px;*/
/*  height: 3px;*/
/*  background: #e0b975;*/
/*  margin: 15px auto 0;*/
/*}*/

.fds-team-card {
    height:100%;
  text-align: center;
  padding: 30px 20px;
}

.fds-team-card .fds-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0b975;
  margin-bottom: 15px;
}

.fds-team-card h5 {
  color: #e0b975;
  font-size: 18px;
  margin-bottom: 4px;
}

.fds-team-card .fds-role {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 12px;
}

.fds-team-card .fds-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.fds-faq-section {
  padding: 70px 0;
}

.fds-faq-box { 
  /*max-width: 900px;*/
  margin: 0 auto;
}

.fds-faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.fds-faq-divider {
  width: 60px;
  height: 3px;
  background: #e0b975;
  margin: 0 auto 40px;
}

.fds-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 500;
}

.fds-accordion .accordion-body {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .fds-team-section .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .fds-team-section {
    padding: 40px 0;
  }
}
.fds-team-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #e0b975;
  border-radius: 10px;
}

.fds-team-card .fds-avatar {
  display: block;
  margin: 0 auto 15px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0b975;
}
@media (max-width: 576px) {
  .fds-team-section {
    padding: 40px 0;
  }
  .fds-team-section .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .process-img {
    margin-top: 29px !important;
}
}
.card.border-0.shadow-sm.rounded-4.text-center.h-100.counter-card.bg-transparent.border {
    border: 2px solid #e0b975 !important;
}
.process-img{
    margin-top:-50px !important;
}

.plan-event-dialog {  
    max-width: 1100px;
}

.plan-event-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.plan-event-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    font-size: 16px;
    color: #1e1e1e;
    transition: all 0.3s ease;
}

.plan-event-close:hover {
    background: #e0b975;
    color: #fff;
}

/* LEFT IMAGE COLUMN */
.plan-event-img-col {
    position: relative;
    max-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 25px 30px;
}

.plan-event-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 10%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.35) 100%);
}

.plan-event-img-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.plan-event-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.plan-event-img-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #fff;
}

.plan-event-img-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* RIGHT FORM COLUMN */
.plan-event-form-col {
    padding: 25px 30px;
    max-height: 640px;
    overflow-y: auto;
}

.plan-event-eyebrow {
    color: #e0b975;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-event-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #1e1e1e;
    margin-bottom: 10px;
}

.plan-event-form .form-label {
    font-weight: 500;
    color: #1e1e1e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.plan-event-form .form-control,
.plan-event-form .form-select {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    /*padding: 12px 14px;*/
    font-size: 0.95rem;
}

.plan-event-form .form-control:focus,
.plan-event-form .form-select:focus {
    border-color: #e0b975;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.plan-event-submit {
    background: linear-gradient(135deg, #d9a860, #c98f3f);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.plan-event-submit:hover {
    opacity: 0.9;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .plan-event-img-col {
        min-height: 260px;
        padding: 24px;
    }

    .plan-event-img-content h2 {
        font-size: 1.5rem;
    }

    .plan-event-form-col {
        max-height: none;
        padding: 28px 24px 24px;
    }

    .plan-event-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .plan-event-dialog {
        margin: 10px;
    }

    .plan-event-img-col {
        min-height: 180px;
        padding: 18px;
    }

    .plan-event-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .plan-event-img-content h2 {
        font-size: 1.25rem;
    }

    .plan-event-img-content p {
        font-size: 0.85rem;
    }  

    .plan-event-form-col {
        padding: 22px 18px 20px;
    }

    .plan-event-close {
        width: 34px;
        height: 34px;
        top: 12px;
        right: 12px;
    }
}
