/* --- Brand Colors & Variables --- */
:root {
    --primary-pink: #e91e63;
    --dark-pink: #ad1457;
    --soft-bg: #fff5f8;
    --gold-accent: #d4af37;
    --text-dark: #333333;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* --- Global Settings --- */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* --- Custom Navigation --- */
.navbar {
    /* padding: 1rem 2rem; */
    background: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-pink) !important;
    font-size: 1.5rem;
}

.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.45),
            rgba(15, 23, 42, 0.35)),
        url('/asset/frontend/img/hero-section.jpg');
    background-size: cover;
    background-position: center bottom;
    /* Couple ko stairs ke sath pura upar le aayega */
    background-repeat: no-repeat;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section h1,
.hero-section .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-section p,
.hero-section .hero-subtitle {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.search-box-container {
    background: white;
    padding: 20px;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
    margin-top: 30px;
}

.search-box-container input,
.search-box-container select {
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
}

.search-box-container input:focus,
.search-box-container select:focus {
    outline: none;
    box-shadow: none;
}

.btn-search {
    background-color: var(--primary-pink);
    color: white;
    border-radius: 40px;
    padding: 12px 35px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-search:hover {
    background-color: var(--dark-pink);
    transform: scale(1.05);
}

/* --- Category Cards --- */
.cat-card {
    background: white;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    padding: 20px 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-pink);
}

.cat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.bg-soft-pink {
    background-color: #fff4f6 !important;
}

.why-icon-circle {
    width: 68px;
    height: 68px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* --- Stats Counter --- */
.stats-section {
    background: white;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    display: block;
}

.stat-label {
    color: #777;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- Footer --- */
.main-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

/* --- Header Customization --- */
.main-header {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.fw-800 {
    font-weight: 800;
}

.fw-600 {
    font-weight: 600;
}

.text-pink {
    color: var(--primary-pink);
}

.logo-text span {
    letter-spacing: 1px;
    line-height: 1;
}

.logo-text small {
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* --- Navigation Links --- */
.nav-link {
    color: #444 !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: var(--primary-pink);
    transition: 0.3s ease;
    transform: translateX(-50%);
}

/* .nav-link:hover:after,
.nav-link.active:after {
    width: 20px;
} */

/* --- Gradient Button --- */
.btn-pink-gradient {
    background: linear-gradient(45deg, var(--primary-pink), #ff4d8d);
    color: white;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.btn-pink-gradient:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.btn-outline-pink {
    border: 1px solid var(--primary-pink);
    color: var(--primary-pink);
    border-radius: 20px;
}

/* --- Mobile Menu Fixes --- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid #f8f8f8;
    }

    .nav-link:after {
        display: none;
    }
}

/* --- Footer Styling --- */
.main-footer {
    background-color: #1a1a1d;
    color: #ffffff;
    padding-top: 40px;

}

.footer-heading {
    font-weight: 800;
    color: var(--primary-pink);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-heading-sm {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading-sm:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-pink);
}

.footer-about {
    color: #adb5bd;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.footer-list a:hover {
    color: var(--primary-pink);
    padding-left: 8px;
}

/* Social Media Icons */
.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 50px 0 30px;
}

.copyright {
    color: #6c757d;
    font-size: 0.85rem;
}

.grayscale {
    filter: grayscale(1) brightness(2);
    opacity: 0.5;
}

/* Contact Section Icons */
.contact-icon {
    font-size: 1.2rem;
}

.contact-item p {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* --- Additional UI Components --- */
.bg-soft-pink {
    background-color: #fffafa;
}

/* Vendor Cards */
.vendor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
    overflow: hidden;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.1) !important;
}

.vendor-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Icons and Badges */
.bg-pink-gradient {
    background: linear-gradient(45deg, var(--primary-pink), #ff4d8d);
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Blog Cards */
.blog-card {
    transition: 0.3s;
    border-radius: 12px !important;
}

.blog-card .card-img-top {
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }
}

/* Custom Button Sizing for Slider */
.rounded-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure the border doesn't clash with the card */
.testimonial-card {
    border: 1px solid rgba(233, 30, 99, 0.05) !important;
}

.border-pink {
    border-color: var(--primary-pink) !important;
}

/* Smooth fading transition instead of sliding (Optional) */
.carousel-fade .carousel-item {
    transition-duration: 0.6s;
}

/* --- Venue Card Specifics --- */
.venue-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid #f0f0f0;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.1);
}

.venue-img-container {
    position: relative;
    height: 230px;
}

.venue-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    transition: 0.3s;
}

.wishlist-btn:hover {
    background: var(--primary-pink);
    color: white;
}

.venue-content {
    padding: 10px;
}

.venue-rating {
    background: #fff9e6;
    color: #f39c12;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.venue-stats .flex-fill small {
    letter-spacing: 0.5px;
    font-size: 0.65rem;
}

/* --- Category Page Specifics --- */
.category-sidebar-list li {
    margin-bottom: 5px;
}

.category-sidebar-list a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.category-sidebar-list a:hover,
.category-sidebar-list a.active {
    background: var(--soft-bg);
    color: var(--primary-pink);
    font-weight: 600;
}

/* Category Main Card (The visual block) */
.category-main-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    transition: transform 0.4s ease;
}

.category-main-card:hover {
    transform: scale(0.98);
}

.card-img-wrapper {
    height: 100%;
    width: 100%;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-main-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.card-body-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
}

.category-icon-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
}

/* Custom Scrollbar for Mobile */
.mobile-category-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-category-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- About Page Specifics --- */
.border-pink {
    border-color: var(--primary-pink) !important;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--primary-pink);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    border: 5px solid white;
}

.value-item {
    padding: 30px;
    transition: 0.3s;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bg-pink-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #ff4d8d 100%);
}

.btn-white {
    color: var(--primary-pink) !important;
    transition: 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rounded-5 {
    border-radius: 2rem !important;
}

/* Timeline/Feature Item */
.icon-box {
    display: inline-block;
}

/* --- Contact Page Specifics --- */
.contact-icon-box {
    width: 45px;
    height: 45px;
    background: var(--soft-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-pink);
    flex-shrink: 0;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-pink);
    color: white;
    border-color: var(--primary-pink);
    transform: translateY(-3px);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.1);
}

