
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f1f5f7; /* Background color for the entire website, including individual sections */
  --default-color: #010608; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #011e2c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #04415f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #04415f;  /* The default color of the main navmenu links */
  --nav-hover-color: #2086b8; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #010608; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #04415f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #e6edf0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Inter', sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ffa116;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3e4095;
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

 .top-bar {
             background-color: #e9e9e9;
             color: #000000;
             font-size: 14px;
             border-bottom: 1px solid #b1b1b1;
    }
    .top-bar a {
     border-right: 1px solid #edcdce;
     padding: 0px 7px;
     color: #000000;
     text-decoration: none;
     font-size: 12px;
     line-height: 35px;
     font-weight: bold;
    }
    .top-bar a:hover {
      text-decoration: underline;
    }
    .aws-text {
      color: #f8c200; /* yellow */
      font-weight: bold;
    }
    .icon-btn {
      background: none;
      border: none;
      color: #fff;
      margin: 0 4px;
    }
    .nabi-logo h2 {
    font-size: 19px;
    color: #971b00;
    text-align: center;
    text-decoration: #0d2237;
    font-weight: bold;
    text-shadow: 2px 2px 4px #5448486b;
}
.nabi-logo p{
  color: #007744;
    font-weight: bold;
    line-height: 5px;
}
.header {--background-color: #3e4095;--default-color: #ffffff;--heading-color: #ffffff;color: var(--default-color);background-color: #3e4095;padding: 1px 1px;transition: all 0.5s;z-index: 997;margin-bottom: 2px;}

.header .header-container {
  /*background: color-mix(in srgb, var(--default-color), transparent 97%);*/
  transition: all 0.5s;
  position: relative;
 padding-top: 0px;
    padding-bottom: 0px
}
/* High contrast mode */
.high-contrast-active {
  background: #000 !important;
  color: #fff !important;
}

.high-contrast-active a {
  color: #ff0 !important;
}
.header .logo {
  background: var(--accent-color);
  position: absolute;
  inset: 0 auto 0 0;
  padding: 0 20px;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
            color: #ffffff;
        padding: 9px 14px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        font-family: inherit;
        font-weight: 500;
        outline: none;
        font-size: 13px;
        color: #fff;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #dd980b;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 5px 20px;
        font-size: 14px;
        text-transform: none;
        color: var(--nav-dropdown-color);
        border-bottom: 1px solid #ccc;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #ffa116;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background-color: #01507c;
  font-size: 14px;
  position: relative;
}



.icon-btn {
 border: none;
 background: #fff;
 color: #555;
 border-radius: 50%;
 width: 25px;
 height: 24px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.3s ease;
 box-shadow: 0 2px 6px rgb(0 0 0 / 36%);
}

.icon-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Specific Colors */
.twitter-btn {
  color: #55acee;
}
.twitter-btn:hover {
  background: #55acee;
}

.facebook-btn {
  color: #1877f2;
}
.facebook-btn:hover {
  background: #1877f2;
}

.youtube-btn {
  color: #ff0000;
}
.youtube-btn:hover {
  background: #ff0000;
}

.cloud-icon {
  font-size: 1.6rem;
  color: #f5b400; /* golden yellow */
}


.twitter{
  color: white;
    background: #55acee;
}
.facebook{
  color: white;
    background: #4e71a8;
}
.instagram{
  color: white;
    background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf)
}
.youtube{
  color: white;
    background: #cc0000;
}
.linkedin {
    color: white;
    background: #0076b4}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #971b00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
   .box-icon{
    margin-top: 0px!important;
    }
}

  .box-icon{
    width: 90px;
    height: 89px;
    margin-top: -33px;
    }

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 25px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: 
 color-mix(in srgb, #3e4095, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #3e4095;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 0px;
}


@media (max-width: 992px) {
  .hero .hero-wrapper {
    padding: 100px 0 60px;
    text-align: center;
  }
}


@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2rem;
  }
}
.annual-report-section{
  background-color: #dd980b;
}
.custom-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #fff;
  font-weight: 500;
  padding: 10px 18px;
  transition: all 0.3s ease;
}
.custom-tabs .nav-link.active {
  color: #ffa116;
  border-bottom: 3px solid #ffa116;
  background: none;
}
.custom-tabs .nav-link:hover {
  color: #ffa116;
}
.hover-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.hero .hero-wrapper .hero-content p {
  font-size: 16px;
  line-height: 1.6;
}

