/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    width: 92%;
    margin: auto;
}

/* -------- TOP STRIP -------- */
.top-strip {
    background: #f5f5f5;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

.top-strip-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #444;
}

.strip-btn {
    padding: 6px 14px;
    border: 1px solid #0098db;
    color: #0098db;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
}
.strip-btn.filled {
    background: #0098db;
    color: #fff;
}

/* -------- NAVBAR -------- */
.main-header {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu a.active {
    color: #0098db;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Navbar */
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 75px;
        right: 0;
        background: #fff;
        width: 220px;
        padding: 20px;
        gap: 0;
        display: none;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .nav-menu.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}


/* HERO SECTION */
.about-hero {
    background: url("about-bg.png") center/cover no-repeat;
    height: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}


/* WHO WE ARE */
.who-we-are {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px auto;
    gap: 40px;
}

.text-block h2 {
    font-size: 28px;
    color: #0076c8;
    margin-bottom: 15px;
}

.text-block p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.image-block img {
    width: 450px;
    border-radius: 8px;
}


/* WHY US */
.why-us {
    margin: 60px auto;
    text-align: center;
}

.why-us h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #0076c8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 6px;
}

.why-card h4 {
    margin-top: 10px;
}


/* SEGMENTS */
.segments h2 {
    text-align: center;
    font-size: 28px;
    color: #0076c8;
    margin-bottom: 25px;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.segment-card {
    text-align: center;
}

.segment-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}


/* VALUES */
.values-section {
    background: #eef7ff;
    padding: 40px 0;
    margin-top: 60px;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0076c8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}


/* RESPONSIVE */
@media(max-width: 900px) {

    .who-we-are {
        flex-direction: column;
        text-align: center;
    }

    .image-block img {
        width: 100%;
    }

    .why-grid,
    .segment-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {

    .why-grid,
    .segment-grid,
    .values-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-hero {
        height: 240px;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}

/* ===== Footer ===== */
.footer {
    background: #f5f7fa;
    color: #2b2b2b;
    margin-top: 70px;
    border-top: 1px solid #e0e0e0;
}

.footer-top {
    max-width: 1300px;
    padding: 60px 30px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003366;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 280px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #0078d4;
}

/* Contact Icons */
.footer-contact li i {
    margin-right: 8px;
    color: #0078d4;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8ecf1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078d4;
    font-size: 18px;
    transition: 0.25s ease;
}

.social-icon:hover {
    background: #0078d4;
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 18px;
    background: #e7ecf5;
    font-size: 14px;
    color: #4d4d4d;
}

/* Responsive */
@media(max-width: 950px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-tagline {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
}

