:root {
    --cream: #fdfbf4;
    --navy: #1a2b4c;
    --gold: #c5a059;
    --dark-green: #0b3d2e;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #6f7480;
    --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--cream);
    font-family: "Inter", "Pyidaungsu", sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.burmese-text {
    font-family: "Pyidaungsu", serif;
    line-height: 1.8;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}
.section-padding {
    padding: clamp(60px, 10vw, 100px) 0;
}

.consult-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: radial-gradient(
        circle at top,
        rgba(197, 160, 89, 0.08),
        transparent
    );
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
}

.step-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 15px;
}

.consult-container {
    max-width: 800px;
    margin: 0 auto 100px;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--soft-shadow);
}

.form-section-title {
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fcfcfc;
    font-family: inherit;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.btn-main {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--navy);
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}
.btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.2);
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    font-weight: 800;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 18px;
    letter-spacing: 0.5px;
}
.logo-text span {
    font-size: 10px;
    font-weight: 400;
    color: #777;
    margin-top: 4px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    opacity: 0.8;
    transition: 0.3s;
    position: relative;
}
.nav-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.mobile-nav-header {
    display: none;
    width: 100%;
    padding: 20px 5%;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1100;
}
.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 10px;
    transition: 0.3s;
}

.uni-slider-wrapper {
    background: linear-gradient(90deg, var(--dark-green), #145240);
    padding: 15px 0;
    overflow: hidden;
}
.uni-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}
.uni-item {
    padding: 0 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.highlight-box {
    background: linear-gradient(135deg, var(--navy) 0%, #0d172a 100%);
    color: white;
    border-radius: 50px;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.highlight-box::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(197, 160, 89, 0.1) 0%,
        transparent 70%
    );
}

.highlight-image {
    width: 100%;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h2 {
    font-family: "Playfair Display";
    color: var(--gold);
    font-size: 52px;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0aec0;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 100px 0;
}

.fixed-back-nav {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 9999;
}
.btn-back {
    text-decoration: none;
    color: var(--white);
    background: var(--navy);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(26, 43, 76, 0.2);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-back:hover {
    transform: translateX(-5px);
    background: var(--gold);
    color: var(--navy);
}

.info-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--soft-shadow);
    border-color: var(--gold);
}

.info-card i {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 20px;
    line-height: 70px;
    text-align: center;
    margin-bottom: 30px;
    transition: 0.3s;
}

.info-card:hover i {
    background: var(--gold);
    color: white !important;
}

.founder-section {
    padding: 120px 0;
    background: radial-gradient(
        circle at top right,
        rgba(197, 160, 89, 0.05),
        transparent 40%
    );
}

.founder-image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.founder-image-wrapper:hover img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--gold);
    color: var(--navy);
    padding: 25px 35px;
    border-radius: 24px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    z-index: 2;
}

.expertise-tag {
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--gold);
}

/* content  */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
}
.image-stack {
    position: relative;
}
.rect-card {
    background:
        linear-gradient(135deg, rgba(26, 43, 76, 0.95), rgba(26, 43, 76, 0.7)),
        url("https://images.unsplash.com/photo-1523050853063-915894367ef7?auto=format&fit=crop&w=800");
    background-size: cover;
    padding: clamp(30px, 5vw, 50px);
    color: var(--white);
    border-radius: 24px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}
.rect-card:hover {
    transform: scale(1.02);
}
.rect-card h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.circle-overlay {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--cream);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.text-side h1 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 10px;
}
/* .burmese-sub {
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
} */

