.company-skill {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

/* Bookstore Card */
.bookstore-wrapper {
    padding-bottom: 0;
}

.bookstore-card {
    background: #ffffff;
    border: 2px solid rgba(30, 80, 180, 0.15);
    border-radius: 10px;
    padding: 20px 15px 25px;
    transition: all 0.3s ease;
}

.bookstore-card:hover {
    border-color: rgba(30, 80, 180, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Image */
.bookstore-img {
    margin-bottom: 15px;
}

.bookstore-img img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
}

/* Content */
.bookstore-content {
    padding: 0 10px;
}

.book-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.book-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 18px;
}

.service-single__area {
    background: #fff;
}

.service-single__img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.service-single__img img {
    width: 100%;
    transition: transform .4s ease;
}

.service-single__img:hover img {
    transform: scale(1.05);
}

.service-single__content {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .service-single__content {
        padding-left: 0;
        margin-top: 30px;
    }
}

.service-single__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.service-single__title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-features__area {
    background: #f8f9fb;
}

.service-feature__card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.service-feature__card h4 {
    margin-bottom: 12px;
    font-size: 20px;
}

.service-feature__card p {
    margin-bottom: 0;
}

.service-feature__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.service-process__area {
    background: #fff;
}

.process-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.section-title h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.section-title p {
    max-width: 640px;
    margin: 0 auto;
}

.service-cta__area {
    padding-top: 10px;
    padding-bottom: 50px;
    color: #fff;
}

.service-cta__area h2 {
    font-size: 38px;
    margin-bottom: 5px;
}

.service-cta__area p {
    max-width: 650px;
    margin: 0 auto 25px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
}


/* Other products section */
/* General Section Styling */
.apparels-section {
    padding: 60px 0;
}

.section-title .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title .subtitle {
    color: #666;
    font-size: 1.5rem;
}

/* Apparel Category Cards */
.apparel-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.apparel-card img {
    border-radius: 6px;
    margin-bottom: 15px;
    max-height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.apparel-card:hover img {
    transform: scale(1.05);
}

.apparel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.apparel-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.apparel-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.apparel-card .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.apparel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.product-card img {
    border-radius: 6px;
    margin-bottom: 15px;
    max-height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card .price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #daa645;
    margin-bottom: 12px;
}

.product-card .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-section-3__area,
footer {
    margin-bottom: 0;
    padding-bottom: 0;
}


