/* --- 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 Redesign --- */
.hero-section {
    background: linear-gradient(rgba(255, 245, 248, 0.9), rgba(255, 245, 248, 0.9)),
        url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1500');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.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: 30px 15px;
    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;
}

/* --- 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;
    /* Deep charcoal */
    color: #ffffff;
    padding-top: 80px;
    margin-top: 50px;
}

.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: 220px;
    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: 220px;
}

.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: 20px;
}

.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 {
    text-transform: uppercase;
    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;
    }
}