.sub-header {
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.stats-bar {
    background: linear-gradient(to right, var(--navy), #253a63);
    color: white;
    padding: 50px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
    border-radius: 0 0 40px 40px;
}
.stat-num {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
/* .country-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.country-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--soft-shadow);
} */
.country-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 43, 76, 0.1);
    border-color: var(--gold) !important;
}
.country-badge {
    background: var(--cream);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.country-flag {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}
.country-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services {
    background: var(--white);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    margin-bottom: 10px;
}

.service-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.service-item-home {
    padding: 40px 30px;
    background: var(--cream);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-item-home:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    border-color: var(--gold);
}
.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    transition: 0.3s;
}
.service-item-home:hover .service-icon {
    transform: scale(1.2);
}

.process-section {
    background: #f9f9f9;
    text-align: center;
}
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 50px 0;
    position: relative;
}
.timeline-step {
    position: relative;
    z-index: 2;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    transition: 0.3s;
}
.timeline-step:hover .step-number {
    background: var(--navy);
    transform: rotateY(360deg);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--soft-shadow);
}
.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.student-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.about-section {
    background: var(--white);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.advantage-section {
    background: var(--navy);
    color: white;
    border-radius: 40px;
    padding: clamp(50px, 8vw, 80px) 5%;
    margin: 40px 0;
}
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.advantage-text h2 {
    font-family: "Playfair Display";
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.3;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}
.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
}
.why-choose-icon {
    background: rgba(197, 160, 89, 0.2);
    padding: 15px;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    color: var(--navy);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 100px;
    border-radius: 40px;
    overflow: hidden;
}
.card {
    padding: clamp(40px, 8vw, 80px) 10%;
    color: var(--white);
}
.navy-card {
    background: linear-gradient(135deg, var(--navy), #0a1529);
}
.gold-card {
    background: linear-gradient(135deg, var(--gold), #a38241);
}
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* reivews */

.reviews-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(
        circle at bottom,
        rgba(197, 160, 89, 0.05),
        transparent
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}

.stat-item h2 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    padding: 24px 0 42px;
    align-items: stretch;
}

.review-card {
    background:
        linear-gradient(180deg, rgba(197, 160, 89, 0.08), rgba(255, 255, 255, 0) 34%),
        var(--white);
    padding: 34px 30px 28px;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    height: auto;
    overflow: visible;
    box-shadow: 0 18px 45px rgba(26, 43, 76, 0.06);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 70px rgba(26, 43, 76, 0.12);
    border-color: var(--gold);
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--gold), rgba(197, 160, 89, 0.35));
}

.quote-icon {
    position: absolute;
    top: 28px;
    left: 30px;
    font-size: 22px;
    color: var(--gold);
    opacity: 0.18;
}

.review-category-meta {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    margin-top: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--navy);
    border: 1px solid rgba(197, 160, 89, 0.18);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.review-text {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: 400;
    flex: 1;
}

.review-text p {
    color: var(--navy);
    font-size: 15.5px;
    line-height: 1.9;
    margin: 0;
    overflow: visible;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    min-height: 82px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.16);
}

.student-img {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    object-fit: cover;
    background: var(--cream);
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 55px;
}

.student-details {
    min-width: 0;
}

.student-details h4 {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
    font-weight: 700;
}

.student-details span {
    display: block;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1.5;
}

.review-date {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 2px;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 4px 0 90px;
}

.pagination-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(26, 43, 76, 0.05);
    transition: var(--transition);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(26, 43, 76, 0.16);
}

.pagination-btn.disabled {
    color: rgba(26, 43, 76, 0.35);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.pagination-ellipsis {
    height: 42px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    color: rgba(26, 43, 76, 0.45);
    font-weight: 800;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 0 34px;
    }

    .review-card {
        min-height: 0;
        padding: 30px 24px 24px;
        border-radius: 20px;
    }

    .pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 13px;
        font-size: 12px;
    }

}

.load-more-container {
    text-align: center;
    padding-bottom: 100px;
}

/* service  */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 100px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hero-badge i {
    color: var(--gold);
}

.text-side h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 25px;
}

.text-side p {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #5d6778;
    margin-bottom: 45px;
    max-width: 90%;
}

/* Premium Image Composition */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img-frame {
    width: 85%;
    height: 80%;
    border-radius: 300px 300px 20px 20px; /* Modern Arch Shape */
    overflow: hidden;
    border: 12px solid var(--white);
    box-shadow: var(--soft-shadow);
    transform: rotate(-2deg);
}

.main-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card-premium {
    position: absolute;
    bottom: 10%;
    left: -5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 280px;
    animation: premiumFloat 5s ease-in-out infinite;
}

.floating-card-premium h4 {
    color: var(--navy);
    font-family: "Playfair Display";
    margin-bottom: 10px;
}

.floating-card-premium p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.accent-circle {
    position: absolute;
    top: 5%;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
}

