body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

.normal-link {
    color: inherit !important;
    text-decoration: none !important;
}
.normal-link:hover {
    color: inherit !important;
    text-decoration: none !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.05);
}
.whatsapp-float span {
    font-size: 16px;
    margin-left: 8px;
    font-weight: bold;
}
.hero-section {
    background: linear-gradient(rgba(20,20,20,0.8), rgba(0,0,0,0.8)), url('https://i.pinimg.com/736x/82/60/6a/82606a33dcda8e7d189d3d12d2c1aacd.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    border-bottom: 2px solid #800020;
}
.navbar {
    background-color: #0a0a0a !important;
    border-bottom: 1px solid #222;
}
.navbar-brand {
    letter-spacing: 2px;
    color: #d4af37 !important;
}
.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ffffff !important;
}
.nav-link:hover {
    color: #d4af37 !important;
}
.btn-danger {
    background-color: #800020;
    border-color: #800020;
}
.btn-danger:hover {
    background-color: #a00028;
    border-color: #a00028;
}
.dropdown-menu {
    border-radius: 0;
    border: 1px solid #333;
    background-color: #0a0a0a;
}
.dropdown-item {
    padding: 10px 20px;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
}
.dropdown-item:hover {
    background-color: #800020;
    color: #fff;
}
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
    .dropdown-submenu { position: relative; }
    .dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -1px; display: none; }
    .dropdown-submenu:hover > .dropdown-menu { display: block; }
    .side-arrow::after { transform: rotate(-90deg); float: right; margin-top: 8px; }
}
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        position: static !important;
        background-color: #1a1a1a !important;
        margin-left: 1rem;
        border-left: 2px solid #800020;
        display: none;
        max-height: 250px;
        overflow-y: auto;
    }
    .dropdown-menu .dropdown-menu.show { display: block !important; }
}
h2 {
    color: #d4af37;
}
h3 {
    color: #d4af37;
}
h5{
    color: #d4af37;
}
.section-desc {
    color: #cccccc;
    max-width: 800px;
}
.profile-card {
    background-color: #111111;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}
.profile-card img {
    height: 350px;
    object-fit: cover;
    filter: brightness(0.9);
}
.profile-card .card-title {
    color: #d4af37;
}
.profile-card .card-text {
    color: #bbbbbb;
}
.btn-gold {
    background-color: #d4af37;
    color: #000;
    font-weight: bold;
    border: none;
}
.btn-gold:hover {
    background-color: #f1c40f;
    color: #000;
}
.services-section {
    background-color: #050505;
}
.service-box h5 {
    background-color: #800020;
    color: #ffffff;
    padding: 10px;
    margin-top: -10px;
    position: relative;
}
.footer-dark {
    background-color: #000000;
    border-top: 1px solid #222;
}
.text-gold {
    color: #d4af37 !important;
}
.footer-link {
    color: #bbbbbb;
    text-decoration: none;
    transition: 0.3s;
}
.footer-link:hover {
    color: #d4af37;
    padding-left: 5px;
}
/* --- Replicated Section Styles --- */
.replicated-service-section {
    background-color: #000000; /* Matching your body background */
    overflow: hidden;
}

.image-stack-container {
    position: relative;
    padding-bottom: 60px; /* Space for the bottom image to hang over */
    max-width: 500px;
    margin: 0 auto;
}

.img-stack-back {
    width: 80%;
    border: 6px solid #800020; /* Using your Maroon color */
    position: relative;
    z-index: 1;
    display: block;
}

.img-stack-front {
    width: 70%;
    border: 6px solid #800020; /* Using your Maroon color */
    position: absolute;
    bottom: -40px;
    right: 0;
    z-index: 2;
}

/* Adjustments for Mobile Responsiveness */
@media (max-width: 991px) {
    .image-stack-container {
        max-width: 400px;
        margin-bottom: 80px;
    }
    .img-stack-back {
        width: 85%;
    }
    .img-stack-front {
        width: 65%;
        bottom: -30px;
    }
}

@media (max-width: 576px) {
    .image-stack-container {
        padding-bottom: 40px;
    }
    .img-stack-front {
        border-width: 4px;
    }
    .img-stack-back {
        border-width: 4px;
    }
}
/* --- Two Column Service Layout --- */
.service-cards-section {
    background-color: #000000;
}

.service-feature-card {
    margin-bottom: 20px;
}

.card-img-wrapper {
    overflow: hidden;
    /* Keeps images clean and uniform */
    border-bottom: 3px solid #800020; /* Subtle maroon accent line */
}

.card-img-wrapper img {
    width: 100%;
    height: 250px; /* Adjust height to match your desired look */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-feature-card:hover .card-img-wrapper img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.service-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Specific text color to match your existing .section-desc */
.service-feature-card .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    .card-img-wrapper img {
        height: 200px;
    }
    .service-feature-card h3 {
        font-size: 1.3rem;
    }
}
/* --- Top Locations Grid Styles --- */
.locations-grid-section {
    background-color: #000000; /* Keeping your black background */
}

.location-box {
    background-color: #fde9ec; /* Light pink background from screenshot */
    border: 2px solid #800020; /* Your Maroon border */
    border-radius: 15px; /* Rounded corners from screenshot */
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.location-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.2);
}

.location-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #800020;
}

