﻿:root {
        --navy-deep: #001f3f;
        --gold-premium: #ffba00;
        --text-muted: #6c757d;
    }

    .text-navy { color: var(--navy-deep); }
    .bg-navy { background-color: var(--navy-deep); }
    
    .college-heritage-premium {
        background-color: #ffffff;
        font-family: 'Poppins', sans-serif;
    }

    /* Dropcap effect for a magazine feel */
    .dropcap-text::first-letter {
        float: left;
        font-size: 5rem;
        line-height: 1;
        font-weight: bold;
        color: var(--navy-deep);
        margin-right: 15px;
        font-family: 'Playfair Display', serif;
    }

    .divider-custom {
        width: 80px;
        height: 5px;
        background: var(--gold-premium);
        margin-top: 20px;
        border-radius: 2px;
    }

    /* Shloka Card with Gradient & Texture */
    .shloka-glass-card {
        background: linear-gradient(135deg, var(--navy-deep) 0%, #003366 100%);
        position: relative;
        overflow: hidden;
        border-bottom: 5px solid var(--gold-premium);
    }

    .shloka-glass-card::after {
        content: '\f653'; /* Om icon */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        bottom: -20px;
        right: -20px;
        font-size: 10rem;
        color: rgba(255,255,255,0.05);
    }

    /* Objective Numbers */
    .obj-num {
        width: 45px;
        height: 45px;
        background: var(--gold-premium);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(255, 186, 0, 0.3);
    }

    .objective-item {
        transition: transform 0.3s ease;
    }
    .objective-item:hover {
        transform: translateX(10px);
        background: #fff8e1 !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .display-4 { font-size: 2.2rem; }
        .dropcap-text::first-letter { font-size: 3.5rem; }
        .emblem-breakdown { padding: 2rem !important; text-align: center; }
        .emblem-breakdown .border-end { border-end: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; padding-bottom: 20px; }
    </style>