/* ================================
   RESET & GLOBAL
================================ */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    color: #333 !important;
}


img {
    max-width: 100%;
    height: auto;
}

/* ================================
   SKIP LINK
================================ */
/*.skip-link {*/
/*    position: absolute;*/
/*    left: -999px;*/
/*}*/

/*.skip-link:focus {*/
/*    left: 10px;*/
/*    top: 10px;*/
/*    background: #000;*/
/*    color: #fff;*/
/*    padding: 8px;*/
/*    z-index: 9999;*/
/*}*/

/* ================================
   TOP ACCESSIBILITY BAR
================================ */
.top-accessibility-bar {
    background: #3b2f2f;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    font-size: 14px;
    width: 100%;
}

.top-accessibility-bar a {
    color: #fff;
    text-decoration: none;
}

.top-left,
.top-center,
.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================================
   LANGUAGE SWITCHER
================================ */
.mod-languages {
    font-weight: 600;
}

.mod-languages a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.mod-languages a:hover,
.mod-languages .lang-active {
    text-decoration: underline;
}

/* ================================
   FONT CONTROLS
================================ */
.font-controls {
    display: flex;
    /*gap: 6px;*/
}

.font-controls button {
    /*min-width: 36px;*/
    /*min-height: 30px;*/
    /*border: 1px solid #fff;*/
    border: none;
    background: transparent;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}

/* ================================
   TOP LEFT MENU (| separator)
================================ */
.top-left ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
}

.top-left ul li {
    display: flex;
    align-items: center;
}

.top-left ul li:not(:last-child)::after {
    content: "|";
    margin: 0 4px;
    color: #fff;
    opacity: 0.8;
}

.top-left ul li a {
    font-size: 14px;
    white-space: nowrap;
}

/* ================================
   AERB HEADER
================================ */
.aerb-header {
    background: #fff;
    border-bottom: 2px solid #0a8a3a;
    padding: 10px;
    width: 100%;
}

.aerb-header-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}


.aerb-right {
    display: flex;
    align-items: center;
    width: 33%;
       justify-content: flex-end;
}
.aerb-left {
    display: flex;
    align-items: center;
    width: 33%;
}
.aerb-left img {
    height: 100px;
}

.aerb-right img {
    height: 120px;
}

.aerb-center {
    flex: 1;
    text-align: center;
    font-size: 17px;
    color: blue;
    line-height: 1.6;
    padding: 0 10px;
   
}

/* ================================
   NAV / SLIDER / FOOTER
================================ */
.main-nav {
    background: #2f4f6f;
    width: 100%;
}

.slider {
    width: 100%;
}

#main-content {
    padding: 16px;
}

.site-footer {
    background: #012951;
    color: #fff;
    padding: 5px 18px;
}

/* ================================
   RESPONSIVE – TABLET
================================ */
@media (max-width: 992px) {

    .aerb-header-inner {
        flex-direction: column;
        text-align: center;
    }

    .aerb-left,
    .aerb-right {
        justify-content: center;
    }

    .aerb-center {
        font-size: 16px;
        padding: 0;
    }
}

/* ================================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 576px) {

    .top-accessibility-bar {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .top-left,
    .top-center,
    .top-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .aerb-left img {
        height: 60px;
    }

    .aerb-right img {
        height: 65px;
        margin-top: 5px;
    }

    .aerb-center {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 6px;
    }

    .aerb-header {
        padding: 8px;
    }
}


/* ================================
   TOP MAIN MENU (AERB STYLE)
================================ */
.menu-toggle {
    display: none;   /* default: hidden */
}
.main-nav {
    background: #3f3f3f;
    width: 100%;
}

.main-nav ul.mod-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav ul.mod-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* | separator */
.main-nav ul.mod-menu > li:not(:last-child)::after {
    content: "|";
    color: #ffffff;
    margin: 0 14px;
    opacity: 0.6;
}

/* Top level links */
.main-nav ul.mod-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

/* Active top menu */
.main-nav ul.mod-menu > li.active > a,
.main-nav ul.mod-menu > li.current > a {
    color: #f1b84b;
}

/* Dropdown arrow */
.main-nav ul.mod-menu > li.parent > a::after {
    content: " ▾";
    font-size: 12px;
 display:none;
}

/* ================================
   SUB MENU (IMAGE MATCH)
================================ */
.main-nav ul.mod-menu li ul {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
}

/* Show submenu on hover + TAB */
.main-nav ul.mod-menu li:hover > ul,
.main-nav ul.mod-menu li:focus-within > ul {
    display: block;
}

/* Submenu items */
.main-nav ul.mod-menu li ul li {
    position: relative;
}

/* Submenu links */
.main-nav ul.mod-menu li ul li a {
    display: block;
    padding: 12px 16px 12px 22px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
}

