body { 
            background-color: #000; 
            color: #fff; 
            font-family: Arial, sans-serif; 
            overflow-x: hidden; /* Prevent horizontal scroll */
        }
        .navbar {
    background-color: #111 !important;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ff0000 !important;
}

.navbar .dropdown-menu {
    background-color: #222;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.navbar .dropdown-item {
    color: #fff;
}

.navbar .dropdown-item:hover {
    background-color: #333;
    color: #ff0000;
}

.navbar .dropdown-toggle {
    border: 1px solid #444;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-nav.mx-auto {
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 0.8rem 0 !important;
    }
}

/* Change hamburger icon to white on dark navbar */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Optional: Add a subtle border to the toggler button for better visibility */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.5);
}
        /* Hero Carousel Styles */
.hero {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero { 
        min-height: 90vh; 
    }
}

.hero-slide {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7); /* Slightly darkens the image for better text contrast */
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    text-align: left;
    padding-left: 5%;
}

@media (max-width: 768px) {
    .carousel-caption {
        text-align: center !important;
        padding: 20px;
        background: rgba(0,0,0,0.6); /* Solid dark backdrop on mobile for readability */
    }
    .carousel-caption h1 { 
        font-size: 2.8rem; 
    }
    .carousel-caption .lead { 
        font-size: 1.2rem; 
    }
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}
.carousel-item {
    height: 80vh; /* Matches your .hero min-height */
}

@media (min-width: 768px) {
    .carousel-item {
        height: 90vh;
    }
}

        .section-bg { background-color: #111; }
        .product-card { 
            background-color: #222; 
            border-radius: 10px; 
            transition: transform 0.3s; 
            height: 100%; 
        }
        .product-card:hover { transform: translateY(-10px); }
        .product-card img { 
            width: 100%; 
            height: 200px; 
            object-fit: cover; 
            border-radius: 8px; 
        }

        /* Floating Icons */
        .floating-icons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
            transition: transform 0.3s;
        }
        .floating-btn:hover {
            transform: scale(1.1);
        }
        .whatsapp-btn { background-color: #25D366; }
        .email-btn { background-color: #d44638; }

        footer { background-color: #111; padding: 30px 0; }

        .extra-card { display: none; }
     h1, h2, h3, h4, h5, h6 {
    color: #dc3545 !important;
    font-weight: bold;
}

/* Stronger rules for About section buttons */
.mt-4 .btn.btn-lg {
    padding: 0.85rem 2.2rem !important; /* bigger padding */
    min-width: 200px !important;
}

/* Force more space between the danger button and the next one */
.mt-4 .btn-danger.btn-lg {
    margin-right: 2rem !important; /* bigger than before */
}

/* Always use flex for better control */
.mt-4 {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important; /* reliable gap between buttons */
}

/* Mobile: stack them vertically with good space */
@media (max-width: 576px) {
    .mt-4 {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .mt-4 .btn.btn-lg {
        width: 100% !important;
        max-width: 350px !important;
        margin-right: 0 !important;
    }
}
/* Force floating icons visible & adjusted on small screens */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 80px !important;          /* Move higher to avoid bottom bar/notch */
        right: 20px !important;
        gap: 20px !important;
        z-index: 2000 !important;         /* Super high to avoid overlap */
    }
    
    .floating-btn {
        width: 70px !important;
        height: 70px !important;
        font-size: 32px !important;       /* Bigger icon for easy tap */
        box-shadow: 0 6px 20px rgba(0,0,0,0.6) !important;
    }
}

/* Extra safety for very small phones */
@media (max-width: 480px) {
    .floating-icons {
        bottom: 100px !important;
        right: 15px !important;
    }
}