:root {
    --primary-gold: #c5a059;
    --deep-maroon: #630000;
    --matte-black: #0a0a0a;
    --soft-white: #f8f9fa;
    --gold-glow: rgba(197, 160, 89, 0.3);
}

body {
    background-color: var(--matte-black);
    color: var(--soft-white);
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-maroon);
    border-radius: 10px;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation Style */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 15px 0;
}

.nav-link {
    color: white !important;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin: 0 15px;
}

/* Hero Visual */
.hero-philanthropy {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--deep-maroon);
}

/* Logo Adjustment */
.society-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

/* Circular Image Styling as per your screenshot */
.img-container-circular {
    position: relative;
    width: 105%;
    max-width: 475px;
    margin: auto;
}

.premium-img-circular {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    /* Makes it circular like the screenshot */
    border: 4px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

/* Section Styling */
.society-section {
    padding: 80px 0;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
    margin: 20px 0;
}

.btn-premium {
    background: linear-gradient(45deg, var(--deep-maroon), #800000);
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    transition: 0.5s;
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-3px);
    color: white;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-gold);
    padding: 25px;
    margin-top: 30px;
    font-size: 0.9rem;
}