/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* ================= HEADER ================= */
.header {
    background: #0d6efd;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.navbar a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    margin: 15px 0;
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background: #084298;
}

/* ================= SERVICES ================= */
.services {
    padding: 50px 20px;
    text-align: center;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    width: 280px;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    background: white;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-box h3 {
    margin-bottom: 10px;
}

/* ================= FORM ================= */
form {
    max-width: 400px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
}

form h2 {
    text-align: center;
    margin-bottom: 20px;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    width: 100%;
    cursor: pointer;
}

/* ================= TABLE ================= */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table th {
    background: #0d6efd;
    color: white;
    padding: 12px;
}

.admin-table td {
    padding: 12px;
    text-align: center;
}

.admin-table tr:nth-child(even) {
    background: #f9f9f9;
}

.admin-table tr:hover {
    background: #f1f1f1;
}

/* ================= STATUS ================= */
.status-pending {
    color: orange;
    font-weight: bold;
}

.status-completed {
    color: green;
    font-weight: bold;
}

/* ================= ACTION BUTTON ================= */
.action-btn {
    padding: 6px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    margin: 2px;
    display: inline-block;
}

.btn-complete {
    background: green;
    color: white;
}

.btn-delete {
    background: red;
    color: white;
}

.btn-complete:hover {
    background: darkgreen;
}

.btn-delete:hover {
    background: darkred;
}

/* ================= DASHBOARD CARDS ================= */
.dashboard-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.card-blue {
    background: #0d6efd;
}

.card-orange {
    background: orange;
}

.card-green {
    background: green;
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 24px;
    padding: 12px 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .navbar {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0d6efd;
        width: 200px;
        display: none;
        flex-direction: column;
    }

    .navbar a {
        padding: 10px;
        display: block;
    }

    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .service-box {
        width: 90%;
    }
	/* ================= FOOTER PRO ================= */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

footer iframe {
    margin-top: 15px;
    border-radius: 10px;
}

/* ================= HERO IMPROVE ================= */
.hero h1 {
    font-size: 42px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
}

/* ================= SERVICE ICON STYLE ================= */
.service-box h3 {
    font-size: 18px;
    color: #0d6efd;
}

/* ================= BUTTON IMPROVE ================= */
.btn {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
    transform: translateY(-2px);
}

/* ================= TABLE ROUND ================= */
.admin-table {
    border-radius: 10px;
    overflow: hidden;
}

/* ================= SCROLL SMOOTH ================= */
html {
    scroll-behavior: smooth;
}
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('/images/bg.jpg');

    background-size: cover;
    background-position: center;

    animation: zoomBg 15s infinite alternate;
}

@keyframes zoomBg {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}
.call {
    font-size: 16px;
    color: #ffd700;
    font-weight: bold;
}
}