/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F5F5DC;
}

/* Navbar Styles */
.navbar {
    background-color: #8B4513;
    padding: 0.8rem 2rem;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: #F5F5DC;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 547px) {
    .navbar-brand {
        font-weight: bold;
        font-size: 1.2rem;
        color: #F5F5DC;
        transition: transform 0.3s ease;
    }
}

.navbar-brand:hover {
    transform: scale(1.1);
}

.nav-link {
    color: #F5F5DC !important;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline hover effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #D2B48C;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #D2B48C !important;
}

/* Dropdown hover animation */
.dropdown-menu {
    background-color: #8B4513;
    border: none;
    transition: all 0.3s ease;
}

.dropdown-item {
    color: #F5F5DC !important;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #D2B48C;
    color: #8B4513 !important;
}

/* Enquiry Button Animation */
.btn-enquiry {
    background: linear-gradient(45deg, #D2B48C, #F5DEB3);
    color: #8B4513;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-enquiry:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media(max-width: 991px) {
    .nav-link {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* hero sections  */
.header-section {
    height: 100vh;
    background: url('./img/hand-loom.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

/* Overlay for readability */
.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
}

.header-section .container {
    position: relative;
    z-index: 2;
}

.header-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.header-section p {
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

/* Enquiry Button Animation */
.btn-enquiry {
    background: linear-gradient(45deg, #D2B48C, #F5DEB3);
    color: #8B4513;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-enquiry:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


/* about us css */



/* products sections css */
.product-card img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card .card-body h5 {
    color: #8B4513;
}

.product-card .card-text {
    color: #333;
}

/* Details button */
.btn-details {
    background-color: #D2B48C;
    color: #8B4513;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-details:hover {
    transform: scale(1.1);
    background-color: #F5DEB3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* services sections css */
.services-section {
    background: url('./img/hand-loom.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
}

/* Optional overlay for better visibility */
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 220, 0.6);
    /* light beige transparent overlay */
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
    /* Keeps your cards on top of background */
}

/* Your existing card animations */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-card h5 {
    color: #8B4513;
}

.service-card p {
    color: #000000;
}


/* faq sections css */
/* Section Styling */
.new-faq-design {
    background: #fff;
}

.faq-title {
    color: #8B4513;
    font-size: 2.4rem;
}

.faq-subtitle {
    color: #444;
}

/* FAQ Card Style */
.faq-card {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #8B4513;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* FAQ Button Style */
.faq-btn {
    font-weight: 600;
    padding: 18px;
    font-size: 1.05rem;
    border-radius: 10px;
    background: #fff;
    color: #333;
    border: none;
    transition: background 0.3s ease;
}

.faq-btn:not(.collapsed) {
    background: #8B4513;
    color: #fff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Accordion Body */
.faq-body {
    padding: 18px 20px;
    color: #555;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
}

/* Smooth transition */
.accordion-collapse {
    transition: all 0.3s ease;
}

/* CSS for Blog Section */

/* contact us css */
.btn-contact {
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-responsive iframe {
    border: 0;
}

form label {
    color: #8B4513;
}


/* footer sections */
.footer-section a:hover {
    color: #D2B48C;
}

.btn-newsletter {
    background-color: #D2B48C;
    color: #8B4513;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-newsletter:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    background-color: #F5DEB3;
}

.social-links a:hover {
    color: #F5DEB3;
}

footer p {
    color: #fff;
}

.footer-section i {
    color: #F5DEB3;
}

/* enquiry modal css  */
.btn-enquiry {
    background: #D2B48C;
    color: #8B4513;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-enquiry:hover {
    background: #F5DEB3;
    transform: scale(1.05);
}

.btn-enquiry-modal {
    background: #25D366;
    color: #fff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-enquiry-modal:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#enquiryModal label {
    color: #8B4513;
}

/* Breadcrumb container with background image */
.breadcrumb-container {
    background-image: url('./img/flat-weave.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    /* More vertical padding for center effect */
    border-radius: 10px;
    text-align: center;
    /* Center text */
    color: #fff;
    /* White text for readability */
    position: relative;
    overflow: hidden;
}

/* Add a dark overlay for better readability */
.breadcrumb-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent overlay */
    z-index: 1;
    border-radius: 10px;
}

.breadcrumb-container nav {
    position: relative;
    z-index: 2;
    /* Ensure breadcrumb is above overlay */
    display: inline-block;
    /* Center nicely */
}

.breadcrumb {
    background-color: rgba(255, 255, 255, 0.8);
    /* Slightly transparent white */
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    gap: 5px;
    justify-content: center;
}

.breadcrumb a {
    text-decoration: none;
    color: #333;
}

.breadcrumb-item.active {
    color: #555;
    font-weight: bold;
}