/* RESET & BASE STYLES */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Padauk', sans-serif; /* Myanmar Font */

    line-height: 1.6;

    color: #333;

    background-color: #f4f6f8;

}



h1, h2, h3, h4 {

    font-family: 'Poppins', 'Padauk', sans-serif;

    color: #1a202c;

    margin-bottom: 1rem;

    line-height: 1.3;

}



.container {

    max-width: 800px;

    margin: 0 auto;

    padding: 0 20px;

}


/* Update this specific part in your CSS */
.navbar .container {
    display: flex;
    justify-content: space-between; /* This pushes items to opposite ends */
    align-items: center;          /* This centers them vertically */
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar img {
    border-radius: 50%; /* Optional: keeps the logo circular if you prefer */
    object-fit: contain;
}

a {

    text-decoration: none;

}



/* NAVBAR */

.navbar {

    background: #fff;

    padding: 3px 0;

    box-shadow: 0 2px 4px rgba(0,0,0,0.05);

}



.logo {

    color: #2563eb; /* Tech Blue */

    font-size: 1.3rem;

    margin: 0;

}



/* HERO SECTION */

.hero {

    text-align: center;

    padding: 60px 0;

    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); /* Dark Slate */

    color: white;

}



.hero h1 {

    color: #fff;

    font-size: 2rem;

    margin-top: 20px;

}



.sub-headline {

    font-size: 1.1rem;

    margin-bottom: 30px;

    opacity: 0.9;

	margin-top: 30px;
}



.sub-headline-2{

font-style: italic;

margin-top: 40px;

margin-bottom: 40px;

}



.badge-warning {

    background-color: #fbbf24;

    color: #000;

    padding: 5px 15px;

    border-radius: 50px;

    font-weight: bold;

    font-size: 0.9rem;

    display: inline-block;

}



/* BUTTONS */

.btn {

    display: inline-block;

    padding: 15px 30px;

    border-radius: 8px;

    font-weight: bold;

    font-size: 1.1rem;

    transition: transform 0.2s;

}



.btn-primary {

    background-color: #2563eb;

    color: white;

    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);

}



.btn-primary:hover {

    background-color: #1d4ed8;

    transform: translateY(-2px);

}



/* ANIMATION FOR BUTTON */

.pulse-animation {

    animation: pulse 2s infinite;

}



@keyframes pulse {

    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }

    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }

    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }

}



/* BIO SECTION */

.bio-section {

    padding: 50px 0;

    background: #e2e8f0;

}



.bio-content {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 30px;

}



.bio-text {

    flex: 2;

}



.bio-img-placeholder {

    flex: 1;

    height: 200px;

    background-color: #cbd5e1;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #64748b;

    font-weight: bold;

}



/* PROBLEM SECTION (UPDATED) */

.problem-section {

    padding: 70px 0;

    background: #fff;

    text-align: center;

    border-bottom: 1px solid #e2e8f0;

}



.problem-section h3 {

    font-size: 1.5rem;

    color: #b91c1c; /* Dark Red color for Alert/Attention */

    line-height: 1.6;

    margin-bottom: 30px;

    font-weight: 700;

}



.problem-content {

    max-width: 700px;

    margin: 0 auto;

}



.problem-content p {

    font-size: 1.15rem;

    color: #334155;

    margin-bottom: 25px;

}



/* Pain Points List Design */

.pain-points-list {

    list-style: none;

    text-align: left;

    background: #fff1f2; /* Light Red Background */

    padding: 25px;

    border-radius: 12px;

    border-left: 5px solid #ef4444; /* Red Border Highlight */

    margin-bottom: 30px;

}



.pain-points-list li {

    font-size: 1.05rem;

    margin-bottom: 15px;

    color: #7f1d1d;

    display: flex;

    align-items: flex-start;

}



/* Empathy Text (The Solution Bridge) */

.empathy-text {

    font-size: 1.2rem !important;

    font-weight: 500;

    color: #0f172a !important;

    line-height: 1.8;

}



.empathy-text strong {

    color: #2563eb; /* Highlight the solution in Blue */

    font-weight: 800;

    text-decoration: underline;

    text-decoration-thickness: 2px;

    text-underline-offset: 4px;

}



/* BENEFITS GRID UPDATE */

.benefits-section {

    padding: 60px 0;

    text-align: center;

    background-color: #fff;

}



.section-subtitle {

    max-width: 600px;

    margin: 0 auto 30px auto;

    color: #64748b;

    font-size: 1.1rem;

}



.grid-container {

    display: grid;

    /* Desktop မှာ 3 ကော်လံ၊ Tablet မှာ 2 ကော်လံ၊ Mobile မှာ 1 ကော်လံ */

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 

    gap: 25px;

    margin-top: 30px;

}



.card {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Shadow နည်းနည်းပိုတင်ထားပါတယ် */

    text-align: left;

    border-top: 4px solid #2563eb;

    transition: transform 0.3s ease;

    height: 100%; /* Card တွေ အမြင့်ညီအောင် */

}



.card:hover {

    transform: translateY(-5px);

}



.card-icon {

    font-size: 2.5rem;

    margin-bottom: 15px;

    background: #eff6ff;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

}



.card h4 {

    color: #1e293b;

    font-size: 1.2rem;

    margin-bottom: 10px;

    font-weight: 700;

}



.card p {

    color: #475569;

    font-size: 0.95rem;

    line-height: 1.6;

}



/* Certificate Card ကို ပိုထင်ရှားအောင် Gold Color သုံးထားခြင်း */

.cert-card {

    border-top-color: #fbbf24;

    background: #fffbeb;

}



.cert-card .card-icon {

    background: #fef3c7;

}



/* OFFER SECTION */

