/* Simple custom styling */
:root {
    --accent: #0d6efd;
    --muted: #6c757d
}

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.hero {
    background: linear-gradient(251deg, rgb(10 9 9 / 78%), rgb(30 29 29 / 78%)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
}

.hero .container {
    margin-top: 100px;
}

.service-card {
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(10, 10, 20, 0.06);
}

.badge-accent {
    background: linear-gradient(90deg, var(--accent), #6f42c1);
    color: #fff
}

.gallery-img {
    height: 220px;
    object-fit: cover;
    border-radius: .6rem
}

footer {
    background: #0f1724;
    color: #fff
}

.btn-primary {
    background: var(--accent);
    border: 0
}

.about_section {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width:576px) {
    .gallery-img {
        height: 140px
    }
}

.category-link {
    padding: 5px 5px;
    border-radius: 5px;
    transition: 0.3s;
    border-bottom: groove;
}

.category-link.active,
.category-link:hover {
    color: #fff !important;
    background-color: #0d6efd;
}

.shop_section h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.shop_section {
    text-align: left;
    margin-bottom: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card .customer-img img {
    border: 4px solid #fff;
    background: #fff;
}

.owl-carousel .owl-item img {
    display: inline;
    width: 50%;
    height: 50%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #007bff, #00a8ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004099);
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border-top: 3px solid #ffc107;
}

footer a:hover {
    color: #ffc107 !important;
    text-decoration: underline;
}

.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #6610f2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6610f2, #007bff);
}