/* --- RESET & BASICS --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: #fff; color: #333; line-height: 1.6; }
a { text-decoration: none; }
ul { list-style: none; }

/* --- THE MAGIC ALIGNMENT BOX --- */
.container {
    max-width: 1100px; /* Limits width so it doesn't stretch too far on big screens */
    margin: 0 auto;    /* Centers the box */
    padding: 0 20px;   /* Prevents text touching the edge on phones */
    width: 100%;
}

/* --- NAVBAR --- */
.navbar {
    height: 80px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center; /* Vertically centers everything */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: bold; color: #0056b3; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: #333; font-weight: 500; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0,86,179,0.9), rgba(0,86,179,0.7)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* --- BUTTONS --- */
.btn-primary {
    background: #0056b3;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover { background: #004494; }
.full-width { width: 100%; margin-top: 10px; }

/* --- STATS STRIP --- */
.stats-bar { background: #f8f9fa; padding: 40px 0; border-bottom: 1px solid #eee; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.stat-box { display: flex; align-items: center; gap: 15px; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.stat-box i { font-size: 2rem; color: #0056b3; }
.stat-box h3 { margin: 0; font-size: 1.2rem; }
.stat-box p { margin: 0; color: #666; font-size: 0.9rem; }

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.bg-light { background: #f4f7f6; }
.heading { font-size: 2.2rem; color: #0056b3; margin-bottom: 10px; }
.center-heading { text-align: center; margin-bottom: 50px; }
.line { width: 60px; height: 4px; background: #0056b3; margin-bottom: 20px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- SPLIT LAYOUT (About) --- */
.split-layout { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.image-col, .text-col { flex: 1; min-width: 300px; }
.image-col img { width: 100%; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.check-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.check-list i { color: #28a745; }

/* --- CARDS (Services) --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.icon-box { width: 70px; height: 70px; background: #e3f2fd; color: #0056b3; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }

/* --- FOOTER --- */
footer { background: #222; color: #ddd; padding-top: 50px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.footer-info h3, .footer-contact h3 { color: white; margin-bottom: 15px; }
.copyright { text-align: center; padding: 20px; background: #111; font-size: 0.9rem; margin-top: -5px;}
.map-box iframe { display: block; }

/* --- MODAL --- */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; }
.modal-content { background: white; width: 90%; max-width: 400px; margin: 100px auto; padding: 30px; border-radius: 8px; position: relative; }
.close-modal { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; cursor: pointer; }
input { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; }

/* --- WHATSAPP --- */
.whatsapp-btn { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; }

/* --- MOBILE --- */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: white; z-index: 1001; transition: 0.3s; padding: 60px 20px; display: flex; flex-direction: column; gap: 20px; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; font-size: 2rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-links, .navbar .btn-primary { display: none; }
    .hamburger { display: block; }
    .hero { height: auto; padding: 80px 0; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .split-layout { flex-direction: column; }
}