/* Base Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header / Hero */
header {
    background-color: #ADD8E6;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .logo {
    font-size: 2em;
    font-weight: bold;
    color: #FFD700;
}

header nav a {
    margin-left: 20px;
    font-weight: bold;
    color: #FFFFFF;
    position: relative;
    transition: color 0.3s;
}

header nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #FFD700;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

header nav a:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background-image: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8Zmxvd2VycyUyMGJvdHRsZXx8MHx8fHwxNjc5OTQ5NzM3&ixlib=rb-4.0.3&q=80&w=1080');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    text-shadow: 1px 1px 5px #333;
    overflow: hidden;
}

.hero h1, .hero p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.hero h1 {
    animation-delay: 0.5s;
    font-size: 3em;
    margin: 0;
}

.hero p {
    animation-delay: 1s;
    font-size: 1.5em;
    margin: 10px 0 0;
}

/* Hero Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 80px 50px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700;
}

/* Product Cards */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    border: 2px solid #ADD8E6;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    margin: 10px;
    color: #333;
}

.product-card p {
    margin: 0 10px 10px;
    color: #666;
}

/* Forms */
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input, form select, form textarea {
    padding: 10px;
    font-size: 1em;
    border: 2px solid #ADD8E6;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus, form select:focus, form textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    outline: none;
}

form button {
    padding: 15px;
    background-color: #FFD700;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

form button:hover {
    background-color: #FFC300;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Testimonials */
.testimonial {
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #F9F9F9;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.testimonial:nth-child(1) { animation-delay: 0.3s; }
.testimonial:nth-child(2) { animation-delay: 0.6s; }
.testimonial:nth-child(3) { animation-delay: 0.9s; }
.testimonial:nth-child(4) { animation-delay: 1.2s; }

.testimonial h4 {
    margin: 0 0 10px;
}

/* Footer */
footer {
    background-color: #ADD8E6;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
    header {
        flex-direction: column;
    }
    header nav {
        margin-top: 10px;
    }
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    width: 250px;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #FFD700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.5);
}

.team-member h3 {
    margin-top: 15px;
    color: #FFD700;
}

.team-member p {
    margin-top: 10px;
    color: #333;
}
