* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
}

/* HEADER */
.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav .btn {
    background: #f7931e;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7931e, #8dc63f);
    color: white;
}

.search-box {
    margin-top: 30px;
}

.search-box select,
.search-box button {
    padding: 12px;
    margin: 5px;
    border-radius: 6px;
    border: none;
    width: 200px;
}

.search-box button {
    background: #fff;
    color: #333;
    font-weight: bold;
}

/* SLIDER */
.slider {
    padding: 40px;
    text-align: center;
    background: #ffffff;
}

.slide {
    font-size: 22px;
    font-weight: 600;
}

/* CATEGORY */
.categories {
    padding: 60px 20px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 60px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}
/* AUTH PAGES */
.auth-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f7931e, #8dc63f);
}

.auth-box {
    background: white;
    padding: 40px;
    width: 360px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.auth-logo {
    width: 70px;
    margin-bottom: 15px;
}

.auth-box h2 {
    margin-bottom: 10px;
}

.auth-box p {
    color: #666;
    margin-bottom: 20px;
}

.auth-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.auth-box button {
    width: 100%;
    padding: 12px;
    background: #f7931e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.auth-box button:hover {
    background: #e67e00;
}

.link-text {
    margin-top: 15px;
    font-size: 14px;
}

.link-text a {
    color: #f7931e;
    text-decoration: none;
}

/* OTP */
.otp-box {
    display: flex;
    justify-content: space-between;
}

.otp-box input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 18px;
}
/* SERVICE LIST PAGE */

.service-title {
    text-align: center;
    padding: 40px 20px 10px;
}

.service-title h2 {
    font-size: 32px;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.filter-bar select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Vendor Cards */
.vendor-list {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.vendor-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    padding: 20px;
    gap: 20px;
    transition: 0.3s;
}

.vendor-card:hover {
    transform: translateY(-5px);
}

.vendor-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.vendor-info h3 {
    margin-bottom: 5px;
}

.vendor-info p {
    font-size: 14px;
    margin: 4px 0;
    color: #555;
}

.rating {
    color: #444;
    font-weight: bold;
}

.price {
    font-weight: bold;
    color: #2e7d32;
}

.vendor-card button {
    margin-top: 10px;
    padding: 8px 14px;
    background: #f7931e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
/* VENDOR PROFILE PAGE */

.vendor-profile-header {
    background: linear-gradient(135deg, #f7931e, #8dc63f);
    padding: 50px 20px;
    color: white;
}

.vendor-profile-box {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.vendor-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.vendor-main-info h2 {
    margin-bottom: 5px;
}

.book-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #fff;
    color: #f7931e;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}
.vendor-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.vendor-section h3 {
    margin-bottom: 15px;
    border-left: 5px solid #f7931e;
    padding-left: 10px;
}

.service-list li {
    margin: 8px 0;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.work-gallery img {
    width: 100%;
    border-radius: 10px;
}

.review-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}/* FOOTER */
.main-footer {
    background: #1f1f1f;
    color: #ddd;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-box h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-box ul li a:hover {
    color: #f7931e;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    margin-top: 10px;
}

.footer-subscribe input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-subscribe button {
    padding: 8px 15px;
    background: #f7931e;
    border: none;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a img {
    width: 28px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

/* Bottom Bar */
.footer-bottom {
    background: #141414;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
/* AD CARD */
.ad-card {
    background: #fff7e6;
    border: 2px dashed #f7931e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #f7931e;
}
