@font-face {
  font-family: 'Toxigenesis';
  src: url('..fonts/toxigenesis_bd.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: hsl(224, 44%, 95%);
  color: #202866;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  text-decoration: none;
}

.logo-img {
   height: 40px;
  width: 40px;
  object-fit: contain;
  margin-right: 10px;
}
.off-name{
  font-weight: bold;
  color: #ffea00;
  font-size: 1.2rem;
  font-family:'Toxigenesis', sans-serif;
  
}
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Root color variables */
:root {
  --primary-blue: #202866;
  --accent-yellow: #eccd44;
  --light-bg: #f9f9f9;
  --dark-text: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-blue);
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-yellow);
  font-family:'Toxigenesis', sans-serif;
}
.off-name{
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-yellow);
  padding: left 100px;
}
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: rgb(241, 241, 245);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-yellow);
}

/* Hero Section */
.hero{
  background-color: var(--light-bg);
  padding: 18rem 11rem;
  text-align: center;
  background-image: url('../images/welcome_img.png');
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('../images/welcome_img.png') no-repeat center center;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--light-bg);
  overflow: hidden;
}
canvas.particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0; 
  background: url('../images/welcome_img.png') no-repeat center center;
  background-size: cover;
  transform: rotate(180deg); 
  opacity: 0.3;
  z-index: -1; 
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.btn-primary {
  background-color: var(--accent-yellow);
  color: var(--primary-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6bc16;
}
.services-preview {
  text-align: center;
  padding: 50px 20px;
}

.services-preview h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-blue);
}
/* Services Preview */
/* .services-preview {
  text-align: center;
  padding: 50px 20px;
}

.services-preview h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-blue);
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
 background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
 transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}
.service-card .icon {
  font-size: 40px;
  color: #202866;
  background: #eccd44;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #555;
} */

/* Services Header */
.services-header {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18rem 11rem;
  text-align: center;
  flex-direction: column;
  z-index: 1;
  
}
.services-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color:#ffea00;
}
.services-header p{
   font-size: 2.2rem;
   color: #202866;
}

.services-details {
  padding: 60px 10%;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem 0;
  gap: 2rem;
}

.service-row.reverse {
  flex-direction: row-reverse;
}
.service-row img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-text {
  flex: 1;
}

.service-text h2 {
  color: #202866;
  margin-bottom: 1rem;
}

.service-text p {
  color: #444;
  line-height: 1.6;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


/* Call to Action */
.cta{
  background-color: #202866;   
  color: white;
  padding: 40px 20px;
  
  background-image: url('..images/home1-img.jpg');
  position: relative;
  height: 50vh;
  display: flex;
  flex-direction: column;
 
  background: url('..images/home1-img.jpg') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

 .cta-container {
  display: flex;
  justify-content: space-between;
  align-items:center;
  padding-left: 200px;
  flex-wrap: wrap;
}

.cta-left {
  flex: 1;
  min-width: 250px;
}

.cta-left h2 {
  margin-bottom: 10px;
}

.cta-right {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 15px;
 padding: 10px;
  
}
.cta-right img {
  max-width: 120px; 
  height: auto;
  margin-bottom: 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
  margin-left: 50px;
  filter: brightness(0) invert(1); 
}
.social-links{
  text-align: left;
  padding: 10px;
}
.social-links a{
  margin-right: 15px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-right {
    text-align: center;
    margin-top: 20px;
  }
} 

/* Footer */
footer {
  background-color: #202866; /* Blue theme */
  color: white;
  text-align: center;
  padding: 5px 0;
  margin-top: 50px; /* space above footer */

}

footer p {
  margin: 5px 0;
  font-size: 14px;
}

footer a {
  color: #eccd44; /* Yellow link */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}


/* Responsive */
/* @media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
} */

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
    cursor: pointer;
  }
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.about-section {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: padding-left;
  position: relative;
}


.about-section h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.about-section p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.8;
}

.about-container{
  display: flex;
  align-items: center;       /* vertically center content */
  justify-content: space-between;
  gap: 40px;                 /* space between text & image */
  padding: 40px;
}
.about-text {
  flex: 1;                   /* takes equal space */
}
.about-text h1{
  font-family: "Times New Roman", Times, serif;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;  /* stack on mobile */
    text-align: center;
  }
  .about-image {
    text-align: center;
  }
}
/*mission and version*/
.mission-vision {
  padding: 3rem 2rem;
  background-color:#f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  text-align: center;
}

