    /* ===================================================
       CSS VARIABLES & BASE RESET
       =================================================== */
    @font-face {
      font-family: 'Raleway';
      font-style: normal;
      font-weight: 400;
      src: local('Raleway Regular'), local('Raleway-Regular'),
           url('/assets/fonts/raleway/Raleway-VariableFont_wght.ttf') format('truetype');
		/* url('/assets/fonts/raleway/Raleway-Italic-VariableFont_wght.ttf') format('truetype'); */
      font-display: swap;
    }
    @font-face {
    font-family: 'Raleway';
    src: local('Raleway Variable'), local('Raleway-Variable'),
         url('/assets/fonts/raleway/Raleway-VariableFont_wght.ttf') 
         format('truetype-variations');
    font-weight: 100 900; /* Weight range supported by the variable font */
    font-style: normal;
    font-display: swap;
  }
    :root {
      --primary: #004b7c;
      --primary-dark: #003864;
      --primary-light: #0071b9;
      --secondary: #23a362;
      --secondary-light: #3ebd7e;
      --background: #f9fafb;
      --surface: #ffffff;
      --text-primary: #202124;
      --text-secondary: #5f6368;
      --text-light: #ffffff;
      --border: #e0e0e0;
      --divider: #e8eaed;

      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 1.5rem;
      --spacing-lg: 2.5rem;
      --spacing-xl: 4rem;

      --font-family: 'Raleway', sans-serif;
      --fs-xs: 0.75rem;
      --fs-sm: 0.875rem;
      --fs-base: 1rem;
      --fs-md: 1.125rem;
      --fs-lg: 1.25rem;
      --fs-xl: 1.5rem;
      --fs-2xl: 2rem;
      --fs-3xl: 2.5rem;
      --fs-4xl: 3rem;

      --transition: 0.3s ease;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.08);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;

      --header-height: 80px;
      --max-width: 1400px;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: var(--font-family);
      font-size: var(--fs-base);
      line-height: 1.6;
      color: var(--text-primary);
      background-color: var(--background);
      overflow-x: hidden;
    }
    a {
      color: var(--primary);
      text-decoration: none;
      transition: color var(--transition);
    }
    a:hover {
      color: var(--primary-light);
    }
    h1, h2, h3, h4, h5, h6 {
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 1rem;
    }
    p {
      margin-bottom: 1.2rem;
    }
    .container-fluid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--spacing-md);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.75rem;
      font-weight: 500;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      transition: all var(--transition);
      cursor: pointer;
    }

	.financial-container {
		overflow-x: auto;
		padding-bottom: 0.5rem;
	}

	#fin-cont {
		min-width: 500px;
	}

	.ceovid {
		min-width: 380px;
		width: 100%;
		border: thin #CCC solid;
	}
	
	.gglt {
		display: none;
		visibility: hidden;
	}

	.gtmnoscript {
		display: none;
		visibility: hidden;
	}

    /* ===================================================
       BUTTON STYLES
       =================================================== */
    .btn-primary {
      background-color: var(--primary);
      color: var(--text-light);
    }
    .btn-primary:hover {
      background-color: var(--primary-dark);
      color: var(--text-light);
      transform: translateY(-3px);
      box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    }
    .btn-outline {
      background-color: transparent;
      color: var(--text-light);
      border-color: var(--text-light);
    }
    .btn-outline:hover {
      background-color: var(--text-light);
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    }
    .btn-secondary {
      background-color: var(--secondary);
      color: var(--text-light);
    }
    .btn-secondary:hover {
      background-color: var(--secondary-light);
      color: var(--text-light);
      transform: translateY(-3px);
      box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    }
/* ===================================================
   HEADER & NAVIGATION STYLES
   =================================================== */

