/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0F52BA;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0F52BA;
}

/* Hero */
.hero {
    padding: 50px 0;
    background: #DBEAFE;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #0A1F44;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.primary-btn {
    background: #0F52BA;
    color: #fff;
}

.primary-btn:hover {
    background: #0A1F44;
}

.outline-btn {
    border: 2px solid #0F52BA;
    color: #0F52BA;
}

.outline-btn:hover {
    background: #0F52BA;
    color: #fff;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
}


.services {
    padding: 80px 0;
    background: #F3F4F6;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0A1F44;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0F52BA;
}

.service-card p {
    margin-bottom: 20px;
}

.why-us {
    padding: 80px 0;
    background: #DBEAFE;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card h3 {
    margin-bottom: 15px;
    color: #0F52BA;
}

.cta {
    background: #0F52BA;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
}

.cta .btn {
    background: #ffffff;
    color: #0F52BA;
}

.cta .btn:hover {
    background: #0A1F44;
    color: #ffffff;
}

.footer {
    background: #0A1F44;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer h3, 
.footer h4 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

.page-hero {
    background: #DBEAFE;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #0F52BA;
    margin-bottom: 15px;
}

.page-hero p {
    color: #0A1F44;
    font-size: 1.1rem;
}

.about-content {
    padding: 60px 20px;
}

.about-content h2 {
    color: #0F52BA;
    margin-bottom: 15px;
}

.about-content p, .about-content ul {
    margin-bottom: 25px;
    color: #333;
}

.about-content ul li {
    margin-bottom: 10px;
}



/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Full Screen Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background: #0F52BA;
        transition: 0.3s ease;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .footer-grid {
    grid-template-columns: 1fr;
}

}

.page-hero {
    background: #DBEAFE;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #0F52BA;
    margin-bottom: 15px;
}

.page-hero p {
    color: #0A1F44;
    font-size: 1.1rem;
}

.services-detailed {
    padding: 60px 20px;
}

.service-block {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-block:hover {
    transform: translateY(-6px);
}

.service-block h2 {
    color: #0F52BA;
    margin-bottom: 15px;
}

.service-block p {
    color: #333;
    line-height: 1.5;
}

.business-services {
    padding: 80px 0;
    background: #F3F4F6;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.business-card:hover {
    transform: translateY(-8px);
}

.business-card h3 {
    margin-bottom: 15px;
    color: #0F52BA;
}

.how-it-works {
    padding: 80px 0;
    background: #DBEAFE;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step h3 {
    color: #0F52BA;
    margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 768px) {

    .business-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT HERO */
.contact-hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #0F52BA, #002244);
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.2rem;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
}

/* FORM */
.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0F52BA;
    box-shadow: 0 0 5px rgba(15,82,186,0.3);
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #0F52BA;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #002244;
}

/* CONTACT INFO */
.contact-info h2 {
    margin-bottom: 20px;
}

.business-hours {
    margin-top: 20px;
}

/* CTA */
.contact-cta {
    text-align: center;
    padding: 80px 20px;
    background: #002244;
    color: white;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #0F52BA;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: white;
    color: #002244;
}

/* SOCIAL PROOF STRIP */
.trust-strip {
    background: #ffffff;
    text-align: center;
    padding: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
}

/* CONTACT CARD HIGHLIGHT PANEL */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-left: 6px solid #0F52BA;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    margin-bottom: 15px;
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card h4 {
    margin-bottom: 8px;
    color: #0F52BA;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-block {
        margin-bottom: 20px;
    }
}









