/* ====================================
   CSS Custom Properties and Variables
   ==================================== */
   :root {
    /* Base and Utility Variables */
    --font-size-base: 16px;              /* Base font size */
    --card-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;  /* Shadow for cards */
    --border-radius: 5px;                /* Standard border radius */
    --transition-duration: 0.3s;         /* Transition duration for interactive elements */
    --muted-text-color: #ccc;            /* Color for less emphasized text */
    
    /* Color Palette */
    --primary-color: #1C87C9;            /* Ministry primary color */
    --secondary-color: #e3f2fd;          /* Ministry secondary color */
    --tertiary-color: #50C878;           /* Tertiary accent color */
    --accent-color: #FFFFE8;             /* Light yellow accent color */
    --background-color: #f8f9fa;         /* General background color */
    --white-color: #ffffff;              /* White color for texts/background */
    --Navy-blue-color: #000080;          /* Navy blue color for texts*/
    --text-color: #333;                  /* Default text color */
  }
  
  /* ====================================
     Custom Font Imports
     ==================================== */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
         url('fonts/Roboto-Regular.woff') format('woff'),
         url('fonts/Roboto-Regular.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
         url('fonts/Roboto-Bold.woff') format('woff'),
         url('fonts/Roboto-Bold.ttf') format('truetype');
  }
  
  /* ====================================
     Universal Reset
     ==================================== */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 100%; /* Defaults to 16px */
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
  }
  
  /* ====================================
     Typography Styles
     ==================================== */
  /* Grouped heading styles for consistency */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    margin-bottom: 0.5em;
    letter-spacing: 0.5px;
  }
  
  /* Specific heading sizes and colors */
  h1 { font-size: 2.5em; }
  h2 { font-size: 2em; }
  h3 { font-size: 1.75em; }
  h4 { font-size: 1.5em; color: var(--text-color); }
  h5 { font-size: 1.25em; color: var(--accent-color); }
  h6 { font-size: 1em; color: var(--tertiary-color); }
  
  /* Focus styles for accessibility */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    outline: 2px solid var(--tertiary-color);
    outline-offset: 2px;
  }
  
  /* Paragraphs and Links */
  p {
    font-size: 1em;
    margin-bottom: 1em;
  }
  
  a {
    color: var(--tertiary-color);
    text-decoration: none;
    transition: color var(--transition-duration) ease, text-decoration var(--transition-duration) ease;
  }
  
  a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  /* ====================================
     Lists and Horizontal Rule
     ==================================== */
  ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    list-style-position: inside;
  }
  
  li {
    margin-bottom: 0.5em;
  }
  
  hr {
    margin-bottom: 1em;
    border: none;
    border-top: 2px solid var(--secondary-color);
  }
  
  /* ====================================
     Buttons
     ==================================== */
  button, .btn {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: var(--white-color);
    background-color: var(--tertiary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75em 1.5em;
    cursor: pointer;
    transition: background-color var(--transition-duration) ease;
    display: inline-block;
  }
  
  button:hover, .btn:hover {
    background-color: var(--secondary-color);
  }
  
  /* Pagination Buttons */
  .btn-page {
    margin: 0 5px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid var(--tertiary-color);
    background-color: var(--tertiary-color);
    color: var(--white-color);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-duration) ease;
  }
  
  .btn-page:hover {
    background-color: var(--secondary-color);
  }
  
  .btn-page.current {
    background-color: var(--accent-color);
    color: black;
    border: 1px solid var(--accent-color);
  }
  
  /* Full-Width Buttons for Mobile */
  button.full-width, .btn.full-width {
    width: 100%;
  }
  
  /* ====================================
     Form Inputs & Textareas
     ==================================== */
  textarea,
  select,
  input[type="email"],
  input[type="password"],
  input[type="tel"] {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    padding: 0.75em;
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    width: 100%;
    margin-bottom: 1em;
    transition: border-color var(--transition-duration) ease;
  }
  
  textarea:focus,
  select:focus,
  input:focus {
    outline: none;
    border-color: var(--tertiary-color);
    box-shadow: 0 0 5px var(--tertiary-color);
  }
  
  /* ====================================
     Card Component
     ==================================== */
  .card {
    background: var(--primary-color);
    padding: 1.5em;
    box-shadow: var(--card-shadow);
    border-radius: 8px;
    margin-bottom: 1.5em;
  }
  
  /* ====================================
     Table Styles
     ==================================== */
  table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-color);
    margin-bottom: 1.5em;
  }
  
  th,
  td {
    padding: 1em;
    border-bottom: 1px solid var(--muted-text-color);
    text-align: left;
  }
  
  th {
    background: var(--secondary-color);
    color: var(--white-color);
  }
  
  tr:nth-child(even) {
    background: #E2E8F0;
  }
  
  tr:hover {
    background: var(--accent-color);
    color: black;
  }
  
  /* ====================================
     Alert Messages
     ==================================== */
  .alert {
    padding: 1em;
    border-radius: var(--border-radius);
    margin-bottom: 1em;
    font-weight: bold;
  }
  
  .alert-success { background: #38A169; color: var(--white-color); }
  .alert-warning { background: #ECC94B; color: black; }
  .alert-error { background: #E53E3E; color: var(--white-color); }
  
  /* ====================================
     Footer Styles
     ==================================== */
  .footer {
    background: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
    padding: 1.5em;
    margin-top: 2em;
  }
  
  .footer a {
    color: var(--accent-color);
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  /* ====================================
     Responsive Design
     ==================================== */
  @media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.75em; }
    h3 { font-size: 1.5em; }
    h4 { font-size: 1.25em; }
    button.full-width, .btn.full-width { width: 100%; }
  }
  
  @media (max-width: 480px) {
    h1, h2 { font-size: 1.5em; }
    h3, h4 { font-size: 1.25em; }
  }




















/* ------------------- */
/* Header Body Styles */
/* ------------------- */
body {
  font-family: Arial, sans-serif; /* Use a clean, modern font */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  box-sizing: border-box; /* Ensure consistent box-sizing across elements */
  min-height: 100vh; /* Fill viewport height */
}

/* Header Section */
.header {
  background-color: #1C87C9; /* Blue header background */
  color: #ffffff; /* White text for readability */
  text-align: center; /* Center-align content */
  padding: 10px 0; /* Padding for spacing */
  font-size: 20px; /* Increase text size */
  font-weight: bold; /* Emphasize header text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  position: relative; /* Ensure proper stacking context */
  z-index: 1100; /* Place above other elements */
}

.header .logo h1 {
  color: #FFFFE8; /* Contrast yellowish text */
  padding: 0; /* Remove padding for alignment */
  font-size: 22px; /* Slightly larger text */
}

.header .logo i {
  color: #ffffff; /* White italic text */
  font-size: 16px; /* Match smaller size */
  margin-top: 0; /* No additional margin */
}

/* Sticky Navbar */
.navbar {
  display: flex; /* Align children horizontally */
  justify-content: space-between; /* Space out items */
  align-items: center; /* Center items vertically */
  background-color: #f6f6f6; /* Light gray background */
  padding: 10px 20px; /* Adjust padding for spacing */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  position: sticky; /* Stick to the top */
  top: 0; /* Start at the top */
  z-index: 1000; /* Place above other elements */
}

/* Navbar Links */
.navbar a {
  color: #0059b3;
  text-decoration: none;
  padding: 14px 25px; /* Adjusted for better spacing */
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar a:hover {
  background-color: #40bf80;
  color: #ffffff;
}

/* Navbar Logo */
.navbar .logo img {
  height: 40px;
  width: auto;
  margin: 0;
  padding: 0;
}

/* Navbar Menu */
.navbar .menu {
  display: flex;
  align-items: center;
}

/* Dropdown Menu */
.navbar .categories {
  position: relative;
}

.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004080;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 4px;
  overflow: hidden;
  width: auto; /* Adjusted to match the length of the text */
}

.navbar .dropdown-menu a {
  display: block;
  color: #ffffff;
  padding: 15px 20px; /* Adjusted for better tap space */
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px; /* Slightly larger for better readability */
}

.navbar .dropdown-menu a:hover {
  background-color: #1C87C9;
}

.categories:hover .dropdown-menu {
  display: block;
}

/* Mobile Menu */
.navbar .toggler {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1C87C9;
}

.navbar .menu .close {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Search Bar */
.navbar .search {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 10px;
}

.navbar .search input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.navbar .search button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  background-color: #1C87C9;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.navbar .search button:hover {
  background-color: #40bf80;
}

.search .clear-btn {
  background: transparent;
  border: none;
  color: #1C87C9;
  font-size: 16px;
  cursor: pointer;
  padding: 0 10px;
}

.search .clear-btn:hover {
  color: #40bf80;
}

/* Ensure proper spacing in mobile view */
@media (max-width: 768px) {
  .navbar .menu {
      display: flex;
      flex-direction: column; /* Stack elements vertically */
      width: 100%;
  }

  .navbar .menu a, .navbar .menu .dropdown, .navbar .menu .categories {
      width: 100%; /* Ensure each element takes full width */
      text-align: left; /* Align text left for consistency */
      padding: 12px 20px; /* Slightly reduce padding for better space */
  }

  /* Prevent overlap of the categories and user name */
  .navbar .categories, .navbar .dropdown {
      margin-top: 10px; /* Add margin between elements */
  }

  /* Fix dropdown menu appearance */
  .navbar .dropdown-menu, .navbar .dropdown-menu a {
      width: 100%;
      padding: 10px 20px; /* Adjust padding for better tap space */
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
      flex-wrap: wrap;
  }

  .navbar .menu {
      display: none;
      flex-direction: column;
      width: 100%;
  }

  .navbar .menu a {
      width: 100%;
      text-align: left;
      padding: 15px 20px; /* Adjusted padding for easier tapping */
  }

  .navbar .toggler {
      display: block;
  }

  .navbar .menu .close {
      display: block;
  }

  .navbar .search {
      order: 1;
      width: 100%;
      margin: 10px 0;
  }
}

/* Date and Time */
.date-time {
  font-size: 14px;
  margin-top: 5px;
  color: #ffffff;
}
#dateformati{font-family:Tahoma;font-size:13px;}
.menu{font-family:Tahoma;font-size:12px;line-height: 0.1em;color:#FFFDD0;text-decoration:none; margin-left: 2px;}
a{color:#5378A6}
a:hover{color:#7099CD}
#dateformati{ background:#e3f2fd;
            width:250px;
      height:35px;
       color:#000;
       text-align:left;
       }
 #dateformati{
  -moz-box-shadow: 0 0 3px rgba(0,0,0,.3); /* outer glow */
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,.3); /* outer glow */
  box-shadow: 0 0 3px rgba(0,0,0,.3); /* outer glow */
}
#dat {
      width:100%;
      top:0%;
      font: size 14px;
      text-align:center;
      margin-top:0px;
      color:#1c87c9;
      font-weight:bold;
      text-shadow:1px 1px 0px #fff,1px 0px 0px #fff,1px -1px 0px #fff,0px 1px 0px #fff,0px 0px 1px #fff,0px -1px 0px #fff,-1px 1px 0px #fff,-1px 0px 0px #fff,-1px -1px 0px #fff,1px 1px 3px rgba(0,0,0,0.7),1px 1px 5px rgba(0,0,0,0.3);
      }
   


/*--//header mirror content --*/
.banner-inner01 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner01.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner01.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner01.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner01.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner02 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner02.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner02.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner02.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner02.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner03 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner03.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner03.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner03.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner03.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner04 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}

