 


.about, .mission-vision, .team {
  margin: 30px 0;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.box {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 20px;
  border-left: 5px solid #0073e6;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}

button {
  padding: 10px 20px;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #005bb5;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

.close:hover {
  color: red;
}










.manager-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}
.manager-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}
.manager-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.manager-photo img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.manager-message {
  max-width: 600px;
}
.manager-message h3 {
  margin-top: 0;
  font-size: 22px;
  color: #0073e6;
}
.manager-message p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .manager-content {
    flex-direction: column;
    text-align: center;
  }
  .manager-message {
    max-width: 100%;
  }
}


header .logo h1 {
    font-size: 2em;
}


.help-container {
    background-color: white;
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-container h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.help-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.search-bar {
    margin-bottom: 30px;
}

.search-bar input {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #555;
}

.help-topics h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.help-topics ul {
    list-style-type: none;
}

.help-topics ul li {
    margin-bottom: 10px;
}

.help-topics ul li a {
    text-decoration: none;
    color: #333;
}

.help-topics ul li a:hover {
    color: #007BFF;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

form textarea {
    resize: vertical;
    height: 150px;
}

form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}



.contact-container {
    background-color: white;
    padding: 40px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

form textarea {
    resize: vertical;
    height: 150px;
}

form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}



.contact-form {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0056b3;
}

#response {
  margin-top: 10px;
  font-weight: bold;
}









.manager-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}
.manager-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}
.manager-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.manager-photo img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.manager-message {
  max-width: 600px;
}
.manager-message h3 {
  margin-top: 0;
  font-size: 22px;
  color: #0073e6;
}
.manager-message p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .manager-content {
    flex-direction: column;
    text-align: center;
  }
  .manager-message {
    max-width: 100%;
  }
}



.hero {
  background: #f4f4f8;
  color: black;
  padding: 80px 0;
  text-align: center;
}

.hero .btn {
  background: blue;
  color: #0073e6;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
  border-radius: 4px;
}

.about {
  background: #263dc2;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.about .btn {
  background: white;
  color: #0073e6;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
  border-radius: 4px;
}


.section {
  padding: 60px 0;
}

