/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Trebuchet MS", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    /*background-color:transparent #1a5f7a;*/
    background: transparent;
    backdrop-filter: blur(5px);
    color: #0832bd/*#fff*/;
    padding: 0.5rem;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-links li {
    margin-left: 1rem;
    padding: 0 22px;
}

.nav-links button {
    /*width: 90px;
    height: 35px;*/
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    border: 2px solid #fff;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    margin-left: 13px;
}

.nav-links button:hover {
    transform: translateY(-1px);
    background-color: #fff;
    color: black;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {

content: '';
position: absolute;
left: 0;
bottom: -6px;
width: 100%;
height: 3px;
background: #ffffff;
border-radius: 5px;
transform-origin: right;
transform: scaleX(0);
transition: transform .5s;
}

.nav-links a:hover::after {
    color: #ff6b6b;
    transform-origin: left;
    transform: scaleX(1);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-image:url(bg.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff4757;
    transform: translateY(-1px);
}

/* Featured Products */
.featured-products {
    padding: 4rem 2rem;
    background-color: #f1f2f6;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-15px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: #1a5f7a;
}

.product-info p {
    color: #666;
}

.product-price {
    font-weight: bold;
    color: #ff6b6b;
    margin-top: 0.5rem;
}

/* About Us */
.about-us {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.about-us h2 {
    margin-bottom: 1rem;
    color: #1a5f7a;
    text-align: center;
}

/* Contact Form */
.contact-form {
    padding: 4rem 2rem;
    background-color: #f1f2f6;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form input,
form textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #1a5f7a;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #154c61;
}

/* Footer */
footer {
    background-color: #1a5f7a;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b6b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 8vh;
        background-color: #1a5f7a;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