/* Left highlight bar */
.main-nav ul.mod-menu li ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: transparent;
}

/* Hover submenu */
.main-nav ul.mod-menu li ul li a:hover,
.main-nav ul.mod-menu li ul li a:focus {
    background: #f2f2f2;
}

/* Active submenu item */
.main-nav ul.mod-menu li ul li.active > a {
    background: #e6e6e6;
    font-weight: 600;
}

.main-nav ul.mod-menu li ul li.active > a::before {
    background: #2f4f6f;
}

/* ================================
   REMOVE SEPARATORS IN SUBMENU
================================ */
.main-nav ul.mod-menu li ul li::after {
    content: none !important;
}


/* ================================
   MOBILE MENU – AERB STYLE
================================ */

/* Hide desktop menu on mobile */
@media (max-width: 992px) {

.menu-mob {
     background-color: #3f3f3f !important;
  
}

.main-nav ul.mod-menu > li:not(:last-child)::after {
    /*content: "|";*/
    /*color: #ffffff;*/
    margin: 0;
    opacity: auto;
    font-weight:800;
}
    .menu-toggle {
        display: block;
        /*position: fixed;*/
        top: 12px;
        left: 12px;        /* ⬅ LEFT SIDE */
        z-index: 11000;
        background: #3b2f2f;
        color: #ffffff;
        border: none;
        font-size: 26px;
        padding: 6px 10px;
        cursor: pointer;
        border-radius: 4px;
    }

.aerb-slide {
    min-width: 100%;
    flex-shrink: 1;
    padding: 5px;
    align-items: center;
}

    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        z-index: 10001;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -4px 0 10px rgba(0,0,0,0.3);
    }

    .main-nav.open {
        right: 0;
    }

    /* Dark overlay */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 10000;
        display: none;
    }

    .menu-overlay.show {
        display: block;
    }

    /* Menu list */
    .main-nav ul.mod-menu {
        flex-direction: column;
        padding: 10px;
    }

    .main-nav ul.mod-menu > li {
        width: 100%;
        border-bottom: 1px dotted #ccc;
        position: relative;
        display: block;
    }

    /* Menu links */
    .main-nav ul.mod-menu > li > a {
        display: block;
        padding: 12px 40px 12px 12px;
        color: #333;
        font-size: 15px;
        text-decoration: none;
    }

    /* Active */
    .main-nav ul.mod-menu > li.active > a {
        background: #e6e6e6;
        font-weight: 600;
    }

    /* + icon */
    .main-nav ul.mod-menu > li.parent::after {
        content: "+";
        position: absolute;
        right: 12px;
        top: 25px;
        transform: translateY(-50%);
        font-size: 20px;
        cursor: pointer;
        color: #000;
    }

    .main-nav ul.mod-menu > li.parent.open::after {
        content: "−";
    }

    /* Submenu */
    .main-nav ul.mod-menu li ul {
        display: none;
        position: static;
        background: #f9f9f9;
        box-shadow: none;
    }

    .main-nav ul.mod-menu li.open > ul {
        display: block;
    }

    .main-nav ul.mod-menu li ul li a {
        padding: 10px 10px 10px 30px;
        font-size: 14px;
        color: #333;
    }
}  
@media (min-width: 993px) {
    .main-nav {
        position: static !important;
        left: auto !important;
        height: auto !important;
    }
}

/* ================================
   BREADCRUMBS
================================ */
.breadcrumbs-wrapper {
    background: #f5f5f5;
    padding: 8px 16px;
    font-size: 14px;
}

.breadcrumbs-wrapper ol,
.breadcrumbs-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs-wrapper li {
    display: inline;
}

.breadcrumbs-wrapper li:not(:last-child)::after {
    content: "›";
    margin: 0 6px;
    color: #666;
}

.breadcrumbs-wrapper a {
    color: #2f4f6f;
    text-decoration: none;
}

.breadcrumbs-wrapper a:hover {
    text-decoration: underline;
}

/* ===== HOME LAYOUT GRID ===== */
.home-layout {
  display: grid;
  grid-template-columns: 30% 1fr 30%;
  gap: 20px;
  margin: 20px 0;
}

/* ===== LEFT PANEL ===== */
.home-left .left-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1e3f5f;
}

/*.home-left li {*/
/*  color: #fff;*/
/*  padding: 12px 15px;*/
  /*border-bottom: 1px solid #2e587e;*/
/*  font-size: 14px;*/
/*}*/

/* ===== CENTER PANEL ===== */
.home-center {
  background: #fff;
}

