/* css/style.css */
/* Ascendia Management Main Stylesheet */

:root {
    --primary-blue: #0d6efd;
    --secondary-blue: #2d7bf6;
    --accent-orange: #ff5722;

    /* Dark + Gold Theme */
    --bg-dark: #0b0b0b;
    --bg-dark-soft: #141414;
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.15);

    --white: #ffffff;
    --text-dark: #1a1e27;
    --text-muted: #9ca3af;
    --text-light: #e5e7eb;

    --border-radius: 14px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.85);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans Myanmar', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
}

/* ===============================
   Header & Navigation (Original)
================================ */
.site-header {
    background-color: #0f0f0f;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gold);
}

.logo img {
    height: 135px;
    width: auto;
}
.servicelogo {
padding-right: 200px;
}
.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--gold);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold);
    padding: 5px;
}

/* ===============================
   Hero Section (Theme Adjust)
================================ */
.hero {
    background: linear-gradient(
        135deg,
        #111 0%,
        #000 100%
    );
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ===============================
   Content Sections (MAIN CHANGE)
================================ */
.content-section {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 45px;
    background: linear-gradient(145deg, #111, #1a1a1a);
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Gold Top Accent */
.content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.content-section:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.future-content {
    text-align: center;
    color: #cbd5e1;
}

.Partner-logo {
    width: 15%;
    height: auto;
    padding-left: 30px;
    transition: transform 0.3s ease;
}

.Partner-logo:hover {
    transform: scale(1.05);
}

.section-title {
    color: var(--gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}
.service-card {
    display: flex;
    gap: 30px;
}
.about-yps {
     text-align: start;
}
/* ===============================
   Buttons (Original)
================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--accent-orange);
    color: white;
}

.btn-orange:hover {
    background: #e64a19;
}

/* ===============================
   Footer (Original Layout)
================================ */
.site-footer {
    background: #0f0f0f;
    padding: 50px 20px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: #000;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--text-muted);
}

/* ===============================
   Responsive (Original)
================================ */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f0f0f;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 30px;
        margin: 25px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

}
