/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-link {
    color: #333;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #007bff;
}

/* Hero Section */
#home {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    height: 100vh;
}
#home h1 {
    font-size: 3rem;
    font-weight: bold;
}
#home .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

/* About Section */
#about h2 {
    font-size: 2rem;
    font-weight: bold;
}
#about p {
    font-size: 1.1rem;
    color: #555;
}

/* Products Section */
#products .card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
#products .card:hover {
    transform: translateY(-5px);
}
#products .card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Testimonials Section */
#testimonials h2 {
    font-size: 2rem;
    font-weight: bold;
}
#testimonials p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #333;
    border-radius: 50%;
}

/* Contact Section */
#contact h2 {
    font-size: 2rem;
    font-weight: bold;
}
#contact input, #contact textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
}
#contact .btn {
    background-color: #007bff;
    color: #fff;
    transition: background-color 0.3s;
}
#contact .btn:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
}
footer a {
    color: #fff;
    transition: color 0.3s;
}
footer a:hover {
    color: #007bff;
}
