.related-products-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    color: #333;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel-nav-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav-btn.prev {
        left: 10px;
    }

    .carousel-nav-btn.next {
        right: 10px;
    }

.products-scroll-container {
    overflow: hidden;
    margin: 0 70px;
}

.products-grid {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.product-card {
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.3s ease;
        max-width: 100%;
        max-height: 100%;
    }

.product-card:hover .product-image-container img {
    transform: scale(1.02);
}

.product-content {
    padding: 20px;
    height: auto;
}

.product-category {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    height: auto;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .product-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .product-title a:hover {
            color: #007bff;
        }

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    height: auto;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

    .btn-whatsapp:hover {
        background-color: #128c7e;
        color: white;
        text-decoration: none;
    }

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .scroll-dot.active {
        background-color: #007bff;
    }

/* RTL Support */
[dir="rtl"] .carousel-nav-btn.prev {
    right: 10px;
    left: auto;
}

[dir="rtl"] .carousel-nav-btn.next {
    left: 10px;
    right: auto;
}

[dir="rtl"] .products-grid {
    direction: rtl;
}

[dir="rtl"] .product-content {
    text-align: right;
}

[dir="rtl"] .btn-whatsapp {
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-scroll-container {
        margin: 0 20px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .product-card {
        min-width: 250px;
        max-width: 250px;
        flex: 0 0 250px;
    }
}

@media (max-width: 576px) {
    .products-scroll-container {
        margin: 0 10px;
    }

    .product-card {
        min-width: 220px;
        max-width: 220px;
        flex: 0 0 220px;
    }

    .product-image-container {
        height: 180px;
    }
}
.modern-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
}

    .modern-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-card:hover .card-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover .image-overlay {
    opacity: 1;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.card-body-modern {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
}

.old-price {
    font-size: 0.9rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.btn-modern {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-modern {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
}

    .btn-primary-modern:hover {
        background: linear-gradient(45deg, #2980b9, #1f618d);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        color: white;
    }

.btn-whatsapp-modern {
    background: linear-gradient(45deg, #25d366, #20ba5a);
    color: white;
}

    .btn-whatsapp-modern:hover {
        background: linear-gradient(45deg, #20ba5a, #1ea952);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        color: white;
    }

.text-gradient {
    background: linear-gradient(45deg, #3498db, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #8e44ad);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .card-actions {
        flex-direction: row;
    }

    .btn-modern {
        flex: 1;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .card-image-wrapper {
        height: 160px;
    }

    .card-body-modern {
        padding: 16px;
    }

    .product-title {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1.1rem;
    }
}
.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #007bff, #0056b3);
        border-radius: 2px;
    }

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.header-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    margin: 0 auto;
    border-radius: 2px;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    transform: translateY(0);
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    }

.blog-image-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-overlay {
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-date-badge {
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #007bff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hover-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-hover-overlay {
    opacity: 1;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

    .blog-title a {
        color: #2c3e50;
        transition: color 0.3s ease;
    }

        .blog-title a:hover {
            color: #007bff;
        }

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.blog-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.read-more-btn {
    color: #007bff;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .read-more-btn:hover {
        color: #0056b3;
        transform: translateX(5px);
    }

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(0, 123, 255, 0.9);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%, 100%;
    filter: invert(1);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #dee2e6;
        border: none;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

        .carousel-indicators button.active {
            background-color: #007bff;
            transform: scale(1.2);
        }

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .blog-card {
        margin-bottom: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .blog-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-date-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item.active .blog-card {
    animation: fadeInUp 0.6s ease forwards;
}

    .carousel-item.active .blog-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .carousel-item.active .blog-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .carousel-item.active .blog-card:nth-child(3) {
        animation-delay: 0.3s;
    }
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 1rem;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .image-overlay {
    opacity: 1;
}

.btn-modern {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-modern:hover::before {
        left: 100%;
    }

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-primary-modern:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-whatsapp-modern {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

    .btn-whatsapp-modern:hover {
        background: linear-gradient(135deg, #1faa52 0%, #0e6b5d 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        color: white;
    }

.z-index-1 {
    z-index: 1;
}

@media (max-width: 576px) {
    .card-body {
        padding: 1rem 0.75rem;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .btn-modern {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 1rem;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
    }

.btn-modern {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-modern:hover::before {
        left: 100%;
    }

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-primary-modern:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-whatsapp-modern {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

    .btn-whatsapp-modern:hover {
        background: linear-gradient(135deg, #1faa52 0%, #0e6b5d 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        color: white;
    }

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 1rem;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .image-overlay {
    opacity: 1;
}

.btn-modern {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-modern:hover::before {
        left: 100%;
    }

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-primary-modern:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-whatsapp-modern {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

    .btn-whatsapp-modern:hover {
        background: linear-gradient(135deg, #1faa52 0%, #0e6b5d 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        color: white;
    }

.card-title {
    text-decoration: none;
    color: #000 !important;
}

    .card-title:hover {
        text-decoration: none;
        color: #333 !important;
    }

@media (max-width: 576px) {
    .card-body {
        padding: 0.75rem;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}
.modern-nav-link {
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
    color: #6c757d;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .modern-nav-link:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

    .modern-nav-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

/* Modern Product Cards */
.modern-product-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 1rem !important;
    overflow: hidden;
}

    .modern-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15) !important;
    }

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

/* Modern Badge */
.modern-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Modern Buttons */
.btn-modern {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-modern:hover::before {
        left: 100%;
    }

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-primary-modern:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
    }

.btn-whatsapp-modern {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

    .btn-whatsapp-modern:hover {
        background: linear-gradient(135deg, #1faa52 0%, #0e6b5d 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        color: white;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .modern-nav-link {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.875rem;
    }

    .btn-modern {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .modern-product-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem !important;
    }

    .modern-nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem;
    }
}
.apps-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    position: relative;
}

    .apps-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

.container {
    position: relative;
    z-index: 2;
}

/* App Card Styling */
.app-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .app-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

.card-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.app-card:hover .card-bg-effect {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* App Icon */
.app-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.app-card:hover .app-icon {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    filter: blur(8px);
}

.app-card:hover .icon-glow {
    opacity: 0.6;
}

/* App Info */
.app-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Download Button */
.btn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .btn-download:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

.download-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-download:hover .download-progress {
    left: 100%;
}

/* Download Info Section */
.download-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.info-item {
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-card {
        height: 180px;
        padding: 1rem 0.75rem;
    }

    .app-icon {
        width: 60px;
        height: 60px;
    }

    .icon-glow {
        width: 60px;
        height: 60px;
    }

    .app-name {
        font-size: 0.85rem;
    }

    .btn-download {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .app-card {
        height: 170px;
    }

    .display-5 {
        font-size: 1.8rem !important;
    }

    .download-info {
        padding: 1.5rem;
    }
}