.contact-info-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Privacy Policy Styling */
.bg-soft-pink {
    background-color: #fffafa;
}

.policy-content h4 {
    border-left: 4px solid var(--primary-pink);
    padding-left: 15px;
    margin-bottom: 20px;
}

.policy-content p,
.policy-content li {
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .policy-content {
        font-size: 0.95rem;
    }
}

/* Terms Page Specifics */
.ls-2 {
    letter-spacing: 2px;
}

.policy-text h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.policy-text h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 2px;
}

.policy-text p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.policy-text ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

#terms-nav .nav-link {
    transition: 0.3s;
    border-left: 2px solid transparent;
    padding-left: 10px !important;
}

#terms-nav .nav-link:hover {
    color: var(--primary-pink) !important;
    border-left: 2px solid var(--primary-pink);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .policy-text h4 {
        font-size: 1.25rem;
    }
}

/* --- Disclaimer Styling --- */
.list-styled-pink {
    list-style: none;
    padding-left: 0;
}

.list-styled-pink li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.list-styled-pink li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
    font-size: 0.8rem;
    top: 2px;
}

.disclaimer-text h4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.disclaimer-text p {
    line-height: 1.8;
}

.alert-warning {
    background-color: #fff9e6 !important;
    border-left: 5px solid #f39c12 !important;
}

/* --- Promote Page Specifics --- */
.ls-2 {
    letter-spacing: 2px;
}

.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.bg-pink-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #ff4d8d 100%);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.1);
}

/* --- Promote Page Specifics --- */
.ls-2 {
    letter-spacing: 2px;
}

.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.rounded-5 {
    border-radius: 2.5rem !important;
}

.bg-pink-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #ff4d8d 100%);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.1);
}

/* --- Vendor Login Specifics --- */
.vh-100 {
    min-height: 100vh;
}

.object-fit-cover {
    object-fit: cover;
}

/* Input Group Styling */
.input-group-text {
    border: 1px solid #eee;
    color: #999;
}

.form-control {
    border: 1px solid #eee;
    padding: 12px;
}

.form-control:focus {
    background-color: #fff !important;
    border-color: var(--primary-pink);
    box-shadow: none;
}

/* Form Check Branding */
.form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

/* Button Hover State */
.btn-pink-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(233, 30, 99, 0.2) !important;
}

.venue-list-card {
    transition: transform 0.3s ease;
}

.venue-list-card:hover {
    transform: translateY(-5px);
}

