/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
/* header {
    background-color: #1A1A59;
    color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 100px;
} */

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

/* Hero Section Styles */
.hero {
    background: url('hero-bg.jpg') no-repeat center/cover;
    color: white;
    padding: 120px 50px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    background-color: #FF9900;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: #CC7A00;
}

/* Products Section Styles */
.products {
    padding: 60px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.products h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.product-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* About Us Section Styles */
/* .about-us {
    /* padding: 60px 50px; */
    background-color: #ffffff;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.about-us .btn {
    padding: 15px 30px;
    background-color: #FF9900;
    color: white;
    border-radius: 5px;
    text-decoration: none;
} */

/* Why Choose Us Section */

.why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-item {
    text-align: center;
    width: 150px;
}

.feature-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 1.2em;
}

/* Testimonials Section */
.testimonials {
    /* padding: 60px 50px; */
    background-color: #00A759;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    max-width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Us Section */
.contact-us {
    background-color: #1A1A59;
    padding: 20px 10px;
    color: white;
    text-align: center;
    border-radius: 25px;
}

.contact-us h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bolder;
}


.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 550px;
    margin: 0 auto;
    
    padding: 15px 15px;
}

.contact-us form input,
.contact-us form textarea {
    padding: 15px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.contact-us form textarea {
    resize: none;
    height: 150px;
}

.contact-us form button {
    padding: 15px 30px;
    background-color: #21a211;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #ffffff;
    color: #000;
    text-align: center;
    padding: 20px 0 10px 0;
    font-size: 1em;
}