/*.section-title {*/
/*  font-size: 22px;*/
/*  margin-bottom: 10px;*/
/*}*/



  .section-title {
      margin-top: 0;
      margin-bottom: 16px;
      font-size: 24px;
font-weight:normal;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: "";
      position: absolute;
      left: 0;
      top: 40px;
      width: 20px;
      border-bottom: 2px solid lightgray;
    }
.section-box {
        margin-bottom: 30px;
}
.section-box a {
    color: #01458e;
    text-decoration: none;

}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  /*gap: 6px;*/
  margin-bottom: 12px;
 
}

.news-tabs button {
  padding: 6px 10px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 14px;
}

.news-tabs button.active {
  background: #1e3f5f;
  color: #fff;
}

.news-list {
  list-style: none;
  padding: 10px;
  margin: 0;
   border:1px solid #ccc;
   border-top: 0;
}

.news-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.news-list .date {
  display: block;
  font-weight: 600;
  font-size: 13px;
}

.news-list a {
  display: inline-block;
  margin-top: 4px;
  color: #0645ad;
  text-decoration: none;
  font-size: 14px;
}

.news-list .size {
  font-size: 12px;
  color: #666;
}

.read-more {
  text-align: right;
  margin-top: 10px;
}

/* ===== RIGHT PANEL ===== */
/*.home-right .right-links {*/
/*  list-style: none;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*}*/

/*.home-right li {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.home-right img {*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  object-fit: cover;*/
/*}*/

/* =================================================
   RESPONSIVE BREAKPOINTS
   ================================================= */

/* -------- Tablets -------- */
@media (max-width: 1024px) {
  .home-layout {
    grid-template-columns: 30% 1fr;
  }

  .home-right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .home-right li {
    flex-direction: column;
    text-align: center;
  }

  .home-right img {
    width: 80px;
    height: 80px;
  }
}

/* -------- Mobile -------- */
@media (max-width: 768px) {
  .home-layout {
    grid-template-columns: 1fr;
  }

  .home-left,
  .home-center,
  .home-right {
    width: 100%;
  }

  .news-tabs {
    justify-content: center;
  }

  .news-tabs button {
    font-size: 13px;
  }

  .home-left li {
    font-size: 13px;
  }

  .section-title {
    text-align: center;
  }

  .read-more {
    text-align: center;
  }

  .home-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .home-right img {
    width: 70px;
    height: 70px;
  }
}

/* -------- Small Mobile -------- */
@media (max-width: 480px) {
  .home-right {
    grid-template-columns: 1fr;
  }

  .news-list a {
    font-size: 13px;
  }
}

.home-left {
  font-family: Arial, sans-serif;
}

/***************************************/
/********************** Footer Info *********************************/

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: #fff;
}

.footer-info h4 {
  font-size: 24px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 6px;
  font-weight: 500;
  margin-top:6px;
}

.footer-info ul {
  /*list-style: none;*/
  padding: 10px 20px;
}

.footer-info ul li {
  margin-bottom: 6px;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-info {
    grid-template-columns: 1fr;
  }
}

/* ================================
   GOVERNMENT LOGO STRIP
================================ */

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  width: 100%;
  flex-wrap: nowrap;          /* ⬅ ONE LINE on desktop */
}

.logo {
  flex: 0 0 auto;             /* prevent shrinking */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-height: 80px;           
  width: auto;
  object-fit: contain;
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .logos {
    flex-wrap: wrap;          /* wrap when needed */
    justify-content: center;
  }

  .logo img {
    max-height: 55px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 576px) {
  .logos {
    gap: 0px;
  }

  .logo {
    flex: 0 0 45%;             /* 2 logos per row */
  }

  .logo img {
    max-height: 50px;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 400px) {
  .logo {
    flex: 0 0 100%;            /* 1 per row */
  }
}

/* =================================================
   GOV LOGO STRIP – IMAGE 2 FIX (LIKE IMAGE 1)
   ================================================= */

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  width: 100%;
  flex-wrap: nowrap;
  background: #ffffff;
  padding: 10px 20px;
}

/* Each logo box */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
}

/* Hide any text inside */
.logo span,
.logo p,
.logo a:not(:has(img)) {
  display: none !important;
}

/* Logo images */
.logo img {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
      border: 1px solid #9E9E9E;
}

/* -------- Tablet -------- */
@media (max-width: 992px) {
  .logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo img {
    height: 50px;
  }
}

/* -------- Mobile -------- */
@media (max-width: 576px) {
  .logo {
    flex: 0 0 45%;
  }

  .logo img {
    height: 48px;
  }
}

/* -------- Small Mobile -------- */
@media (max-width: 400px) {
  .logo {
    flex: 0 0 100%;
  }
}
/* =========================================
   FOOTER MENU – GOV STYLE (LIKE IMAGE 1)
========================================= */

.site-footer .mod-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;              /* wrap on small screens */
  gap: 0;
}

