/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    text-align: center;
}
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #023121;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s;
}

/* Logo Styling */
.preloader img {
    width: 50%;
    animation: fadeInZoom 1s ease-in-out infinite alternate;
}

/* Fade-In Zoom Animation */
@keyframes fadeInZoom {
    from {
        opacity: 0.5;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide Preloader When Page Loads */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Header */
header {
    background:  #023121;;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 80%;
    height: auto;
    max-height: 80px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive Grid */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
/* Responsive Grid Layout */
@media (min-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Product Card */
.product-card {
    color: #c19d32;
    background-color: #023121;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: scale(1.05);
}

/* Square Product Image */
.product-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Makes it a square */
    object-fit: cover;
    border-radius: 10px;
}
.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}
@media (min-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card img {
        height: 300px; /* Increase image size for desktop */
    }
}
h2 {
    margin: 10px 0;
    font-size: 18px;
}

.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 10px 0; /* Reduce padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center; /* Ensures logo stays centered */
}

.sticky-header img {
    max-height: 60px; /* Adjust logo size to fit */
    width: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
}


.whatsapp-floating-btn img {
    width: 35px; /* Adjust icon size */
    height: 35px;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}
/* Footer Styles */
.footer {
    background: #023121;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: 20px;
}

.footer a {
    color: #c19d32;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 30px;  /* Adjust icon size */
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}
/* Floating Buttons (Call & WhatsApp) */
.call-floating-btn,
.whatsapp-floating-btn {
    position: fixed;
    bottom: 100px; /* Adjusted to stay above the footer */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    z-index: 1000;
}

/* Floating Call Button (Left) */
.call-floating-btn {
    left: 20px;
    background: #007bff;
}

/* Floating WhatsApp Button (Right) */
.whatsapp-floating-btn {
    right: 20px;
    background: #25d366;
}

/* Floating Animation */
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

a.floating-btn  {
    animation: floatUpDown 2s infinite ease-in-out;
}

/* Icon Styling */
.call-floating-btn img,
.whatsapp-floating-btn img {
    width: 35px;
    height: 35px;
}

/* Hover Effect */
.call-floating-btn:hover,
.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

/* Hide Call Button on Desktops */
@media (min-width: 1024px) {
    .call-floating-btn {
        display: none;
    }
}

/* Prevent Floating Buttons from Overlapping Footer */
@media (max-width: 768px) {
    .call-floating-btn,
    .whatsapp-floating-btn {
        bottom: 100px; /* Moves them up slightly on mobile */
    }
}