.tp-brand-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 30px;
}

.tp-brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.tp-brand-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.brand-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3436;
    margin: 0;
}

.modern-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.list-item:hover {
    transform: translateX(10px);
    background: linear-gradient(to right, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    border-color: rgba(79, 172, 254, 0.2);
}

.item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-icon i {
    color: white;
    font-size: 18px;
}

.item-content {
    flex-grow: 1;
}

.item-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.item-content p {
    font-size: 14px;
    color: #636e72;
    margin: 0;
    line-height: 1.4;
}

/* Animation for list items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.list-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tp-brand-item {
        padding: 20px;
    }

    .list-item {
        padding: 12px;
    }

    .item-icon {
        width: 35px;
        height: 35px;
    }

    .item-content h6 {
        font-size: 15px;
    }

    .item-content p {
        font-size: 13px;
    }
}

.category-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
}

.category-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.category-rows {
    max-width: 900px;
    margin: 0 auto;
}

.category-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.category-row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, white, #f8f9fa);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-row:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.category-content {
    flex-grow: 1;
}

.category-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 5px 0;
}

.category-content p {
    font-size: 15px;
    color: #636e72;
    margin: 0;
    line-height: 1.4;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    visibility: hidden;
}

.fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-row {
        padding: 15px;
        margin-bottom: 15px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .category-icon i {
        font-size: 20px;
    }

    .category-content h3 {
        font-size: 18px;
    }

    .category-content p {
        font-size: 14px;
    }
}

/* Optional: Add a hover indicator */
.category-row::after {
    content: '→';
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #4facfe;
    opacity: 0;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.category-row:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.feature-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, white, #f8f9fa);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-row:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content {
    flex-grow: 1;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 5px 0;
}

.feature-content p {
    font-size: 15px;
    color: #636e72;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-row {
        padding: 15px;
        margin-bottom: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

/* Optional hover indicator */
.feature-row::after {
    content: '→';
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #4facfe;
    opacity: 0;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.feature-row:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.intro-image-wrapper {
    position: relative;
    padding: 20px;
    text-align: center;
}

.intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.intro-image:hover {
    transform: translateY(-5px);
}

/* Decorative shapes behind the image */
.image-shape-1,
.image-shape-2 {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.image-shape-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-shape-2 {
    width: 80%;
    height: 80%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.intro-image-wrapper:hover .image-shape-1 {
    transform: translate(10px, 10px);
}

.intro-image-wrapper:hover .image-shape-2 {
    transform: translate(-10px, -10px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .intro-content {
        text-align: center;
        padding: 20px;
    }
    
    .intro-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .intro-image-wrapper {
        padding: 15px;
    }
    
    .image-shape-1,
    .image-shape-2 {
        width: 70%;
        height: 70%;
    }
}