/* ===============================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  max-height: 60px;   /* adjust this value */
  width: auto;
  border-radius: 5px;
}
 .header-logo {
  max-height: 65px;
  width: auto;
}
.date{
    color: #c02f15;
    font-weight: 500;
}
/* ===============================
   PROFILE CARDS
================================ */


.profile-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 8px;
}

.profile-card p {
    font-size: 14.5px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.profile-card a {
    color: #0d6efd;
    font-weight: 500;
    word-break: break-word;
}

@media (max-width: 768px) {
  .header-logo {
    max-height: 45px;
  }
}
 header {
  padding: 10px 0;
}

.header-logo {
  max-height: 55px;
}

body {
    font-family: "Poppins", "Inter", Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: #222;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1180px;
}

/* ===============================
   HEADER / NAVBAR (PIXEL MATCH)
================================ */
header {
    background:#0b2e59;
    border-bottom: 1px solid #ffe217;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-custom h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0b2e59;
    margin-bottom: 0;
}

.navbar-custom ul {
    list-style: none;
    display: flex;
    gap: 26px;
    margin-bottom: 0;
}

.navbar-custom ul li a {
    font-size: 14.5px;
    font-weight: 500;
    color:#c02f15de;
    padding: 4px 0;
    position: relative;
}

.navbar-custom ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c02f15de;
    transition: width 0.3s ease;
}

.navbar-custom ul li a:hover::after {
    width: 100%;
}

/* ===============================
   BANNER (EXACT FEEL)
================================ 
.banner {
    position: relative;
    padding: 120px 20px 110px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 46, 89, 0.82);
}

.banner h1,
.banner p {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.banner p {
    font-size: 17px;
}
*/ 
/* ===============================
   PERFECT RESPONSIVE BANNER
================================ */

.banner {
    width: 100%;
    min-height:  624PX;              /* Better height */
    padding: 100px 20px;            /* Space for text */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

/* Soft professional overlay */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 51, 102, 0.55),
        rgba(0, 0, 0, 0.45)
    );
}

/* Keep text above overlay */
.banner h1,
.banner p {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Heading Style */
.banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.banner p {
    font-size: 20px;
    letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 992px) {
    .banner {
        min-height: 350px;
    }

    .banner h1 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner {
        min-height: 280px;
        padding: 60px 15px;
    }

    .banner h1 {
        font-size: 24px;
    }

    .banner p {
        font-size: 16px;
    }
}

/* ===============================
   SECTIONS (SPACING MATCH)
================================ */
section {
    padding: 75px 0;
}

section:nth-child(even) {
    background: #f6f8fb;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color:#e91b1b;
    margin-bottom: 22px;
}

section p {
    font-size: 15.5px;
    margin-bottom: 14px;
}

/* ===============================
   GRID & CARDS
================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card {
    border: none;
    border-radius: 10px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #0b2e59;
    margin-bottom: 6px;
}

/* ===============================
   LISTS (CFP STYLE)
================================ */
ul {
    padding-left: 18px;
}

ul li {
    font-size: 15px;
    margin-bottom: 7px;
}

/* ===============================
   TABLES (COMMITTEE / FEES)
================================ */
table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

table th {
    background: #0b2e59;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 600;
}

table td {
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 1px solid #ececec;
}

table tr:last-child td {
    border-bottom: none;
}

/* ===============================
   FOOTER
================================ */
footer {
    background: #0b2e59;
    color: #ffffff;
    padding: 32px 0;
    text-align: center;
    font-size: 14px;
}

/* ===============================
   MOBILE MATCH
================================ */
@media (max-width: 768px) {

    .navbar-custom {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
    }

    .navbar-custom ul {
        flex-direction: column;
        gap: 14px;
        margin-top: 10px;
    }

    .banner {
        padding: 90px 20px;
    }

    .banner h1 {
        font-size: 30px;
    }

    section {
        padding: 55px 0;
    }
}

/* ===============================
   CONTRAST TUNING – FINAL
   (Exact academic clarity)
================================ */

/* BODY TEXT – darker, sharper */
body {
    color: #1f2933;           /* darker than before */
    background-color: #ffffff;
}

/* PARAGRAPHS */
section p,
table td,
ul li {
    color: #1f2933;
    font-weight: 400;
}

/* HEADINGS – strong academic blue */
h1, h2, h3, h4,
.section-title {
    color:#e91b1b;
    font-weight: 700;
}

/* NAVBAR LINKS – higher contrast */
.navbar-custom ul li a {
    color: #ffffff;
}

.navbar-custom ul li a:hover {
    color: #ffd900;
}

/* SECTION BACKGROUND – correct gray tone */
section.bg-light {
    background-color: #f3f6fa;   /* NOT faded, exact tone */
}

/* DEFAULT SECTION (force white) */
section {
    background-color: #ffffff;
}

/* CARDS – stronger edge & shadow */
.card {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

/* TABLES – strong separation */
table {
    background: #ffffff;
}

table th {
    background: #0b2e59;
    color: #ffffff;
}

table td {
    color: #1f2933;
}

/* BANNER TEXT – ensure pure white */
.banner h1,
.banner p {
    color: #ffffff;
}

/* REMOVE ANY GLOBAL DIMMING */
* {
    filter: none !important;
    opacity: 1 !important;
}
/* ===============================
   HEADER & NAVBAR
================================ */
header {
  
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* LOGO */
.header-logo {
    height: 48px;
    object-fit: contain;
}

/* NAV MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin-bottom: 0;
}

nav ul li a {
    font-size: 14.5px;
    font-weight: 500;
    color: #0b2e59;
    text-transform: capitalize;
}

nav ul li a:hover {
    color: #0d6efd;
}

/* ===============================
   HAMBURGER MENU
================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 26px;
    background: #ffffff;
    margin-bottom: 5px;
    border-radius: 2px;
}

/* ===============================
   MOBILE NAV
================================ */
@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e6e6e6;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 14px;
    }

    nav ul li a {
        font-size: 15px;
    }
}
/* ===============================
   HEADER LAYOUT
================================ */
.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo-wrap {
    flex: 1;
}

.header-logo {
    height: 48px;
}

/* Nav */
nav {
    flex: 3;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    margin-bottom: 0;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 15px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    margin-bottom: 5px;
    border-radius: 2px;
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 992px) {

    nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e6e6e6;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 14px;
    }

    .menu-toggle {
        display: flex;
    }
}
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .navbar-custom ul {
        display: none;
        width: 100%;
        background:#0b2e59;
    }

    .navbar-custom ul.active {
        display: block;
    }

    .navbar-custom ul li {
        padding: 10px 0;
    }
   @media (max-width: 992px) {
    .navbar-custom ul {
        display: none;
        width: 100%;
        background: #0b2e59;
    }
}
}
.menu-toggle {
   
    flex-direction: column;
    cursor: pointer;
    margin-left: 298px;
    color: whitesmoke;
        position: absolute;
}

