﻿/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html { scroll-behavior: smooth; }
body { color: #0d1b2a; background: #fff; font-family: 'Poppins', sans-serif; }
span, .accent { color: #65C246; }

/* ===== NAV ===== */
nav {
    width: 100%; height: 90px; background: #fff;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 100px; position: sticky; top: 0; z-index: 999;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.first {
    width: 70px; height: 70px;
    background: url('../images/corporate-logo-removebg-preview.png') center/cover no-repeat;
    flex-shrink: 0;
}
.last { display: flex; gap: 28px; align-items: center; }
.navlinks { color: #0d1b2a; font-size: 15px; font-weight: 500; transition: color 0.3s; }
.navlinks:hover { color: #65C246; }
.navlink {
    padding: 10px 24px; background: #65C246; color: #fff;
    border-radius: 50px; font-weight: 600; font-size: 14px; transition: background 0.3s;
}
.navlink:hover { background: #4da832; }
.navlinkk {
    padding: 10px 24px; border: 2px solid #65C246; color: #0d1b2a;
    border-radius: 50px; font-weight: 600; font-size: 14px;
    transition: background 0.3s, color 0.3s;
}
.navlinkk:hover { background: #65C246; color: #fff; }
.namee { font-size: 14px; color: #0d1b2a; font-weight: 600; }
#icon { display: none; font-size: 24px; cursor: pointer; }
.menu, .men, .menn { display: none; }
.what-btn {
    position: fixed; bottom: 20px; right: 20px;
    font-size: 54px; color: #25D366; z-index: 1000;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

/* ===== UTILITIES ===== */
.section-label {
    display: inline-block; background: rgba(101,194,70,0.12); color: #65C246;
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 14px;
}
.section-label.light { background: rgba(255,255,255,0.15); color: #fff; }
.section-title { font-size: 36px; font-weight: 700; color: #0d1b2a; line-height: 1.25; margin-bottom: 14px; }
.section-title.light { color: #fff; }
.section-sub { font-size: 16px; color: #6b7a8d; max-width: 620px; line-height: 1.75; margin-bottom: 48px; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; background: #65C246; color: #fff;
    border-radius: 50px; font-weight: 600; font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: #4da832; transform: translateY(-2px); }
.btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; border: 2px solid rgba(255,255,255,0.5); color: #fff;
    border-radius: 50px; font-weight: 600; font-size: 15px;
    transition: border-color 0.3s, background 0.3s;
}
.btn-outline-white:hover { border-color: #65C246; background: rgba(101,194,70,0.15); }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===== PAGE HERO ===== */
.page-hero { width: 100%; background: url('../images/n-head.jpg') center/cover no-repeat; min-height: 60vh; }
.page-hero-overlay {
    min-height: 60vh; width: 100%;
    background: linear-gradient(135deg, rgba(13,27,42,0.90) 0%, rgba(13,27,42,0.70) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 40px; gap: 18px;
}
.page-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(101,194,70,0.18); border: 1px solid rgba(101,194,70,0.4);
    color: #a8e890; font-size: 13px; font-weight: 600; letter-spacing: 1px;
    padding: 7px 20px; border-radius: 50px;
}
.page-hero h1 { font-size: 52px; font-weight: 800; color: #fff; line-height: 1.15; max-width: 760px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.80); max-width: 640px; line-height: 1.75; }

/* ===== MISSION / VISION / STRATEGY ===== */
.mvs-section {
    width: 100%; padding: 80px 80px;
    display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
    background: #f7f9fc;
}
.mvs-card {
    flex: 1; min-width: 260px; max-width: 360px;
    background: #fff; border-radius: 20px; padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex; flex-direction: column; gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.mvs-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); }
.mvs-card.featured { border-top: 4px solid #65C246; }
.mvs-icon {
    width: 56px; height: 56px; background: rgba(101,194,70,0.1);
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 24px; color: #65C246;
}
.mvs-card h3 { font-size: 20px; font-weight: 700; color: #0d1b2a; }
.mvs-card p { font-size: 15px; color: #6b7a8d; line-height: 1.7; }

/* ===== WHO WE ARE ===== */
.whowe-section {
    width: 100%; padding: 100px 80px;
    display: flex; align-items: center; justify-content: center;
    gap: 80px; flex-wrap: wrap; background: #fff;
}
.whowe-text { flex: 1; min-width: 300px; max-width: 540px; display: flex; flex-direction: column; gap: 16px; }
.whowe-text p { font-size: 15px; color: #5a6a7a; line-height: 1.8; }
.whowe-stats { display: flex; gap: 40px; margin: 24px 0; }
.whowe-stat h3 { font-size: 36px; font-weight: 800; color: #65C246; }
.whowe-stat p { font-size: 13px; color: #6b7a8d; }
.whowe-image { flex: 1; min-width: 280px; max-width: 480px; display: flex; justify-content: center; }
.whowe-img-inner {
    width: 420px; height: 420px; border-radius: 24px;
    background: url('../images/c-head.png') center/cover no-repeat;
    box-shadow: 0 20px 60px rgba(13,27,42,0.15);
}

/* ===== WHY CHOOSE US ===== */
.about-why { width: 100%; background: #f7f9fc; padding: 100px 80px; }
.about-why-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-why-grid {
    width: 100%; max-width: 1100px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left;
}
.about-why-card {
    background: #fff; border-radius: 18px; padding: 32px 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 12px;
    border-bottom: 4px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.about-why-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(101,194,70,0.14); border-bottom-color: #65C246; }
.about-why-icon {
    width: 52px; height: 52px; background: rgba(101,194,70,0.1);
    border-radius: 13px; display: flex; align-items: center;
    justify-content: center; font-size: 22px; color: #65C246;
}
.about-why-card h4 { font-size: 16px; font-weight: 700; color: #0d1b2a; }
.about-why-card p { font-size: 14px; color: #6b7a8d; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.about-cta {
    width: 100%;
    background: url('../images/serv.png') center/cover no-repeat;
    background-attachment: fixed;
}
.about-cta-overlay {
    width: 100%; padding: 100px 40px;
    background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.78) 100%);
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}
.about-cta-overlay h2 { font-size: 42px; font-weight: 800; color: #fff; max-width: 700px; line-height: 1.2; }
.about-cta-overlay p { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 620px; line-height: 1.75; }

/* ===== FOOTER ===== */
footer { width: 100%; background: #0d1b2a; color: #fff; padding: 60px 100px 20px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 50px; }
.footer-section { display: flex; flex-direction: column; gap: 12px; }
.footer-section h3 { color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.footer-section a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.3s; }
.footer-section a:hover { color: #65C246; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; margin-bottom: 30px; }
.footer-logo { display: flex; flex-direction: column; gap: 12px; }
.footer-logo img { width: 140px; height: auto; }
.footer-logo p { color: rgba(255,255,255,0.5); font-size: 13px; }
.app-buttons { display: flex; gap: 10px; }
.app-btn { background: rgba(255,255,255,0.1); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 13px; border: 1px solid rgba(255,255,255,0.15); }
.footer-signup { display: flex; flex-direction: column; gap: 12px; }
.footer-signup h3 { color: #fff; }
.signup-form { display: flex; gap: 10px; }
.signup-form input { padding: 10px 16px; border-radius: 8px; border: none; outline: none; font-size: 14px; }
.signup-form button { background: #65C246; color: #fff; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.certifications { display: flex; gap: 20px; align-items: center; }
.certifications img { height: 60px; width: auto; border-radius: 8px; }
.copyright { text-align: center; color: rgba(255,255,255,0.35); padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; }
.copyright a { color: rgba(255,255,255,0.35); }
.copyright a:hover { color: #65C246; }
.success-message { background: rgba(101,194,70,0.1); border: 1px solid #65C246; color: #2d6a18; padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; }
.error-message { background: rgba(220,53,69,0.1); border: 1px solid #dc3545; color: #8b1a25; padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .navlinks, .navlinkk, .navlink, .namee { display: none; }
    #icon { display: block; }
    .menu {
        display: none; position: fixed; top: 0; left: 0;
        width: 75%; height: 100%; background: #fff; z-index: 10000;
        flex-direction: column; padding: 60px 30px; gap: 24px;
    }
    .menu.active { display: flex; }
    .navlin { color: #0d1b2a; font-size: 18px; font-weight: 600; }
    .navli { padding: 12px 24px; border: 2px solid #65C246; color: #0d1b2a; border-radius: 50px; font-weight: 600; text-align: center; }
    .navl { padding: 12px 24px; background: #0d1b2a; color: #fff; border-radius: 50px; font-weight: 600; text-align: center; }
    .menn {
        display: none; position: fixed; top: 0; left: 0;
        width: 75%; height: 100%; background: #65C246; z-index: 10001;
        flex-direction: column; padding: 60px 30px; gap: 24px;
    }
    .menn.active { display: flex; }
    #cancel { font-size: 28px; color: #fff; cursor: pointer; }
    .men {
        display: none; position: fixed; top: 90px; right: 20px;
        width: 200px; background: #fff; border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15); z-index: 999;
        flex-direction: column; padding: 20px; gap: 16px;
    }
    .men.activee { display: flex; }
    .navlins { color: #0d1b2a; font-weight: 600; }
    .page-hero h1 { font-size: 30px; }
    .page-hero p { font-size: 15px; }
    .page-hero-overlay { padding: 60px 20px; }
    .mvs-section { padding: 60px 20px; flex-direction: column; align-items: center; }
    .mvs-card { max-width: 100%; }
    .whowe-section { padding: 60px 20px; flex-direction: column; }
    .whowe-img-inner { width: 100%; height: 260px; }
    .whowe-stats { flex-wrap: wrap; gap: 20px; }
    .section-title { font-size: 26px; }
    .about-why { padding: 60px 20px; }
    .about-why-grid { grid-template-columns: 1fr; }
    .about-cta-overlay { padding: 60px 20px; }
    .about-cta-overlay h2 { font-size: 26px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline-white { width: 100%; max-width: 300px; justify-content: center; }
    footer { padding: 40px 20px 20px; }
    .footer-content, .footer-bottom { flex-direction: column; }
}
