/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #ffc484;
}
p,li{
    color: black !important;
}


/* Header Styles */

.header {
    background-color: #4a1e0a;
    color: white;
    padding: 0px 50px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo a {
    font-size: 28px;
    color: #d4a017;
    text-decoration: none;
    font-weight: bold;
}


/* Navigation */

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.nav-links ul li a:hover {
    text-decoration: underline;
}

.dropdown {
    font-size: 10px;
    margin-left: 5px;
}


/* Toggle Button */

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


/* Responsive Design */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        background-color: #4a1e0a;
        margin-top: 10px;
    }
    .nav-links a {
        padding: 10px;
        border-top: 1px solid #fff2;
    }
    .nav-links ul.show {
        display: flex;
    }
}


/* Loader wrapper styles */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Stay on top of all content */
}


/* Loader animation (you can customize this) */

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #4a1e0a;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Scroll to top button styles */

#scrollToTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    /* Stay above everything */
    font-size: 24px;
    background-color: #4a1e0a;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 5px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #f0a500;
}


/* Optional: adjust for smaller screens */

@media (max-width: 480px) {
    #scrollToTopBtn {
        bottom: 15px;
        right: 15px;
        font-size: 20px;
        padding: 10px 14px;
    }
    .loader {
        width: 40px;
        height: 40px;
        border-width: 5px;
    }
}

.logo-img {
    width: auto;
    height: 100px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    /* Height auto, so image aspect ratio maintain ho */
    object-fit: contain;
    /* Image poori dikhe, koi cropping na ho */
    background-color: #000;
    /* Optional: agar image chhoti ho to black background dikhe */
}

.product-section {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 250px;
    object-fit: contain;
    padding: 10px;
}

.text-gold {
    color: #751300;
    font-size: 40px;
}

.icon-box img {
    width: 60px;
    height: 60px;
}

section.pages-title {
    background: #ff8300;
}

.icon-box p {
    margin-top: 8px;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
}

.bg-light {
    background-color: #ffc484 !important;
}

h5 {
    color: #333;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card h6 {
    font-size: 0.95rem;
}

.card p {
    font-size: 0.85rem;
}

.btn-outline-dark.active {
    background-color: #fcd462;
    border-color: #fcd462;
    color: #000;
}

.card-img-top {
    background-color: #f6e6d8;
    padding: 1rem;
    object-fit: contain;
    height: 250px;
}

.site-footer {
    background-color: #4a1e0a;
    color: white;
    text-align: center;
    padding: 5px 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #d4a017;
    margin-bottom: 10px;
}

.footer-logo a {
    text-decoration: none;
    color: #d4a017;
}

.footer-copy p {
    font-size: 14px;
    color: #fff;
}