    :root {
        --primary-blue: #2c3e80;
        --accent-orange: #fd7e14;
        --light-bg: #f5f7fa;
        --text-dark: #333;
    }

    body {
        background-color: var(--light-bg);
        font-family: 'Poppins', 'Tiro Devanagari Hindi', sans-serif;
        overflow-x: hidden;
    }

    /* --- CSS Styling --- */
    .header-section {
        padding: 15px 0;
        background-color: #ffffff;
        border-bottom: 1px solid #eaeaea;
    }

    .univ-logo {
        max-width: 100px;
        /* Logo ka size control karne ke liye */
        height: auto;
    }

    .univ-title-eng {
        color: #2c3e80;
        /* Blue Color */
        font-weight: 700;
        font-size: 1.6rem;
        /* Text size adjust karein */
        line-height: 1.2;
        text-transform: uppercase;
    }

    .brand-sub {
        font-size: 1rem;
        color: #444;
        margin-top: 5px;
        text-align: center
    }

    .brand-address {
        font-size: 0.9rem;
        color: #666;
        margin-top: 2px;
        text-align: center
    }

    /* Mobile Responsive Tweaks */
    @media (max-width: 768px) {
        .univ-title-eng {
            font-size: 1.2rem;
        }

        .univ-logo {
            max-width: 80px;
            margin-bottom: 10px;
        }
    }

    /* --- Centered Navigation Bar --- */
    .custom-navbar {
        background-color: var(--primary-blue);
        border-radius: 11px;
        padding: 8px 15px;
        margin-top: 5px;
        position: relative;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    /* Centering Logic */
    .nav-center-container {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        gap: 35px;
        align-items: center;
    }

    .nav-item {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .nav-item:hover {
        color: var(--accent-orange);
        transform: translateY(-2px);
    }

    .login-btn {
        background-color: var(--accent-orange);
        color: white;
        padding: 8px 25px;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
        white-space: nowrap;
    }

    .login-btn:hover {
        background-color: #e36d0d;
        color: white;
    }

    /* --- Main Layout --- */
    .main-container {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .card-container {
        background: white;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eef0f3;
        height: 100%;
    }

    /* --- Marquee Strip --- */
    .info-strip {
        background: #fff8e1;
        /* Light yellow bg like Image 2 */
        border: 1px solid #ffeeba;
        color: #856404;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 25px;
        font-weight: 600;
    }

    /* --- Section Headers --- */
    .section-header {
        border-bottom: 2px solid #ddd;
        margin-bottom: 20px;
        padding-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-title {
        color: var(--primary-blue);
        font-weight: 700;
        font-size: 1.25rem;
        margin: 0;
    }

    /* --- Vertical Scrolling Announcements --- */
    .announce-container {
        height: 480px;
        /* Fixed height for scroll area */
        overflow: hidden;
        position: relative;
    }

    .announce-list-item {
        display: flex;
        align-items: start;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #eee;
    }

    .announce-list-item i {
        color: #20c997;
        margin-right: 12px;
        margin-top: 4px;
        font-size: 1.1rem;
    }

    .announce-link {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        font-size: 0.95rem;
        line-height: 1.5;
        transition: 0.2s;
    }

    .announce-link:hover {
        color: var(--primary-blue);
    }

    .badge-new {
        background-color: red;
        color: white;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 5px;
        font-weight: bold;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        50% {
            opacity: 0.5;
        }
    }

    /* --- Professional Student Panel (Grid) --- */
    .panel-row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .panel-card {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 20px 10px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .panel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-blue);
    }

    .panel-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .panel-card:hover::after {
        transform: scaleX(1);
    }

    .p-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.5rem;
    }

    /* Icon Colors */
    .icon-bg-green {
        color: #28a745;
        background-color: #e8f5e9;
    }

    .icon-bg-blue {
        color: #007bff;
        background-color: #e3f2fd;
    }

    .icon-bg-purple {
        color: #6f42c1;
        background-color: #f3e5f5;
    }

    .icon-bg-teal {
        color: #20c997;
        background-color: #e0f2f1;
    }

    .p-title {
        color: #333;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .p-subtitle {
        color: #777;
        font-size: 0.8rem;
    }

    .footer-section {
        background: linear-gradient(135deg, #1a237e, #283593);
        color: #fff;
        padding: 50px 0 20px;
        margin-top: 50px;
    }

    .footer-logo {
        max-width: 110px;
        background: #fff;
        padding: 8px;
        border-radius: 8px;
    }

    .footer-box p {
        opacity: 0.85;
    }

    /* Heading Style */
    .footer-title {
        position: relative;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 22px;
        padding-bottom: 8px;
    }

    /* Orange Base Line */
    .footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 70px;
        height: 3px;
        background: #ff7a00;
        border-radius: 10px;
        z-index: 1;
    }

    /* Moving White Shine */
    .footer-title::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 20px;
        height: 3px;
        background: #ffffff;
        border-radius: 10px;
        z-index: 2;
        animation: footerMove 2s linear infinite;
    }

    @keyframes footerMove {
        0% {
            left: 0;
        }

        100% {
            left: 50px;
        }
    }

    /* Address */
    .footer-address i {
        color: #ff7a00;
        margin-right: 12px;
        margin-top: 4px;
        font-size: 18px;
    }

    /* Social Icons */
    .footer-social a {
        display: inline-block;
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        margin-right: 8px;
        transition: 0.3s;
    }

    .footer-social a:hover {
        background: #ff7a00;
        transform: translateY(-4px);
    }

    /* Bottom Line */
    .footer-line {
        border-color: rgba(255, 255, 255, 0.2);
        margin: 30px 0 15px;
    }

    .footer-link {
        color: #ffffff;
        margin: 10px;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-link:hover {
        color: #ff7a00;
        text-decoration: none;
    }

    .nav-item {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 6px;
        border: 1px solid transparent;
        /* normal me invisible */
        transition: 0.25s ease;
    }

    /* Sab menu hover */
    .nav-item:hover {
        border-color: #ff7a00;
        /* hover par orange border */
        color: #fff;
    }

    /* Helpline ko thoda premium hover */
    .helpline-btn:hover {
        background: #2c3e80;
        /* blue hi rahe */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* Modal Card */
    .helpline-modal {
        border: 0;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    /* Header Bar */
    .helpline-header {
        background: linear-gradient(135deg, #2c3e80, #1a237e);
        color: #fff;
        padding: 14px 18px;
    }

    .helpline-illustration {
        width: 90px;
        height: 90px;
        margin: 0 auto;
        border-radius: 50%;
        background: #eef2ff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .help-logo {
        width: 60px;
        height: auto;
    }


    /* Timing Badge */
    .timing-badge {
        background: #fff3e0;
        color: #e36d0d;
        border: 1px solid #ffd8a8;
        font-weight: 600;
    }

    /* Contact Links */
    .contact-link {
        color: #2c3e80;
        text-decoration: none;
        font-weight: 600;
    }

    .contact-link:hover {
        color: #ff7a00;
        text-decoration: none;
    }

    /* Action Buttons */
    .btn-call {
        background: #2c3e80;
        color: #fff;
        border-radius: 30px;
        padding: 8px 16px;
    }

    .btn-call:hover {
        background: #1f2f66;
        color: #fff;
    }

    .btn-whatsapp {
        background: #25D366;
        color: #fff;
        border-radius: 30px;
        padding: 8px 16px;
    }

    .btn-whatsapp:hover {
        background: #1ebe5d;
        color: #fff;
    }

    .info-card {
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eef0f3;
        height: 100%;
    }

    .info-heading {
        font-weight: 700;
        color: #2c3e80;
        border-bottom: 2px solid #ff7a00;
        padding-bottom: 8px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .info-list {
        padding-left: 18px;
        color: #333;
        line-height: 1.6;
    }

    .info-list li {
        margin-bottom: 12px;
    }
    