@keyframes premiumFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* FULL WIDTH Service Item Styling */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: var(--white);
    border-radius: 32px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 400px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-box {
    flex: 1;
    min-width: 45%;
    overflow: hidden;
    position: relative;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-content {
    flex: 1;
    padding: clamp(30px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item:hover {
    box-shadow: var(--soft-shadow);
    border-color: var(--gold);
}
.service-item:hover .service-image-box img {
    transform: scale(1.08);
}

.service-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-item h3 {
    font-family: "Playfair Display";
    color: var(--navy);
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column !important; /* Mobile မှာ အပေါ်အောက် ပြောင်းမယ် */
        min-height: auto; /* Fixed height ကို ဖြုတ်လိုက်မယ် */
        border-radius: 20px; /* Mobile မှာ border radius နည်းနည်းလျှော့တာ ပိုလှတယ် */
    }

    .service-item:nth-child(even) {
        flex-direction: column !important; /* Reverse ဖြစ်နေတာကို ပုံမှန်အတိုင်း ပြန်ပြင်မယ် */
    }

    .service-image-box {
        width: 100%;
        height: 250px; /* ပုံကို အပေါ်မှာ အရွယ်အစားတစ်ခု သတ်မှတ်ပေးမယ် */
    }

    .service-content {
        padding: 30px 20px; /* Padding ကို mobile နဲ့ ကိုက်အောင် လျှော့မယ် */
    }

    .service-grid {
        gap: 30px; /* တစ်ခုနဲ့တစ်ခု ကြားအကွာအဝေးကို နည်းနည်းလျှော့မယ် */
    }
}
.feature-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.advantage-section {
    background: var(--navy);
    color: white;
    border-radius: 40px;
    padding: clamp(40px, 8vw, 80px) 5%;
    margin: 60px 0;
}
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    flex-shrink: 0;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 18px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
}
.check-list i {
    color: var(--gold);
    margin-top: 5px;
}

/* centent */

.content-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: radial-gradient(
        circle at top,
        rgba(197, 160, 89, 0.05),
        transparent
    );
}

.content-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 20px;
}

.content-hero-copy {
    max-width: 600px;
    margin: 0 auto;
    color: #263653;
    font-weight: 600;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.2);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--navy);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(26, 43, 76, 0.15);
    border-color: var(--navy);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 100px;
}

.content-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
    border-color: var(--gold);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.content-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
}
.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-date {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.card-body h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}
.content-card:hover .card-body h3 {
    color: var(--gold);
}

.content-excerpt {
    color: #1f2f4d;
    font-weight: 600;
    line-height: 1.85;
    margin-bottom: 24px;
}

.read-more {
    margin-top: auto;
    font-weight: 800;
    color: var(--navy);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.read-more i {
    transition: transform 0.3s ease;
}
.content-card:hover .read-more {
    color: var(--gold);
}
.content-card:hover .read-more i {
    transform: translateX(8px);
}

/* contact */

.btn-main {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

.contact-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.premium-contact-card {
    max-width: 1000px;
    margin: 0 auto 120px;
    background: var(--navy);
    border-radius: 40px;
    padding: 80px 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.premium-contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(197, 160, 89, 0.15) 0%,
        transparent 70%
    );
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* --- Media Queries for Mobile & Tablet --- */

@media (max-width: 768px) {
    /* 1. Content Grid Fix */
    .content-grid {
        /* Mobile မှာ card တစ်ခုချင်းစီကို အပြည့်ပြဖို့ 280px လောက်ထိ လျှော့ထားတာ စိတ်အချရဆုံးပါ */
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 20px;
        padding-bottom: 60px;
    }

    /* 2. Premium Contact Card Fix */
    .premium-contact-card {
        padding: 40px 20px; /* Padding ကို mobile နဲ့ ကိုက်အောင် လျှော့မယ် */
        margin: 0 15px 60px; /* ဘေး margin လေး ထည့်ပေးရင် ပိုလှတယ် */
        border-radius: 30px;
    }

    /* 3. Contact Grid Fix */
    .contact-grid {
        grid-template-columns: 1fr; /* 2 column ကနေ 1 column ပြောင်းမယ် */
        margin-top: 30px;
    }

    /* 4. Info Box Adjustment */
    .info-box {
        padding: 20px;
        flex-direction: column; /* Icon နဲ့ စာကို အပေါ်အောက် ထားချင်ရင် သုံးပါ */
        text-align: center;
        gap: 10px;
    }

    /* Heading sizes for Mobile */
    .premium-contact-card h2 {
        font-size: 28px !important;
    }
}

/* Extra Small Devices (Phone သေးသေးလေးတွေအတွက်) */
@media (max-width: 480px) {
    .card-image {
        height: 200px;
    }

    .card-body {
        padding: 20px;
    }
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 5px;
}
.info-details p {
    font-size: 18px;
    font-weight: 600;
}

.social-section {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
}

.social-icons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.social-icons-row a {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}
.social-icons-row a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
    border-color: var(--gold);
}

footer {
    background: #0a111f;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    margin-top: 50px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-logo-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #a0aec0;
}
.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
    text-align: left;
}
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 2px;
    background: var(--gold);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a {
    transition: 0.3s;
    color: #a0aec0;
}
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    gap: 15px;
    color: #a0aec0;
    align-items: center;
}
.contact-item i {
    color: var(--gold);
    font-size: 18px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}