.location-content {
    padding: 20px;
    color: #333333; /* Dark text for contrast on pink background */
    text-align: center;
}

.location-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #002e6d; /* Replicating the navy blue heading from the screenshot */
    margin-bottom: 15px;
    line-height: 1.2;
}

.location-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

.read-more-link {
    display: inline-block;
    color: #800020; /* Maroon link */
    font-weight: bold;
    text-decoration: underline;
    font-size: 0.95rem;
}

.read-more-link:hover {
    color: #002e6d;
}

/* Fix for mobile stacking */
@media (max-width: 991px) {
    .location-box {
        margin-bottom: 10px;
    }
}

/* --- Contact CTA Section Styles --- */
.contact-cta-section {
    background-color: #800020; /* Aapki Maroon Theme */
    padding: 60px 0;
}

.contact-cta-section h2 {
    font-size: 2rem;
    text-transform: none; /* Heading style */
}

.cta-card {
    background-color: #ffffff; /* White card for contrast */
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-card-body {
    padding: 20px;
    color: #333333;
}

.cta-card-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #002e6d; /* Navy blue headings from screenshot */
    margin-bottom: 10px;
}

.cta-card-body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Small Maroon Button for cards */
.btn-maroon-sm {
    background-color: #800020;
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 4px;
    text-transform: capitalize;
    font-weight: bold;
}

.btn-maroon-sm:hover {
    background-color: #000;
    color: #d4af37; /* Gold hover effect */
}

/* Outline button for Call Now */
.btn-outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 10px 40px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #800020;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .contact-cta-section h2 {
        font-size: 1.5rem;
    }
}
/* --- FAQ Section Custom Styles --- */
.faq-section {
    background-color: #000000;
}

.border-maroon {
    border: 1px solid #800020 !important; /* Maroon border to match your theme */
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #800020 !important; /* Becomes Maroon when open */
    color: #d4af37 !important; /* Gold text when open */
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1); /* Changes arrow color to white */
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #d4af37;
}

.accordion-body {
    background-color: #0a0a0a;
    border-top: 1px solid #800020;
    line-height: 1.6;
}

/* Matching your existing section-desc text style */
.faq-section .section-desc {
    color: #cccccc;
    font-size: 0.95rem;
}
/* --- Latest Blog Custom Styles --- */
.blog-section {
    background-color: #000000;
}

.blog-card {
    background-color: transparent;
    height: 100%;
    transition: 0.3s;
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.blog-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Maroon Date Badge from screenshot */
.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #800020; /* Your Maroon */
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: bold;
}

.blog-content {
    padding: 20px 0;
}

.blog-content h3 {
    color: #ffffff; /* Contrast text */
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: 0.3s;
}

.blog-card:hover h3 {
    color: #d4af37; /* Gold on hover */
}

/* Gold Read More Link */
.read-more-gold {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    transition: 0.3s;
}

.read-more-gold:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Section description style matching your existing theme */
.blog-content .section-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits excerpt to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar & Layout */
.sidebar-box {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 20px;
}
.sidebar-title {
    color: #d4af37;
    border-bottom: 2px solid #800020;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li { border-bottom: 1px solid #222; padding: 8px 0; }
.sidebar-list li a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.sidebar-list li a:hover { color: #d4af37; padding-left: 5px; }

/* Tabs Logic Styling */
.custom-tab-btn {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-weight: bold;
    border-bottom: 3px solid transparent !important;
}
.custom-tab-btn.active {
    color: #d4af37 !important;
    border-bottom: 3px solid #800020 !important;
}

/* Profiles Grid */
.profile-card {
    background: #0a0a0a;
    border: 1px solid #222;
    transition: 0.3s;
}
.profile-card:hover { border-color: #800020; }
.top-rated-item img { width: 65px; height: 65px; object-fit: cover; }

.hotel-card {
        transition: all 0.4s ease;
        cursor: pointer;
    }
    /* Hover effect to darken the blue like the image */
    .hotel-card:hover {
        background: linear-gradient(rgba(99, 18, 29, 0.9), rgba(99, 18, 29, 0.9)), url('../assets/images/hotels/pllazio.jpg') center/cover !important;
        transform: translateY(-5px);
    }
    .hotel-card h4 {
        border-bottom: 2px solid transparent;
        padding-bottom: 5px;
    }
    .hotel-card:hover h4 {
        border-color: #fff;
    }

    .btn-maroon-tab {
        background-color: #63121d;
        color: white;
        border: none;
        font-weight: 500;
        transition: 0.3s;
        border-radius: 4px;
        text-decoration: none;
        display: block;
    }
    .btn-maroon-tab:hover {
        background-color: #081c4d; /* Theme ka blue color hover pe */
        color: white;
    }
    
    /* Tab Active Styling */
    #locationTab .nav-link.active {
        background-color: #63121d !important;
        color: white !important;
    }
    #locationTab .nav-link:not(.active):hover {
        background-color: #e9ecef;
    }
    .cta-card img {
    width: 100%;       /* Box ki poori width cover karega */
    height: 400px;     /* Aap apne hisaab se height fix kar sakte ho (e.g., 250px ya 300px) */
    object-fit: cover; /* Isse image stretch nahi hogi, perfectly fit ho jayegi */
    border-radius: 8px; /* Optional: thoda round corners ke liye */
}