/* Menu item */
.site-footer .mod-menu > li {
  display: flex;
  align-items: center;
}

/* Separator | */
.site-footer .mod-menu > li:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
  color: #ffffff;
  opacity: 0.8;
}

/* Links */
.site-footer .mod-menu > li > a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}
.site-footer .mod-custom {
    font-size: 16px;
        max-width: 1120px;
    margin: auto;
}
/* Hover / focus */
.site-footer .mod-menu > li > a:hover,
.site-footer .mod-menu > li > a:focus {
  text-decoration: underline;
}

/* Remove any bullets forced elsewhere */
.site-footer ul li {
  /*list-style: none !important;*/
  font-size:16px;
  line-height: 20px;
}

/* ---------- Mobile ---------- */
@media (max-width: 576px) {
  .site-footer .mod-menu {
    justify-content: center;
  }

  .site-footer .mod-menu > li:not(:last-child)::after {
    margin: 0 8px;
  }
}

/* ===============================
   AERB Latest News Module (Joomla 5)
   =============================== */

.latest-news-box {
       border-top: 1px dashed rgba(0, 0, 0, 1);
    padding: 10px 0;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.news-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    /*border-bottom: 2px solid #e1e1e1;*/
    padding-bottom: 6px;
    color: #000;
      position: relative;
      display: inline-block;
}
 
    .news-title:after {
      content: "";
      position: absolute;
      left: 0;
      top: 40px;
      width: 20px;
      border-bottom: 2px solid lightgray;
    }