/* -----------------------
   Header Container
----------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* -----------------------
   Top Bar
----------------------- */
.header-top {
  background-color: var(--primary);
  padding: 8px 0;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-logo img {
  height: 65px;
}

.header-top-links {
  display: flex;
  gap: var(--spacing-md);
}

.header-top-link {
  color: var(--text-light);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-top-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Show Français on mobile */
.header-top-mobile-fr {
  display: none;
}
@media (max-width: 991px) {
  .header-top-links {
    display: none !important;
  }
  .header-top-mobile-fr {
    display: block !important;
  }
}

/* -----------------------
   Skip to Main Content
----------------------- */
#skipTo {
  margin: 0;
  padding-left: 0;
  color: #fff;
}

#skipTo a,
#skipTo a:hover,
#skipTo a:visited {
  position: absolute;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: #fff;
}

#skipTo a:active,
#skipTo a:focus {
  position: static;
  width: auto;
  height: auto;
  color: #fff;
}

/* -----------------------
   Main Header & Logo
----------------------- */
.header-main {
  transition: all var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.header-logo {
  z-index: 2;
  padding: 0.75rem 0;
}
.header-logo .desktop-logo {
  height: 45px;
  transition: all var(--transition);
  display: block;
}
.header-logo .mobile-logo {
  height: 40px;
  display: none;
}
.header.scrolled .header-logo .desktop-logo {
  height: 45px; /* remain 45px */
}
@media (max-width: 991px) {
  .header-logo .desktop-logo {
    display: none;
  }
  .header-logo .mobile-logo {
    display: block;
  }
}

/* -----------------------
   Desktop Navigation
----------------------- */
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-md);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Top-level navigation link */
.nav-link {
  font-weight: 500;
  color: var(--text-light);
  padding: 0.5rem 0;
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--text-primary);
}

/* Underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 7px; /* original = bottom: 0; - changes with line 409  */
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-light);
  transition: width var(--transition);
}

.header.scrolled .nav-link::after {
  background-color: var(--primary);
}

/* Hover & focus states for nav links */
.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  outline: none;
}
.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link:focus {
  color: var(--text-light);
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link:focus {
  color: var(--primary-dark);
}
/* Keep parent link blue when dropdown is open or being interacted with */
.header.scrolled .nav-item:focus-within > .nav-dropdown-toggle,
.header.scrolled .nav-item:hover > .nav-dropdown-toggle {
  color: var(--primary-dark);
}
.header-nav .nav-item:hover > .nav-link::after,
.header-nav .nav-item.active > .nav-link::after,
.header-nav .nav-item:focus-within > .nav-link::after {
  width: 100%;
}

/* Dropdown toggle arrow */
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform var(--transition);
}
.nav-item:hover .nav-dropdown-toggle i,
.nav-dropdown-toggle:focus-within i {
  transform: rotate(180deg);
}

/* -----------------------
   Dropdown Menu
----------------------- */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 240px;
  background-color: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  padding: 0.5rem 0;
  margin-top: 0.5px; /* original = margin-top: 0.5rem; - changes with lines 350  */
  border: 1px solid var(--border);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-header {
      padding: 0.5rem 1rem;
      font-weight: 600;
      color: var(--primary);
      border-bottom: 1px solid var(--divider);
      margin-bottom: 0.5rem;
    }
    .nav-dropdown-link {
      display: block;
      padding: 0.5rem 1rem;
      color: var(--text-primary);
      transition: all var(--transition);
    }
    .nav-dropdown-link:hover, .nav-dropdown-link:focus, .nav-dropdown-link:active {
      background-color: rgba(0, 75, 124, 0.05);
      color: var(--primary);
      padding-left: 1.25rem;
    }
/* When dropdown is open, make the nav link text blue */
.nav-item.nav-open .nav-link {
    color: #007bff !important; /* Blue color */
}

/* Or use a more specific selector */
.nav-item.nav-open .nav-dropdown-toggle {
    color: #007bff;
}


/* -----------------------
   Mobile Navigation
----------------------- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: color var(--transition);
}
.header:not(.scrolled) .mobile-toggle {
  color: #ffffff !important;
}
.header:not(.scrolled) .mobile-logo {
  filter: invert(1);
}
.header.scrolled .mobile-logo {
  filter: none;
}
@media (max-width: 991px) {
  .mobile-toggle {
    display: block !important;
  }
  .header-nav {
    display: none;
  }
}

/* Mobile Menu Overlay & Container */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--surface);
  z-index: 1001;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: block;
}
.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--divider);
}
.mobile-menu-header img {
  height: 36px;
}
.mobile-menu-header .menu-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* Mobile Menu Body & Navigation List */
.mobile-menu-body {
  padding: 1rem;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--divider);
}
.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--fs-lg);
  cursor: pointer;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: var(--primary);
}

