html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: #99c7fe;
    color: #111;
    line-height: 1.6;
}

header {
    background: #1e3f66;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 100px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    font-size: 16px;
}

.navbar a:hover {
    text-decoration: underline;
}

.language-select {
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    outline: none;
    margin-left: 20px;
}

.language-select:hover {
    border-color: #999;
}

.language-select:focus {
    border-color: #333;
}

/* Home Section */

.home {
    height: 86vh;
    background: url('../images/home_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 0 20px;
}

.home-overlay {
    /* background-color: rgba(0, 0, 0, 0.5); */
    padding: 60px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    animation: fadeIn 1.2s ease;
}

.home-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* .home-content h1 span {
    color: #99c7fe;
} */

.home-content p {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
}

.home-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3b82f6;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-btn i {
    margin-right: 8px;
}

.home-btn:hover {
    background-color: #1e3f66;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About */

.about {
    padding: 3em 1.5em;
    max-width: 1000px;
    margin: auto;
    color: #111;
}

.about h2 {
    text-align: center;
    font-size: 35px;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #1e3f66;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about h3 {
    font-size: 22px;
    margin-top: 30px;
    color: #1e3f66;
    font-weight: 600;
}

.highlight-box {
    background-color: #f4f4f9;
    padding: 15px 20px;
    margin: 20px 0;
    border-left: 5px solid #1e3f66;
    border-radius: 6px;
    font-size: 16px;
}

.highlight-box i {
    color: #99c7fe;
}

.icon-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.icon-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

.icon-list li i {
    margin-right: 10px;
    color: #1e3f66;
}

blockquote {
    font-style: italic;
    margin: 25px 0;
    padding-left: 20px;
    border-left: 4px solid #1e3f66;
    color: #333;
}

/* Products Section */

.products {
    padding: 3em 1.5em;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: #111;
}

.products h2 {
    font-size: 35px;
    margin-bottom: 30px;
    position: relative;
}

.products h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #1e3f66;
    margin: 10px auto 0;
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(30, 63, 102, 0.2);
}

.product-card i {
    font-size: 40px;
    color: #1e3f66;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 15px;
    color: #444;
}

/* Contact */

.contact {
    padding: 2em;
    max-width: 1000px;
    margin: auto;
    color: #111;
}

.contact h2 {
    text-align: center;
    font-size: 35px;
}

.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #1e3f66;
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact h3 {
    font-size: 22px;
    margin-top: 30px;
    color: #1e3f66;
    font-weight: 600;
}

.contact p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact ul {
    margin-left: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 50px;
}

.contact-container form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-container input,
.contact-container textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.2s ease;
}

.contact-container input:focus,
.contact-container textarea:focus {
    border-color: #1e3f66;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 63, 102, 0.2);
}

.contact-container button {
    padding: 10px 20px;
    background-color: #1e3f66;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-container button:hover {
    background-color: #142850;
}

.contact-container label i {
    margin-right: 8px;
    color: #1e3f66;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

/* Footer */
footer {
    background: #0f172a;
    /* dark blue-gray */
    color: #dbeafe;
    padding: 3em 1.5em;
    font-size: 15px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    color: #94a3b8;
    margin-top: 5px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.footer-list li i {
    color: #3b82f6;
    margin-right: 10px;
}

.social-icons a {
    color: #dbeafe;
    font-size: 20px;
    margin-right: 15px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #3b82f6;
    transform: scale(1.2);
}

hr {
    border: none;
    height: 1px;
    background-color: #334155;
    margin: 2em auto 1em;
    width: 90%;
}

footer .copyright {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}


/* Responsive Adjustments */
@media (max-width: 1200px) {
    .header-container {
        justify-content: space-around !important;
    }
}


@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-list li {
        justify-content: center;
    }

    .home-content h1 {
        font-size: 42px;
    }

    .home-content p {
        font-size: 20px;
    }

    #language-switcher {
        margin-left: 0px;
        margin-top: 10px;
    }
}