.language-selector {
    width: 95%;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 0px;
    margin-left: 0px;
    display: flex;
    justify-content: flex-end; 
    gap: 8px;
}

.language-selector a {
    color: #3B4A3F;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.language-selector a:hover {
    color: #E6782E;
}

body {
    background-color: #DCE7D3;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 30px auto;
    padding: 15px 30px;
    background-color: #3B4A3F;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
a {
    color: #F4E4C9;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #4CAF83;
}
.btns {
    background-color: #E6782E;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}
.btns:hover {
    color: #F4E4C9;
    background-color: #4CAF83;
    transform: scale(1.05);
}
.logo-center {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -180px;
}
.logo-center img {
    width: 300px;
    border-radius: 10%;
    border: 3px solid #3B4A3F;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.hero-section {
    background-color: #80866B;
    color: #F4E4C9;
    text-align: center;
    padding: 120px 0;
    margin-top: 60px;
}
.hero-content h1 {
    color: #3B4A3F;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 25px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}
#btn2 {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.products {
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.products h1 {
    color: #E6782E;
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}
.prod-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.prod {
    width: 400px;
    padding: 25px;
    background-color: #4CAF83;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
.prod h2 {
    color: #3B4A3F;
    margin-bottom: 10px;
}
.prod p {
    color: #F4E4C9;
    font-size: 16px;
    line-height: 1.5;
}
.p {
    width: 200px;
    height: auto;
}
.contact-hero, .about-hero {
    text-align: center;
    background: none;
    margin: 0;
    padding: 0;
}
.logo3, .logo1 {
    display: flex;
    justify-content: center;
    align-items: center;
}
#three, #two {
    width: 320px;
    height: 200px;
    border: none;
    background: none;
}
#three { 
    margin-bottom: -70px; 
}
.contact-section {
    text-align: center;
    color: #F4E4C9;
    background: linear-gradient(180deg, #E6782E 0%, #3B4A3F 100%);
    padding: 120px 0;
    margin-top: 50px;
}
.contact-section h2 {
    font-size: 36px;
    color: #F4E4C9;
    margin: -20px 0 25px;
}
.contact-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: #FAF7F2;
}
.contact-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 50px;
}
.contact-info, .contact-form {
    flex: 1 1 400px;
    padding: 40px 45px;
    background: #DCE7D3;
    color: #2C3E50;
    border-radius: 12px;
    border: 2px solid #66CDAA;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info { 
    padding-top: 130px; 
}
.contact-info:hover, .contact-form:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.contact-info h3, .contact-form h3 {
    color: #E6782E;
    font-size: 22px;
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 15px;
    margin: 8px 0;
    line-height: 1.7;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin: 10px 0 6px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #E6782E;
    background-color: #fff;
}
.submit-button {
    margin-top: 25px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    color: #fff;
    background-color: #E6782E;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-button:hover {
    background-color: #66CDAA;
    transform: translateY(-3px);
}
.map-container {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.about-section {
    background-color: #DCE7D3;
    padding: 80px 20px;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.about-card {
    flex: 1 1 350px;
    background-color: #F4E4C9;
    padding: 40px 30px;
    border: 2px solid #E6EFE0;
    border-radius: 15px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}
.about-card h2 {
    color: #E6782E;
    font-size: 28px;
    margin-bottom: 20px;
}
.about-card p {
    color: #2C3E50;
    font-size: 16px;
    line-height: 1.7;
}
.expertise-gallery-section {
    text-align: center;
    background: linear-gradient(180deg, #E6782E 0%, #80866B 100%);
    color: #F4E4C9;
    padding: 100px 0;
    margin-top: -10px;
}
.expertise-gallery-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 60px;
}
.gallery img {
    width: 220px;
    height: 220px;
    border-radius: 15px;
    object-fit: cover;
    background-color: #F4E4C9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}
.expertise-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.expertise-item {
    flex: 1 1 320px;
    background-color: #4CAF83;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
.expertise-item h3 {
    color: #3B4A3F;
    font-size: 24px;
    margin-bottom: 15px;
}
.expertise-item p {
    color: #F4E4C9;
    font-size: 16px;
    line-height: 1.6;
}
.exp-logo {
    display: flex;
    justify-content: center;
}
.exp-logo img {
    width: 300px;
    border-radius: 10%;
    border: 3px solid #3B4A3F;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.cta-section {
    background-color: #3B4A3F;
    text-align: center;
    padding: 80px 20px;
}
.cta-content h2 {
    color: #F4E4C9;
    font-size: 36px;
    margin-bottom: 20px;
}
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 18px;
}

@media screen and (max-width: 1024px) {
    header {
        width: 80%;
        padding: 14px 25px;
    }
    .navbar {
        gap: 20px;
    }
    a {
        font-size: 15px;
    }
    #btn {
        padding: 9px 16px;
    }
    .logo-center {
        margin-bottom: -150px;
    }
    .logo-center img {
        width: 250px;
    }
    .hero-section {
        padding: 100px 30px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 22px;
        max-width: 600px;
    }
    #btn2 {
        padding: 14px 35px;
        font-size: 17px;
    }
    .products {
        width: 85%;
    }
    .products h1 {
        font-size: 32px;
    }
    .prod {
        width: 350px;
    }
    #three {
        width: 280px;
        height: 180px;
        margin-bottom: -60px;
    }
    .contact-section {
        padding: 100px 30px;
    }
    .contact-section h2 {
        font-size: 32px;
    }
    .contact-intro {
        font-size: 17px;
        max-width: 650px;
    }
    .contact-cards {
        gap: 35px;
        max-width: 950px;
    }
    .contact-info, .contact-form {
        padding: 35px 40px;
    }
    .contact-info {
        padding-top: 100px;
    }
    .map-container {
        max-width: 900px;
        margin: 50px auto 0;
    }
    #two {
        width: 280px;
        height: 180px;
    }
    .about-section {
        padding: 70px 30px;
    }
    .about-container {
        max-width: 1000px;
        gap: 25px;
    }
    .about-card {
        padding: 35px 28px;
    }
    .about-card h2 {
        font-size: 26px;
    }
    .about-card p {
        font-size: 15px;
    }
    .expertise-gallery-section {
        padding: 80px 30px;
    }
    .expertise-gallery-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .gallery {
        gap: 20px;
        max-width: 900px;
    }
    .gallery img {
        width: 190px;
        height: 190px;
    }
    .expertise-container {
        max-width: 1000px;
        gap: 25px;
    }
    .expertise-item {
        padding: 35px 28px;
    }
    .expertise-item h3 {
        font-size: 22px;
    }
    .expertise-item p {
        font-size: 15px;
    }
    .exp-logo img {
        width: 250px;
    }
    .cta-section {
        padding: 70px 30px;
    }
    .cta-content h2 {
        font-size: 32px;
    }
    .cta-content p {
        font-size: 19px;
    }
    .cta-button {
        padding: 14px 35px;
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    header {
        width: 90%;
        padding: 12px 20px;
        margin: 20px auto;
    }
    .navbar {
        gap: 15px;
        flex-wrap: wrap;
    }
    a {
        font-size: 14px;
    }
    #btn {
        padding: 8px 15px;
    }
    .logo-center {
        margin-bottom: -120px;
    }
    .logo-center img {
        width: 200px;
    }
    .hero-section {
        padding: 80px 20px;
    }
    .hero-content h1 {
        font-size: 32px;
        padding: 0 15px;
    }
    .hero-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
    #btn2 {
        padding: 12px 30px;
        font-size: 16px;
    }
    .products {
        width: 90%;
        margin: 30px auto;
    }
    .products h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .prod {
        width: 100%;
        max-width: 400px;
    }
    #three {
        width: 250px;
        height: 150px;
        margin-bottom: -50px;
    }
    .contact-section {
        padding: 80px 20px;
    }
    .contact-section h2 {
        font-size: 28px;
    }
    .contact-intro {
        font-size: 16px;
        padding: 0 20px;
    }
    .contact-cards {
        gap: 30px;
        padding: 0 20px;
    }
    .contact-info, .contact-form {
        padding: 30px 25px;
    }
    .contact-info {
        padding-top: -50px;
    }
    .map-container {
        margin: 40px 20px 0;
    }
    #two {
        width: 250px;
        height: 150px;
    }
    .about-section {
        padding: 60px 20px;
    }
    .about-card {
        padding: 30px 25px;
    }
    .about-card h2 {
        font-size: 24px;
    }
    .expertise-gallery-section {
        padding: 60px 20px;
    }
    .expertise-gallery-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .gallery {
        gap: 15px;
    }
    .gallery img {
        width: 150px;
        height: 150px;
    }
    .expertise-item {
        flex: 1 1 100%;
        padding: 30px 25px;
    }
    .exp-logo img {
        width: 200px;
    }
    .cta-section {
        padding: 60px 20px;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .cta-content p {
        font-size: 18px;
    }
}
@media screen and (max-width: 480px) {
    header {
        width: 95%;
        padding: 10px 15px;
        margin: 15px auto;
        border-radius: 15px;
    }
    a {
        font-size: 14px;
    }
    #btn {
        padding: 8px 20px;
        margin-top: 5px;
    }
    .logo-center {
        margin-bottom: -100px;
    }
    .logo-center img {
        width: 150px;
    }
    .hero-section {
        padding: 60px 15px;
        margin-top: 40px;
    }
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    #btn2 {
        padding: 10px 25px;
        font-size: 15px;
    }
    .products {
        width: 95%;
        margin: 20px auto;
    }
    .products h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .prod {
        width: 100%;
        padding: 20px;
    }
    .prod h2 {
        font-size: 20px;
    }
    .prod p {
        font-size: 14px;
    }
    .p {
        width: 150px;
    }
    #three {
        width: 200px;
        height: 120px;
        margin-bottom: -40px;
    }
    .contact-section {
        padding: 60px 15px;
    }
    .contact-section h2 {
        font-size: 24px;
    }
    .contact-intro {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    .contact-cards {
        gap: 20px;
        padding: 0 10px;
    }
    .contact-info, .contact-form {
        padding: 25px 20px;
    }
    .contact-info h3, .contact-form h3 {
        font-size: 20px;
    }
    .contact-info p {
        font-size: 14px;
    }
    .contact-form input, .contact-form textarea {
        font-size: 14px;
        padding: 10px;
    }
    .submit-button {
        font-size: 15px;
        padding: 12px;
    }
    .map-container {
        margin: 30px 10px 0;
    }
    #two {
        width: 200px;
        height: 120px;
    }
    .about-section {
        padding: 40px 15px;
    }
    .about-card {
        padding: 25px 20px;
    }
    .about-card h2 {
        font-size: 22px;
    }
    .about-card p {
        font-size: 14px;
    }
    .expertise-gallery-section {
        padding: 50px 15px;
    }
    .expertise-gallery-section h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .gallery {
        gap: 10px;
    }
    .gallery img {
        width: 120px;
        height: 120px;
    }
    .expertise-item {
        padding: 25px 20px;
    }
    .expertise-item h3 {
        font-size: 20px;
    }
    .expertise-item p {
        font-size: 14px;
    }
    .exp-logo img {
        width: 150px;
    }
    .cta-section {
        padding: 50px 15px;
    }
    .cta-content h2 {
        font-size: 24px;
    }
    .cta-content p {
        font-size: 16px;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}