.banner-inner05 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner05.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner05.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner05.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner05.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner06 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner06.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner06.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner06.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner06.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner07 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner07.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner07.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner07.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner07.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner08 {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner08.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner08.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner08.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner08.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner09 {
  background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner09.jpg) no-repeat;
  background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner09.jpg) no-repeat;
  background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner09.jpg) no-repeat;
  background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner09.jpg) no-repeat;
  background-size: cover;
  min-height: 200px;
  }
  


/*--about--*/

.banner-inner {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/04.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner04.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}

/*--cat--*/
.banner-inner-one {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner1.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner1.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner1.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner1.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
.banner-inner-two {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner2.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner2.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner2.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner2.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-three {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner3.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner3.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner3.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner3.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-four {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner4.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner4.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner4.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner4.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-five {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner5.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner5.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner5.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner5.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-six {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner6.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner6.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner6.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner6.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-seven {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner7.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner7.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner7.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner7.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-eight {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner8.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner8.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner8.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner8.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-nine {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner9.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner9.jpgg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner9.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner9.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}.banner-inner-ten {
background: -webkit-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner10.jpg) no-repeat;
background: -moz-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner10.jpg) no-repeat;
background: -ms-linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner10.jpg) no-repeat;
background: linear-gradient(rgba(247, 243, 247, 0.2), rgba(23, 22, 23, 0.5)), url(../static/images/banner10.jpg) no-repeat;
background-size: cover;
min-height: 200px;
}
li.breadcrumb-item {
font-size: 0.9em;
letter-spacing: 1px;
}

li.breadcrumb-item a {
color: #000;
}

.breadcrumb-item.active {
color: #40bf80;
}
.breadcrumb-item.recent {
  line-height: 2.0;
text-align: center;
}
.breadcrumb-item.group {
font-weight: 100px;
  line-height: 1.0;
text-align: left;
margin-top: 10px;
  margin-bottom: 10px;
}
.breadcrumb-item.pic {
  color: #1c87c9;
font-weight: 100px;
  line-height: 1.0;
text-align: left;
margin-top: 20px;
  margin-bottom: 10px;  
}
.sticky {
position:-webkit-sticky;
position: sticky;
margin-top: 0;
}
.sidewebname{
color: #166aa3;
font-size: 1.1em;
}

@media(max-width:991px) {
.carousel-caption h2, .carousel-caption h3 {
  font-size: 3em;
  font-weight: 700;
}

.banner-inner,
.banner-inner-zero,
.banner-inner-one,
.banner-inner-two,
.banner-inner-three,
.banner-inner-four,
.banner-inner-five,
.banner-inner-six,
.banner-inner-seven,
.banner-inner-eight,
.banner-inner-nine {
  min-height: 175px;
}
}
.tech-btm h5 {
  font-size: 0.9em;
}
.banner-inner,
.banner-inner-zero,
.banner-inner-one,
.banner-inner-two,
.banner-inner-three,
.banner-inner-four,
.banner-inner-five,
.banner-inner-six,
.banner-inner-seven,
.banner-inner-eight,
.banner-inner-nine {
  min-height: 175px;
}

/* Donation Box Styling */

.js.deed-donate-slide {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Moved to the left side */
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  z-index: 1000; /* Ensures it stays on top */
}

/* Close Button */
.close-donate {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
}

.close-donate:hover {
  color: #cc0000;
}

/* Donation Image */
.js .slide-logo {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

/* Donation Text */
.js .footer_donation {
  font-size: 14px;
  color: #333;
  margin: 10px 0;
}

/* Donate Button */
.js .donate-button {
  background: #ff6600;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-radius: 5px;
  transition: background 0.3s;
}

.js .donate-button:hover {
  background: #cc5500;
}

/* Hide on Close */
.js.hidden {
  display: none;
}

/* Responsive for Smaller Screens */
@media (max-width: 600px) {
  .js.deed-donate-slide {
      width: 90%;
      left: 5%; /* Keeps it aligned to the left on small screens */
      bottom: 10px;
  }
}






/* VISION CONTENT
-------------------------------------------------- */
.vsn{
font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
font-weight: 500px;
  line-height: 16px;
text-align: center;
margin-top: 60px;
  margin-bottom: 40px;
text-shadow:1px 1px 0px #fff,1px 0px 0px #fff,1px -1px 0px #fff,0px 1px 0px #fff,0px 0px 1px #fff,0px -1px 0px #fff,-1px 1px 0px #fff,-1px 0px 0px #fff,-1px -1px 0px #fff,1px 1px 3px rgba(0,0,0,0.7),1px 1px 5px rgba(0,0,0,0.3);
-moz-box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
      -webkit-box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
      box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
}
.msn{
font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
font-weight: 500px;
  line-height: 16px;
text-align: center;
margin-top: 60px;
  margin-bottom: 40px;
text-shadow:1px 1px 0px #fff,1px 0px 0px #fff,1px -1px 0px #fff,0px 1px 0px #fff,0px 0px 1px #fff,0px -1px 0px #fff,-1px 1px 0px #fff,-1px 0px 0px #fff,-1px -1px 0px #fff,1px 1px 3px rgba(0,0,0,0.7),1px 1px 5px rgba(0,0,0,0.3);
-moz-box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
      -webkit-box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
      box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
}

.ourvl, abut{
font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
font-weight: 500px;
  line-height: 16px;
text-align: center;
margin-top: 60px;
  margin-bottom: 60px;
text-shadow:1px 1px 0px #fff,1px 0px 0px #fff,1px -1px 0px #fff,0px 1px 0px #fff,0px 0px 1px #fff,0px -1px 0px #fff,-1px 1px 0px #fff,-1px 0px 0px #fff,-1px -1px 0px #fff,1px 1px 3px rgba(0,0,0,0.7),1px 1px 5px rgba(0,0,0,0.3);
-moz-box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
      -webkit-box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
      box-shadow:2px 3px 7px rgba(0,0,0,.3); /* drop shadow */
}

.category_des{
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: 500px;
line-height: 18px;
text-align: left; 
}
.widget_social li a {
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 30px;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-transform: capitalize;
  width: 100%;
}

.widget_social li a:hover {
  opacity: 0.7;
}

.widget_social li a.twitter {
  background: #1DA1F2;
}

.widget_social li a.facebook {
  background: #3b5998;
}

.widget_social li a.dribble {
  background: #ea4c89;
}

.widget_social li a.pin {
  background: #BD081C;
}

.widget_social li a i {
  font-size: 18px;
  text-align: left;
  width: 35px;
}

.widget_social li a .count {
  padding-left: 20px;
}
/*--//right--*/


/*-- /blog --*/

.banner-btm-top,
.banner-btm-bottom {
display: -webkit-flex;
display: flex;
}

.a1 {
background: #f3553b;
}

.a4 {
background: #40bf80;
}

.a2 {
background: url(../images/g1.jpg) no-repeat 0px 0px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-size: cover;
min-height: 350px;
}

.a3 {
background: url(../images/g6.jpg) no-repeat 0px 0px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-size: cover;
min-height: 350px;
}

.a5 {
background: url(../images/g5.jpg) no-repeat 0px 0px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-size: cover;
min-height: 350px;
}

.a6 {
background: url(../images/g8.jpg) no-repeat 0px 0px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;
background-size: cover;
min-height: 350px;
}

.banner-btm-left {
padding: 0;
}

.banner-btm-inner {
flex: 1;
padding: 4.5em 2.5em;
}

.blog_date h4 {
font-size: 0.9em;
font-weight: 600;
color: #fff;
margin-bottom: 1em;
}

.banner-btm-inner h6 {
font-size: 1.1em;
font-weight: 600;
color: #222;
margin-bottom: 1em;
}

.banner-btm-inner h6 a {
color: #222323;
letter-spacing: 2px;
}

.banner-btm-inner p {
font-size: 0.9em;
color: #fff;
margin: 1em 0;
}

a.blog-btn {
background: #fff;
font-size: 0.85em;
padding: 0.6em 1em;
color: #222;
letter-spacing: 1px;
}

a.blog-btn:hover {
background: #171717;
color: #fff;
}


/*-- //blog --*/

/*--//footer--*/

/*--/copyright--*/

.copyrighttop {
margin: 2em 0;
}

a.facebook {
color: #fff;
font-size: 14px;
}

a.facebook:hover {
color: #01cd74;
}

.copyright {
background: #141415;
color: #fff;
padding: 1em 0;
border-top: 1px solid rgba(25, 24, 24, 0.58);
}

.w3layouts-agile-copyrightbottom p {

color: #1C87C9;
border-top: 1px solid #40bf80;
background: #FFFDD0;
text-align: center;
position: bottom;
letter-spacing: 1px;
line-height: 28px;
bottom: 0px;
left: 0px;
width: 100%;
height: 50px;
box-sizing: border-box;

}

.copyrighttop li {
list-style: none;
display: inline-block;
}

.btn btn-primary read-m {
   font-size: 1.1em;
margin: 1.2em 0 1em 0;
font-weight: 400;
color: ffffff;
}


.w3layouts-agile-copyrightbottom p a {
color: #000000;
}

#toTop {
display: block;
text-decoration: none;
position: fixed;
bottom: 10px;
right: 10px;
overflow: hidden;
width: 48px;
height: 48px;
border: none;
text-indent: 100%;
background: url(../images/top_up.png) no-repeat 0px 0px;
  opacity: 1;
}
.fade {
 opacity: 1;
}

/*--// copyright-- */




/* Footer */
footer {
  background: #1C87C9;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-container div {
  width: 22%;
}

.footer-container h3 {
  margin-bottom: 10px;
}

.footer-container a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-container a:hover {
  color: #40bf80;
}

.footer-copy {
  margin-top: 20px;
}



