.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

.navbar-nav .nav-link.active {
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
}
.hero-slide {
    height: 350px!important;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 600px;
	padding-top:100px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
}

.hero-content p {
    margin: 15px 0;
    opacity: 0.9;
}
/* SLIDER */
.hero-slide {
    height: 520px;
    max-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0.2));
}

/* Content */
.hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    z-index: 2;
}

/* Title */
.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Description */
.hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Button */
.hero-content .btn {
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 6px;
}

/* Indicator */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Animation */
.carousel-item.active .hero-content {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-slide {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}
.section-title {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .line {
    width: 4px;
    height: 20px;
    background: #0d6efd;
    display: inline-block;
}

/* Card */
.product-card {
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.product-card .card-body {
    padding: 20px;
    justify-content: space-between!important;
    align-items: center;
}

/* Content */
.product-card .content {
    max-width: 70%;
}

.product-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.product-card p {
    font-size: 14px;
    color: #6c757d;
}

/* Icon */
.product-card .icon {
    width: 36px;
    height: 36px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Image */
.product-card .thumb img {
    max-width: 100px;
}

/* Link */
.read-more {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}
