* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f7fb;
}

/* ================= NAVBAR ================= */

/* .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    background: #081a36;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo span {
    color: white;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00bfff;
}

.nav-links a.active {
    color: #00bfff;
} */

/* Mobile */
/* .menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 8%;
        background: #081a36;
        padding: 20px;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
} */

/* ================= ABOUT HERO ================= */





.navbar{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  z-index:1000;
}

.logo{
  height:38px;
}

.nav-links{
  display:flex;
  align-items:center;
}

.nav-links a{
  color:#333;
  margin:0 14px;
  text-decoration:none;
  font-weight:500;
}

.nav-links a:hover{
  color:#2563eb;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

.about-hero {
    padding: 160px 8% 100px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.small-title {
    color: #00bfff;
    letter-spacing: 2px;
    font-size: 14px;
}

.about-text h1 {
    font-size: 42px;
    margin: 15px 0 25px;
    color: #0a1f44;
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-text h1 {
        font-size: 30px;
    }
}









.mission-vision-section {
    position: relative;
    background: url("mission-bg.jpg") center/cover no-repeat;
    padding: 120px 8%;
    color: white;
}

.mv-overlay {
    background: rgba(8, 26, 54, 0.85); /* dark blue overlay */
    padding: 100px 0;
}

.mv-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.mv-box {
    flex: 1;
    min-width: 300px;
}

.mv-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.mv-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
    .mv-container {
        flex-direction: column;
        gap: 50px;
    }

    .mv-box h2 {
        font-size: 28px;
    }

    .mv-box p {
        font-size: 16px;
    }
}




/* ---------------------footer----------------------- */.footer {
    background: #081a36;
    color: #ccc;
    padding: 80px 8% 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #00bfff;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #888;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}




