/* =========================================================
   GLOBAL & TOP STRIP
   ========================================================= */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
}

/* Top black strip */
.top-black-strip {
    background-color: #000;
    color: #fff;
    font-size: 14px;
}

/* Flex container */
.top-strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px; /* controls left/right spacing */
}

/* Links styling */
.top-black-strip a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.2s ease;
}

.top-black-strip a:hover {
    color: #B23A2F;
}

/* Separator style */
.top-black-strip span {
    color: #aaa;
}

/* =========================================================
   HEADER & LOGO SECTION (Transparent Navy, Not Sticky)
   ========================================================= */
.top-header-section {
    background-color: rgba(16, 32, 57, 0.85); /* Navy with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.top-header {
    padding: 20px 0 10px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    text-align: center;
}

.logo-container img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.univ-text h2 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.univ-text h3 {
    color: #FFD700;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Punjabi Text Optimization */
.punjabi-text-small {
    font-family: 'Noto Sans Gurmukhi', 'Arial Unicode MS', sans-serif !important;
    font-size: 14px; /* Reduced size for smaller appearance */
    color: #FFD700;  /* Maintained golden color */
    font-weight: 400;
    display: block;
    line-height: 1.2;
    margin-top: 5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.subhead {
    color: white;
    font-size: 12px;
}

#logobar {
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
}

/* =========================================================
   NAVBAR 1 (Primary - Sticky with Transparent Navy Look)
   ========================================================= */
.primary-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    /*background-color: rgba(16, 32, 57, 0.85); */
    background-color: rgba(128, 0, 0, 0.85);  /* Matches logo section transparent look */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 0;
    border-radius: 0;
}

.primary-navbar .icon-bar {
    background-color: #fff;
}

.primary-navbar .navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 600;
    padding: 20px 20px;
    
    font-size: 16px;
    transition: all 0.3s ease;
}

.primary-navbar .navbar-nav > li > a:hover {
    color: #FFD700 !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.apply-btn-golden {
    background: linear-gradient(90deg, #4facfe, #00f2fe)!important; /* background-color: #87CEEB !important; */
    color: #102039 !important;
    font-weight: bold !important;
    margin: 8px 5px;
    padding: 9px 20px !important;
    border-radius: 4px;
}

#appbutton:hover {
    color: #B23A2F !important;
    background: #fff !important;
    box-shadow: 0 0 10px rgba(178, 58, 47,0.5);
}


/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background: #102039;
    color: #ccc;
    padding: 40px 0 20px;
    border-top: 5px solid #FFD700;
    margin-top: 40px;
}
footer h4 { color: #fff; font-weight: bold; margin-bottom: 15px; }
footer li { margin-bottom: 10px; }
.footer-logo { height: 60px; }
.footer-accreditations { text-align: right; }
.footer-accreditations img { height: 80px; margin-left: 10px; }
.footer-bottom { margin-top: 30px; padding-top: 15px; border-top: 1px solid #2a3b56; font-size: 14px; }