﻿
/* ================= RESET ================= */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --primary: #0f4c81;
  --secondary: #ff9933;
  --accent: #1b7bbf;
  --light: #f5f7fa;
     --nav-bg: #50394c;
  --footer-bg: #3e2c23;  /* darker brown */
  --accent: #ff9933;     /* saffron */
}
body
{
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

/* ================= ACCESSIBILITY ================= */
a:focus, button:focus
{
    outline: 3px solid #ff9933;
}

/* ================= CONTAINER ================= */
.container
{
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ================= TOP BAR ================= */
.topbar
{
    background: #f1f1f1;
    font-size: 13px;
    border-bottom: 1px solid #ccc;
}

.topbar-inner
{
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

/* ================= HEADER ================= */
.header
{
    border-bottom: 2px solid #0b3d91;
    padding: 10px 0;
}

.header-inner
{
    display: flex;
    align-items: center;
    gap: 15px;
}

.header img
{
    height: 50px;
}

.site-title
{
    font-size: 20px;
    font-weight: bold;
}

.site-sub
{
    font-size: 13px;
}

/* NAV */.nav
{
     background: var(--nav-bg);
}
.nav-inner
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* HAMBURGER (HIDDEN ON DESKTOP) */.hamburger
{
    display: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}
/* DESKTOP MENU */.menu
{
    display: flex;
    list-style: none;
}
.menu li
{
    position: relative;
}
.menu li a
{
    color: #fff;
    padding: 12px 15px;
    display: block;
    text-decoration: none;
}
.menu li a:hover {
  background: #ff9933;
  color: #fff;
   transform: translateY(-2px);
}
/* DESKTOP SUBMENU */.submenu
{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 200px;
}
.nav-inner .submenu
{
    background: #fff;
}
.nav-inner .submenu li a
{
    color: #000;
}
/* SIDEBAR SUBMENU */.sidebar .submenu
{
    background: #092c6b;
}
.sidebar .submenu li a
{
    color: #fff;
}
.sidebar .menu
{
    display: flex !important;
    flex-direction: column;
}
.submenu li a
{
    color: #000;
}
/* DESKTOP HOVER */@media (min-width:769px)
{
    .menu > li:hover > .submenu
    {
        display: block;
    }

}
.menu li
{
    position: relative;
}
.submenu
{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999; /* 🔥 important */
}
/* ================= SIDEBAR (MOBILE ONLY) ================= *//* OVERLAY */#overlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 998;
}
/* SIDEBAR */.sidebar
{
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #0b3d91;
    color: #fff;
    transition: 0.3s ease;
    z-index: 999;
    padding-top: 20px;
}
.sidebar.active
{
    left: 0;
}
#overlay.active
{
    display: block;
}
/* SIDEBAR MENU */.sidebar .menu
{
    display: flex !important;
    flex-direction: column;
}
.sidebar .menu li
{
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.sidebar .menu li a
{
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
}
/* MOBILE SUBMENU */.sidebar .submenu
{
    position: static;
    display: none;
    background: var(--nav-bg);
}
.sidebar .submenu.open
{
    display: block;
}
/* ================= MOBILE ================= */@media (max-width:768px)
{
    .hamburger
    {
        display: block;
    }
    .nav-inner > .menu
    {
        display: none;
    }
}


/* ================= HERO ================= */
.hero
{
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
  background: linear-gradient(135deg, #50394c, #7a4f6b, #ffb74d);
    position: relative;
    overflow: hidden;
    
}

.hero h1
{
    font-size: 26px;
    margin-bottom: 8px;
}

.hero p
{
    font-size: 14px;
}

/* ================= SECTION ================= */
.section
{
    padding: 25px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

.section h2
{
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #0b3d91;
    padding-left: 10px;
}

/* ================= GRID ================= */
.grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 10px;
}

.card
{
    border: 1px solid #ccc;
    padding: 15px;
    background: #fafafa;
    font-size: 14px;
}

.card:hover
{
    background: #f1f1f1;
}

/* ================= STATS ================= */
.stats
{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
    gap: 10px;
}

.stat
{
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}

.stat h3
{
    color: #0b3d91;
}

/* ================= FOOTER ================= */
.footer
{
    background: var(--nav-bg);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/* ================= MOBILE ================= */
@media (max-width:768px)
{

    .menu
    {
        flex-direction: column;
        display: none;
    }

    .menu.show
    {
        display: block;
    }

    .hamburger
    {
        display: block;
        padding: 10px;
        color: #fff;
        cursor: pointer;
    }

}

.hamburger
{
    display: none;
}
.nav-inner
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HAMBURGER */
/* HAMBURGER */.hamburger
{
    padding: 10px;
    background: #50394c;
    color: #fff;
    cursor: pointer;
}
/* OVERLAY */#overlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 998;
}
/* SIDEBAR */.sidebar
{
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
   background: #50394c;
    color: #fff;
    transition: 0.3s ease;
    z-index: 999;
    padding-top: 20px;
}
/* ACTIVE */.sidebar.active
{
    left: 0;
}
#overlay.active
{
    display: block;
}
/* CLOSE BTN */.close-btn
{
    text-align: right;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}
/* MENU */.sidebar .menu
{
    list-style: none;
}
.sidebar .menu li
{
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.sidebar .menu li a
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
}
/* SUBMENU */.submenu li a
{
    padding-left: 30px;
}
/* OPEN SUBMENU */.submenu.open
{
    display: block;
}
/* ARROW */.arrow
{
    transition: 0.3s;
}
/* ROTATE ANIMATION */.arrow.rotate
{
    transform: rotate(90deg);
}

/* DEFAULT DESKTOP MENU */
.menu
{
    display: flex;
    list-style: none;
}

/* MOBILE */
@media (max-width:768px)
{

    .hamburger
    {
        display: block;
    }

    .menu
    {
        display: none;
        flex-direction: column;
        width: 100%;
         background: var(--nav-bg);
    }

    .menu.show
    {
        display: flex;
    }

    .menu li
    {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .menu li a
    {
        padding: 12px 15px;
    }

    /* SUBMENU MOBILE */
    .submenu
    {
        position: static;
        display: none;
        background: #092c6b;
    }

    .submenu li a
    {
        color: #fff;
        padding-left: 30px;
    }

    .submenu.open
    {
        display: block;
    }
}
/* REMOVE BULLETS */.menu, .submenu
{
    list-style: none;
    padding-left: 0;
    margin: 0;
}
/* MOBILE SUBMENU STYLE IMPROVEMENT */@media (max-width:768px)
{
    .submenu li
    {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .submenu li a
    {
        padding: 12px 15px 12px 30px; /* proper indentation */
        font-size: 14px;
    }
}

.tricolor-strip
{
    height: 4px;
    background: linear-gradient(     to right,     #ff9933 33.33%,     #ffffff 33.33% 66.66%,     #138808 66.66%   );
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.tricolor-gradient
{
    height: 6px;
    background: linear-gradient(     90deg,     #ff9933,     #ffffff,     #138808   );
}
/* TOP BAR */
#accessibility-bar
{
      background: var(--nav-bg);
    color: #fff;
    padding: 5px 10px;
    text-align: right;
}

#accessibility-bar button
{
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
}

/* PANEL */
#accessibility-panel
{
    position: fixed;
    top: 50px;
    right: 20px;
    width: 260px;
    background: #fff;
    border: 1px solid #ccc;
    display: none;
    z-index: 9999;
}

/* HEADER */
.panel-header
{
    background: #0b3d91;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.panel-header span
{
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}
.panel-header span:hover
{
    opacity: 0.7;
}
/* GRID */
.panel-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.panel-grid button
{
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
}

.panel-grid button:hover
{
    background: #eee;
}

/* ACCESSIBILITY MODES */
.high-contrast
{
    background: #000 !important;
    color: #fff !important;
}

.highlight-links a
{
    outline: 2px solid red;
}

.big-text
{
    font-size: 18px;
}

.text-spacing
{
    letter-spacing: 2px;
    line-height: 1.8;
}
.sidebar-box
{
    max-width: 900px;
    margin: 40px auto; /* center */
    text-align: center;
    background: var(--nav-bg);
    padding: 25px;
    border-radius: 12px;
}

.sidebar-title
{
    background: #7b0000;
    color: #fff;
    padding: 8px 10px;
    font-weight: bold;
}

.sidebar-links
{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-links a
{
    text-decoration: none;
    color: #0b3d91;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.sidebar-links a:hover
{
    color: #7b0000;
}
.important-links
{
    display: flex;
    flex-direction: column; /* 🔥 forces vertical */
    gap: 10px;
    padding: 10px;
}


/* CARD */
.link-card
{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.2s;
    width: 100%; /* 🔥 important */
}

/* ICON */
.link-card .icon
{
    font-size: 18px;
}

/* HOVER */
.link-card:hover
{
    background: #eef3ff;
    border-color: #0b3d91;
    color: #0b3d91;
}
/* ROW CONTAINER */
.important-links-row
{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    justify-items: center;
}

.important-links-row::-webkit-scrollbar
{
    display: none;
}

/* MINI CARD */
.mini-card
{
    width: 120px;
    height: 100px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ICON */
.mini-card span
{
    font-size: 20px;
    margin-bottom: 5px;
}

/* TEXT */
.mini-card p
{
    margin: 0;
    font-size: 11px;
}

/* HOVER */
.mini-card:hover
{
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* CLICK EFFECT */
.mini-card:active
{
    transform: scale(0.95);
}

/* 🎨 COLOR VARIATIONS */
.mini-card:nth-child(1)
{
    background: linear-gradient(135deg,#1e90ff,#0073e6);
}

.mini-card:nth-child(2)
{
    background: linear-gradient(135deg,#28a745,#1e7e34);
}

.mini-card:nth-child(3)
{
    background: linear-gradient(135deg,#ff7f50,#ff5722);
}

.mini-card:nth-child(4)
{
    background: linear-gradient(135deg,#6f42c1,#5a32a3);
}

.mini-card:nth-child(5)
{
    background: linear-gradient(135deg,#ffc107,#e0a800);
}

.mini-card:nth-child(6)
{
    background: linear-gradient(135deg,#17a2b8,#117a8b);
}
@media (max-width:768px)
{
    .important-links-row
    {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-card
    {
        width: 100%;
    }
}

/* HERO BASE */
.hero
{
    position: relative;
   
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

/* OVERLAY PATTERN */
.hero-overlay
{
    position: absolute;
    inset: 0;
    opacity: 0.08;
    backdrop-filter: blur(6px);
    
}

/* FLEX */
.hero-flex
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* CONTENT */
.hero-content
{
    max-width: 550px;
}

.hero h1
{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tagline
{
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.desc
{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* BUTTONS */
.hero-buttons
{
    display: flex;
    gap: 12px;
}

.btn
{
    text-decoration: none;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn.primary
{
    background: #ff9933;
    
    font-weight: bold;
     
  color: #fff;
}

.btn.primary:hover
{
    background: #e68a00;
     transform: translateY(-2px);
}

.btn.secondary
{
    border: 1px solid #fff;
    color: #fff;
}

.btn.secondary:hover
{
    background: rgba(255,255,255,0.15);
}

/* IMAGE */
.hero-visual
{
    text-align: center;
      animation: float 4s ease-in-out infinite;
}

.hero-visual img
{
    width: 240px;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
/* LABEL */
.cm-label
{
    margin-top: 12px;
    font-size: 13px;
}

/* DECORATIVE LIGHT GLOW */
.hero::after
{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

/* MOBILE */
@media (max-width: 768px)
{

    .hero-flex
    {
        flex-direction: column;
        text-align: center;
    }

    .hero h1
    {
        font-size: 26px;
    }

    .hero-visual img
    {
        width: 180px;
    }

    .hero-buttons
    {
        justify-content: center;
    }
}
/* WAVE CONTAINER */
.hero-wave
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* SVG */
.hero-wave svg
{
    display: block;
    width: 100%;
    height: 80px;
}

/* COLOR MATCH NEXT SECTION */
.hero-wave path
{
    fill: #ffffff; /* change if next section bg is different */
}
.tribal-separator
{
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

.tribal-separator svg
{
    width: 100%;
    height: 80px;
}
.baiga-strip
{
    width: 100%;
    overflow: hidden;
}

.baiga-strip svg
{
    width: 100%;
    height: 40px;
    display: block;
}
/* SECTION */
.dashboard-section
{
    padding: 40px 0;
    background: #f5f7fb;
}

/* TITLE */
.section-title
{
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
}

/* GRID */
.dashboard-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.dashboard-card
{
     border-radius: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
    
    
}

/* ICON */
.dashboard-card .icon
{
    font-size: 32px;
    margin-bottom: 10px;
}

/* TITLE */
.dashboard-card h3
{
    margin-bottom: 8px;
    font-size: 18px;
}

/* TEXT */
.dashboard-card p
{
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* ACTION LINKS */
.card-actions
{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-actions a
{
    font-size: 13px;
    color: #0b3d91;
    text-decoration: none;
}

.card-actions a:hover
{
    text-decoration: underline;
}

/* BUTTON LINK */
.btn-link
{
    color: #0b3d91;
    font-weight: 500;
    text-decoration: none;
}

.btn-link:hover
{
    text-decoration: underline;
}

/* HOVER EFFECT */
.dashboard-card:hover
{
    transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px)
{
    .dashboard-grid
    {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.info-section
{
    padding: 40px 0;
    background: #ffffff;
}

/* GRID */
.info-grid
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.info-card
{
   border-radius: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.icon {
  font-size: 28px;
  background: linear-gradient(135deg, #ff9933, #ff5722);
  color: white;
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
}
/* ICON */
.info-card .icon
{
    font-size: 28px;
    margin-bottom: 10px;
}

/* TITLE */
.info-card h3
{
    margin-bottom: 10px;
    font-size: 18px;
    color: #0b3d91;
}

/* TEXT */
.info-card p
{
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BUTTON */
.btn-link
{
    text-decoration: none;
    color: #0b3d91;
    font-weight: 500;
}

.btn-link:hover
{
    text-decoration: underline;
}

/* HOVER */
.info-card:hover
{
    background: #f0f4ff;
    border-color: #0b3d91;
}

/* MOBILE */
@media (max-width: 768px)
{
    .info-grid
    {
        grid-template-columns: 1fr;
    }
}

/* BUTTON */
.login-btn
{
    background: #0b3d91;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover
{
    background: #082c6b;
}

/* MODAL BACKGROUND */
.modal
{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* MODAL BOX */
.modal-content
{
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

/* OPTIONS */
.login-options
{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.login-option
{
    padding: 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0b3d91;
    border-radius: 6px;
}

.login-option:hover
{
    background: #f0f4ff;
}

/* CLOSE */
.close-btn
{
    margin-top: 10px;
    border: none;
    background: #ccc;
    padding: 6px 10px;
    cursor: pointer;
}
/* STICKY STATE */
.nav.sticky
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* PREVENT CONTENT JUMP */
.nav-placeholder
{
    height: 50px; /* same as nav height */
    display: none;
}

.nav-placeholder.active
{
    display: block;
}
.ad-section {
  padding: 30px 0;
  background: #f5f7fa;
}

.ad-banner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ad-banner img {
  width: 100%;
  height: auto;
  transition: 0.4s;
}

.ad-banner:hover img {
  transform: scale(1.03);
}
.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  top: 0;
  left: 0;
}

/* TEXT */
.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 500px;
}

.slide-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn.primary {
  background: #D68743;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

/* ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
}

.prev { left: 10px; }
.next { right: 10px; }

.contact-page {
  padding: 40px 0;
  background: #f5f7fa;
}

.page-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
  color: #0b3d91;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* CARD */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* TITLE */
.contact-card h3 {
  color: #0b3d91;
  margin-bottom: 10px;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

/* LABEL */
.contact-card strong {
  color: #000;
}
.report-page {
  padding: 40px 0;
  background: #f5f7fa;
}

/* HEADER */
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.report-header h2 {
  font-size: 24px;
  color: #0b3d91;
}

/* ACTIONS */
.report-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* EXPORT BUTTON */
.export-btn {
  height: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.export-btn:hover {
  transform: scale(1.1);
}

/* TOTAL BOX */
.total-box {
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* CARD */
.report-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.modern-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* HEADER */
.modern-grid th {
  background: #0b3d91;
  color: #fff;
  padding: 12px;
  text-align: left;
}

/* ROWS */
.modern-grid td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* STRIPED */
.modern-grid tr:nth-child(even) {
  background: #f9fbff;
}

/* HOVER */
.modern-grid tr:hover {
  background: #eef3ff;
}
@media (max-width: 768px) {
  .report-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modern-grid {
    font-size: 12px;
  }
}

.breadcrumb {
   background: linear-gradient(90deg, #eef3ff, #f9fbff);
  border-left: 4px solid #ff9933;
  padding: 10px 20px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

.breadcrumb a {
  color: #0b3d91;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
  color: #888;
}

.breadcrumb .active {
  color: #555;
  font-weight: 500;
}

.report-page {
  padding: 40px 0;
  background: #f5f7fa;
}

/* HEADER */
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.report-header h2 {
  font-size: 24px;
  color: #0b3d91;
}

/* ACTIONS */
.report-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.export-btn {
  height: 40px;
  cursor: pointer;
}

/* TOTAL */
.total-box {
  background: #fff;
  padding: 5px 10px;
  border-radius: 8px;
}

/* CARD */
.report-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* FILTER CARD */
.filter-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.input-date {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* BUTTONS */
.btn.primary {
  background: #ff9933;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
}

.btn.secondary {
  background: #ccc;
  padding: 6px 12px;
  border-radius: 6px;
}

/* VALIDATION */
.error {
  color: red;
  font-size: 12px;
}

/* NOTICE LIST */
.notice-list {
  margin-top: 15px;
}

.notice-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 10px;
  align-items: center;
}

.notice-item:hover {
  background: #f9fbff;
}

.bullet {
  color: #ff9933;
}

.notice-link {
  color: #0b3d91;
  text-decoration: none;
}

.notice-link:hover {
  text-decoration: underline;
}

.caption {
  color: #666;
  font-size: 12px;
}
.modern-footer {
  background: linear-gradient(135deg, #2f2230, #50394c);
 color: white;
   padding-top: 60px;
  margin-top: 50px;
   position: relative;
   overflow: hidden;
}
.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;

    background:
linear-gradient(
135deg,
#2b1d2c,
#50394c 55%,
#6b4a65
);

    background-size: 20px 20px;
    background-repeat: repeat-x;

    z-index: 5;
}
.footer-pattern {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size: 60px 60px, 30px 30px;

    opacity: 0.6;

    pointer-events: none;
}
.footer-content {
    position: relative;
    z-index: 2;
}
/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  padding: 0 40px 40px;
}

/* BOX */
.footer-box {
  background: rgba(255,255,255,0.04);

  padding: 28px;

  border-radius: 20px;

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;
}
.footer-box:hover {
  transform: translateY(-4px);

  background: rgba(255,255,255,0.06);
}
/* TITLE */
.footer-box h3,
.footer-box h4 {
  color: #ffb74d;
  margin-bottom: 15px;
}
.footer-box p {
  line-height: 1.9;
  color: #ddd;
}
/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ffb74d;
  padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #bbb;
}
.notice-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin: 20px auto;
}
.Container {
  width: 100%;
  border-collapse: collapse;
}
#gvNewFiles {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}

/* ROW CARD EFFECT */
#gvNewFiles > tbody > tr {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-radius: 12px;
}

/* CELLS */
#gvNewFiles td {
  padding: 15px;
}
#gvNewFiles1 {
  width: 100%;
  border-collapse: collapse;
  background: #f9fbff;
  border-radius: 12px;
  overflow: hidden;
}

/* HEADER */
#gvNewFiles1 th {
  background: #50394c;
  color: #fff;
  padding: 10px;
}

/* ROWS */
#gvNewFiles1 td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* HOVER */
#gvNewFiles1 tr:hover {
  background: #eef3ff;
}
#gvNewFiles1 {
  width: 100%;
  border-collapse: collapse;
  background: #f9fbff;
  border-radius: 12px;
  overflow: hidden;
}

/* HEADER */
#gvNewFiles1 th {
  background: #50394c;
  color: #fff;
  padding: 10px;
}

/* ROWS */
#gvNewFiles1 td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* HOVER */
#gvNewFiles1 tr:hover {
  background: #eef3ff;
}
.GridEmptyRow,
.EmptyDataTemplate {
  color: #d32f2f;
  font-weight: 600;
  padding: 15px;
}
@media (max-width:768px) {

  #gvNewFiles,
  #gvNewFiles1 {
    font-size: 12px;
  }

  .notice-wrapper {
    padding: 15px;
  }

}

.dashboard-page {
  padding: 40px 0;
  background: #fdf7f2;
}

/* HEADER */
.dashboard-header {
  margin-bottom: 30px;
}

.dashboard-header h2 {
  font-size: 30px;
  color: #50394c;
}

.dashboard-header p {
  color: #666;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* CARD */
.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: 0.3s;

  border-left: 5px solid #ffb74d;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.stat-icon {
  font-size: 40px;
}

/* TEXT */
.stat-info h3 {
  font-size: 30px;
  margin: 0;
  color: #50394c;
}

.stat-info p {
  margin: 0;
  color: #666;
}

/* CHART */
.chart-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.stat-card {
  border-left: 5px solid #ffb74d;
}
.stat-info h3 {
  color: #50394c;
}
.stat-info h3 {
  font-size: 32px;
  font-weight: bold;
}

.login-modern-page {
    display: flex;

    justify-content: center;
    align-items: center;

    background:
    linear-gradient(
    135deg,
    #2b1d2c,
    #50394c,
    #7a4f6b
    );

    padding: 30px;
}
.login-modern-card {

    width: 450px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    border:
    1px solid rgba(255,255,255,0.1);

    border-radius: 24px;

    padding: 40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.2);

    color: white;
}
.login-title {

    text-align: center;

    margin-bottom: 30px;

    color: #ffb74d;

    font-size: 30px;
}
.login-modern-card table {
    width: 100%;
}
.login-modern-card td {
    padding: 10px 0;
}
.login-modern-card input[type=text],
.login-modern-card input[type=password],
.login-modern-card select {

    width: 100%;

    padding: 12px;

    border-radius: 10px;

    border:
    1px solid rgba(255,255,255,0.15);

    background:
    rgba(255,255,255,0.08);

    color: white;

    font-size: 15px;
}
.login-modern-card input:focus,
.login-modern-card select:focus {

    outline: none;

    border-color: #ffb74d;

    box-shadow:
    0 0 10px rgba(255,183,77,0.3);
}
.login-modern-card label,
.login-modern-card span,
.login-modern-card td {

    color: #f1f1f1;
}
#Button1 {

    width: 100%;

    background: #ffb74d;

    color: #222;

    border: none;

    padding: 14px;

    border-radius: 12px;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}
#LinkButton1 {

    color: #ffb74d;

    text-decoration: none;

    font-weight: 600;
}
@media (max-width:768px) {

    .login-modern-card {

        width: 100%;

        padding: 25px;
    }

}
.forgot-modern-wrapper {

    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 40px;

    background:
    linear-gradient(
    135deg,
    #2b1d2c,
    #50394c,
    #7a4f6b
    );
}

.forgot-modern-card {

    width: 100%;
    max-width: 520px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(12px);

    border-radius: 24px;

    padding: 35px;

    color: white;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.25);
}

.forgot-header {

    text-align: center;

    margin-bottom: 30px;
}

.forgot-header h2 {

    color: #ffb74d;

    margin-bottom: 10px;
}

.forgot-header p {

    color: #ddd;
}

.modern-form-group {

    margin-bottom: 22px;
}

.modern-form-group label {

    display: block;

    margin-bottom: 8px;

    color: #f5f5f5;

    font-weight: 600;
}

.modern-form-group span {

    color: #ff6b6b;
}

.modern-input {

    width: 100%;

    padding: 12px 14px;

    border-radius: 12px;

    border:
    1px solid rgba(255,255,255,0.15);

    background:
    rgba(255,255,255,0.08);

    color: white;

    font-size: 15px;
}

.modern-input:focus {

    outline: none;

    border-color: #ffb74d;

    box-shadow:
    0 0 10px rgba(255,183,77,0.3);
}

.validator {

    margin-top: 6px;

    font-size: 13px;

    color: #ff8a80;
}

.captcha-card {

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    padding: 20px;

    margin-top: 10px;
}

.captcha-area {

    display: flex;

    align-items: center;

    gap: 15px;

    margin: 15px 0;
}

.captcha-img {

    border-radius: 10px;

    border:
    1px solid rgba(255,255,255,0.12);
}

.refresh-btn {

    width: 50px;

    transition: 0.3s;
}

.refresh-btn:hover {

    transform: rotate(180deg);
}

.forgot-btn-row {

    display: flex;

    gap: 15px;

    margin-top: 30px;
}

.btn-secondary {

    padding: 12px 20px;

    border-radius: 12px;

    border: none;

    background:
    rgba(255,255,255,0.12);

    color: white;

    cursor: pointer;
}

@media (max-width:768px) {

    .forgot-modern-card {

        padding: 25px;
    }

    .forgot-btn-row {

        flex-direction: column;
    }
}
/* UNIVERSAL BUTTON */
.btn-universal {

    display: inline-flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    padding: 12px 24px;

    border: none;

    border-radius: 12px;

    background:
    linear-gradient(
    135deg,
    #ffb74d,
    #f59e0b
    );

    color: #222 !important;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
    0 6px 18px rgba(255,183,77,0.25);

    text-decoration: none;
}
/* ================= FINANCIAL YEAR ALERT ================= */

.fy-alert {

    margin-top: 25px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 18px 20px;

    border-radius: 16px;

    background:
    rgba(255,183,77,0.12);

    border:
    1px solid rgba(255,183,77,0.25);

    backdrop-filter: blur(10px);
}

/* ICON */

.fy-icon {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #ffb74d;

    color: #222;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 22px;

    font-weight: bold;

    flex-shrink: 0;
}

/* TEXT */

.fy-text strong {

    display: block;

    color: #ffcf7d;

    margin-bottom: 6px;

    font-size: 16px;
}

.fy-text p {

    margin: 0;

    color: #f1f1f1;

    line-height: 1.7;

    font-size: 14px;
}

/* OPTIONAL ANIMATION */

.fy-alert {

    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {

    from {

        opacity: 0;
        transform: translateY(10px);
    }

    to {

        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media (max-width:768px) {

    .fy-alert {

        padding: 15px;

        gap: 12px;
    }

    .fy-icon {

        width: 36px;
        height: 36px;

        font-size: 18px;
    }

    .fy-text strong {

        font-size: 15px;
    }

    .fy-text p {

        font-size: 13px;
    }
}

/* YEAR DROPDOWN */

.dropdown {

    width: 100%;

    height: 52px !important;

    padding: 0 15px;

    border-radius: 14px;

    border:
    1px solid rgba(255,183,77,0.5);

    background:
    rgba(255,255,255,0.10);

    color: white;

    font-size: 15px;

    outline: none;

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    cursor: pointer;

    overflow: hidden;

    backdrop-filter: blur(10px);

    background-image:
    url(\"data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>\");

    background-repeat: no-repeat;

    background-position: right 14px center;
}
.dropdown option {

    background: #50394c;

    color: white;
}
.otp-page {

    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 30px;

    background:
    linear-gradient(
    135deg,
    #2b1d2c,
    #50394c,
    #7a4f6b
    );
}
.otp-card {

    width: 100%;
    max-width: 520px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(12px);

    border-radius: 28px;

    padding: 40px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);

    text-align: center;

    color: white;
}
.otp-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #ffb74d,
    #f59e0b
    );

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 42px;

    box-shadow:
    0 10px 25px rgba(255,183,77,0.3);
}
.otp-card h2 {

    color: #ffcf7d;

    margin-bottom: 10px;

    font-size: 32px;
}

.otp-subtitle {

    color: #ddd;

    line-height: 1.7;

    margin-bottom: 25px;
}
.otp-mobile-box {

    padding: 18px;

    border-radius: 18px;

    background:
    rgba(255,183,77,0.12);

    border:
    1px solid rgba(255,183,77,0.2);

    margin-bottom: 25px;
}

.otp-mobile-box span {

    display: block;

    color: #ddd;

    margin-bottom: 8px;
}

.otp-mobile-box strong {

    color: #ffcf7d;

    font-size: 18px;
}
.otp-instructions {

    text-align: left;

    margin-bottom: 25px;
}

.instruction-item {

    padding: 12px 15px;

    margin-bottom: 12px;

    border-radius: 14px;

    background:
    rgba(255,255,255,0.05);

    color: #f1f1f1;

    line-height: 1.7;
}
.otp-input-wrapper {

    margin-bottom: 30px;
}

.otp-input-wrapper label {

    display: block;

    margin-bottom: 12px;

    color: #ffcf7d;

    font-weight: 600;
}

.otp-input {

    width: 220px;

    padding: 16px;

    border-radius: 16px;

    border:
    1px solid rgba(255,183,77,0.3);

    background:
    rgba(255,255,255,0.08);

    color: white;

    font-size: 24px;

    letter-spacing: 8px;

    text-align: center;

    font-weight: bold;
}
.otp-input:focus {

    outline: none;

    border-color: #ffb74d;

    box-shadow:
    0 0 15px rgba(255,183,77,0.3);
}
.otp-validator {

    display: block;

    margin-top: 10px;

    color: #ff8a80;

    font-weight: 600;
}
.otp-btn-row {

    display: flex;

    gap: 15px;

    justify-content: center;

    flex-wrap: wrap;
}
/* ================= SESSION PAGE ================= */

.session-wrapper {

    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 30px;

    background:
    linear-gradient(
    135deg,
    #2b1d2c,
    #50394c,
    #7a4f6b
    );
}

/* CARD */

.session-card {

    width: 100%;
    max-width: 500px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.1);

    border-radius: 28px;

    backdrop-filter: blur(12px);

    padding: 45px 35px;

    text-align: center;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);
}

/* ICON */

.session-icon {

    width: 100px;
    height: 100px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #ffb74d,
    #f59e0b
    );

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 46px;

    box-shadow:
    0 12px 25px rgba(255,183,77,0.35);
}

/* TITLE */

.session-card h2 {

    color: #ffcf7d;

    margin-bottom: 15px;

    font-size: 34px;
}

/* TEXT */

.session-text {

    color: #f1f1f1;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 25px;
}

/* LOGIN LINK */

.session-login-link {

    margin-bottom: 30px;

    color: #ddd;

    font-size: 15px;
}

.session-relogin {

    color: #ffcf7d !important;

    text-decoration: none;

    font-weight: 700;

    margin-left: 5px;

    transition: 0.3s;
}

.session-relogin:hover {

    color: #ffb74d !important;
}

/* BUTTON WRAPPER */

.session-btn-wrap {

    margin-top: 10px;
}

/* MOBILE */

@media (max-width:768px) {

    .session-card {

        padding: 30px 22px;
    }

    .session-card h2 {

        font-size: 28px;
    }

    .session-icon {

        width: 80px;
        height: 80px;

        font-size: 38px;
    }
}