:root {
    --brand: #1a6fc4;
    --brand-dark: #145ca3;
    --brand-light: #e8f1fb;
    --accent: #f0a500;
    --text: #212529;
    --muted: #6c757d;
    --border: #dee2e6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
}

/* NAVBAR */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand) !important;
}

.navbar-brand span {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
}

.nav-phone {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-phone:hover {
    color: var(--brand-dark);
}

/* HERO */
.hero {
    position: relative;
    background: 
        linear-gradient(rgba(248,251,255,0.9), rgba(238,244,253,0.9)),
        url('images/hero-bg.jpg'); /* your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0 60px;
    border-bottom: 1px solid #dce8f8;

}

.hero-badge {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--brand);
}

.hero p.lead {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.hero-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #dce8f8;
    box-shadow: 0 8px 40px rgba(26, 111, 196, 0.1);
    padding: 2rem 1.75rem;
}

.hero-row-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f4fb;
}

.hero-row-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-row-item:first-child {
    padding-top: 0;
}

.h-icon {
    width: 42px;
    height: 42px;
    background: var(--brand-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.h-title {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.1rem;
}

.h-sub {
    font-size: 0.78rem;
    color: var(--muted);
}

.badge-green {
    background: #e6f4ea;
    color: #2e7d32;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* STATS */
.stat-row {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 3px;
}

/* SECTION COMMONS */
.section-eyebrow {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 0.6rem;
}

/* SERVICES */
.services {
    padding: 70px 0;
    background: #fff;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    background: #fff;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 6px 28px rgba(26, 111, 196, 0.12);
    border-color: #c0d8f5;
    transform: translateY(-3px);
}

.svc-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    color: var(--brand);
}

.service-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-list li {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.28rem 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.svc-list li:last-child {
    border-bottom: none;
}

.svc-list li i {
    color: var(--brand);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* ABOUT */
.about-sec {
    padding: 70px 0;
    background: #f8fbff;
}

.about-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #dce8f8;
    box-shadow: 0 4px 24px rgba(26, 111, 196, 0.07);
    padding: 2.25rem;
}

.avatar {
    width: 64px;
    height: 64px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.role-tag {
    font-size: 0.76rem;
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.9rem;
}

.c-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.c-row i {
    color: var(--brand);
    width: 16px;
    text-align: center;
}

.c-row a {
    color: var(--text);
    text-decoration: none;
}

.c-row a:hover {
    color: var(--brand);
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pillar:last-child {
    border-bottom: none;
}

.p-icon {
    width: 36px;
    height: 36px;
    background: var(--brand-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pillar h6 {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.1rem;
}

.pillar p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* STEPS */
.steps-sec {
    padding: 70px 0;
    background: #fff;
}

.step-card {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--brand);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.step-card h6 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.step-card p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* CTA */
.cta-sec {
    background: var(--brand);
    padding: 55px 0;
}

.cta-sec h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.cta-sec p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.93rem;
    margin: 0;
}

.cta-btn {
    background: #fff;
    color: var(--brand);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background: #f0f6ff;
    transform: translateY(-2px);
    color: var(--brand-dark);
}

/* FOOTER */
footer {
    background: #f8f9fa;
    border-top: 1px solid var(--border);
    padding: 1.75rem 0;
}

.f-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--brand);
    font-size: 0.95rem;
}

/* BUTTONS */
.btn-brand {
    background: var(--brand);
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, transform 0.2s;
}

.btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-out {
    border: 1.5px solid var(--brand);
    color: var(--brand);
    font-weight: 500;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, transform 0.2s;
    background: transparent;
}

.btn-out:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
    color: var(--brand);
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Google Map Section */
.map-responsive {
    overflow: hidden;
    border-radius: 10px;
}

.map-responsive iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
/* Scroll to Top Button  */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    background-color: #0d6efd; /* change to your theme */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background-color: #0b5ed7;
}
/* Social Media Links */