/* Tabs */
.news-tabs {
    list-style: none;
    padding: 0;
    margin: 15px 0 10px;
    margin-bottom: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.news-tabs li {
    padding: 8px 14px;
    /*margin-right: 5px;*/
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    color: #000;
}

.news-tabs li.active {
    background: #ffffff;
    font-weight: bold;
}

/* News List */
.news-list {
    margin-top: 0px;
}

.news-item {
    padding: 12px 0;
    border-bottom: 1px solid #ededed;
}

.news-date {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

/* News link */
.news-content a {
    color: #003399;
    font-size: 15px;
    text-decoration: none;
}

.news-content a:hover {
    text-decoration: underline;
}

/* File size */
.file-size {
    font-size: 13px;
    color: #333;
    margin-left: 6px;
}

/* NEW badge */
.new-tag {
    background-color: #ff9800;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 3px;
    vertical-align: middle;
}

/* Read More */
.read-more {
    text-align: right;
    margin-top: 15px;
}

.btn-read {
    display: inline-block;
    border: 1px solid #0b5ed7;
    padding: 6px 14px;
    font-size: 14px;
    color: #0b5ed7;
    text-decoration: none;
    border-radius: 4px;
}

.btn-read:hover {
    background: #0b5ed7;
    color: #ffffff;
}

/* =================================================
   AERB ACCORDION – IMAGE MATCH FIX
   ================================================= */

/* Header exact image look */
/*.accordion-header {*/
/*  background: #1e3f5f !important;*/
/*  color: #ffffff !important;*/
/*  padding: 14px 48px 14px 40px;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  position: relative;*/
/*  border-radius: 0;*/
/*}*/



/* LEFT ORANGE TRIANGLE */
/*.accordion-header::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 12px;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  width: 0;*/
/*  height: 0;*/
/*  border-top: 6px solid transparent;*/
/*  border-bottom: 6px solid transparent;*/
/*  border-left: 8px solid #ff9933;*/
/*}*/

/* RIGHT WHITE ARROW ( > ) */
/*.accordion-header .arrow {*/
/*  position: absolute;*/
/*  right: 16px;*/
/*  top: 50%;*/
/*  width: 8px;*/
/*  height: 8px;*/
/*  border-right: 2px solid #ffffff;*/
/*  border-bottom: 2px solid #ffffff;*/
/*  transform: translateY(-50%) rotate(45deg);*/
/*  transition: transform 0.3s ease;*/
/*}*/

/* OPEN STATE */
/*.accordion-item.open .arrow {*/
/*  transform: translateY(-50%) rotate(-135deg);*/
/*}*/

/* BODY STYLE */
/*.accordion-body {*/
/*  background: #f5f7f9;*/
/*  border-left: 3px solid #1e3f5f;*/
/*  font-size: 14px;*/
/*}*/

/* List inside */
/*.accordion-body li {*/
/*  color: #0645ad;*/
/*  font-size: 14px;*/
/*}*/

/* Remove rounded corners */
/*.accordion-item {*/
/*  border-radius: 0;*/
/*  margin-bottom: 1px;*/
/*}*/
    
/* =================================================
   AERB HOME RIGHT PANEL – IMAGE STYLE LIST
   ================================================= */

.events.small {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each block */
.events.small .event {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px dotted #999;
}

/* Image box */
.events.small .event figure.date {
  flex: 0 0 60px;
  margin: 0;
}

.events.small .event figure.date img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border: 1px solid #ccc;
  background: #fff;
  padding: 2px;
}

/* Content area */
.events.small .event aside {
  flex: 1;
}

/* Title */
.events.small .event header a,
.events.small .event header div {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.events.small .event header a:hover {
  text-decoration: underline;
}

/* Bullet list */
.events.small .event ul.trans {
  margin: 6px 0 0 18px;
  padding: 0;
}

.events.small .event ul.trans li {
  margin-bottom: 4px;
  list-style: disc;
}

/* Links inside list */
.events.small .event ul.trans li a {
  font-size: 14px;
  color: #0645ad;
  text-decoration: none;
}

.events.small .event ul.trans li a:hover {
  text-decoration: underline;
}

/* Remove extra slashes from images */
.events.small .event .month {
  font-size: 0;
}

/* Read more button */
.events.small .btn,
.events.small .sppb-btn {
  margin-top: 6px;
  padding: 5px 10px;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 576px) {
  .events.small .event {
    gap: 10px;
  }

  .events.small .event figure.date {
    flex: 0 0 50px;
  }

  .events.small .event figure.date img {
    width: 48px;
    height: 48px;
  }

  .events.small .event header a,
  .events.small .event header div {
    font-size: 14px;
  }
}


/* ===== INNER PAGE SIDEBAR LAYOUT ===== */
.inner-layout {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.inner-left {
    width: 25%;
}

.inner-content {
    width: 75%;
}


.inner-left ul {
       border: 1px solid rgba(96, 125, 139, 0.29);
       padding: 0 !important;
list-style: none;
}

.inner-left ul li {
    min-height: 3.2em;
    border: 1px solid #fff;
    color: #333 !important;
    font-size: 15px;
    padding: 10px 15px;
    background: radial-gradient(circle at top left, rgba(158, 158, 158, 0.4), rgba(158, 158, 158, 0.28), rgba(158, 158, 158, 0.37));
}
.inner-left ul li.current{
    min-height: 3.2em;
    border: 1px solid #fff;
    color: #333 !important;
    font-size: 15px;
    padding: 10px 15px;
    background: rgba(1, 41, 81, 0.7) !important;
    color: #fff !important;
}

.inner-left ul li.current a {
text-decoration: none;
   color: #fff !important;
}
.inner-left ul li a {
text-decoration: none;
     color: #333 !important;
}



/* Responsive */
@media (max-width: 992px) {
    .inner-layout {
        flex-direction: column;
    }
    .inner-left,
    .inner-content {
        width: 100%;
    }
    .page-header h1 {
         font-size: 25px !important;
    }
}


/*css by adesh */

body { 
       font-family: "Montserrat", sans-serif;
}

.page-header h1 {
    font-weight: 400 !important;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -1px 0px inset;
    color: rgb(1, 69, 142);
    padding-top:0px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 30px;
    margin: 0;
    margin-bottom: 10px;
}
.chairman_left_border {
        border-left: 5px solid rgb(225, 173, 79);
    padding: 15px !important;
}
.img_css_chairman {
    border-radius: 3px;
    width:100%;
}
/*.com-content-article__body h4 {*/
/*      margin:8px ;*/
/*    color: #333;*/
/*}*/

/*.com-content-article__body h5 {*/
/*    margin:8px ;*/
/*    color: #333;*/
/*}*/
/*.com-content-article__body li{*/
/*    margin: 10px 0;*/
/*    text-align: justify;*/
/*      color: #333;*/
/*}*/

/*.com-content-article__body p{*/
/*    margin: 10px 0;*/
/*    text-align: justify;*/
/*    color: #333;*/
/*}*/


.people-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.people-card {
  text-align: center;
  min-height: 395px; 
}
.people-card p {
  text-align: center;
    font-size: 16px;
}

.people-card img {
 box-shadow: 9px 9px 11px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(158, 158, 158, 0.46);
    height: 190px !important;
    width: 180px !important;
}


.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}


.person-card {
  width: calc(25% - 18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: #fff;
  min-height: 300px; 
  box-sizing: border-box;
}


.person-img img {
  width: 180px;
  height: 190px;
  border: 1px solid rgba(158, 158, 158, 0.4);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
}


.person-text {
  text-align: center;
}


.person-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.person-name {
  font-weight: bold;
  font-size: 16px;
margin-top: 15px;
margin-bottom: 0;
color: #333;
}

.people-card1 {
    width:33.33%;
    text-align: center;
}

@media (max-width: 991px) {
  .people-row {
    grid-template-columns: repeat(2, 1fr);
  }
   .person-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .people-row {
    grid-template-columns: 1fr;
  }

  .people-card {
    min-height: auto;   
  }
   .person-card {
    width: 100%;
    min-height: auto;
  }
}





.report_main_div {
    display: flex;
}
.re_img_div {
        width:100%;
        text-align: center;
        text-decoration:none;
}
.report_image {
    width:100%;
    box-shadow: 9px 9px 11px rgba(0, 0, 0, 0.1) !important;
    border-radius: 3PX;
}
.report_content {
    padding-left:30px;
}
.report_content_first {
    margin-top: 0;
    text-align: justify;
    color: #333;
    line-height: 24px;
}
.report_content_first::first-letter {
    color: #666;
    display: block;
    float: left;
    font-size: 50px;
    line-height: 32px;
    padding: 3px 8px 0 0;
}

.table.report_table {
    width:100%;
}
.table.report_table tr td {
   border-top: 1px solid #ddd;
      padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    
    
}
.table.report_table tr td a{
   text-decoration: none;
    color: #23527c;
    
}
.report_pdf_icon {
    background: red;
    width:20px;
    padding: 5px;
   
}
.report_link_div {
     margin-bottom: 20px;
}
.newsletter-style .sppb-blocknumber {
    display: flex;
    align-items: flex-start;
}

.newsletter-style .sppb-blocknumber-number {
    width: 110px;
    height: 110px;
    background: #4f76a1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.newsletter-style .pull-left {
    margin-right: 40px;
}

.newsletter-style .sppb-media-body {
    flex: 1;
}

.newsletter-style .newsletter-item {
    margin-bottom: 16px;
    line-height: 1.8;
}

.newsletter-style {
    margin-bottom: 60px;
}
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
    margin-top: 40px;
}

.newsletter-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.year-circle {
    width: 95px;
    height: 95px;
    background: #4f76a1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.year-content a {
    color: #1a4c8f;
    text-decoration: none;
    font-size: 15px;
}

.year-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .newsletter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
}



.director_div {
  display:flex;
  /*justify-content:space-between;*/
  width:100%;
  flex-wrap:wrap;

}
.col_div_reserch {
       width:33.33%;
}
.director_div .card{
    box-shadow: 9px 9px 11px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(63, 81, 181, 0.34);
    /*padding-bottom: 10px;*/
    min-height: 20em;
    /*margin-bottom: 10px;*/
 
    text-align:center;
   margin:10px;
    padding:10px;
}
.img_div {
    height: 150px;
    width: 150px;
       border: 1px solid rgba(51, 51, 51, 0.23);
       border-radius: 100%;
       margin: auto;
       object-fit: cover;
}

.director_div img
 {
    width:100%;
  object-fit: cover;
     height: 150px;
    width: 150px;
    border-radius: 100%; 
    margin: auto;
}

.director_div h2
 {
    font-size: 20px;
    line-height: 20px;
    color: #01458e;
    font-weight: 500;
}

button.accordion-header.bg_color {
        background-image: linear-gradient(to right, #1e5799 0%, #2989D8 100%, #207CCA 51%, #7db9e8 100%);
        margin-top:1px;
}

button.accordion-header.bg_color:before {
          content: none;
        
}

.accordion-item.open button.accordion-header.bg_color {
    border-left: 4px solid #ff6122 !important;
}
/*--------navbar-css------*/
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    display: block;
    text-decoration: none;
    position: relative;
}

.main-nav li.deeper {
    position: relative;
}

.main-nav .mod-menu__sub {
    display: none;
    background: #ffffff;
    z-index: 9999;
}

.main-nav li.deeper > a {
    padding-right: 28px;
}

.main-nav .mod-menu__sub > li > a {
    border-bottom: 1px solid rgb(229, 229, 229);
}

/* Optional: remove border from last item */
.main-nav .mod-menu__sub > li:last-child > a {
    border-bottom: none;
}

@media (min-width: 992px) {

    .main-nav > ul > li.deeper > .mod-menu__sub {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 260px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    .main-nav .mod-menu__sub .mod-menu__sub {
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 260px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .main-nav li.deeper:hover > .mod-menu__sub {
        display: block;
    }

    .main-nav li.deeper > a::after {
        content: "▶";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 11px;
        opacity: 0.7;
    }

    .main-nav li.deeper:hover > a::after {
        transform: translateY(-50%) rotate(90deg);
        transition: 0.2s ease;
    }
}


@media (max-width: 991px) {

    .main-nav .mod-menu__sub {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .main-nav li.deeper > a::after {
        content: "▼";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 11px;
        opacity: 0.7;
    }
}
@media (max-width: 768px) {

   .col_div {
       width:50%;
}
}
@media (max-width: 550px) {

   .col_div {
       width:100%;
}
}
/* ===== DRO Accordion ===== */

.dro-box {
  margin-top: 20px;
}

/* Blue Heading */
.dro-box summary {
  background: #1f4267;
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

/* Remove default arrow */
.dro-box summary::-webkit-details-marker {
  display: none;
}

/* Right arrow */
.dro-box summary::after {
  content: "›";
  position: absolute;
  right: 18px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.dro-box[open] summary::after {
  transform: rotate(90deg);
}

/* Table area */
.dro-content {
  background: #f5f5f5;
  padding: 15px;
}

/* Table style */
.dro-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.dro-table th,
.dro-table td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
}

.dro-table th {
  background: #e9e9e9;
  text-align: left;
}
/* ===== INDEX A-Z STYLE ===== */

.aerb-az-title {
  font-size: 30px;
  color: #2b78c2;
  margin-bottom: 15px;
}

.aerb-az {
  margin-bottom: 20px;
}

.aerb-az a {
  display: inline-block;
  padding: 4px 8px;
  margin-right: 4px;
  color: #2b78c2;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 14px;
}

.aerb-az a:hover {
  text-decoration: underline;
}

/* active highlight */
.aerb-az a:focus {
  border: 1px solid #f0a64b;
  background: #fff7ec;
  color: #f0a64b;
}

/* section spacing fix */
.aerb-section {
  margin-bottom: 30px;
}

/* list style */
.aerb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 350px;
}

.aerb-list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
}

.aerb-list li a {
  color: #444;
  text-decoration: none;
  padding-left: 18px;
  position: relative;
  display: block;
}

.aerb-list li a::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #2b78c2;
}

.aerb-list li a:hover {
  color: #2b78c2;
}




.gallery-item img {
    max-width: 100%;
    height: 270px;
  display: block;

}
.gallery-section,
.seminar-section {
  padding: 30px 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}


.gallery-item {
  text-align: center;
}

.gallery-item p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.seminar-section h2 {
  text-align: center;
  margin: 30px 0 20px;
}

.single-image {
  text-align: center;
  margin-bottom: 30px;
}

.single-image img {
  max-width: 600px;
  margin: 0 auto;
}

.single-image p {
  margin-top: 10px;
  font-weight: 600;
}


.dignitary-visits {
  padding: 30px 15px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.visit-item {
  text-align: center;
}

.visit-item img {
  width: 100%;
  height: 250px; /* same height for all images */
  object-fit: cover;
  border-radius: 5px;
}

.visit-item p {
  margin-top: 10px;
  text-align: justify;
}



@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-item img {
    height: 200px;
  }
}
/* ===== RULES PAGE (JOOMLA) ===== */

.rules-container{
    font-family: "Noto Sans Devanagari", Mangal, Arial, sans-serif;
    color:#222;
}

.rules-container h2{
    color:#0b5ed7;
    font-size:28px;
    border-bottom:1px solid #e5e5e5;
    padding-bottom:10px;
    margin-bottom:15px;
}

.rules-desc{
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
}

.rules-list{
    list-style:none;
    padding:0;
    margin:0;
}

.rules-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:15px;
}

.rules-circle{
    width:36px;
    height:36px;
    background:#1e88e5;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    margin-right:12px;
    font-size:14px;
}

.rules-text{
    font-size:15px;
    line-height:1.6;
}

.rules-text a{
    color:#0b5ed7;
    text-decoration:none;
}

.rules-text a:hover{
    text-decoration:underline;
}

.pdf-icon{
    color:red;
    margin-left:6px;
}

/* NOTICE */
.notice-title{
    font-size:24px;
    font-weight:bold;
    margin:35px 0 15px;
}

.notice-box{
    border-top:2px solid #f57c00;
    padding-top:15px;
}

.notice-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.notice-box li{
    position:relative;
    padding-left:22px;
    margin-bottom:15px;
    line-height:1.7;
    font-size:15px;
}

.notice-box li::before{
    content:"▶";
    position:absolute;
    left:0;
    top:0;
    font-size:12px;
}

.last-updated{
    text-align:right;
    margin-top:25px;
}

.last-updated span{
    background:#0b5ed7;
    color:#fff;
    padding:6px 12px;
    font-size:13px;
    border-radius:4px;
}
dl.article-info.text-muted {
    display: none;
} 


/* ===== AXRBTABS UNIQUE SYSTEM ===== */

.axrbtabs-wrapper {
  max-width: 900px;
  margin: 40px auto;
}

/* Hide radios */
.axrbtabs-wrapper input[type="radio"] {
  display: none;
}

/* Navigation */
.axrbtabs-nav {
  display: flex;
  flex-wrap: wrap;
}

.axrbtabs-nav label {
  padding: 5px 22px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.axrbtabs-nav label em.fa {
    color: #ff6122;
      background: #FFF;
  padding: 6px;
  margin-right: 5px;
}


/* Active Tab Highlight */
#axrbtabs-1:checked ~ .axrbtabs-nav label[for="axrbtabs-1"],
#axrbtabs-2:checked ~ .axrbtabs-nav label[for="axrbtabs-2"],
#axrbtabs-3:checked ~ .axrbtabs-nav label[for="axrbtabs-3"],
#axrbtabs-4:checked ~ .axrbtabs-nav label[for="axrbtabs-4"] {
border: 1px solid #e1ad4f;
color: #e1ad4f;
}
#axrbtabs-1:checked ~ .axrbtabs-nav label[for="axrbtabs-1"] em.fa,
#axrbtabs-2:checked ~ .axrbtabs-nav label[for="axrbtabs-2"] em.fa,
#axrbtabs-3:checked ~ .axrbtabs-nav label[for="axrbtabs-3"] em.fa,
#axrbtabs-4:checked ~ .axrbtabs-nav label[for="axrbtabs-4"] em.fa {
  background: #ff6122;
  color: #fff;
  padding: 6px;
}

/* Content Area */
.axrbtabs-content {
  background: #f9fbfd;
  padding: 25px;
  line-height: 1.8;
  text-align: justify;
  font-size: 16px;
}

/* Hide all panels */
.axrbtabs-panel {
  display: none;
  animation: axrbtabsFade 0.4s ease-in-out;
}

/* Show active panel */
#axrbtabs-1:checked ~ .axrbtabs-content .axrbtabs-panel:nth-child(1),
#axrbtabs-2:checked ~ .axrbtabs-content .axrbtabs-panel:nth-child(2),
#axrbtabs-3:checked ~ .axrbtabs-content .axrbtabs-panel:nth-child(3),
#axrbtabs-4:checked ~ .axrbtabs-content .axrbtabs-panel:nth-child(4) {
  display: block;
}