.hero .hero-wrapper .hero-content .stats-row {
  display: flex;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item {
  margin-right: 2.5rem;
    border: 1px solid;
    padding: 5px;
    border-radius: 11px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row .stat-item {
    margin: 0 1.5rem 1rem;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #971b00;
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-wrapper .hero-content .action-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .action-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .action-buttons a {
     padding: 6px 19px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s 
ease;
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content .action-buttons a {
    width: 100%;
  }
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary {
  background: #01507c;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary:hover {
  color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-media {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero .hero-wrapper .hero-media .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.hero .hero-wrapper .hero-media .main-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero .hero-wrapper .hero-media .image-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media .image-overlay {
    right: 0;
  }
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited {
  background: #007744;
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited i {
  font-size: 1.3rem;
}


/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .event-item {
  background-color: var(--surface-color);
  overflow: hidden;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
  transition: all 0.3s ease-in-out;
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
    box-shadow: 0px 4px 6px rgb(0 0 0 / 30%);
    padding: 15px 15px 5px 15px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.events .event-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.events .event-item .event-image {
  position: relative;
  overflow: hidden;
}

.events .event-item .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events .event-item .event-image:hover img {
  transform: scale(1.05);
}

.events .event-item .event-image .event-date-overlay {
  position: absolute;
    top: 1px;
    right: 2px;
    background: linear-gradient(135deg, #007744,
 color-mix(in srgb, #007744, #007744 30%));
    color: var(--contrast-color);
    padding: 2px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px 
 color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events .event-item .event-image .event-date-overlay .date {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.events .event-item .event-details {
  padding: 0.2rem;
}

.events .event-item .event-details .event-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.events .event-item .event-details .event-category .badge {
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events .event-item .event-details .event-category .badge.academic {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
  color: #0d47a1;
}

.events .event-item .event-details .event-category .badge.sports {
  background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
  color: #2e7d32;
}

.events .event-item .event-details .event-category .badge.arts {
  background: linear-gradient(45deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.events .event-item .event-details .event-category .badge.community {
  background: linear-gradient(45deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.events .event-item .event-details .event-category .event-time {
font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    background-color: 
 color-mix(in srgb, #240e70, #971b00 90%);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
}
.btn-danger{
  background-color: #971b00;
    color: white;
}
.info{
 letter-spacing: 1px;
 font-size: 0.9em;
 line-height: 15px;
 color: #5543ca;
 background: #5543ca;
 background: -moz-linear-gradient(left, #f4524d 0%, #5543ca 100%) !important;
 background: -webkit-linear-gradient(left, #f4524d 0%, #5543ca 100%) !important;
 background: linear-gradient(to right, #000000 0%, #000000 100%) !important;
 -webkit-background-clip: text !important;
 -webkit-text-fill-color: transparent !important;
 font-weight: bold;
}
.events .event-item .event-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--heading-color);
}

.events .event-item .event-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.events .event-item .event-details .event-info {
  margin-bottom: 1.5rem;
}

.events .event-item .event-details .event-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.events .event-item .event-details .event-info .info-row i {
  font-size: 1rem;
  color: var(--accent-color);
  margin-right: 0.6rem;
  width: 16px;
}

.events .event-item .event-details .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.events .event-item .event-details .event-footer .register-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 20%));
  color: var(--contrast-color);
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.events .event-item .event-details .event-footer .register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events .event-item .event-details .event-footer .event-share {
  display: flex;
  gap: 0.5rem;
}

.events .event-item .event-details .event-footer .event-share i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.events .event-item .event-details .event-footer .event-share i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.events .events-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .events-navigation .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.events .events-navigation .filter-tabs .filter-tab {
  padding: 0.6rem 1.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.events .events-navigation .filter-tabs .filter-tab:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.events .events-navigation .filter-tabs .filter-tab.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .events-navigation .view-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.events .events-navigation .view-calendar-btn i {
  font-size: 1.1rem;
}

.events .events-navigation .view-calendar-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .events .event-item .event-image {
    height: 180px;
  }

  .events .event-item .event-details {
    padding: 1.25rem;
  }

  .events .event-item .event-details .event-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .events .events-navigation .filter-tabs {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .events .events-navigation .view-calendar-btn {
    width: 100%;
    justify-content: center;
  }
  .nabi-logo p {
    line-height: 6px;
    font-size: 12px;
}
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.list-group-item{
  background-color: #ffffff2e;
  color:white;
}


/* for contrtast setting*/



.pagina-acessivel {
  background-color: #000!important;
  color: #FFF;
}

.pagina-acessivel h1, .pagina-acessivel h2, .pagina-acessivel h3, .pagina-acessivel h4 { color: #FFF!important; }

.pagina-acessivel a, .pagina-acessivel a h1, .pagina-acessivel a h2, .pagina-acessivel a h3, .pagina-acessivel a h4, .pagina-acessivel i {
  text-decoration: none;
  color: #FFFF00!important;
}

.pagina-acessivel a:hover { text-decoration: underline; }

.pagina-acessivel .dropdown-menu { border-color: #FFF!important; }

.pagina-acessivel li.active > a { color: #FF0000!important; }

/* ========= Mobile View ========= */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .top-bar .d-flex {
    flex-wrap: wrap;
  }

  .top-bar a {
    font-size: 13px;
  }
.feature-cards-wrapper .feature-card{
  position: relative;
  top: 0px!important;
}
  /* Header */
  .headerBox .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .headerBox .logo {
    flex-direction: column;
    align-items: center;
  }

  .headerBox .logo img {
    height: 70px;
    margin-bottom: 10px;
  }

  .headerBox .nasi-logo h2 {
    font-size: 16px;
    line-height: 1.4;
  }

  .headerBox .d-flex img {
    height: 40px;
    margin: 5px;
  }
}

/* ========= Extra Small (Phones < 480px) ========= */
@media (max-width: 480px) {
  .top-bar a {
    display: inline-block;
    font-size: 14px;
  }

  .headerBox .logo img {
    height: 60px;
  }
}


/* ===== Tablet View ===== */
@media (max-width: 768px) {
  #header-carousel img {
    height: 250px;   /* reduce height for tablets */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-size: 100% 100%;
    position: relative;
        top: -37px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
  #header-carousel img {
    height: 180px;   /* smaller height for phones */
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 40%; /* adjust navigation position */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===== Tablet View ===== */
@media (max-width: 992px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
  .highlights {
    grid-template-columns: 1fr; /* single column */
    gap: 12px;
  }

  .count-box {
    padding: 15px 10px;
  }

  .figure {
    font-size: 16px;
  }

  .text {
    font-size: 13px;
  }
}


.card-box::after {
    display: block;
    position: absolute;
    bottom: -17px;
    left: 20px;
    width: calc(100% - 40px);
    height: 35px;
    background-color: #fff;
    -webkit-box-shadow: 0 19px 28px 5px rgba(64,64,64,0.09);
    box-shadow: 0 19px 28px 5px rgba(64,64,64,0.09);
    content: '';
    z-index: 0;
}
a.card-box {
    text-decoration: none;
}

.card-box {
    position: relative;
    border: 0;
    border-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09);
    box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09);
}
.card-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem;
}

.box-shadow {
    -webkit-box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09) !important;
    box-shadow: 0 12px 20px 1px rgb(64 64 64 / 28%) !important;
}

.card-text {
    padding-top: 12px;
    color: #000000;
}

.text-sm {
    font-size: 13px !important;
}


.card-title {
    margin: 0;
    font-family: "Montserrat",sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #3e4095;
}


.head-icon{
    margin-top: 3px;
    color: #a0292b;
    font-size: 50px;
}
.head-icon:hover{
  color: #2b1674;
}
.card-box:hover {
 
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.welcomehdng {color: #3e4095;font-weight: bold;margin-top: 15px;}
.btn.btn-secondary.readMoreBtn {font-size: 12px; padding: 5px 15px;}
.welcomTxt .card-title {color: #a01b00; font-size: 14px; font-weight: 800; margin-top: 10px;}
.ptb-5 {padding-top: 5rem !important; padding-bottom: 5rem !important;}

.profile-wrapper {
  position: relative;
  display: inline-block;
}

.profile-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.circle-decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

/* Yellow arc */
.circle-1 {
     width: 283px;
    height: 289px;
    top: -6px;
    right: -6px;
    border: 12px solid #a33133;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

/* Teal arc */
.circle-2 {
     width: 287px;
    height: 285px;
    bottom: -5px;
    left: -9px;
    border: 12px solid #3e4095;
    border-top-color: transparent;
    border-right-color: transparent;
}



.navmenu ul ul {
  display: none;
  padding-left: 15px;
}

.navmenu .dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-icon {
  font-size: 18px;
  margin-left: 8px;
  transition: transform .3s ease;
}

.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.footer-full {
    background-color: #3e4095; /* Dark govt blue */
}

.footer-menu li {
    margin: 0 12px;
}

.footer-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    color: #ffdf6c; /* Soft yellow hover */
}

.visitor-box {
    background: #ffb86c; 
    color: #000;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.logo-slider-section {
    background: #f2f2f2;
}

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-track {
    display: flex;
    align-items: center;
    animation: scrollLogos 25s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 50px;
}

.logo-item img {
    height: 80px;
    object-fit: contain;
    filter: brightness(0.95);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-card {
    height: 230px;
  }

  .gallery-img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
  }

  .gallery-card:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(0.8);
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 100%;
    padding: 8px 12px;
    font-size: 15px;
    text-align: center;
  }
  .tc{
    text-align: -webkit-center;
  }