/* Global Code*/ /* Global Code*//* Global Code*//* Global Code*/
/* Global Code*/ /* Global Code*//* Global Code*//* Global Code*/
/* Global Code*/ /* Global Code*//* Global Code*//* Global Code*/



/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #eeeeee;
    
    }


/* ==================================
   GLOBAL VARIABLES (CONTROL CENTER)
================================== */
:root {
  --primary-color: #041738;     /* Main dark blue */
  --accent-color: #692a05;      /* Accent border color */
  --text-dark: #000000;
  --text-light: #555555;

  /* Font sizes (use everywhere) */
  --font-xl: 2rem;     /* 32px */
  --font-lg: 1.5rem;   /* 24px */
  --font-md: 1rem;     /* 16px */
  --font-sm: 0.875rem; /* 14px */
}




/* Skip content/ Increase/ Decrease Font */
/* Accessibility Bar */
/* Accessibility Bar */

/* Accessibility Bar */
.accessibility-bar {
  display: flex;
  justify-content: flex-end; /* Align everything to the right */
  align-items: center;
  background: linear-gradient(to right, #eaeff8, #c3d9ff); /* Gradient from white to soft background color */
  padding: 4px 12px; /* Further reduced padding for a smaller height */
  font-size: 14px; /* Smaller font size */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
}


/* Right Content (Skip Link and Buttons) */
.access-right {
  display: flex;
  align-items: center; /* Align all elements vertically */
}

.access-right a {
  color: #041738; /* Dark blue */
  font-weight: 600; /* Bold text */
  text-decoration: none; /* Remove underline */
  padding: 4px 8px; /* Reduced padding for a more compact look */
  border-radius: 4px; /* Slight rounding of corners */
  margin-right: 10px; /* Space between link and buttons */
}

.access-right a:hover {
  background-color: #041738;
  color: #ffffff;
  text-decoration: underline; /* Underline on hover */
}

.access-right button {
  background-color: #ffffff;
  border: 2px solid #041738; /* Dark border */
  color: #041738; /* Dark text */
  font-size: 0.8rem; /* Smaller font size */
  font-weight: 600;
  padding: 2px 6px; /* Smaller padding for compact buttons */
  border-radius: 4px; /* Slight rounding of corners */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  margin-left: 6px; /* Space between buttons */
  min-width: 25px; /* Minimum width for buttons */
  height: 25px; /* Set height to match the smaller size */
}

.access-right button:hover {
  background-color: #041738; /* Dark background on hover */
  color: #ffffff; /* White text on hover */
}

.access-right button:active {
  transform: scale(0.98); /* Slightly shrink button when clicked */
}



/* Base Font Control */
html {
  font-size: 16px;
}


/* Header Code*/
/* Header Code*/
/* Header Code*/

/* ===== TOP LOGO BAR ===== */
/* Header Container */
.top-header {
  background: #ffffff;
  padding: 10px 0;
}

/* Make header container flex so left & right work */
.nav-align {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0 !important;
}

/* Login Button Style */
.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #082036, #0f4c75);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  margin-top: -10px; 
}

.login-btn i {
  font-size: 14px;
}