.about_font {
    background: #ff6122;
    color: #fff;
    border-radius: 50%;
    padding: 6px;
}
about_heading {
        color: rgba(1, 69, 142, 1);
    font-size: 24px;
    line-height: 24px;
}
/* Animation */
@keyframes axrbtabsFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .axrbtabs-nav {
    flex-direction: column;
  }
}


/* Library Page */ 

.grid_lib {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 80px;
        justify-items: center;
    }

    .card_lib {
        width: 260px;
        background: #f8f8f8;
        text-align: center;
        padding: 35px 20px;
        box-shadow: 0 6px 0 #c9c9c9, 0 8px 12px rgba(0,0,0,0.15);
        transition: 0.3s;
    }

    .card_lib:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 0 #c9c9c9, 0 12px 18px rgba(0,0,0,0.2);
    }

    .number {
        font-size: 42px;
        color: #f39c12;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .label {
        font-size: 20px;
        color: #333;
    }

    @media (max-width: 1100px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* updated on 25-02-2026*/
   .sppb-addon-text a{
       text-decoration:none;
       color: #01458e;
   }
   
   .sppb-addon-content a{
       text-decoration:none;
       color: #01458e;
   }
   
   .sppb-blocknumber-text a {
       text-decoration:none;
       color: #01458e;
   }
   
   li.col-md-12.cloud-service-list {
    border-bottom: 1px solid #e26604;
    width: 83%;
    padding: 13px;
    display: flex;
    align-items: baseline;

}


.sppb-addon .sppb-addon-text-block a{
 text-decoration:none;
       color: #01458e;   
    
}


.cloud-service-list:before {
    font-family: FontAwesome;
    content: "\f0da";
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #01458e;
    font-size: 22px;
    padding-right: 0.5em;
    
}

.bg-primary {
    color: #fff;
    background-color: #337ab7;
}


.contact_info {
    box-shadow: 0px 0px 10px #ccc;
    padding: 10px;
}

.aerb-language-switcher a {
    font-size: 20px;
    font-weight: bold;
}
#mod-finder-searchword112 {
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    height: 25px !important;
    margin-left: 10px;
        
}

#column-wrap-id-83719b55-f07a-414e-8585-c168b90ac8c0  .latest-news-box { 
    border-top: none;
}
.pagenavigation {
    display: none;
}
/*p,span {*/
/*    color: #333 !important;*/
/*}*/

.reserch_div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}
.filter_col {
    width: 25%;
    padding: 10px;
}

.filter_col select {
    display: block;
    height: 34px;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.btn_primary_css {
    border-color: #dda135 !important;
    background-color: #e1ad4f !important;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    color: #fff;
    margin: 10px 0;
}

#cf_2 {
    margin: auto;
}

