@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    --primary-color: #FF7F00;
    /* Saffron Orange */
    --primary-dark: #cc5200;
    --secondary-color: #800000;
    /* Deep Maroon */
    --text-color: #333;
    --light-bg: #fffbf5;
    /* Cream background */
    --white: #ffffff;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. HEADER STYLES
   ========================================= */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}


.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

.top-info a {
    color: var(--white);
    margin-left: 15px;
}

.top-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

header {
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.nav-links a {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* =========================================
   3. RESPONSIVE / MOBILE STYLES
   ========================================= */
@media (max-width: 768px) {

    .cta-btn {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 10px 15px;
    }

    .logo img {
        height: auto;
        max-width: 180px;
        max-height: 50px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .nav-links li {
        border-bottom: 1px solid #6c0602;
        padding-bottom: 26px;
    }

    .nav-links.active {
        display: flex;
    }

    .top-bar .welcome-text {
        display: none;
    }

    .top-bar .container {
        justify-content: center;
    }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner/banner1.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 0px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* HERO SLIDER STYLES */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Adjust height */
    overflow: hidden;
    background: #000;
    user-select: none;
    /* Important for dragging */
    margin-top: 0px;
    margin-bottom: 0px;
}

.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    cursor: grab;
}

.hero-track:active {
    cursor: grabbing;
}

.hero-slide {
    min-width: 100%;
    /* Important: Each slide is full width */
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    pointer-events: none;
    /* Clicks pass through to the drag area */
}

/* Allow clicking buttons inside content */
.hero-content a,
.hero-content button {
    pointer-events: auto;
}

/* ARROWS */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
}

.hero-arrow:hover {
    background: #FF7F00;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* DOTS */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.h-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.h-dot.active {
    background: #FF7F00;
}

/* =========================================
   4. SECTIONS GENERAL
   ========================================= */
section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-top: 10px;
}


.contact-section {
    padding-bottom: 30px;
}

/* =========================================
   5. SERVICES GRID
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 20px;
    text-align: center;
}

.service-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.read-more {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* =========================================
   6. ABOUT SECTION
   ========================================= */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
}

.stat-box h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* =========================================
   7. CONTACT / FORM SECTION
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ff8223;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

/* =========================================
   8. FOOTER
   ========================================= */
footer {
    background: #880b07;
    color: #ddd;
    padding: 50px 0 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* =========================================
   9. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background: #860602;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        color: #ffffff;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================
   10. WHY CHOOSE US SECTION
   ========================================= */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    background: var(--primary-color);
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
}

.feature-box-1 {
    text-align: left;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* =========================================
   11. TESTIMONIAL SLIDER SECTION
   ========================================= */
.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    /* Space for shadow */
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    background: var(--white);
    min-width: 300px;
    /* Fixed width for calculation */
    max-width: 300px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--secondary-color);
}

.stars {
    color: #FFD700;
    /* Gold color for stars */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    min-height: 80px;
    /* Ensures alignment */
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
    font-family: 'Roboto', sans-serif;
}

/* Slider Buttons */
.slide-btn {
    background: var(--white);
    border: none;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
}

.slide-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.prev-btn {
    margin-right: 15px;
}

.next-btn {
    margin-left: 15px;
}

/* Responsive Testimonial */
@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
    }

    .slider-wrapper {
        padding: 0 10px;
    }

    .slide-btn {
        display: none;
        /* Optional: hide arrows on mobile if you want swipe only, 
                          but keeping them is better for simple JS */
    }

    /* Allow scrolling on mobile instead of buttons if preferred */
    .slider-container {
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    /* Hide scrollbar */
    .slider-container::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================
   SEPARATOR LINE STYLE
   ========================================= */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    /* Adjust space above/below line */
}

.section-separator .line {
    height: 2px;
    flex: 1;
    background: linear-gradient(to right, transparent, var(--primary-color));
}

/* Reverse the gradient for the right line so it fades out correctly */
.section-separator .line:last-child {
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.section-separator .icon {
    color: var(--secondary-color);
    padding: 0 15px;
    font-size: 1.2rem;
}

/* =========================================
   12. INNER PAGE BANNER & BREADCRUMBS
   ========================================= */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner/pagebanner2.png');
    background-position: center;
    height: 40vh;
    /* Shorter than the main Hero (80vh) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;

}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb-nav {
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    color: var(--white);
}

.breadcrumb li a {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb li a:hover {
    color: var(--primary-color);
}

/* Add a separator (/) between breadcrumb items */
.breadcrumb li+li::before {
    content: "/";
    color: var(--primary-color);
    padding-right: 10px;
}

/* Responsive adjustment for Page Banner */
@media (max-width: 768px) {
    .page-banner {
        height: 30vh;
    }

    .page-banner h1 {
        font-size: 2rem;
    }
}

.contact-page-section {
    margin-top: 50px;
    margin-bottom: 80px;
}

/* =========================================
   FLOATING ACTION BUTTONS
   ========================================= */

/* --- 1. WhatsApp Float Icon (Desktop & Mobile) --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 2000;
    /* High z-index to stay on top */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

/* --- 2. Mobile Call Bar (Hidden on Desktop) --- */
.mobile-call-bar {
    display: none;
    /* Hidden by default */
}

/* --- RESPONSIVE STYLES (Mobile Only) --- */
@media (max-width: 768px) {

    /* Show Call Bar on Mobile */
    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 95%;
        background-color: #860602;
        z-index: 1999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin: 10px
    }

    .mobile-call-bar a {
        display: block;
        padding: 10px;
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        letter-spacing: 1px;
    }

    .mobile-call-bar i {
        margin-right: 8px;
        transform: rotate(90deg);
        /* Optional: Rotates phone icon slightly */
    }

    /* Adjust WhatsApp Icon Position on Mobile */
    /* Moves it up so it doesn't get covered by the Call Bar */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    /* Fixed height for uniformity */
    object-fit: cover;
    /* Ensures image covers area without stretching */
    transition: all 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

/* =========================================
   QUICK CONTACT BAR STYLES
   ========================================= */
.quick-contact-bar {
    margin-top: -30px; /* Pulls it up slightly to overlap banner (optional, remove if unwanted) */
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.quick-form-card {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 4px solid var(--primary-color); /* Matches your theme accents */
}

.horizontal-form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.horizontal-form .form-item {
    flex: 1; /* Makes all inputs take equal width */
}

.horizontal-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 50px; /* Rounded inputs matching your buttons */
    outline: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.horizontal-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 127, 0, 0.2);
}

/* RESPONSIVE STYLES for the Form */
@media (max-width: 768px) {
    .quick-contact-bar {
        margin-top: 20px; /* Reset overlap on mobile */
    }

    .horizontal-form {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 15px;
    }

    .horizontal-form .form-item {
        width: 100%; /* Full width on mobile */
    }
    
    .d-md-none {
        display: block; /* Show title on mobile */
    }
}

@media (min-width: 769px) {
    .d-md-none {
        display: none; /* Hide title on desktop to keep it clean */
    }
}

.breadcruncall{
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff; 
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%; 
    left: 0;
    padding: 10px 0;
    list-style: none;
    border-top: 3px solid #ff9900;
}

.dropdown-content li a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid #eee; 
}

.dropdown-content li:last-child a {
    border-bottom: none;
}

.dropdown-content li a:hover {
    background-color: #f1f1f1;
    color: #ff9900; 
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.footer-col ul {
    padding-left: 0px;
}