* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #071b52;
    color: #fff;
    line-height: 1.7;
}

/* HEADER */
header {
    background: #071b52;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.logo-text h2 {
    font-size: 28px;
}

.logo-text p {
    font-size: 14px;
    color: #cfcfcf;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
    transition: .3s;
}

nav a:hover {
    color: #4da3ff;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(7,27,82,.75), rgba(7,27,82,.75)), url("about-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 850px;
    margin: auto;
    color: #ddd;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 70px 0;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.section-text {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: #ddd;
}

/* Mission & Vision Styling */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-box {
    background: #102b6b;
    padding: 40px 35px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.15);
    text-align: center;
    transition: .3s;
}

.info-box:hover {
    transform: translateY(-8px);
    background: #143985;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.info-box h2 {
    font-size: 32px;
    color: #4da3ff;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 17px;
    color: #ddd;
    line-height: 1.8;
}

/* Services Grid Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-box {
    background: #102b6b;
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,.15);
    transition: .3s;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-8px);
    background: #143985;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #4da3ff;
}

.service-box p {
    color: #ddd;
    font-size: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 32px;
    }
}