/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ================= WRAPPER ================= */
.main-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #0b5ed7;
    color: #fff;
    font-size: 14px;
    padding: 6px 20px;
}

.top-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* ================= HEADER ================= */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.site-header.shrink {
    padding: 5px 0;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* LOGO */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-brand img {
    width: 50px;
}

.logo-brand h2 {
    font-size: 18px;
    color: #0b5ed7;
}

/* NAV */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover {
    color: #0b5ed7;
}

/* ACTIVE */
nav a.active {
    color: #0b5ed7;
}

nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0b5ed7;
    bottom: 0;
    left: 0;
}

/* ================= HERO ================= */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #0b5ed7, #4dabf7);
    color: #fff;
    border-radius: 10px;
    margin: 20px 0;
}

.hero h1 {
    font-size: 32px;
}

.hero p {
    margin-bottom: 10px;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #fff;
    color: #0b5ed7;
    padding: 12px 20px;
    margin: 10px 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e9ecef;
}

/* ================= SECTIONS ================= */
section {
    margin: 40px 0;
}

h2 {
    color: #0b5ed7;
    margin-bottom: 15px;
}

/* ================= SERVICES ================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card a {
    color: #0b5ed7;
    text-decoration: none;
}

/* ================= WHY ================= */
.why ul {
    list-style: none;
}

.why li {
    padding: 8px 0;
    font-weight: 500;
}

/* ================= TRUST ================= */
.trust {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

/* ================= PROCESS ================= */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* ================= CONTACT (GENERAL) ================= */
.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

iframe {
    border-radius: 10px;
    margin-top: 15px;
}

/* ================= CONTACT PAGE ================= */
.contact-page #contact {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.contact-page .contact-box {
    padding: 30px;
}

/* ================= GALLERY PAGE ================= */
.gallery-page .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-page .gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-page .gallery img:hover {
    transform: scale(1.05);
}

/* ================= SERVICE PAGES ================= */
.service-page {
    max-width: 900px;
    margin: auto;
}

.service-page h1 {
    color: #0b5ed7;
    margin-bottom: 20px;
}

.service-page p {
    margin-bottom: 15px;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b5ed7;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}

/* ================= FLOAT BUTTONS ================= */
.whatsapp-float,
.call-float {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 55px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

/* WhatsApp */
.whatsapp-float {
    bottom: 90px;
    background: #25D366;
}

/* Call */
.call-float {
    bottom: 20px;
    background: #0b5ed7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .top-info {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

    .header-main {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 24px;
    }
}

/* ================= HOME IMPROVED ================= */

.home-page .hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #0a6ebd, #4dabf7);
    color: #fff;
    border-radius: 12px;
    margin-top: 20px;
}

.home-page .hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.home-page .hero p {
    margin-bottom: 10px;
}

.home-page .hero .btn {
    background: #fff;
    color: #0a6ebd;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

/* SECTION SPACING */
.home-page section {
    margin: 60px 0;
}

/* HEADINGS */
.home-page h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0a6ebd;
}

/* SERVICES */
.home-page .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD (UPGRADED) */
.home-page .card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.home-page .card:hover {
    transform: translateY(-5px);
}

/* WHY */
.home-page .why ul {
    list-style: none;
    padding: 0;
}

.home-page .why li {
    padding: 10px 0;
    font-weight: 500;
}

/* PROCESS */
.home-page .process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.home-page .step {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* CONTACT */
.home-page .contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

/* ================= GLOBAL UPDATE ================= */

/* Headings */
h1, h2 {
    color: #0a6ebd;
}

/* Container (used in service pages) */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* Buttons (override old white button style) */
.btn {
    background: #0a6ebd;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 10px 0 0;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #084298;
}

/* Footer (clean override) */
.footer {
    background: #0a6ebd;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
}

/* WhatsApp simple button (if used anywhere else) */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
}