.social-link:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: #718096;
}

@media (max-width: 992px) {
    /* 1. အဓိက containers များကို 1 column သို့ပြောင်းခြင်း */
    .hero-content,
    .advantage-grid,
    .grid-section,
    .about-container,
    .footer-main {
        grid-template-columns: 1fr;
    }

    /* 2. Footer Layout ကို ဘယ်ဘက်ကပ် (left-aligned) ဖြစ်စေရန် */
    .footer-main {
        gap: 30px;
        padding-bottom: 40px;
        text-align: left; /* ဒီမှာ left ထားပေးပါ */
    }

    .footer-title {
        text-align: left; /* ခေါင်းစဉ်ကိုလည်း ဘယ်ဘက်ကပ်မယ် */
    }

    .footer-title::after {
        left: 0 !important; /* အောက်က line လေးကို ဘယ်ဘက်မှာ ထားမယ် */
        transform: none !important; /* အလယ်ပို့ထားတာကို ပြန်ဖြုတ်မယ် */
    }

    /* 3. Contact items များကို ဘယ်ဘက်ကပ်စေရန် */
    .contact-item {
        justify-content: flex-start; /* ဘယ်ဘက်က စတင်စေမယ် */
    }

    .footer-socials {
        justify-content: flex-start; /* Social icons တွေကို ဘယ်ဘက်ကပ်မယ် */
    }

    /* 4. အခြားအစိတ်အပိုင်းများအတွက် */
    .hero-content {
        text-align: left; /* Hero section ကိုလည်း left ကပ်မယ် */
    }

    .circle-overlay {
        width: 180px;
        height: 180px;
        right: 10px;
        bottom: -20px;
    }

    .advantage-section {
        border-radius: 0;
    }

    .grid-section {
        border-radius: 0;
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 120px 0 40px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1050;
        gap: 50px;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 32px;
        color: var(--navy);
        font-weight: 700;
    }
    .mobile-nav-header {
        display: flex;
        z-index: 1060;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .navbar .btn-main {
        display: flex;
        color: #1a2b4c !important;
        justify-content: center;
        align-items: center;
        border-radius: none;
        background-color: transparent;
    }

    .navbar .btn-logout {
        display: flex;
        font-size: 32px !important;
        color: rgba(255, 0, 0, 0.616) !important;
        justify-content: center;
        align-items: center;
        border-radius: none;
        background-color: transparent;
    }
}
.nav-links a.active {
    color: #c5a059;
    font-weight: bold;
    border-bottom: 2px solid #c5a059;
}

/* အခြေခံ ခလုတ် Style */
.btn-main,
.btn-dashboard,
.btn-logout {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* စာသားကို တစ်ကြောင်းတည်း ဖြစ်စေရန် */
}

/* Dashboard ခလုတ်ကို အရောင် တစ်မျိုးခွဲထားပါ (ဥပမာ- အပြာရင့်) */
.btn-dashboard {
    background-color: #1a2b4c;
    color: white;
}

/* Logout ခလုတ်ကို ပိုပြီး သပ်ရပ်အောင် လုပ်ပါ */
.btn-logout {
    background-color: #7c3030;
    color: white;
    cursor: pointer;
}

.btn-logout:hover {
    background-color: #c53030;
}

/* Header Navbar ကို ညှိရန် */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

@media (max-width: 768px) {
    /* Form Grid ကို 1 column အဖြစ် အတင်းပြောင်းပေးမယ် */
    .form-grid {
        grid-template-columns: 1fr !important;
    }

    /* File Upload Grid */
    .consult-container > form > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Input box တွေ စာသားတွေ overflow မဖြစ်အောင် */
    .consult-container {
        padding: 20px !important;
        margin: 10px !important;
    }

    .form-group[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}

/* Responsive Fix for File Upload Grid */
@media (max-width: 768px) {
    .file-upload-grid {
        grid-template-columns: 1fr !important; /* 2 column ကနေ 1 column ဖြစ်သွားမယ် */
    }

    .other-doc-container {
        flex-direction: column; /* Other document input တွေကို အပေါ်အောက် ပြောင်းမယ် */
    }
}

@media (max-width: 768px) {
    .other-doc-wrapper {
        flex-direction: column; /* Mobile မှာ အပေါ်အောက် ဖြစ်သွားအောင် */
    }

    .other-input {
        width: 100%; /* အပြည့်ယူမယ် */
    }
}