.section.light {
  background: #f5f5f5;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature {
  background: #e0e0e0;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.testimonial {
  background: #dff0d8;
  margin: 10px 0;
  padding: 20px;
  border-left: 5px solid #4cae4c;
  font-style: italic;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

form button {
  padding: 10px 20px;
  background: #0073e6;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}





    .slideshow-container {
      position: relative;
      max-width: 100%;
      height: 500px;
      margin: auto;
      overflow: hidden;
    }

    .slide {
      display: none;
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .slide-text {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 20px;
      border-radius: 8px;
      font-size: 24px;
    }

    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      color: white;
      padding: 16px;
      border-radius: 0 3px 3px 0;
      background-color: rgba(0,0,0,0.5);
      user-select: none;
    }
 .prev {
      left: 0;
      border-radius: 3px 0 0 3px;
      
    }
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;

    }

    .dots {
      text-align: center;
      position: absolute;
      width: 100%;
      bottom: 10px;
    }

    .dot {
      cursor: pointer;
      height: 12px;
      width: 12px;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
    }

    .dot.active {
      background-color: #717171;
    }


  
  .hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 25px auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  }
  .hero a.button {
    background: #007BFF;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
  }
  .hero a.button:hover {
    background: #0056b3;
  }

  /* Features Section */
  .features {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    gap: 20px;
  }
  .feature {
    background: white;
    padding: 25px;
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    text-align: center;
  }
  .feature h3 {
    margin-bottom: 15px;
    color: #004080;
  }
  .feature p {
    color: #555;
  }
 /* Responsive Styles */
  @media (max-width: 992px) {
    nav ul {
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
    .features {
      flex-direction: column;
    }
    .feature {
      margin-bottom: 25px;
    }
  }
  @media (max-width: 600px) {
    .hero {
      height: 320px;
      padding: 0 15px;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .features {
      gap: 15px;
    }
    .feature {
      padding: 20px;
    }
    .about {
      padding: 30px 15px;
    }
  }
.hero-slideshow {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.hero-slideshow .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slideshow .content {
  color: white;
  padding: 0 20px;
  max-width: 800px;
}
.hero-slideshow .content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.hero-slideshow .content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-slideshow .button {
  background: #003366;;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-slideshow .button:hover {
  background: #0056b3;
}
.nav-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.nav-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  cursor: pointer;
}
.nav-dots span.active {
  background: white;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-slideshow .content h1 {
    font-size: 2rem;
  }
  .hero-slideshow .content p {
    font-size: 1rem;
  }
}





/* Container */
.container{padding:2rem;}

/* Hero */
.hero1{background:#0068f0;color:#fff;padding:4rem 2rem;text-align:center;}
.hero1 h1{font-size:2.5rem;margin-bottom:1rem;}
.hero1 p{font-size:1.125rem;margin-bottom:2rem;}
.btn{display:inline-block;background:#fff;color:#0068f0;padding:0.75rem 1.5rem;border-radius:4px;font-weight:600;}
.btn:hover{background:#f4f8ff}

/* Features grid */
.features1{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.5rem;margin-top:3rem;}
.features1 article{background:#fff;padding:1.5rem;border-radius:6px;box-shadow:0 1px 3px rgba(0,0,0,.06);}
.features1 h2{font-size:1.125rem;margin-bottom:0.5rem}



.wrapper{max-width:1200px;margin:auto;padding:2rem 1rem}

h1,h2,h3{font-weight:600;color:var(--primary)}
h1{font-size:2rem;margin-bottom:1rem}
h2{font-size:1.5rem;margin-bottom:1rem}
h3{font-size:1.15rem;margin:0.5rem 0}

.news-grid{
  display:grid;gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}
.card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:0 4px 8px rgba(0,0,0,.08);
  transition:transform .2s;
}
.card:hover{transform:translateY(-4px)}
.card img{width:100%;height:180px;object-fit:cover}

.card a{display:block;padding:1rem;color:inherit;text-decoration:none}
.card p{margin-top:.5rem;color:#444;font-size:.9rem}

.see-more{text-align:center;margin-top:1rem}
.btn{
  display:inline-block;padding:0.65rem 1.25rem;
  background:var(--primary);color:#fff;border-radius:var(--radius);
  text-decoration:none;font-weight:500;transition:background .2s;
}
.btn:hover{background:#004d6b}

.pager{margin:2rem 0;text-align:center}
.pager a{
  display:inline-block;margin:.25rem;padding:.5rem .85rem;
  border:1px solid #ddd;border-radius:var(--radius);text-decoration:none;
}
.pager a.active, .pager a:hover{background:var(--primary);color:#fff;border-color:var(--primary)}

.article img.hero{
  width:100%;max-height:350px;object-fit:cover;border-radius:var(--radius)
}
.article .content{margin-top:1rem;font-size:1rem;line-height:1.7}




/* ======= CONTACT / FEEDBACK SECTION ======= */
:root {
  --clr-primary: #007bff;
  --clr-bg: #ffffff;
  --clr-light: #f9fafb;
  --clr-dark: #1f2937;
  --radius: 0.5rem;
}

/* Layout helpers */
.container {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}

/* Section wrapper */
.section--light {
  background: var(--clr-light);
  padding: 4rem 0;
}

/* Header */
.contact__title {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  margin-bottom: 0.25rem;
  color: var(--clr-dark);
}
.contact__subtitle {
  max-width: 60ch;
  margin-bottom: 2rem;
  color: #4b5563;
}

/* Form */
.contact__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1.5rem 2rem;
  align-items: start;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field--full {
  grid-column: 1 / -1;
}
label {
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--clr-dark);
}
input,
textarea {
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: var(--clr-bg);
  transition: border-color 0.25s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
}

/* Button */
.btn {
  grid-column: 1 / -1;
  place-self: start;
  background: #003366;
  color: #fff;
  border: none;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover,
.btn:focus-visible {
  background: #0065d1;
}

/* Toast (status message) */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 260px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--clr-primary);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.toast--error {
  background: #dc3545;
}






/*latest news
/* === Latest News grid === */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;             /* mobile: 1‑col */
  gap: 1.25rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.card h3   { margin: .4rem 0 0; font-size: 1.05rem; line-height: 1.3; }
.card .meta{ font-size: .85rem; color: #777; }

.btn {
  margin-top: auto;
  display: inline-block;
  font-size: .85rem;
  padding: .4rem .8rem;
  background: ##003366;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.btn:hover { background: #005ec1; }




.quick-links {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  max-width: 250px;
}

.quick-links h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.2em;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links a {
  text-decoration: none;
  color: #007BFF;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #0056b3;
}


/*  APPLY JOB CSSMAIN SECTION*/
body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .card {
    border-radius: 12px;
  }

  .card-header {
    background-color: #003366 !important;
  }

  label {
    font-weight: 500;
    margin-bottom: 5px;
  }

  .form-control, .form-select {
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  textarea.form-control {
    resize: vertical;
  }



  .text-start {
    font-size: 18px;
    font-weight: bold;
  }

  hr {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .btn-success {
    background-color: #003366 !important;
    border: none;
    padding: 10px 25px;
  }

  .btn-success:hover {
    background-color: #001f4d !important;
  }

  .section-title {
    background-color: #003366;
    color: white;
    padding: 8px;
    border-radius: 5px;
  }
    @media print {
      .no-print {
        display: none !important;
      }
    }