.mission-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.about-card-mission{
   background: #fff;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card-mission:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.about-card-mission h3{
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #202866;
}
.about-card-mission{
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.mv-box h2 {
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
}

.mv-box p, .mv-box ul {
  color: #333;
}

.mv-box ul {
  padding-left: 1.2rem;
}

.why-us {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  max-width: 900px;
  margin: 50px auto;
}

.why-us h2 {
   font-size: 26px;
  font-weight: 700;
  color: #202866; /* Matches your blue theme */
  margin-bottom: 30px;
}

.why-list {
   list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.why-list li {
 font-size: 18px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-page {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-page h1 {
 font-size: 2.5rem;
  color: #202866;
}

.services-page p {
   max-width: 600px;
  margin: 10px auto 40px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
 font-size: 1.3rem;
  color: #202866;
  margin-bottom: 15px;
}

.service-card p {
   color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* ---------- Careers ---------- */
/* ---------- Careers ---------- */
.career-section {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}
.career-header {
  margin-top: -3rem;
  margin-left: -3rem;
  margin-right: -3rem;
  background-image: url("career-page-img.webp");
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18rem 11rem;
  text-align: center;
  flex-direction: column;
  z-index: 1;
}
.career-header h1 {
  font-size: 3.5rem;
  color: #ffea00;
}

.career-header p {
  font-size: 2rem;
  color: #202866;
}
.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top:8rem;
  max-width: 1100px;
  margin: auto;
}

.job-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.apply-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.form-heading {
   margin-top: 2rem;
  font-size: 2rem;
  color: var(--primary-blue);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
}

.btn {
  background-color: var(--accent-yellow);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffdb4d;
}
/* Team Section */
/* .team-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.team-section h2 {
  font-size: 2.5rem;
  color: #202866;
  margin-bottom: 40px;
}

.team-section .section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-section .section-subtitle {
  color: gray;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
 transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.team-card img {
   width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eccd44; /* Yellow border 
  margin-bottom: 15px;
}

.team-card h3 {
   font-size: 18px;
  color: #202866;
}

.team-card p {
 font-size: 14px;
  color: #555;
} */

.team-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 10%;
  background: white;
}

.team-content {
  flex: 1;
  padding-right: 2rem;
}

.team-content h2 {
  color: #4a3aff;  /* purple like in your design */
  font-size: 2rem;
  font-weight: bold;
}

.team-content p {
  margin: 1rem 0;
  color: #555;
  line-height: 1.6;
}

.btn-explore {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #5c4dff;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-explore:hover {
  background: #3d2fe0;
}

.team-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-image img {
  margin:100px;
  padding: 15px;
  width:100%;
  height:50vh;
  max-width: 650px;
  display: block; 
  
}

/* Contact Section */
/* === CONTACT PAGE CUSTOM STYLES === */

.contact-banner {
 height: 50vh;
 position: relative;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18rem 11rem;
  text-align: center;
  flex-direction: column;
  z-index: 1;
  color: #fff;
}
.banner-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-banner .banner-text {
  flex: 1;
}
.contact-banner h1 {
  font-size: 2.5rem;
  color: #202866;
  margin-bottom: 1rem;
}

.contact-banner p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
}
.contact-main {
  background-color: #f9f9f9; /* light grey background */
  padding: 4rem 2rem;
}
/* Contact Details + Form */
.contact-main .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
   max-width: 1100px;
  margin: 0 auto;
}

.contact-details {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: left;
}
.contact-details h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #202866;
}

.contact-details h4 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  color: #202866;
}

.contact-details p {
  margin: 0.5rem 0;
  color: #444;
  line-height: 1.5;
}

.contact-details i {
  margin-right: 8px;
  color: #eccd44; /* yellow icons */
}
/* Social icons inside contact details */
.contact-social {
  margin-top: 0.8rem;
}

.contact-social a {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #202866;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: #eccd44;
}

.contact-form{
   background: #ffffff;             /* white background */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-bottom: 6px solid #faef75; /* yellow bottom border */
}
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  background: #202866; /* primary blue */
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background: #ffea00; /* yellow on hover */
  color: #202866;
}

/* Footer Container */
/* Modern Footer */
.modern-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #202866; /* Dark blue */
  color: #fff;
  align-items: start;
}
.footer-services h3 {
  color: #eccd44;
  margin-bottom: 1rem;
}

.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-services ul li {
  margin-bottom: 0.6rem;
}

.footer-services ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-services ul li a:hover {
  color: #eccd44;
}
.footer-about img.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

.footer-links h3,
.footer-social h3 {
  color: #eccd44; /* Yellow heading */
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #eccd44;
}

