* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Mukta", sans-serif;
    background: #0c0b0a;
    color: #f0ece6;
    min-height: 100vh;
}

p {
    font-size: 20px;
    font-family: "Noto Sans Devanagari", sans-serif;
}

/* navbar */
.navbar-custom {
    background: rgba(12, 11, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0.8rem 0;
}

.nepali {
    font-family: "Noto Sans Devanagari", "Mukta", sans-serif;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.navbar-custom .navbar-brand {
    font-family: "Noto Sans Devanagari", sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: #d4af37;
    letter-spacing: 0.5px;
}

.navbar-custom .nav-link {
    color: #ddd;
    font-weight: 400;
    margin: 0 0.5rem;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.navbar-custom .nav-link.active {
    font-weight: 600;
}

.gold-accent {
    color: #d4af37;
}

.bg-dark-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 2rem 2rem;
}

.section-title {
    font-family: "Noto Sans Devanagari", sans-serif;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: #d4af37;
    border-radius: 4px;
}

.text-gold {
    color: #d4af37;
}

.gold-border {
    border-color: #d4af37;
}

.btn-gold {
    background: #d4af37;
    color: #111;
    font-weight: 600;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    transition: 0.25s;
    border: none;
}

.btn-gold:hover {
    background: #e4c04a;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
    background: transparent;
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    transition: 0.2s;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: #111;
}

.profile-img-round {
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    height: auto;
}

.social-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-size: 1.3rem;
    transition: 0.2s;
    text-decoration: none;
    margin-right: 0.5rem;
}

.social-icon-circle:hover {
    background: #d4af37;
    color: #111;
}

.footer-bg {
    background: #0e0d0c;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.card-film {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    transition: 0.2s;
    height: 100%;
}

.card-film:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
    background: rgba(212, 175, 55, 0.03);
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

@media (max-width: 768px) {
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .text-center-mobile {
        text-align: center;
    }

    .profile-img-round {
        max-width: 80%;
        margin: 0 auto;
    }
}