.venue-list-card img {
    height: 200px;
    object-fit: cover;
}

.object-fit-cover {
    object-fit: cover;
}

.ls-2 {
    letter-spacing: 2px;
}

/* --- Venue Details Page Styling --- */
.gallery-grid img {
    transition: transform 0.5s ease;
}

.gallery-grid img:hover {
    filter: brightness(0.85);
}

.bg-soft-pink {
    background-color: rgba(233, 30, 99, 0.08);
}

.rating-box {
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.object-fit-cover {
    object-fit: cover;
}

.sticky-top {
    z-index: 1010;
    /* Lower than header if header is fixed */
}

/* Specific styling for the inquiry form inputs */
#inquiryForm .form-control {
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 10px;
}

#inquiryForm .form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.1);
}

/* --- Blog Specific Styling --- */
.featured-blog-card {
    border: none;
    min-height: 450px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.bg-soft-pink {
    background-color: rgba(233, 30, 99, 0.05);
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    border: 1px solid #eee;
}

.pagination .active .page-link {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
}

.object-fit-cover {
    object-fit: cover;
}

/* Destination Wedding Styling */
.vh-100 {
    height: 100vh;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.text-pink-light {
    color: #ff85af;
}

.destination-card {
    transition: transform 0.4s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    transition: 0.3s;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, var(--primary-pink) 0%, transparent 100%);
    opacity: 0.9;
}

/* Dark Form Styling */
.bg-secondary-dark {
    background-color: #1e2125;
}

.dark-input {
    background-color: #2b2f33;
    border: 1px solid #3d4246;
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
}

.dark-input:focus {
    background-color: #2b2f33;
    color: white;
    border-color: var(--primary-pink);
    box-shadow: none;
}

.dark-input::placeholder {
    color: #6c757d;
}

/* Alternative Destination Design */
.dest-card-v2 {
    cursor: pointer;
    background: #000;
}

.dest-card-v2 img {
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card-v2:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.card-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
    z-index: 2;
}

/* Steps Circle */
.step-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-pink);
    background: rgba(233, 30, 99, 0.1);
}

.bg-soft-pink {
    background-color: #fff0f5;
}

.btn-pink {
    background-color: var(--primary-pink);
    color: white;
    border: none;
}

.btn-pink:hover {
    background-color: #ad1457;
    color: white;
}

/* --- Vertical Timeline CSS --- */
.main-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The vertical line */
.main-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #fce4ec;
    /* Soft Pink */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* Container around content */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--primary-pink);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to left container */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to right container */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -10px;
}

/* Media queries - Responsive timeline on small screens */
@media screen and (max-width: 768px) {
    .main-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

/* --- Admin Dashboard Sidebar & Layout Fixes --- */
.sidebar {
    position: fixed;
    top: 60px;
    /* Aligns below the fixed navbar */
    left: 0;
    width: 260px;
    height: calc(100vh - 60px);
    background: #ffffff;
    border-right: 1px solid #eef2f6;
    z-index: 1030;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.02);
}

