@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

:root {
    --primary-color: #FF7A00; /* Vibrant Saffron */
    --secondary-color: #B85B00; /* Darker Saffron */
    --gold-color: #FFD700; /* Gold */
    --text-color: #4F4F4F; /* Dark Gray */
    --bg-color: #FEFBF6; /* Off-white */
    --footer-bg: #3A2412; /* Deepest Brown */
    --card-bg: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Tiro Devanagari Hindi', 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Header and Navigation --- */
header {
    background: linear-gradient(to right, #4a2c2a, #3A2412);
    color: white;
    padding: 25px 0;
    text-align: center;
    border-bottom: 5px solid var(--gold-color);
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.15rem;
    opacity: 0.9;
}

nav {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid #eee;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 25px;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* --- Main Content --- */
main {
    padding: 50px 0;
}

section {
    background: var(--card-bg);
    margin-bottom: 40px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold-color);
    display: inline-block;
}

ul {
    list-style-position: inside;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
}

li::before {
    content: '🕉️';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

blockquote {
    border-left: 5px solid var(--gold-color);
    padding: 15px 25px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.25rem;
    background-color: #FFFDF9;
    border-radius: 0 8px 8px 0;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--secondary-color);
}

/* --- Footer --- */
footer {
    background: linear-gradient(to right, #4a2c2a, #3A2412);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-top: 5px solid var(--gold-color);
}

footer a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

.motto {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold-color);
    font-style: italic;
    opacity: 0.9;
}

footer p {
    margin-top: 15px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    header h1 {
        font-size: 2rem;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
    h2 {
        font-size: 1.8rem;
    }
}