body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo-nav {
    display: flex;
    align-items: center;
}

header .logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

header h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

/* Navigation Bar Styling */
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a.active {
    background: #e67e22;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Dropdown Menu Styling */
nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #2c3e50;
    list-style: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul li .dropdown-menu li {
    margin: 5px 0;
}

nav ul li .dropdown-menu li a {
    padding: 8px 12px;
    font-size: 0.9rem;
    display: block;
    white-space: nowrap;
}

nav ul li .dropdown-menu li a:hover {
    background: #27ae60;
    color: #fff;
}

nav ul li:hover .dropdown-menu {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}
.products .product-grid {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}
.products .product {
    text-align: center;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header and Navigation */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color:navajowhite;
    color: black;
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #d35400;
}

/* Featured Products */
.featured-products {
    padding: 40px 20px;
    text-align: center;
}

.featured-products h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product p {
    color: #e67e22;
    font-size: 1rem;
}
/* Products Section */
#products {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

#products h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Product Container */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center items horizontally */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Equal height for all cards */
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product-image {
    width: 100%; /* Fit container width */
    height: 200px; /* Consistent height */
    object-fit: cover; /* Maintain aspect ratio, crop excess */
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Product Title */
.product-title {
    font-size: 1.5rem;
    color: #34495e;
    margin: 10px 0;
}

/* Product Description */
.product-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 10px;
}

/* Product Price */
.product-price {
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Buy Button */
.product-button {
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #2ecc71;
}


/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
    }
}


/* Testimonials Section */
#testimonials {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

#testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonial Container */
.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: #e67e22;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Customer Name */
.customer-name {
    font-weight: bold;
    font-size: 1rem;
    color: #27ae60;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
    }
}
/* Testimonials Section */
#testimonials {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

#testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonial Container */
.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: #e67e22;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Customer Name */
.customer-name {
    font-weight: bold;
    font-size: 1rem;
    color: #27ae60;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
    }
}
/* Call-to-Action */
.cta {
    background-color: #2ecc71;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
/* About Us Section */
#about-us {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    max-width: 100%;
    border-radius: 8px;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature img {
    width: 60px;
    margin-bottom: 10px;
}

/* Our Team Section */
#our-team {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 200px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
#cta {
    padding: 40px 20px;
    text-align: center;
    background-color: #0d6efd;
    color: #fff;
}

#cta .cta-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #0d6efd;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
}

#cta .cta-button:hover {
    background-color: #f1f1f1;
    color: #0a58ca;
}


/* Contact Us Section */
#contact-us {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-form, .contact-details {
    flex: 1;
    max-width: 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2, .contact-details h2 {
    margin-bottom: 20px;
    color: #0d6efd;
}

.contact-form form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.contact-form form input, .contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form form button {
    padding: 10px 20px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form form button:hover {
    background-color: #0a58ca;
}

.contact-details p {
    margin: 10px 0;
    font-size: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Map Section */
#map {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.map-container {
    margin-top: 20px;
    border: 2px solid #0d6efd;
    border-radius: 8px;
    overflow: hidden;
}

/* Gallery Section */
#gallery {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(120deg, #f9f9f9, #e0e0e0);
}

#gallery h1 {
    font-size: 2.8rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

#gallery p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
    opacity: 1;
}









/* Footer */
footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}