.main-content {
    margin-left: 260px;
    padding: 85px 25px 30px;
    /* Top padding accounts for fixed header */
    min-height: 100vh;
    background-color: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    /* Slate-900 with alpha */
    z-index: 1025;
    display: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.overlay.active {
    display: block;
}

/* Sidebar Navigation Items */
.sidebar .nav-link {
    padding: 0.85rem 1.75rem;
    color: #64748b !important;
    /* Slate-500 */
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.sidebar .nav-link i {
    font-size: 1.1rem;
    width: 20px;
}

.sidebar .nav-link:hover {
    background: #f8fafc;
    color: var(--primary-pink) !important;
    border-left-color: #fce4ec;
    /* Light pink hint */
}

.sidebar .nav-link.active {
    background: #fff1f2;
    /* Soft brand background */
    color: var(--primary-pink) !important;
    border-left-color: var(--primary-pink);
    font-weight: 600;
}

.sidebar .nav-link:after {
    display: none !important;
    /* Overriding default nav-link underline animation */
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .sidebar {
        left: -260px;
        top: 0;
        height: 100vh;
        z-index: 1050;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding-top: 80px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

.logo-img {
    height: 50px !important;
}

/* --- App Section Custom Styling --- */
.vendor-app-section {
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 50%, #fff0f5 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-pink, #e83e8c), #fd7e14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Ambient Glows */
.app-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 1;
}

.glow-1 {
    width: 320px;
    height: 320px;
    background: #e83e8c;
    top: -50px;
    right: -50px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #ffc107;
    bottom: -50px;
    left: -50px;
}

/* Custom Pill Badge */
.badge-pill-glow {
    background: rgba(232, 62, 140, 0.08);
    border: 1px solid rgba(232, 62, 140, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-pink, #e83e8c);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary-pink, #e83e8c);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(232, 62, 140, 0.7);
    animation: pulse-pink 1.8s infinite;
}

@keyframes pulse-pink {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(232, 62, 140, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0);
    }
}

/* Feature Icons */
.feature-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 62, 140, 0.1);
    color: var(--primary-pink, #e83e8c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Premium App Store Buttons */
.store-btn {
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-btn:hover {
    background: #252525;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.store-btn-icon {
    font-size: 1.8rem;
    margin-right: 12px;
    line-height: 1;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn-sub {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
    line-height: 1;
}

.store-btn-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Phone Mockup Styling */
.mockup-container {
    max-width: 320px;
    position: relative;
    padding: 20px 0;
}

.phone-mockup {
    background: #1e1e1e;
    border-radius: 40px;
    padding: 12px;
    border: 4px solid #2d2d2d;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    max-height: 480px;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Glassmorphism Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 12px 18px;
    border-radius: 16px;
    z-index: 3;
}

.lead-card {
    top: 15%;
    left: -40px;
    max-width: 250px;
}

.revenue-card {
    bottom: 12%;
    right: -30px;
}

.avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffe3ec;
    color: var(--primary-pink, #e83e8c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-success-icon {
    font-size: 1.4rem;
    color: #198754;
}

/* Floating Animations */
.animate-float-slow {
    animation: floatSlow 5s ease-in-out infinite;
}

.animate-float-fast {
    animation: floatFast 4s ease-in-out infinite;
}

@keyframes floatSlow {

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

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

@keyframes floatFast {

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

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

/* Mobile Responsive Tweaks */
@media (max-width: 991px) {
    .lead-card {
        left: 0;
    }

    .revenue-card {
        right: 0;
    }

    .mockup-container {
        margin-top: 30px;
    }
}

.contact-social {
    background: var(--primary-pink) !important;
}


.vendor-login-page {
    background:
        radial-gradient(circle at 10% 10%, rgba(236, 72, 153, 0.08), transparent 28%),
        radial-gradient(circle at 90% 90%, rgba(236, 72, 153, 0.07), transparent 28%),
        #f8f9fa;
}

.vendor-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.vendor-bg-circle-one {
    width: 320px;
    height: 320px;
    background: rgba(236, 72, 153, 0.06);
    top: -150px;
    left: -100px;
}

.vendor-bg-circle-two {
    width: 420px;
    height: 420px;
    background: rgba(236, 72, 153, 0.05);
    bottom: -220px;
    right: -120px;
}

.vendor-login-wrapper {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.12),
        0 5px 20px rgba(15, 23, 42, 0.05);
}

.vendor-brand-panel {
    min-height: 690px;
    background: #111827;
}

.vendor-brand-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15, 23, 42, 0.65) 0%,
            rgba(15, 23, 42, 0.72) 45%,
            rgba(15, 23, 42, 0.96) 100%);
}

.vendor-logo-icon,
.vendor-mobile-logo {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.vendor-mobile-logo {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.vendor-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #f9a8d4;

    letter-spacing: 1.5px;
}

.vendor-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 22px;
}

.vendor-feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a8d4;
}

.vendor-login-form {
    padding: 60px 55px;
}

.vendor-letter-spacing {
    letter-spacing: 1.5px;
}

.vendor-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.vendor-input-icon {
    position: absolute;
    left: 17px;
    z-index: 5;
    color: #94a3b8;
    pointer-events: none;
}

.vendor-input {
    min-height: 52px;
    padding-left: 47px !important;
    padding-right: 48px !important;
    border: 1px solid #e2e8f0;
    border-radius: 15px !important;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.vendor-input::placeholder {
    color: #94a3b8;
}

.vendor-input:focus {
    background: #fff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.10) !important;
}

.vendor-password-toggle {
    position: absolute;
    right: 14px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    padding: 8px;
    cursor: pointer;
    z-index: 5;
}

.vendor-password-toggle:hover {
    color: #ec4899;
}

.vendor-login-btn {
    min-height: 55px;
    border: 0;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.20);
    transition: all 0.25s ease;
}

.vendor-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.28);
}

.vendor-error-box {
    padding: 15px;
    border-radius: 15px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.vendor-error-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe4e6;
    color: #e11d48;


}

.vendor-register-link {
    color: #db2777;
    transition: all 0.2s ease;
}

.vendor-register-link:hover {
    color: #be185d;
}

.vendor-trust-box {
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.vendor-back-link {
    color: #64748b;
    transition: color 0.2s ease;
}

.vendor-back-link:hover {
    color: #db2777;
}

@media (max-width: 991.98px) {

    .vendor-login-page {
        background: #f8fafc;
    }

    .vendor-login-wrapper {
        border-radius: 22px;
    }

    .vendor-login-form {
        padding: 40px 30px;
    }

}

@media (max-width: 575.98px) {

    .vendor-login-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .vendor-login-wrapper {
        border-radius: 18px;
    }

    .vendor-login-form {
        padding: 32px 22px;
    }



}


.search-box-container {
    overflow: visible !important;
    position: relative;
}

.field-container {
    position: relative;
}

.custom-dropdown-btn {
    width: 100%;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-dropdown-btn:focus {
    outline: none;
}

.dropdown-arrow {
    font-size: 12px;
    color: #e11d48;
    transition: transform 0.2s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 1050;
    margin-top: 6px;
    border: 1px solid #f1f5f9;
}

.custom-dropdown.active .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-menu .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    transition: background 0.15s ease;
}

.custom-dropdown-menu .dropdown-item:hover {
    background-color: #f8fafc;
    color: #e11d48;
}

.custom-error {
    display: none;
    position: absolute;
    bottom: -22px;
    left: 12px;
    color: #d32f2f;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
}

.select-error-border {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 1px #d32f2f !important;
}

.custom-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.vendor-info-wrapper {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
}

.vendor-info-trigger {
    cursor: pointer;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    border-radius: 50%;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.vendor-info-trigger:hover {
    background: #ffffff;
    color: #db2777;
}

.vendor-info-tooltip {
    position: absolute;
    bottom: 35px;
    right: 0;
    width: 280px;
    background: #ffffff;
    color: #1e293b;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.vendor-info-wrapper:hover .vendor-info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bottom-card-badges {
    position: absolute;
    bottom: 12px;
    left: 10px;
    z-index: 10;
}

.venue-filter-sticky-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 80px;
    z-index: 20 !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.venue-filter-sticky-header .dropdown-menu {
    z-index: 30 !important;
}

.sticky-filter-bar {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 20 !important;
    /* 1020 se 20 kiya */
    background-color: #ffffff;
}

/* Venue Card Fixes */
.venue-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.venue-list-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.venue-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.venue-img-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.venue-img-wrapper img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Floating Info Button & Tooltip */
.vendor-info-wrapper {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
}

.vendor-info-trigger {
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #ff3366;
    border-radius: 50%;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.vendor-info-wrapper:hover .vendor-info-trigger {
    background: #ff3366;
    color: #ffffff;
    transform: scale(1.05);
}

/* Tooltip */
.vendor-info-tooltip {
    position: absolute;
    bottom: 36px;
    right: 0;
    width: 230px;
    background: rgba(30, 30, 30, 0.95);
    color: #f8fafc;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

.vendor-info-wrapper:hover .vendor-info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vendor-info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 8px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(30, 30, 30, 0.95) transparent transparent transparent;
}

.venue-specs-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.venue-specs-list li {
    font-size: 0.78rem;
    color: #f1f5f9;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}


.display-4 fw-bold {
    font-size: 48px !important;
}

.page-title-size {
    font-size: calc(1.2rem + .6vw) !important;
}

/* City Links wrapper ko target karein */
.lh-lg a.text-secondary {
    font-family: inherit !important;
    /* Body ka main font family le lega */
    font-size: 15px !important;
    /* Neeche wale paragraph ke equal */
    color: #4a4a4a !important;
    /* Pure grey ki jagah readable dark shade */
    transition: color 0.2s ease;
}

.lh-lg a.text-secondary:hover {
    color: #d63384 !important;
    /* Theme primary pink/brand color on hover */
    text-decoration: underline !important;
}

.lh-lg .text-muted {
    font-size: 14px;
    opacity: 0.6;
}