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

/* Body */
body {
    font-family: 'Noto Serif', serif;
    background: linear-gradient(135deg, #0a0a2a, #312e81, #581c87);
    color: #f8f8f8;
    line-height: 1.7;
}

/* Header */
.header {
    padding: 40px 20px;
    text-align: center;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #ffd700;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

/* Sections */
.section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

.section h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffd700;
    margin-bottom: 15px;
}

.section.light {
    background: rgba(248, 248, 248, 0.95);
    color: #1a1a2e;
    border-radius: 12px;
    margin: 40px auto;
}

.section.light h3 {
    color: #312e81;
}

/* Services */
.services {
    list-style: none;
    padding-left: 0;
}

.services li {
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

/* Footer */
.footer {
    padding: 40px 20px;
    text-align: center;
    background: #0a0a2a;
}

.shloka {
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}