.login-btn:hover {
  background: linear-gradient(135deg, #0f4c75, #082036);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .login-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

.logo-wrap {
  display: flex; /* Flexbox to align the logo and text */
  align-items: center; /* Vertically center-align the content */
}

/* Logo */
.logo-img {
  max-height: 70px; /* Set logo height */
  margin-right: 10px; /* Space between logo and text */
  margin-top: -15px; /* Move logo up by 10px (adjust as needed) */
}


.text-wrap {
  display: flex;
  flex-direction: column; /* Stack the text vertically */
  justify-content: center;
}

/* Company Name */
.company-name {
  font-size: 1.5rem; /* Larger, more elegant font size */
  font-weight: 700; /* Bold for a strong impact */
  letter-spacing: 0.5px; /* Slight letter spacing */
  text-transform: none; /* Normal case for a friendly look */
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
  background: linear-gradient(to bottom, #051320, #031a2c, #072336); /* Dark gradient from top to bottom */
  -webkit-background-clip: text; /* Clip background to text */
  color: transparent; /* Text color becomes transparent */
}

/* Govt. Tagline */
.govt-tag {
  font-size: 1.1rem; /* Slightly larger for emphasis */
  font-weight: bold; /* Make text bold */
  margin-top: 2px;
  font-style: italic; /* Keep italic style */
  color: #000000; /* Set text color to black */
  letter-spacing: 1px;
  font-family: 'Georgia', serif; /* Professional serif font */
}




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

  .top-header {
    padding: 6px 0;
  }

  .logo-img {
    max-height: 45px;
    margin-top: 0;
  }

  .company-name {
    font-size: 1rem;
    line-height: 1.2;
  }

  .govt-tag {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  /* UPDATED LOGIN BUTTON */
  .login-btn {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 20px;
    gap: 4px;
    margin-top: 0;
  }

  .login-btn i {
    font-size: 11px;
  }

  .text-wrap {
    gap: 2px;
  }

}





/* ===== NAVBAR ===== */
.main-nav {
  background: linear-gradient(135deg, #082036, #073b63, #0f4c75);
  position: sticky;
  top: 0;
  z-index: 999;
  font-size: inherit;
  
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  padding: 14px 22px;
  text-decoration: none;
  display: flex;
  align-items: center;
  
  font-size: inherit;
  
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.12);
}

/* ===== DROPDOWN ===== */
.chevron {
  margin-left: 6px;
  transition: transform .3s;
  
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #122d3b;
  min-width: 180px;
  list-style: none;
  padding: 0;
}

/* ===== SUBMENU SAME STYLE AS MAIN MENU ===== */
.submenu li a {
  font-family: inherit;          /* same font as menu */
  font-size: inherit;    /* SAME as .nav-link */
  font-weight: 400 !important;   /* SAME as .nav-link */
  color: #ffffff;
  padding: 14px 25px;            /* same spacing feel */
  display: block;
  text-decoration: none;
}


.submenu li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-item:hover .submenu {
  display: block;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 15px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
}

/* Make dropdown arrow white */
.nav-link .chevron {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Align top header logo with navbar start */


/* Align logo with navbar Home menu */
.nav-align {
  padding-left: 0 !important;   /* remove Bootstrap container padding */
}


.logo-wrap {
  margin-left: -16px;   /* move left → try -8px, -12px, -16px */
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

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

  .nav-menu.active {
    display: flex;
  }

  .nav-item:hover .submenu {
    display: none;
  }

  .nav-item.active .submenu {
    display: block;
    position: static;
  }
}


/* Banner + Breadcrumb Navigation */
/* Banner + Breadcrumb Navigation */



.page-heading {
  padding: 45px 0 55px;
  background: linear-gradient(180deg, #eaf4ff 0%, #f6faff 100%);
}

/* Inner white card */
.page-heading-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 40px;
  padding: 28px 40px 32px;
  box-shadow: 0 12px 35px rgba(0, 55, 100, 0.12);
}

/* Page Title */
.page-title {
  margin: 0 0 12px;
  font-size: var(--font-xl);
  font-weight: 700;
  color: #03476b; /* Matches your header */
}

/* Breadcrumb */
.breadcrumb-nav {
  font-size: var(--font-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.breadcrumb-nav a {
  text-decoration: none;
  color: #03476b;
  font-weight: 600;
}

.breadcrumb-nav .divider {
  margin: 0 6px;
  color: #f7a531; /* Gold accent */
  font-weight: 700;
}

.breadcrumb-nav .current {
  color: #666;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
  .page-heading-inner {
    margin: 0 12px;
    padding: 22px 18px;
    border-radius: 22px;
  }

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




/* ==================================
   Master PAGE 
================================== */
/* ==================================
   Master PAGE 
================================== */
/* ==================================
   COMMON PAGE 
================================== */
.page-banner {
  background: linear-gradient(135deg, #f2f6fb, #ffffff);
  padding: 50px 0 35px;
  border-bottom: 1px solid #e5e5e5;
}

.page-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 700;
}

.page-subtitle {
  font-size: var(--font-sm);
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Breadcrumb */
.breadcrumb-nav {
  font-size: var(--font-sm);
}

.breadcrumb-nav a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-nav .divider {
  margin: 0 6px;
  color: #999;
}

.breadcrumb-nav .current {
  color: #666;
}

/* ==================================
   PAGE CONTENT AREA
================================== */
.page-content {
  background: #ffffff;
  padding: 50px 0;
}

.page-content .container {
  max-width: 1100px;
}

/* Section block */
.content-section {
  margin-bottom: 40px;
}

/* Section heading */
.section-heading {
  font-size: var(--font-lg);
  color: var(--primary-color);
  border-left: 5px solid var(--accent-color);
  padding-left: 12px;
  margin-bottom: 12px;
}

/* Normal paragraph text */
.text-normal {
  font-size: 1.08rem;  /* Slightly larger than the default font size */
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
  font-weight: 500;
}



.font-scale-test {
  font-size: inherit !important;
  line-height: 1.8;
  color: #000;
}


/* ==================================
   RESPONSIVE
================================== */
@media (max-width: 768px) {
  .page-title {
    font-size: 26px;
  }

  .section-heading {
    font-size: 20px;
  }
}










/* ===== Footer Theme (Same Gradient as Header) ===== */
/* Force footer background color */
/* ===============================
   MODERN GRADIENT FOOTER (CMDC)
   Matches Header Gradient
================================= */

/* ===== Footer Theme (Same Gradient as Header) ===== */
/* Force footer background color */
/* ===============================
   MODERN GRADIENT FOOTER (CMDC)
   Matches Header Gradient
================================= */
.footer-theme {
  background: linear-gradient(135deg, #082036, #073b63, #0f4c75);
  color: #ffffff;
  font-size: 1.2rem; /* Increased the base font size */
}

/* Headings */
.footer-theme h5,
.footer-theme h6 {
  font-size: 1.5rem; /* Increased heading size */
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
}

/* Small underline accent under headings */
.footer-theme h6::after {
  content: "";
  width: 3rem; /* Adjusted underline width */
  height: 0.125rem;
  background: #ffcb00;
  display: block;
  margin-top: 0.375rem;
}

/* Paragraph text */
.footer-theme p {
  font-size: 1.1rem; /* Slightly increased paragraph text */
  color: #e3eef8;
  line-height: 1.6;
}

/* Links */
.footer-theme a {
  font-size: 1rem; /* Increased link text size */
  color: #e3eef8;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Quick Links spacing */
.footer-theme ul li {
  margin-bottom: 0.5rem; /* Increased spacing between list items */
}

/* Contact icons */
.footer-theme i {
  color: #ffcb00;
  margin-right: 0.75rem; /* Increased spacing after icons */
}

/* Social icons */
.footer-theme .footer-social-icons {
  display: flex; /* Ensure icons are in a row */
  justify-content: flex-start; /* Align items to the start */
  gap: 15px; /* Adjust the space between icons */
}

.footer-theme .footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; /* Adjust icon size */
  height: 30px; /* Adjust icon size */
  border-radius: 50%; /* Keep the border radius if you want round edges */
  background-color: transparent; /* No background color */
  border: none; /* No border */
  transition: all 0.3s ease;
}

.footer-theme .footer-social-icons i {
  font-size: 1.5rem; /* Adjusted icon size */
  color: #ffcb00; /* Yellow icon color */
}

/* Hover effect for social icons */
.footer-theme .footer-social-icons a:hover i {
  color: #e6b800; /* Slightly darker yellow when hovered */
}


/* Divider line */
.footer-theme hr {
  border-color: rgba(255, 255, 255, 0.25);
  margin: 1.75rem 0; /* Increased margin for separator */
}

/* Bottom copyright row */
.footer-theme .small {
  font-size: 1.1rem; /* Increased font size for copyright text */
  color: #d6e6f2;
}

/* ===============================
   Back to Top Button
================================= */
#backToTop {
  background: linear-gradient(135deg, #0f4c75, #073b63);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-3px);
  background: #ffcb00;
  color: #082036;
}