/* Social Media */
.footer-social a {
  font-size: 1.4rem;
  margin-right: 15px;
  color: #eccd44;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* Bottom Copyright */
.footer-bottom {
  background-color: #1a1f4a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #bbb;
}

@media (max-width: 900px) {
  .modern-footer {
    grid-template-columns:1fr 1fr;
    text-align: center;
  }
  .footer-about {
    grid-column: span 2;
  }
  .footer-social {
    margin-top: 1rem;
  }
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-banner {
    flex-direction: column;
    text-align: center;
  }
  .contact-main .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Existing styles above remain the same */

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Mobile navbar styles */
@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--primary-blue);
    width: 200px;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem 0;
    width: 100%;
    color: white;
  }
}

/* === HERO RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 8rem 4rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* 
/* === CTA RESPONSIVE === 
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cta-right img {
    max-width: 80px;
  }
} */

/* === ABOUT SECTION RESPONSIVE === */
@media (max-width: 768px) {
  .about-container {
    padding: 20px;
    gap: 20px;
  }
}

/* === SERVICE & TEAM CARDS RESPONSIVE === */
@media (max-width: 500px) {
  .service-card h3 {
    font-size: 1rem;
  }

  .team-card img {
    width: 90px;
    height: 90px;
  }
}
/* Center align Welcome section */
.welcome-section {
  text-align: center;
  max-width: 900px; /* keeps text from stretching too wide */
  margin: 0 auto;   /* centers the block horizontally */
  padding: -5rem;
}

.welcome-section h2 {
  margin-bottom: 1rem;
  font-size: 2.8rem;
  color: #202866;
}

.welcome-section p {
font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
}
/* --- Service Animation --- */
/* Roll-in animations */
@media (max-width: 768px) {
  .career-header {
    height: auto;
    padding: 4rem 2rem;
  }
  .career-header h1 {
    font-size: 2rem;
  }
  .career-header p {
    font-size: 1.2rem;
  }
}
.career-section {
  padding: 3rem 2rem 5rem 2rem; /* added bottom padding */
  background-color: #f9f9f9;
  text-align: center;
}

/* ---------------- ABOUT PAGE ---------------- */

/* Hero Banner */
.about-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18rem 11rem;
  text-align: center;
  flex-direction: column;
  z-index: 1;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
}
.about-hero-text {
  position: relative;
  z-index: 2;
}
.about-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color:#ffea00;
}
.about-hero-text p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  color:#fff;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background: #fff;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}
.about-text p{
  font-size: 1rem;
}
.about-text blockquote {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fef9e7;
  border-left: 5px solid #ffcc00;
  font-style: italic;
}

.about-image img {
  width: 200%;
  height: auto;
  border-radius: 10px;       /* optional rounded corners */
}

/* Mission & Vision */
.mission-vision {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}
.mission-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.about-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #003366;
}
.about-card .card-icon {
  font-size: 2.5rem;
  color: #ffcc00;
}

/* Why Choose Us */
.why-choose {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.why-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.why-card:hover {
  background: #fef9e7;
  transform: translateY(-6px);
}
.why-card i {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;
}
.why-card h4 {
  margin-bottom: 0.5rem;
  color: #003366;
}

/* CTA Section */
.about-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #003366, #0055aa);
  color: #fff;
}
.about-cta h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.about-cta .btn-primary {
  padding: 0.8rem 2rem;
  background: #ffcc00;
  color: #003366;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.about-cta .btn-primary:hover {
  background: #ffaa00;
  color: #fff;
}

/* Footer Modern Layout */
.modern-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: #003366;
  color: #fff;
}
.footer-about p {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}
.footer-links a,
.footer-services a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-services a:hover {
  color: #ffcc00;
}
.footer-social a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #ffcc00;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #fff;
}
.footer-bottom {
  background: #002244;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #ddd;
}
/*------------------------------career page-------------------->*/
/* ---------- Careers ---------- */

