/* General Styling */
:root {
    --primary-color: #005A9C; /* Professional Blue */
    --secondary-color: #FDB813; /* Warm Orange Accent */
    --text-color: #333;
    --bg-color: #f4f7f6;
    --white-color: #fff;
    --hero-bg-dark: #0a192f; /* New dark blue for hero */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Myanmar', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Header & Navigation */
header {
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px;
    transition: all 0.3s;
}

/* --- HERO SECTION WITH SHADED IMAGES --- */
.hero {
    color: var(--white-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    
    /* 1. Base color that will be blended with images */
    background-color: var(--hero-bg-dark);

    /* 2. Layered background images (overlay, then images) */
    /* 🚨 အရေးကြီး: အောက်ပါ URL များကို သင့်ပုံများဖြင့် အစားထိုးပါ */
    background-image: 
        /* Final dark overlay for readability */
        linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)),
        /* Starlink image (example URL) */
        url('https://i.imgur.com/8Yt2c4o.jpg'), 
        /* Visa card image (example URL) */
        url('https://i.imgur.com/O0B7a5y.png');
    
    /* 3. Position the images */
    background-position: 
        center center, /* Overlay */
        center left 10%,  /* Starlink on the left */
        center right 10%; /* Visa card on the right */

    /* 4. Prevent images from repeating */
    background-repeat: no-repeat;
    
    /* 5. Size the images */
    background-size: 
        cover,      /* Overlay covers everything */
        auto 60%,   /* Starlink image height is 60% */
        auto 40%;   /* Visa card image height is 40% */
    
    /* 6. Blend images with the base color for the "shaded" effect */
    background-blend-mode: 
        normal,     /* Overlay is not blended */
        luminosity, /* Blends the lightness of the image */
        luminosity; /* Blends the lightness of the image */
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.2);
}

.cta-button:hover {
    background: #ffc94d;
    transform: translateY(-3px);
}

/* Sections General */
.services, .payment-methods {
    padding: 5rem 0;
    text-align: center;
}

/* Services Section */
.services {
    background-color: var(--bg-color);
}

.services h2, .payment-methods h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex-basis: 30%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card a {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

/* About Section Styles */
.about-story {
    position: relative;
    background: url('22.JPG') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 6rem 0;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 61, 0.85); /* Darker blue overlay */
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}


/* Payment Methods Section */
.payment-methods {
    background-color: var(--white-color);
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 60px;
    object-fit: contain;
}


/* Footer Section */
footer {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 3rem 0;
}

footer h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: var(--white-color);
    text-decoration: none;
    margin: 0 0.5rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 650px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.5s;
    text-align: left;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content > h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

/* Tab Styles */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

.tab-link {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #888;
    border-bottom: 3px solid transparent;
    transition: color 0.3s, border-bottom-color 0.3s;
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: tabFadeIn 0.5s;
}

@keyframes tabFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-pane h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Sans Myanmar', 'Poppins', sans-serif;
}

.price-display, .price-info {
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
}

.price-display span {
    color: var(--primary-color);
    font-weight: 700;
}

.price-info p {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.price-info span {
    color: var(--primary-color);
    font-weight: 700;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #00487c;
}

/* New Story Section Specific Styles */
.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.story-intro {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.story-content > p {
    line-height: 1.8;
}

.story-values {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.value-item {
    flex-basis: 30%;
    min-width: 250px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        background: var(--white-color);
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: right 0.3s ease-in;
    }

    .nav-links.nav-active {
        right: 0;
    }
    
    .nav-links li {
        margin: 2rem 0;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .card {
        flex-basis: 80%;
    }
    
    .payment-logos {
        gap: 2rem;
    }

    .payment-logos img {
        height: 50px;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }

    .modal-tabs {
        flex-wrap: wrap;
    }

    .tab-link {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
}