.offer-section {

    padding: 60px 0 80px 0;

    background: #1e293b;

    color: white;

    text-align: center;

}



.offer-section h2 {

    color: #fff;

}



.details-box {

    background: rgba(255,255,255,0.1);

    padding: 30px;

    border-radius: 8px;

    margin-bottom: 30px;
	margin-top: 30px;

    display: inline-block;

    text-align: left;

}

.margin-y-10 {
	margin-top: 10px;
	margin-bottom: 10px;
}


.pricing-card {

    background: white;

    color: #333;

    max-width: 500px;

    margin: 0 auto 30px auto;

    border-radius: 12px;

    padding: 30px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

}



.price-header {

    font-size: 1.2rem;

    color: #64748b;

}



.price-amount {

    font-size: 2rem;

    font-weight: 800;

    color: #1e293b;

}

.special-offer {

    color: #2563eb;

    margin-top: 15px;

}



.special-price {

    color: #2563eb;

}



.early-bird-box {

    background: #fffbeb;

    border: 2px dashed #fbbf24;

    padding: 15px;

    margin-top: 20px;

    border-radius: 8px;

}



.early-bird-box span {

    color: #b45309;

    font-weight: bold;

    display: block;

    margin-bottom: 5px;

}



.eb-price {

    font-size: 2rem;

    color: #d97706;

    font-weight: 800;

}



.scarcity-text {

    color: #fbbf24;

    margin-bottom: 30px;

    font-weight: bold;

}



/* FOOTER */

footer {

    background: #0f172a;

    color: #94a3b8;

    text-align: center;

    padding: 20px 0;

    font-size: 0.9rem;

}



/* MOBILE ADJUSTMENTS */

@media (max-width: 600px) {

    .hero h1 {

        font-size: 1.5rem;

    }

    



    

    .bio-img-placeholder {

        width: 100%;
		height: 330px;
		

    }

}



/* REVIEWS SECTION */

.reviews-section {

    padding: 60px 0;

    background-color: #f8fafc; /* Light distinct background */

    text-align: center;

}



.section-subtitle {

    color: #64748b;

    margin-bottom: 40px;

    font-size: 1rem;

}



.review-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive Grid */

    gap: 25px;

}



.review-card {

    background: white;

    padding: 25px;

    border-radius: 12px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.04);

    text-align: left;

    border: 1px solid #e2e8f0;

    transition: transform 0.2s;

}



.review-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.08);

}



.stars {

    color: #fbbf24; /* Star Color */

    margin-bottom: 10px;

    letter-spacing: 2px;

}



.review-text {

    font-size: 0.95rem;

    color: #334155;

    font-style: italic;

    margin-bottom: 20px;

    line-height: 1.6;

}



.reviewer-info strong {

    display: block;

    color: #1e293b;

    font-size: 1rem;

}



.reviewer-info span {

    font-size: 0.85rem;

    color: #94a3b8; /* Muted text for role */

    font-weight: 500;

}



/* OUTLINE SECTION */

.outline-section {

    padding: 60px 0;

    background-color: #fff;

}



.outline-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 2 columns on desktop, 1 on mobile */

    gap: 20px;

    margin-top: 30px;

}



.module-card {

    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 10px;

    padding: 20px;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



.module-card:hover {

    border-color: #2563eb;

    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);

}



/* Header style inside card */

.module-header {

    display: flex;

    align-items: center;

    margin-bottom: 15px;

    border-bottom: 2px solid #f1f5f9;

    padding-bottom: 10px;

}



.module-header h4 {

    margin: 0;

    margin-left: 10px;

    color: #1e293b;

    font-size: 1.1rem;

}



/* Number Badge (01, 02, etc.) */

.step-badge {

    background-color: #eff6ff;

    color: #2563eb;

    font-weight: 800;

    padding: 5px 10px;

    border-radius: 6px;

    font-size: 0.9rem;

}



/* List Styles */

.topic-list {

    list-style: none;

    padding-left: 5px;

}



.topic-list li {

    margin-bottom: 8px;

    color: #475569;

    font-size: 0.95rem;

    position: relative;

    padding-left: 20px;

}



/* Custom Bullet Points */

.topic-list li::before {

    content: "•";

    color: #2563eb;

    font-weight: bold;

    position: absolute;

    left: 0;

    font-size: 1.2rem;

    line-height: 1;

    top: -2px;

}



/* Special Style for Final Project Card */

.highlight-card {

    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

    color: white;

    border: none;

    grid-column: 1 / -1; /* Make it span full width */

}



.highlight-card .module-header {

    border-bottom-color: rgba(255,255,255,0.2);

}



.highlight-card .step-badge {

    background: rgba(255,255,255,0.2);

    color: white;

}



.highlight-card h4 {

    color: white;

}



.highlight-card .topic-list li {

    color: #e2e8f0;

}



.highlight-card .topic-list li::before {

    color: #fbbf24; /* Gold bullet for final project */

}



/* Responsive adjustment for the final card */

@media (max-width: 600px) {

    .highlight-card {

        grid-column: auto; /* Reset to normal width on mobile */

    }

}

/* Timer Styling */
.countdown-container {
    margin-bottom: 25px;
    background: rgba(251, 191, 36, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fbbf24;
}

.countdown-container p {
    color: #F54927;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Pricing Updates */
.original-price {
    text-decoration: line-through;
    color: #94a3b8 !important;
    font-size: 1.4rem !important;
}

.special-price {
    font-size: 2.1rem !important;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.student-price-box {

    background: #E0E7FF;

    border: 2px solid #fbbf24;

    padding: 15px;

    margin-top: 20px;

    border-radius: 8px;

}

.font-bold{
	font-weight: bold;
}

.font-white{
	color: #fff;
}

.margin-top-20{
	margin-top: 20px;
}