* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f5f5f5;
    padding-bottom: 70px;
}

/* Header Styles */
header {
    background: white;
    padding: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.notification-badge {
    position: relative;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4500;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content Styles */
main {
    margin-top: 100px;
    padding: 1rem;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-links .swiper-slide {
    height: auto;
}

.quick-link {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quick-link p {
    font-size: 0.8rem;
    font-weight: 500;
    padding-top: 10px;
    /* color: #666; */
}

.page-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.dot.active {
    background: #ff4500;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
}

.product-title {
    font-weight: 600;
}

.book-service-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #ff4500;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
}

.book-service-btn:hover {
    background: #ff5722;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    padding: 0.5rem;
}

.nav-items {
    display: flex;
    justify-content: space-around;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
}

.nav-item.active {
    color: #ff4500;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* Utility Classes */
.button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.icon-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fas,
.fa-regular {
    color: #ff4500;
}

/* .swiper {
    width: 400px;
    height: 300px;
} */

.swiper-pagination {
    position: relative !important;
}

.swiper-pagination-bullet-active {
    background: #ff4500 !important;
} 

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide div {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}