/* css/style.css */

/* Base Reset */
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #2f2f2f; background-color: #f9f9f9; overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 0; }
h1 { font-weight: 600; color: #ffffff; margin-bottom: 10px; }
h2 { font-weight: 600; color: #fff8f8; margin-bottom: 10px; }
h4 { font-weight: 600; color: #222; margin-bottom: 10px; }
p { font-size: 16px; margin-bottom: 15px; color: #444; }
.title { text-align: center; font-size: 32px; margin-bottom: 30px; color: #004aad; }

/* Header */
#header {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0px 0;
    height: 80px;
    backdrop-filter: blur(10px);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#logo img {
    height: 60px;
    margin-top: -5px;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: #f1b808;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    z-index: 1001;
    margin-top: -5px;
}

.nav-close {
    position: absolute;
    top: 10px;
    right: 15px;
}

.nav-close.active{
    display: block;
}

#nav-menu-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    text-align: left;
}

.nav-menu li a:hover {
    color: #004aad;
}

.nav-menu .menu-active a {
    color: #004aad;
}

.language-selector select {
    font-size: 16px;          /* readable size */
    padding: 8px 12px;        /* comfortable padding */
    border-radius: 8px;       /* rounded corners */
    border: 1px solid #ccc;   /* clear border */
    background-color: #fff;   /* clean background */
    outline: none;            /* removes browser outline */
    cursor: pointer;          /* clickable indication */
    min-width: 180px;         /* increased width for Myanmar language */
    max-width: 100%;          /* responsive adjustment */
}



/* Hero Section */
#hero .hero-container { padding: 120px 20px; background-size: cover; background-position: center; color: white; text-shadow: 1px 1px 4px rgba(0,0,0,0.4); }
#hero h1 { font-size: 42px; margin-bottom: 10px; }
#hero h2 { font-size: 20px; margin-bottom: 20px; }
.btn-get-started { background: #004aad; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: background 0.3s ease; }
.btn-get-started:hover { background: #f1b808; }

/* About Section */
.about-section { padding: 60px 20px; background: repeating-linear-gradient( 0deg, #f9f9f9, #f9f9f9 1px, #f2f2f2 1px, #f2f2f2 2px ); }
.about-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 40px; flex-wrap: wrap; }
.about-text { flex: 1 1 500px; }
.about-text h2 { font-size: 32px; margin-bottom: 20px; font-weight: 700; color: #000; }
.about-text p { font-size: 16px; line-height: 1.7; margin-bottom: 30px; color: #333; }
.btn-outline { padding: 10px 20px; border: 2px solid #000; border-radius: 25px; text-decoration: none; color: #000; font-weight: 500; transition: all 0.3s ease; }
.btn-outline:hover { background-color: #000; color: #fff; }
.about-image { flex: 1 1 500px; }
.about-image img { width: 100%; border-radius: 0 0 60px 0; object-fit: cover; }

/* Vision Section */
.vision-section { padding: 60px 20px; background-color: #fff; }
.vision-container { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; max-width: 1200px; margin: 0 auto; }
.vision-left { flex: 1 1 500px; }
.vision-right { flex: 1 1 500px; }
.vision-right img {
    width: 100%;          /* Or set a specific width like 400px */
    height: 450px;        /* Set desired height */
    object-fit: cover;    /* Prevents stretching */
    border-radius: 10px;
}
.vision-text { margin: 20px 0; font-size: 16px; color: #555; line-height: 1.6; }
.vision-feature { display: flex; align-items: flex-start; margin-bottom: 20px; }
.icon-circle { width: 50px; height: 50px; border: 2px solid #00b894; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #00b894; font-size: 20px; margin-right: 15px; flex-shrink: 0; }
.vision-feature h4 { margin: 0; font-weight: 700; }
.vision-feature p { margin: 5px 0 0; font-size: 14px; color: #555; }

/* Service Section */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 20px; }
.service-item { background: #fff; padding: 20px; border-radius: 12px; text-align: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease; }
.service-item:hover { transform: translateY(-5px); }
.service-image img { margin-bottom: 0; width: 130px; height: 130px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px; }
.service-content h4 { margin-top: 3px; font-size: 16px; line-height: 1.7; margin-bottom: 30px; color: #333; }
.service-content p { font-size: 15px; color: #444; }

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link h4,
.service-link p {
  text-decoration: none;
  color: inherit;
}


/* Contact Section */
#contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; padding: 80px 40px; gap: 20px; }
#contact iframe { border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
#contact .info {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-align: left;
    min-width: 300px;
    max-width: 400px;
    margin: 20px auto;
}

#contact .info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#contact .info i {
    font-size: 24px;
    color: #f1b808;
    margin-right: 15px;
    flex-shrink: 0;
}

#contact .info p {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.8;
}

/* Footer */
footer { background: #222; color: white; text-align: center; padding: 20px; font-size: 14px; }

/* Responsive */
@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 968px) {
    #header {
        padding: 0px 0;
        height: 70px;
        margin-top: -5px;
    }

    #logo img {
        height: 50px;
        margin-top: -8px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(255, 255, 255, 0.95);
        display: block;
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 8px 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    #header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #nav-menu-container {
        display: block;
        width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vision-right img {
        height: 350px;
    }
    

    .vision-row {
        flex-direction: column;
        text-align: center;
    }

    .vision-text h2 {
        text-align: center;
    }

    .vision-text {
        text-align: center;
    }

    #hero h1 {
        font-size: 32px;
    }

    #hero h2 {
        font-size: 18px;
    }

    .nav-close {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    #contact .info {
        padding: 20px;
        min-width: auto;
        width: 90%;
    }

    #contact .info i {
        font-size: 20px;
        margin-right: 10px;
    }

    #contact .info p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .btn-get-started {
        width: 100%;
        display: inline-block;
    }

    .language-selector select {
        width: 100%;          /* full width on mobile */
        font-size: 18px;      /* larger font on mobile for readability */
        padding: 10px 14px;
    }
}

#services {
    padding-bottom: 10px;
}

#contact {
    padding: 40px 40px 80px 40px;
}

#contact .title {
    margin-top: 0;
    margin-bottom: 10px;
}