body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5e8dc;
}

/* Header Styling */
header {
    background: #7a1c17;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    color: white;
    z-index: 2;
}
.nav-links {
    display:flex;
    flex-direction: row;
    justify-content:space-between;
    align-items:center;
    margin-right:10px;
    text-align: center;
}

/* Logo and Title */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 60px; /* Adjust size */
    height: 60px;
    border-radius: 50%; /* Circular logo */
    border: 2px solid white;
    background-color: white;
    padding: 5px;
}

.logo-container h1 {
    font-size: 24px;
    margin: 0;
}

/* Navigation */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff9933, #ff6600);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    margin-top: 15px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.container {
    width: 90%;
    margin: auto;
    text-align: center;
}
.hero {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: #7a1c17;
    color: white;
    border-radius: 10px;
    gap: 30px;
}
.slideshow-container {
    position: relative;
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
}
.slideshow-container img {
    width: 100%;
    display: none;
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
}
.hero-text {
    flex: 1;
    text-align: left;
}
.fade {
    animation-name: fadeIn;
    animation-duration: 2s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.gallery img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.1);
}
/* For product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.product-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}
.product-card:hover {
    transform: scale(1.05);
}
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}
.product-card h3 {
    color: #7a1c17;
    margin: 10px 0 5px;
}
.product-card p {
    font-size: 0.9em;
    color: #333;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* for product heads */
h1,h2 {
    text-align: center;
}
/* Parallax Background */
 /* Parallax Background */
 .parallax-section {
    background: url('assets/images/parallax-bg.jpg') no-repeat center fixed;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose-us p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #555;
}
/* Modern Footer Styles */
.footer {
    background: linear-gradient(135deg, #7a1c17, #5a150f);
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h2 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: #ff6b35;
    bottom: 0;
    left: 0;
}

.about .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-info i {
    margin-right: 10px;
}

.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links li a {
    color: #f5e8dc;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.links li a:hover {
    color: #ff6b35;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-subscribe {
    padding: 12px 25px;
    background: #ff6b35;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: #ff4a00;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.footer-bottom {
    background: #5a150f;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.back-to-top {
    font-weight: 500;
}

.back-to-top a {
    color: #ff6b35;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-to-top a:hover {
    color: #ff4a00;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}