
/* Sanshodhanam Theme - Updated with Navy & Gold */
:root {
    --primary: #0a2240;    /* Deep Navy Blue */
    --secondary: #16365c;  /* Lighter Navy */
    --accent: #cda434;     /* Antique Gold/Bronze */
    --bg-light: #fdfbf7;
    --text-main: #333333;
    --text-light: #666666;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
}

h1, h2, h3, h4, .serif-text {
    font-family: 'Merriweather', Georgia, serif;
}

/* Navigation */
header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 34, 64, 0.9), rgba(10, 34, 64, 0.8));
    color: white;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 5px solid var(--accent);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e2e8f0;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
}

.btn:hover {
    background-color: #bfa030;
    color: white;
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 20%;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Workflow Steps */
.workflow-step {
    background: white;
    margin-bottom: 20px;
    padding: 25px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-family: 'Merriweather', serif;
    flex-shrink: 0;
}

/* Privacy Highlights */
.privacy-highlight {
    background-color: #f4f6f9;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary);
}

.privacy-highlight h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.privacy-highlight ul {
    margin-left: 20px;
    margin-top: 10px;
}

.privacy-highlight li {
    margin-bottom: 10px;
}

/* Contact Boxes */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-box {
    background: var(--primary);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    border-bottom: 4px solid var(--accent);
}

.contact-box h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-box a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: #cbd5e1;
    text-align: center;
    padding: 50px 20px 30px 20px;
    margin-top: 40px;
    border-top: 5px solid var(--accent);
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--accent);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.footer-divider {
    width: 50px;
    height: 2px;
    background-color: #475569;
    margin: 0 auto 20px auto;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .brand-title { font-size: 1.2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-tagline { font-size: 1.1rem; }
    .contact-grid { grid-template-columns: 1fr; }
}
