/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f6f6f6;
}
.announcement-banner {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 1.1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1900; /* Just below modal z-index */
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-banner p {
    margin: 0;
}

.close-banner {
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 20px;
    font-weight: bold;
}


.blurred-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg.jpg') no-repeat center center/cover; /* Ensure correct path */
    filter: blur(8px);
    z-index: -0;
}
.bg-color{
	height:100%;
	width:100%;
	background-color:rgba(0, 0, 0, 0.2);
}

.header1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
    color: #ffffff; /* White text color */
}

.header1 .logo {
    max-width: 100px;
    margin-bottom: 10px; /* Space between logo and text */
}

.header1 h1 {
    font-size: 2em;
    margin: 0; /* Remove default margin */
}

.hero {
    position: relative;
    padding: 20px;
    text-align: center;
    background: transparent; /* Transparent background to show the blurred image */
    color: white;
}

.hero > div {
    position: relative; /* Ensure text content is positioned above the pseudo-element */
    z-index: 1; /* Position it above the blurred background */
}

.hero h1 {
    font-size: 2.5em; /* Adjust font size */
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1em; /* Adjust font size */
    margin-bottom: 20px;
    max-width: 100%; /* Ensure text does not overflow */
}

.cta-buttons {
    display: flex;
    justify-content: center; /* Center buttons horizontally */
    gap: 10px; /* Add space between buttons */
}

.cta-button {
    padding: 12px 24px; /* Increase padding for better touch targets */
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s, transform 0.2s;
    display: inline-block; /* Ensure proper alignment */
}

.cta-button:hover {
    background: #e64a19;
}

.cta-button:active {
    background: #d84315;
    transform: scale(0.98);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 20px 10px; /* Adjust padding for smaller screens */
    }

    .hero h1 {
        font-size: 2em; /* Adjust font size */
    }

    .hero p {
        font-size: 1em; /* Adjust font size */
    }

    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically on smaller screens */
        gap: 10px; /* Space between stacked buttons */
    }

    .cta-button {
        padding: 10px 20px; /* Adjust padding */
        font-size: 1em; /* Adjust font size */
    }
}

/* Products Section */
.no-select {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.products h2 {
    font-size: 2em;
    margin: 0; /* Remove default margin */
}

.products p {
    color: #d45a00;
    font-weight: bold;
}

.products {
    padding: 40px;
    text-align: center;
    position: relative; /* Positioning for absolute buttons */
    background-color: #f4f4f4;
    color: #474747;
}

.slider-container {
    display: flex;
    align-items: center;
    position: relative; /* Needed for absolute positioning of buttons */
    overflow-x: hidden; /* Hide horizontal scrollbar */
    width: 100%;
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
}

.product-grid {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
    width: 100%;
    padding: 10px; /* Adds a bit of padding for visual breathing room */
    gap: 16px; /* Adjusts spacing between products */
    cursor: grab; /* Shows a grabbing cursor when dragging */
}

.product-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers (Chrome, Safari) */
}

.product {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px; /* Set the width for each product card */
    flex: 0 0 auto; /* Ensures each product remains in place without resizing */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start; /* Each product aligns to the start */
    cursor: pointer; /* Visual feedback for interaction */
}

.product img {
    max-width: 100%;
    border-radius: 10px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

footer {
    background-color: #666;
    color: #fff!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative; /* Ensure it's positioned correctly */
    z-index: 10; /* Adjust if needed */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.footer-logo img {
    max-height: 60px;
}

.footer-links, .footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a, .footer-social a {
    color: #fff!important;
    text-decoration: none!important;
    background: none!important; /* Reset any background */
    padding: 0; /* Reset padding */
    border: none!important; /* Reset border */
}

.footer-links a:hover, .footer-social a:hover {
    color: #f7c411!important;
}

.footer-social a {
    font-size: 35px;
}

@media (min-width: 768px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
	.products h2{
		font-size: 3em;
		margin: 0; /* Remove default margin */
	}
    .product-grid {
        scroll-snap-type: x mandatory; /* Enables snapping */
    }
    
    .product {
        scroll-snap-align: start; /* Each product aligns to the start */
    }
	
}

.fa-facebook:hover {
    color: #f7c411!important;
}

/* Button in Product Card */
.product a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #007BFF; /* Primary color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/* Button Hover Effect */
.product a:hover,
.product a:focus {
    background-color: #0056b3; /* Darker shade on hover */
    outline: none;
}

/* Button Active State */
.product a:active {
    background-color: #004085; /* Even darker shade when clicked */
    transform: scale(0.98); /* Slightly shrink the button */
}

/* Button Disabled State */
.product a:disabled {
    background-color: #cccccc; /* Light grey */
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(120, 120, 120, 0.2);
    -webkit-backdrop-filter: blur(10px); /* Support for Safari */
    backdrop-filter: blur(25px) contrast(.8);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-250px);
    transition: transform 0.3s ease;
    z-index: 1000!important;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