/* Mobile dropdown toggle */
.mobile-nav-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
/* .mobile-nav-toggle.active i::before {
  content: "\f068" !important;
  font-family: "bootstrap-icons" !important;
} */

/* Mobile Dropdown Menu */
.mobile-dropdown {
  background-color: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-dropdown.active {
  max-height: 500px;
}
.mobile-dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-size: var(--fs-md);
}
.mobile-dropdown-link:hover,
.mobile-dropdown-link:focus {
  color: var(--primary);
  background-color: #f1f1f1;
  text-decoration: none;
}


    /* --- Mobile Scroll Indicator for Charts --- */
    .mobile-scroll-indicator {
      text-align: center;
      color: var(--text-secondary);
      font-size: var(--fs-sm);
      margin-top: 0.5rem;
      margin-bottom: 1rem;
    }
    .mobile-scroll-indicator i {
      animation: scroll-hint 1.5s infinite;
      display: inline-block;
    }
    @keyframes scroll-hint {
      0% { transform: translateX(0); }
      50% { transform: translateX(5px); }
      100% { transform: translateX(0); }
    }
    
/* ---------------------------------------------------
   Remove mobile menu elements on desktop viewports
---------------------------------------------------- */
@media (min-width: 992px) {
  #mobileToggle,
  #mobileOverlay,
  #mobileMenu {
    display: none !important;
  }
}


    /* ===================================================
       RESPONSIVE LAYOUTS (Newsletter, etc.)
       =================================================== */
    @media (max-width: 991px) {
      .newsletter-container {
        display: flex;
        flex-direction: column;
      }
          .newsletter-image {
        order: 1;
       margin-top: 0; /* optional */
      }
      .newsletter-content {
        order: 2;
      }
  
    }
    @media (max-width: 991px) {
      .chart-container. chart-scrollable {
        min-height: 500px;
        overflow-x: auto;
      }
    }

    /* ===================================================
       HERO SECTION (Slideshow)
       =================================================== */
    .hero-section {
      position: relative;
      height: 70vh;
      min-height: 400px; /*  min-height: 700px; - ORIGINAL can also use 300px  */
      max-height: 600px; /* max-height: 900px; - ORIGINAL can also use 500px  */
      background-color: var(--primary-dark);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

	@media (max-width: 991px) {
		.hero-section {
		  position: relative;
		  /*height: 70vh;*/
		  min-height: 600px; /*  min-height: 700px; - ORIGINAL  */
		  max-height: 800px; /* max-height: 900px; - ORIGINAL  */
		  background-color: var(--primary-dark);
		  overflow: hidden;
		  display: flex;
		  align-items: center;
		}
	}

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .hero-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 59, 100, 0.8) 0%, rgba(0, 59, 100, 0.6) 100%);
      z-index: 1;
    }
    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .hero-slide {
	  position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease;
      z-index: 0;
    }
    .hero-slide.active {
      opacity: 1;
    }
    .hero-slide:nth-child(1) {
      background-image: url('../images/Summer.jpg');
    }
    .hero-slide:nth-child(2) {
      background-image: url('../images/summer17.jpg');
    }
    .hero-slide:nth-child(3) {
      background-image: url('../images/summer18.jpg');
    }
	/* Show or Hide depending on the number of pictures you want to show, add pictures names - Also do the same on /main.html on line 366  */
	.hero-slide:nth-child(4) {
      background-image: url('../images/summer2.jpg');
    }
    .hero-slide:nth-child(5) {
      background-image: url('../images/summer3.jpg');
    }
    .hero-slide:nth-child(6) {
      background-image: url('../images/summer4.jpg');
    }
    .hero-shape {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      z-index: 2;
    }
    .hero-shape svg {
      display: block;
      width: 100%;
      height: auto;
      fill: var(--surface);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      color: var(--text-light);
    }
    .hero-row {
      display: flex;
      align-items: center;
    }
    .hero-text {
      max-width: 800px; /* changed - max-width: 600px;   */
    }
    .hero-subtitle {
      font-size: var(--fs-lg);
      margin-bottom: 1rem;
      opacity: 0.9;
      font-weight: 400;
    }
    .hero-title {
      font-size: var(--fs-4xl);
      font-weight: 700;
	  margin-top: 3.5rem; /* Added new line to increase to margin from changes on lines 661 and 662  */
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .hero-description {
      font-size: var(--fs-md);
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    .hero-buttons {
      display: flex;
      gap: 1rem;
    }

    /* ===================================================
       STATS COUNTER
       =================================================== */
    .stats-counter {
      margin-top: -100px;
      position: relative;
      z-index: 10;
      margin-bottom: 50px;
    }
    .stats-block {
      background-color: var(--surface);
      padding: 2.5rem 2rem;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      margin-bottom: 30px;
    }
    .stats-item {
      text-align: center;
    }
    .stats-icon {
      margin-bottom: 1rem;
    }
    .stats-icon i {
      font-size: 2.5rem;
      color: var(--primary);
    }
    .stats-number {
      font-size: var(--fs-3xl);
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--primary);
      line-height: 1.2;
    }
    .stats-text {
      font-size: var(--fs-md);
      color: var(--text-secondary);
      margin-bottom: 0;
    }

    /* ===================================================
       SECTION LAYOUT / HEADERS
       =================================================== */
    .section {
      padding: 2rem 0;
    }
    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    .section-subtitle {
      font-size: var(--fs-md);
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .section-title {
      font-size: var(--fs-3xl);
      margin-bottom: 1rem;
      position: relative;
      padding-bottom: 1.25rem;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary);
    }
    .section-description {
      font-size: var(--fs-lg);
      color: var(--text-secondary);
    }

    /* ===================================================
       NEWSLETTER SECTION
       =================================================== */
    .newsletter-section {
      position: relative;
      padding: 1rem 0.75rem 2rem 0; /* Use when 1 item in What's New */
	  /*padding: 5rem 0;*/ /* Use when 2 items in What's New */
      overflow: hidden;
      margin-bottom: 0;
    }
    .newsletter-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--background);
      z-index: -1;
    }
    .newsletter-shape {
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background-color: var(--primary);
      clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
      opacity: 0.05;
      z-index: -1;
    }
    .newsletter-container {
      display: flex;
      align-items: center;
      gap: 3rem; /* To increase gap between image and right content i.e. GB Presentation */
	  /*gap: 1rem;*/ /* for Newsletter, for Video gap: 0 */
      flex-wrap: wrap;
    }
    .newsletter-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .newsletter-image img {
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      transition: transform var(--transition);
    }
    .newsletter-image img:hover {
      transform: scale(1.02);
    }
    .newsletter-content {
      flex: 1;
    }
    .newsletter-title {
      font-size: var(--fs-2xl);
	  margin-bottom: 1rem; /* use when linking to Newsletter or Presentation popup */
      /*margin-bottom: -1.5rem;*/ /* use when video is embedded  */
      color: var(--primary);
    }
    .newsletter-meta {
      font-size: var(--fs-sm);
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
    }

    /* ===================================================
       WHAT'S NEW SECTION
       =================================================== */
    .whats-new-section {
      position: relative;
      padding: 5rem 0;
      margin-top: 0;
    }
    .whats-new-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--primary);
      opacity: 0.03;
      z-index: -1;
    }
    .whats-new-container {
      background-color: var(--surface);
      border-radius: var(--radius-md);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
      position: relative;
      z-index: 1;
      height: 100%;
    }
    .whats-new-header {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
    }
    .whats-new-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-right: 1rem;
    }
    .whats-new-title {
      font-size: var(--fs-2xl);
      margin-bottom: 0;
      color: var(--primary);
    }
    .whats-new-items {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .whats-new-item {
      background-color: #f8f9fa;
      border-left: 4px solid var(--primary);
      padding: 1rem 1.5rem;
      border-radius: var(--radius-md);
      position: relative;
    }
    .whats-new-date {
      font-size: var(--fs-md);
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 0.25rem;
    }
    .whats-new-subtitle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.25rem;
      font-size: var(--fs-base);
      font-weight: 600;
      color: #222;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.5rem;
      background-color: #dc3545;
      color: #ffffff;
      font-size: var(--fs-xs);
      border-radius: 3px;
      font-weight: 600;
    }
    .whats-new-link {
      font-size: var(--fs-sm);
      display: inline-block;
      margin-top: 0.3rem;
      color: var(--primary);
      transition: color var(--transition);
    }
    .whats-new-link:hover {
      color: var(--primary-light);
      text-decoration: underline;
    }

    /* ===================================================
       BORROWING PROGRAM SECTION
       =================================================== */
    .borrowing-section {
      position: relative;
      padding: 1rem 0;
      background-color: var(--surface);
    }
    .borrowing-container {
      border-radius: var(--radius-md);
      padding: 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    .borrowing-header {
      background-color: var(--primary);
      padding: 1.5rem 2rem;
      color: var(--text-light);
      border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .borrowing-title {
      font-size: var(--fs-xl);
      margin-bottom: 0;
      text-align: center;
    }
    .borrowing-body {
      paddin: 0.5rem;
    }
    .borrowing-widget {
      background-color: #f8f9fa;
      border-left: 4px solid var(--primary);
      padding: 1rem 1.5rem;
      border-radius: var(--radius-md);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
	  width: 100%;
	  max-width: 460px;
	  margin: auto;
    }
    .borrowing-widget-title {
      font-size: var(--fs-base);
      font-weight: 600;
      color: var(--primary);
	  padding-top: 5px;
    }
    .borrowing-widget-value {
      font-size: var(--fs-lg);
      font-weight: 700;
      color: #000;
    }

/* Further Borrowing Program responsiveness */
	.borrowing-widget {
      display: flex;
      align-items: flex-start;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    .borrowing-widget-title {
      font-size: 1rem;
    }
    .borrowing-widget-value {
      font-size: 1.4rem;
    }


    /* Donut row (chart + legend) */
    .donut-row {
      display: block;
      flex-wrap: wrap;
      margin-bottom: 1rem;
	  align-content: center;
    }
    .donut-col-left {
      display: block;
      max-width: 65%;
	  box-sizing: border-box;
	  margin: auto;
    }
    .donut-col-right {
      display: block;
      max-width: 100%;
	  box-sizing: border-box;
	  text-align: center;
      font-size: 1rem;
      line-height: 1.6;
      padding: 1rem;
    }

	/* Pie chart container */
    .chart-container {
      position: relative;
      margin-bottom: 0.5rem;
      /*min-height: 340px;*/ /*original height*/
	  min-height: 400px;
	  /* added this on Sep 25 2025 */
	  width: 100%;
      max-width: 840px;
      margin: 0 auto;
	  margin-bottom: 15px;
    }

/* Added Sep 25, 2025 */
@media screen (min-width: 991px) (orientation: portrait) {
	.chart-container {
        min-height: 500px;
		width: 600px;
		margin: 0 auto;
		padding: 0;
		margin-bottom: 15px;
      }
}


/* Further Borrowing Program / Donut Chart responsiveness */
    .chart-note {
      font-size: 0.95rem;
      color: var(--text-primary);
      margin-top: 0.2rem;
      margin-bottom: 0.2rem;
    }

	.chart-note-pie {
      font-size: 0.95rem;
      color: var(--text-primary);
      margin-top: 0.2rem;
      margin-bottom: 0.2rem;
	  text-align: center;
    }

	@media (max-width: 991px) {
      .donut-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .donut-col-left,
      .donut-col-right {
        max-width: 100%;
        text-align: center;
      }
      .chart-container {
        min-height: 440px;
		width: 340px;
		margin: 0 auto;
		padding: 0;
      }
      .donut-col-right li {
        font-size: 1.2rem;
      }
    }

    /* ===================================================
       SUSTAINABLE SECTION (Video BG)
       =================================================== */
    .sustainable-section {
      position: relative;
      padding: 4.2rem 0;
      color: var(--text-light);
      overflow: hidden;
      background-color: var(--primary-dark);
    }
    .sustainable-bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }
    .sustainable-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,75,124,0.35) 0%, rgba(0,75,124,0.15) 100%);
    }
    .sustainable-content {
      position: relative;
      z-index: 1;
    }
    .sustainable-title-small {
      font-size: var(--fs-lg);
      margin-bottom: 0.5rem;
      opacity: 0.9;
    }
    .sustainable-title {
      font-size: var(--fs-3xl);
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 1.5rem;
    }
    .sustainable-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 3px;
      background-color: var(--secondary);
    }
    .sustainable-text {
      font-size: var(--fs-lg);
      max-width: 600px;
      margin-bottom: 2rem;
      opacity: 0.9;
      line-height: 1.7;
    }

    /* ===================================================
       INSIGHTS SECTION
       =================================================== */
    .insights-section {
      padding: 5rem 0;
      background-color: var(--background);
      position: relative;
      overflow: hidden;
    }
    .insights-shape {
      position: absolute;
      top: 0;
      left: 0;
      width: 40%;
      height: 100%;
      background-color: var(--primary);
      clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
      opacity: 0.03;
      z-index: 0;
    }
    .insights-container {
      background-color: var(--surface);
      border-radius: var(--radius-md);
      padding: 2.5rem 2.5rem 1.0rem 2.5rem; /* original only 2.5rem */
      box-shadow: var(--shadow-md);
      height: 100%;
      position: relative;
      /*z-index: 1;*/
    }
    .insights-title {
      font-size: var(--fs-xl);
      color: var(--primary);
      margin-bottom: 1.5rem;
      text-align: center;
      position: relative;
      padding-bottom: 1rem;
    }
    .insights-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary);
    }
    .insights-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      margin-top: 1.5rem;
    }
    .insights-table th,
    .insights-table td {
      padding: 0.75rem 1rem;
      text-align: left;
    }
    .insights-table th {
      background-color: var(--primary);
      color: var(--text-light);
      font-weight: 500;
    }
    .insights-table td {
      border-bottom: 1px solid var(--divider);
    }
    .insights-table tr:last-child td {
      border-bottom: none;
    }

	.insights-table2 {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      margin-top: 1.5rem;
    }
    .insights-table2 th {
      padding: 0.75rem 1rem;
      text-align: left;
    }
    .insights-table2 td {
      padding: 0.75rem 1rem;
      text-align: center;
    }
    .insights-table2 th {
      background-color: var(--primary);
      color: var(--text-light);
      font-weight: 500;
    }
	.insights-table2 .ver {
      background-color: transparent;
      color: var(--primary);
      font-weight: 500;
	  border-bottom: 1px solid var(--divider);
    }
	.insights-table2 .verlast {
      background-color: transparent;
      color: var(--primary);
      font-weight: 500;
	  border-bottom: none;
    }
    .insights-table2 td {
      border-bottom: 1px solid var(--divider);
    }
    .insights-table2 tr:last-child th, .insights-table2 tr:last-child td {
      border-bottom: none;
    }

    /* ===================================================
       CONNECT SECTION (Social Media)
       =================================================== */
    .connect-section {
      background-color: #f7f8fa;
      padding: 5rem 0;
    }
    .connect-section .container-fluid {
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .connect-container {
      background-color: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      padding: 2rem;
      display: flex;
      gap: 2rem;
      align-items: center;
      margin-top: 2rem;
    }
    @media (max-width: 991px) {
      .connect-container {
        flex-direction: column;
     
      }
    }
    .connect-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .connect-image img {
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .connect-image img:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-md);
    }
    .connect-content {
      flex: 1;
      max-width: 600px;
      margin: auto 0;
    }
    .connect-title {
      font-size: var(--fs-2xl);
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }
    .connect-content p {
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .connect-content ul {
      margin-left: 1.2rem;
      margin-bottom: 1rem;
    }
    .connect-content li {
      margin-bottom: 0.5rem;
    }
    .connect-content a {
      color: var(--primary);
      text-decoration: none;
      transition: color var(--transition);
    }
    .connect-content a:hover {
      text-decoration: underline;
    }
    .connect-content .text-muted {
      font-size: var(--fs-sm);
      color: var(--text-secondary);
    }

    /* ===================================================
       FOOTER
       =================================================== */
    .footer {
      background-color: var(--primary-dark);
      color: var(--text-light);
      padding: 5rem 0 2rem;
      position: relative;
      overflow: hidden;
    }
    .footer-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background-image: linear-gradient(to right, rgba(0,59,100,0) 0%, rgba(0,59,100,0.3) 100%);
      clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
      z-index: 0;
    }
    .footer-logo {
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }
    .footer-logo img {
      height: 45px;
      filter: none;
    }
    .footer-description {
      max-width: 400px;
      margin-bottom: 2rem;
      opacity: 0.8;
      position: relative;
      z-index: 1;
    }
    .footer-description a,
    .footer-link a,
    .footer-bottom-links a {
      color: #ffffff !important;
    }
    .footer-description a:hover,
    .footer-link a:hover,
    .footer-bottom-links a:hover {
      color: #ffffff !important;
      text-decoration: underline;
      opacity: 0.9;
    }
    .footer-heading {
      font-size: var(--fs-lg);
      margin-bottom: 1.5rem;
      font-weight: 600;
      position: relative;
      padding-bottom: 0.75rem;
      z-index: 1;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--secondary);
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
      z-index: 1;
    }
    .footer-link {
      margin-bottom: 0.75rem;
    }
    .footer-link a {
      color: #ffffff !important;
      transition: all var(--transition);
      display: inline-block;
    }
    .footer-link a:hover {
      transform: translateX(5px);
      color: #ffffff !important;
    }
    .footer-bottom {
      position: relative;
      z-index: 1;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      font-size: var(--fs-sm);
      opacity: 0.7;
    }
    .footer-bottom-links {
      margin-bottom: 1rem;
    }
    .footer-bottom-links a {
      color: var(--text-light);
      display: inline-block;
      margin: 0 0.5rem;
    }

    .footer-link.mt-3 a,
	.footer-link.mt-2 a {
  	  text-decoration: underline !important;
	}


    /* ===================================================
       MODAL & SCROLL TO TOP
       =================================================== */
    .modal-custom-height .modal-dialog {
      max-width: 800px;
      height: var(--bs-modal-height);
      margin: auto;
    }
    .modal-custom-height .modal-content {
      height: 100%;
    }
    .modal-custom-height .modal-body {
      height: calc(100% - 56px);
      overflow-y: auto;
    }
    .modal-fullscreen .modal-dialog {
      max-width: 100%;
      width: 100%;
      height: 100%;
      margin: 0;
    }
    .modal-fullscreen .modal-content {
      height: 100%;
      border-radius: 0;
    }
    .modal-fullscreen .modal-body {
      height: calc(100% - 56px);
    }
    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }
    .modal-header .modal-title {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin: 0;
      text-align: center;
    }
    .modal-header .fullscreen-toggle-btn {
      position: absolute;
      left: 0;
    }
    .fullscreen-toggle-btn {
      background-color: transparent !important;
      color: #000000 !important;
      border: none !important;
      padding: 1rem !important;
      font-size: 1.5rem;
    }
    .fullscreen-toggle-btn:hover,
    .fullscreen-toggle-btn:focus {
      background-color: rgba(0, 0, 0, 0.1) !important;
      color: #000000 !important;
      outline: none;
    }

    .modal-fullscreen .modal-dialog {
      width: 100%;
      max-width: 100%;
      height: 99%;
      margin: 0;
    }
    .modal-fullscreen .modal-content {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 0;
    }
    .modal-fullscreen .modal-body {
      flex: 1;
      padding: 0;
      overflow: hidden;
      height: 100%;
    }
    .modal-fullscreen .modal-body object {
      width: 100%;
      height: 100%;
      display: block;
    }

    .scroll-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background-color: var(--primary-light);
      color: var(--text-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all var(--transition);
      z-index: 99;
      cursor: pointer;
    }
    .scroll-top.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .scroll-top:hover {
      background-color: var(--primary-light);
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    /* ===================================================
       AOS (Animate on Scroll) OVERRIDES
       =================================================== */
    [data-aos] {
      opacity: 0;
      transition-property: opacity, transform;
    }
    [data-aos="fade-up"] {
      transform: translateY(50px);
    }
    [data-aos="fade-down"] {
      transform: translateY(-50px);
    }
    [data-aos="fade-right"] {
      transform: translateX(-50px);
    }
    [data-aos="fade-left"] {
      transform: translateX(50px);
    }
    [data-aos].aos-animate {
      opacity: 1;
      transform: translate(0);
    }

    /* ===================================================
       BAR CHART SCROLLABLE (ALL SIZES)
       =================================================== */
    .chart-scrollable {
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
    }

    .center-text {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    /* ===================================================
       BORROWING PROGRAM (Tweaks to reduce padding, etc.)
       =================================================== */
    .borrowing-section {
      background-color: #f7f8fa;
      padding: 5rem 0;
    }
    .borrowing-container {
      background-color: #fff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
    }
    .borrowing-body {
      margin-top: 1rem;
    }

    /* Quick Access / Featured Section */
    .featured-section {
      background-color: #f9fafb; /* or #ffffff */
      padding: 3rem 0;
    }
    .featured-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }
    .featured-card {
      flex: 1 1 300px;
      background-color: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      padding: 2rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .featured-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
    .featured-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .featured-card-title {
      font-size: var(--fs-lg);
      margin-bottom: 1rem;
      color: var(--primary-dark);
    }
    .featured-card-text {
      font-size: var(--fs-base);
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }
    .featured-card .btn {
      font-size: var(--fs-base);
      padding: 0.5rem 1.5rem;
    }
    @media (max-width: 991px) {
      .featured-container {
        flex-direction: column;
        align-items: center;
      }
      .featured-card {
        max-width: 500px;
        width: 100%;
      }
    }


    /* Move .donut-col-right below .donut-col-left at 1200px instead of 991px */
/* @media (max-width: 1199px) {
  .donut-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .donut-col-left,
  .donut-col-right {
    max-width: 100%;
    text-align: center;
  }
} */


/* ===================================================
   ADDITIONAL MEDIA QUERIES
   =================================================== */

    @media (max-width: 767.98px) {
       
      .footer {
        padding: 4rem 0 2rem;
      }
      
      .footer-heading {
        margin-top: 2rem;
      }
    }

    @media (max-width: 991px) {
  .header.scrolled .header-top {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .header-top {
    transition: transform 0.3s ease;
  }
  .header.scrolled .header-top {
    transform: translateY(-100%);
  }
}

.nobr {
  white-space: nowrap;
}

#Pie {
	cursor: pointer;
}

@media print {
	[data-aos] {
        display: block !important;
        opacity: 1 !important;
        transform: translate(0) scale(1) !important;
    }
	body * {
    	visibility: hidden;
	}
	#print_content, #print_content * {
		visibility: visible;
	}
	#print_content {
		position: absolute;
        left: 0;
        top: 0;
	}
	.hero-section {
      position: relative;
      height: 10vh;
      min-height: 100px; /*  min-height: 700px; - ORIGINAL  */
      max-height: 300px; /* max-height: 900px; - ORIGINAL  */
      background-color: var(--primary-dark);
      overflow: hidden;
      display: flex;
      align-items: center;
    }
	.mobile-scroll-indicator {
		display: none;
	}
	.insights-container {
		margin-bottom: 6em;
	}
	#fin-cont {
		margin-bottom: 0.5em;
	}
	.chart-container {
        min-height: 400px;
		width: auto;
		margin: 0;
		padding: 0;
    }
	#financialBarChart {
		width: 800px !important;
		height: 520px !important;
	}
	.featured-card {
        max-width: 500px;
        width: 100%;
		margin: auto;
		margin-bottom: 25px;
	}
	#scrollTop {
		visibility: hidden;
	}
}