/* Banner */
.career-hero {
  margin-top: -3rem;
  margin-left: -3rem;
  margin-right: -3rem;
 background-image: url("images/career-page-img.webp");
 height: 50vh;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 48vh;
    display: flex;
  align-items: center;
    justify-content: center;
  padding: 18rem 11rem;
  text-align: center;
    flex-direction: column;
  z-index: 1;
}
.career-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.career-hero__content{
  position:relative; z-index:1; text-align:center; color:#fff;
  max-width: 860px; padding: 0 1rem;
}
.career-hero__content h1{ font-size:3.5rem; margin-bottom:.6rem; color: #ffea00; }
.career-hero__content p{ opacity:.95; margin-bottom:1.2rem; font-size: 2rem; color: #202866; }
.btn-primary{
  display:inline-block; padding:.8rem 1.4rem; border-radius:10px;
  background:#ffcc00; color:#003366; font-weight:600; text-decoration:none;
  transition: transform .2s ease, background-color .25s ease;
}
.btn-primary:hover{ transform: translateY(-2px); background:#ffaa00; color:#fff; }

/* Jobs */
.jobs-wrap{ padding: 3.5rem 1.2rem; max-width:1200px; margin:0 auto; }
.jobs-head{ text-align:center; margin-bottom:1.8rem; }
.jobs-head h2{ color:#003366; margin-bottom:.4rem; }

.jobs-grid{
  display:grid; gap:1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.job-card{
  background:#fff; border-radius:14px; padding:1.25rem 1.25rem 1.1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-bottom: 4px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.job-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  border-color:#ffcc00;
}
.job-card__head{ display:flex; justify-content:space-between; align-items:center; gap:8px; }
.job-card h3{ margin:0; color:#0e1f4d; font-size:1.15rem; }
.badge{
  background:#fef6cc; color:#856000; padding:.25rem .55rem; border-radius:999px;
  font-size:.78rem; font-weight:600;
}
.job-meta{ list-style:none; padding:0; margin:.6rem 0 .6rem; display:flex; gap:1rem; color:#555; font-size:.92rem; }
.job-meta i{ color:#ffcc00; margin-right:6px; }
.skills{ display:flex; flex-wrap:wrap; gap:.5rem; margin:.4rem 0 1rem; }
.skills span{
  background:#f5f7fb; color:#2c3e66; padding:.35rem .55rem; border-radius:8px; font-size:.85rem;
  border:1px solid #e6ebf5;
}
.apply-btn{
  width:100%; padding:.7rem 1rem; border-radius:10px; border:0; cursor:pointer;
  background:#003366; color:#fff; font-weight:600; transition: background .25s ease, transform .2s ease;
}
.apply-btn:hover{ background:#274b8f; transform: translateY(-2px); }

/* Perks */
.perks{ background:#f9fafc; padding:3.2rem 1.2rem; }
.perks h2{ text-align:center; color:#003366; margin-bottom:1.4rem; }
.perks-grid{ display:grid; gap:1.2rem; max-width:1100px; margin:0 auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.perk{ background:#fff; border-radius:14px; padding:1.3rem; text-align:center; box-shadow:0 4px 14px rgba(0,0,0,.06); }
.perk i{ font-size:1.8rem; color:#ffcc00; margin-bottom:.6rem; display:block; }
.perk h4{ margin:.3rem 0 .4rem; color:#0e1f4d; }

/* Process */
.process{ padding:3.2rem 1.2rem; max-width:1100px; margin:0 auto; }
.process h2{ text-align:center; color:#003366; margin-bottom:1.6rem; }
.process-steps{
  display:grid; gap:1rem; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
}
.step{ background:#fff; border-radius:14px; padding:1.2rem; text-align:center;
  border:1px solid #eef1f8; box-shadow:0 4px 14px rgba(0,0,0,.05); }
.step span{
  display:inline-grid; place-items:center; width:36px; height:36px; border-radius:50%;
  background:#ffcc00; color:#003366; font-weight:700; margin-bottom:.4rem;
}
.step h5{ margin:.2rem 0 .2rem; color:#0e1f4d; }

/* Form */
.form-heading{ text-align:center; margin: 2rem 0 1rem; color:#003366; }
.apply-form{
  max-width: 1000px; margin:0 auto 4rem; background:#f8fafc;
  border-radius:14px; padding:1.4rem; box-shadow:0 8px 22px rgba(0,0,0,.08);
  border-bottom: 6px solid #ffcc00; /* yellow bottom bar */
}
.form-row{ display:grid; gap:1rem; grid-template-columns: 1fr 1fr; }
.form-group{ display:flex; flex-direction:column; gap:.35rem; }
.apply-form label{ font-weight:600; color:#273a6a; }
.apply-form input, .apply-form select, .apply-form textarea{
  width:100%; padding:.8rem .9rem; border:1px solid #dbe3f2; border-radius:10px; outline:none;
  background:#fff; color:#1a2b55;
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus{
  border-color:#8fb3ff; box-shadow:0 0 0 3px rgba(143,179,255,.25);
}
.apply-form .hint{ color:#6b7a99; font-size:.82rem; margin-top:.2rem; display:block; }
.apply-form .btn-primary{ margin-top:.6rem; }

@media (max-width: 860px){
  .form-row{ grid-template-columns: 1fr; }
}
