/* Kit Hero Section */
.kit-hero {
    background: url('img/banner/common-banner.png') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.kit-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(5, 186, 252, 0.779);
    color: #080808;
}

.kit-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    color: rgba(92, 90, 90, 0.769);
}

.kit-hero-content .primary-btn {
    font-size: 16px;
    padding: 15px 40px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Kit Filter Section */
.kit-filter-section {
    margin-top: -50px;
    position: relative;
    z-index: 9;
}

.filter-card {
    transition: all 0.3s ease;
}

.filter-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-group {
    margin-bottom: 15px;
}

/* Kit Collections */
.kit-collections {
    margin-top: 50px;
}

.kit-type-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.kit-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.kit-img-container {
    height: 250px;
    overflow: hidden;
}

.kit-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kit-type-card:hover .kit-img-container img {
    transform: scale(1.05);
}

.kit-type-card h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.kit-type-card p {
    color: #666;
    margin-bottom: 20px;
    padding: 0 20px;
}

/* Featured Kits */
.featured-kits {
    margin-top: 50px;
}

.type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Kit Contents Section */
.kit-contents-section {
    background-color: #f9f9f9;
}

.kit-contents-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contents-intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.kit-contents-list {
    list-style: none;
    padding: 0;
}

.kit-contents-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.kit-contents-list i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.3rem;
}

.contents-guide-btn {
    margin-top: 30px;
    padding: 12px 30px;
    font-weight: 600;
}

.kit-contents-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kit-contents-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.kit-contents-img:hover img {
    transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .kit-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .kit-hero-content p {
        font-size: 1.2rem;
    }
    
    .kit-img-container {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .kit-hero {
        height: 60vh;
    }
    
    .kit-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .kit-contents-content {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .kit-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .kit-hero-content p {
        font-size: 1rem;
    }
    
    .kit-type-card h3 {
        font-size: 1.3rem;
    }
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
}

/* Testimonial Items */
.testimonial-carousel {
    position: relative;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 40px;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
}

.testimonial-content p:before {
    top: -15px;
    left: -5px;
}

.testimonial-content p:after {
    bottom: -35px;
    right: -5px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.owl-prev, 
.owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff !important;
    color: #222 !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owl-prev:hover, 
.owl-next:hover {
    background: #222 !important;
    color: #fff !important;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #222 !important;
    transform: scale(1.2);
}