/* Base styles */
:root {
    --primary-color: #008080;
    /* Teal */
    --secondary-color: #0099cc;
    /* Sky Blue */
    --accent-color: #e6b800;
    /* Mustard */
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #006666;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav ul {
    display: flex;
}

.nav li {
    margin-left: 30px;
}

.nav a {
    position: relative;
    font-weight: 500;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero section */
/* .hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
} */

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--white);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-price {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent-color);
    margin-right: 5px;
}

.product-badge {
    display: inline-block;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.badge-featured {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge-new {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.add-to-cart {
    width: 100%;
    margin-top: 10px;
}

/* Language Support */
.language-support {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.language-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.language-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.language-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.language-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.native-name {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.language-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Product Catalog */
.product-catalog {
    padding: 80px 0;
    background-color: var(--white);
}

.catalog-filters {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 500;
}

.filter-group select {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--medium-gray);
    background-color: var(--white);
    min-width: 150px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter .section-title {
    color: var(--white);
}

.newsletter .section-title::after {
    background-color: var(--white);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: none;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-weight: 600;
    border: none;
    padding: 0 25px;
    cursor: pointer;
}

.newsletter-message {
    margin-top: 15px;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background-color: #212121;
    color: var(--light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after,
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 15px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    margin: 20px 0;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--medium-gray);
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    border-left: none;
    border-right: none;
}

.cart-item-remove {
    color: tomato;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 0.9rem;
    margin-top: 5px;
}

.cart-total {
    font-weight: 600;
    margin: 20px 0;
    text-align: right;
    font-size: 1.2rem;
}

/* Responsive styles */
/* @media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
} */

@media (max-width: 768px) {

    .logo-image {
        height: 32px;
        /* Slightly smaller on mobile */
    }

    .logo-image-footer {
        height: 28px;
    }



    .header .container {
        flex-direction: column;
        padding: 15px;
    }

    .nav {
        margin: 15px 0;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav li {
        margin: 10px 15px;
    }

    .cart-icon {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .catalog-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .language-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal-content {
        margin: 5% auto;
        padding: 20px;
    }

    .cart-item {
        flex-direction: column;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }

}


.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
}



.carousel {
    margin: 20px 0;

    height: 400px;

}

.carousel-inner {
    height: 100%;

}

.carousel-item img {
    object-fit: cover;
    height: 100%;

}





/* //imp-> testimonial styling hai yha se */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #f5f5f7;
}

.testimonials-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-card {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
}

.quote {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 60px;
    color: #8c62f7;
    opacity: 0.2;
    position: absolute;
}

.quote::before {
    top: -20px;
    left: -20px;
}

.quote::after {
    bottom: -50px;
    right: -20px;
}

.customer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customer-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 3px solid #8c62f7;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-name {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.customer-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 16px;
}

.keyboard-model {
    display: inline-block;
    background-color: #f0ebff;
    color: #8c62f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #8c62f7;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow:hover {
    background-color: #8c62f7;
    color: white;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
    }

    .quote {
        font-size: 18px;
    }

    .slider-arrows {
        display: none;
    }
}













.nav a {
    font-family: 'Poppins', sans-serif;

    font-size: 16px;

    font-weight: 500;

    color: #333;

    text-decoration: none;

    padding: 10px 15px;

    transition: color 0.3s ease, background-color 0.3s ease;

}

.nav a:hover {
    color: #8c62f7;

    background-color: #f0ebff;

    border-radius: 5px;

}

.nav a.active {
    color: #ffffff;

    background-color: #8c62f7;

    border-radius: 5px;

}

.nav a.active {
    color: #ffffff;

    background-color: #8c62f7;

    border-radius: 5px;

}






.logo h1 {
    font-family: 'Poppins', sans-serif;

    font-size: 3rem;

    font-weight: 700;

    color: #8c62f7;

    text-transform: uppercase;

    letter-spacing: 2px;

    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);

    margin: 0;

    padding: 10px 0;

    text-align: center;

    background: linear-gradient(90deg, #8c62f7, #6a4bc3);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}




/* Hero-content (heading mey styling add kar di) Text Styling */
/* .hero-content {
            text-align: center;
            margin-top: 50px;
            animation: fadeIn 2s ease-in-out;
        }

        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #8c62f7;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
            animation: slideInFromLeft 1.5s ease-out;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            animation: slideInFromRight 1.5s ease-out;
        } */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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



/* //imp-> button ko bhi allign kar diya */
/* Hero Buttons Styling */
/* .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            animation: fadeIn 2s ease-in-out;
        }

        .hero-buttons .btn {
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .hero-buttons .btn-primary {
            background-color: #8c62f7;
            color: #fff;
            border: none;
        }

        .hero-buttons .btn-primary:hover {
            background-color: #6a4bc3;
            box-shadow: 0 6px 15px rgba(140, 98, 247, 0.5);
        }

        .hero-buttons .btn-secondary {
            background-color: #f0ebff;
            color: #8c62f7;
            border: 2px solid #8c62f7;
        }

        .hero-buttons .btn-secondary:hover {
            background-color: #8c62f7;
            color: #fff;
            box-shadow: 0 6px 15px rgba(140, 98, 247, 0.5);
        } */

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

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









/* //imp-> yha featured-product hai */
/* Featured Products Section */
.featured-products {
    margin: 50px 0;
    text-align: center;
}

.featured-products .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8c62f7;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    animation: fadeIn 2s ease-in-out;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInFromBottom 1.5s ease-out;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-details {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    color: #8c62f7;
    margin-bottom: 15px;
}

.product-rating .stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 10px;
}

.product-badges {
    margin-bottom: 15px;
}

.product-badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-right: 5px;
}

.badge-featured {
    background-color: #8c62f7;
    color: #fff;
}

.badge-new {
    background-color: #f0ebff;
    color: #8c62f7;
}

.btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #8c62f7;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #6a4bc3;
    box-shadow: 0 4px 15px rgba(140, 98, 247, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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






/* //imp-> support language syling */
/* Supported Languages Section */
.language-support {
    margin: 50px 0;
    text-align: center;
}

.language-support .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8c62f7;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    animation: fadeIn 2s ease-in-out;
}

.language-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInFromBottom 1.5s ease-out;
}

.language-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.language-icon {
    font-size: 3rem;
    color: #8c62f7;
    margin-bottom: 15px;
}

.language-details {
    text-align: center;
}

.language-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.native-name {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.language-description {
    font-size: 1rem;
    color: #8c62f7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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




/* //imp-> Blog ki styling */
/* Blog Section */
/* Blog Cards Enhancement */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-container img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border-top-right-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 1.5rem;
    position: relative;
}

.blog-date {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-weight: 500;
}

.blog-content h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #6366F1;
}

.blog-content p {
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.blog-read-more {
    display: flex;
    align-items: center;
    color: #6366F1;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-read-more span {
    margin-right: 5px;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #4F46E5;
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}

/* Category-specific styling */
.blog-card:nth-child(1) .blog-category {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.blog-card:nth-child(2) .blog-category {
    background: linear-gradient(135deg, #10B981, #3B82F6);
}

.blog-card:nth-child(3) .blog-category {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

.blog-card:nth-child(4) .blog-category {
    background: linear-gradient(135deg, #059669, #0284C7);
}

.blog-card:nth-child(5) .blog-category {
    background: linear-gradient(135deg, #7C3AED, #DB2777);
}

.blog-card:nth-child(6) .blog-category {
    background: linear-gradient(135deg, #2563EB, #4F46E5);
}

/* Improve blog grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Enhance the view all button */
.blog-view-all {
    text-align: center;
    margin-top: 1rem;
}

.blog-view-all .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-view-all .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}







/* //imp->float/rotate animation when you hover over images in the blog cards */
/* Blog card image hover animations */
.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    perspective: 1000px;
    /* For 3D effect */
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

/* Float animation on hover */
.blog-card:hover .blog-image-container img {
    animation: floatRotate 3s ease-in-out infinite alternate;
    filter: brightness(1.1);
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) scale(1.05) rotate(1deg);
    }

    100% {
        transform: translateY(-4px) scale(1.03) rotate(-1deg);
    }
}

/* Add shine effect on hover */
.blog-image-container::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    pointer-events: none;
    transition: all 0.6s ease;
    opacity: 0;
}

.blog-card:hover .blog-image-container::after {
    left: 130%;
    opacity: 1;
    transition: all 0.6s ease-in-out;
}

/* Make blog cards more vibrant on hover */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


/* //imp-> featured product  */
/* Enhanced Featured Products Section */
.featured-products {
    margin: 60px 0;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.featured-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 98, 247, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    z-index: -1;
    border-radius: 20px;
}

.featured-products .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8c62f7;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    display: inline-block;
}

.featured-products .section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7, #ef4444);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeIn 2s ease-in-out;
    padding: 20px;
}

/* Enhanced product card styling */
.product-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    animation: slideInFromBottom 1.5s ease-out;
    border: 1px solid rgba(140, 98, 247, 0.1);
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 35px rgba(140, 98, 247, 0.25);
    border-color: rgba(140, 98, 247, 0.3);
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) translateY(-5px);
    animation: pulseImage 5s infinite alternate;
}

@keyframes pulseImage {
    0% {
        transform: scale(1.08);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1.15);
    }
}

.product-details {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.product-card:hover .product-title {
    color: #8c62f7;
    transform: translateY(-3px);
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #8c62f7, #ef4444);
    transition: transform 0.3s ease;
}

.product-card:hover .product-title::after {
    transform: translateX(-50%) scaleX(1);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8c62f7, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-price {
    transform: scale(1.1);
}

.product-rating {
    margin-bottom: 15px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

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

.product-rating .stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
    position: relative;
}

.product-rating .stars::after {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    color: #ffc10730;
    z-index: -1;
}

.product-badges {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.product-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-card:hover .product-badge::before {
    opacity: 1;
    transform: rotate(30deg) translate(50%, 50%);
}

.badge-featured {
    background: linear-gradient(135deg, #8c62f7, #6a4bc3);
    color: #fff;
    box-shadow: 0 3px 10px rgba(140, 98, 247, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: #fff;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.3);
}

.add-to-cart.btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #8c62f7, #6a4bc3);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(140, 98, 247, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(5px);
    opacity: 0.9;
}

.product-card:hover .add-to-cart.btn-primary {
    transform: translateY(0);
    opacity: 1;
}

.add-to-cart.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.6s ease;
    z-index: -1;
}

.add-to-cart.btn-primary:hover {
    background: linear-gradient(135deg, #6a4bc3, #8c62f7);
    box-shadow: 0 8px 20px rgba(140, 98, 247, 0.5);
    letter-spacing: 1px;
}

.add-to-cart.btn-primary:hover::before {
    left: 100%;
}

/* Card hover state animations */
.product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: inset 0 0 0 2px rgba(140, 98, 247, 0);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::after {
    box-shadow: inset 0 0 0 2px rgba(140, 98, 247, 0.5);
}

/* Enhanced animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(80px) scale(0.9);
        opacity: 0;
    }

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


/* //imp-> what our customer says */
/* Enhanced Testimonials Section Styling */
.testimonials-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9f7ff 0%, #f0f8ff 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Animated background effects */
.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(140, 98, 247, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.07) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.03) 0%, transparent 50%);
    z-index: 0;
    animation: pulseBackground 15s ease-in-out infinite alternate;
}

@keyframes pulseBackground {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.testimonials-section .section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-title h2 {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #8c62f7, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    animation: shimmerText 3s infinite;
}

@keyframes shimmerText {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 200px;
    }
}

.testimonials-section .section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7, #ef4444);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonials-section .section-title p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
}

/* Enhanced testimonial slider */
.testimonial-slider {
    position: relative;
    overflow: visible;
    margin: 30px 0;
    z-index: 5;
}

.testimonials-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Enhanced testimonial card styling */
.testimonial-card {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.5s ease;
}

.testimonial-content {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    z-index: 10;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(140, 98, 247, 0.15);
}

/* Quote styling */
.quote {
    font-size: 20px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 30px;
    position: relative;
    font-style: italic;
}

.quote::before,
.quote::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: #8c62f7;
    opacity: 0.2;
    position: absolute;
    line-height: 0;
}

.quote::before {
    top: 0;
    left: -20px;
    animation: fadeInRotate 1s ease-out;
}

.quote::after {
    bottom: -20px;
    right: -20px;
    animation: fadeInRotateReverse 1s ease-out;
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(-20deg);
    }

    to {
        opacity: 0.2;
        transform: rotate(0);
    }
}

@keyframes fadeInRotateReverse {
    from {
        opacity: 0;
        transform: rotate(20deg);
    }

    to {
        opacity: 0.2;
        transform: rotate(0);
    }
}

/* Enhanced customer info styling */
.customer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.customer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 4px solid #8c62f7;
    box-shadow: 0 8px 25px rgba(140, 98, 247, 0.25);
    animation: borderPulse 3s infinite alternate;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease;
}

.customer-image:hover {
    transform: scale(1.1);
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(140, 98, 247, 0.4),
            0 0 0 0 rgba(140, 98, 247, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(140, 98, 247, 0),
            0 0 0 20px rgba(140, 98, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(140, 98, 247, 0),
            0 0 0 0 rgba(140, 98, 247, 0);
    }
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.customer-image:hover img {
    transform: scale(1.1);
}

.customer-name {
    font-weight: 700;
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.customer-title {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 12px;
    position: relative;
}

.customer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #8c62f7, rgba(140, 98, 247, 0.2));
}

/* Enhanced rating styling */
.rating {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: starPulse 2s infinite alternate;
}

@keyframes starPulse {
    from {
        opacity: 0.8;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Enhanced keyboard model tag */
.keyboard-model {
    display: inline-block;
    background: linear-gradient(135deg, #8c62f7, #6366F1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(140, 98, 247, 0.3);
    transition: all 0.3s ease;
}

.keyboard-model:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(140, 98, 247, 0.4);
}

/* Enhanced navigation controls */
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(140, 98, 247, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 10;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background-color: rgba(140, 98, 247, 0.1);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.slider-dot:hover::before {
    transform: scale(1);
}

.slider-dot.active {
    background-color: #8c62f7;
    transform: scale(1.3);
}

/* Enhanced slider arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
    /* Allow clicking through the container */
}

.arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Make arrows clickable */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.arrow:hover {
    background: linear-gradient(135deg, #8c62f7, #6366F1);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(140, 98, 247, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-section .section-title h2 {
        font-size: 30px;
    }

    .testimonials-section .section-title p {
        font-size: 16px;
    }

    .quote {
        font-size: 18px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .slider-arrows {
        padding: 0 15px;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 15px;
    }

    .customer-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-content {
        padding: 25px 15px;
    }

    .quote::before,
    .quote::after {
        font-size: 60px;
    }
}

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

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












/* //imp-> stay updated section */
/* Enhanced Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #8c62f7 0%, #6a4bc3 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(140, 98, 247, 0.3);
}

/* Animated background elements */
.newsletter::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulseBg 15s infinite alternate;
}

@keyframes pulseBg {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* Floating particles */
.newsletter::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 2px),
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 2px);
    animation: floatingParticles 20s linear infinite;
    z-index: 1;
}

@keyframes floatingParticles {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.newsletter .container {
    position: relative;
    z-index: 2;
}

.newsletter .section-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.newsletter .section-title::after {
    background: #fff;
    height: 4px;
    width: 80px;
    bottom: -15px;
    opacity: 0.8;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.newsletter p {
    font-size: 1.3rem;
    margin: 0 auto 40px;
    max-width: 700px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 500px;
    animation: floatForm 5s ease-in-out infinite alternate;
}

@keyframes floatForm {
    0% {
        transform: translateY(0) rotateX(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: translateY(-10px) rotateX(2deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: translateY(0) rotateX(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

.newsletter-form input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    background: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.newsletter-form input::placeholder {
    color: #8b8b8b;
}

.newsletter-form button {
    background: linear-gradient(135deg, #ffae00, #ff7a00);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #ff7a00, #ffae00);
    transform: translateX(3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-message {
    margin-top: 25px;
    min-height: 24px;
    font-weight: 500;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-message:not(:empty) {
    transform: translateY(0);
    opacity: 1;
    animation: messagePulse 2s infinite alternate;
}

@keyframes messagePulse {
    from {
        background: rgba(255, 255, 255, 0.2);
    }

    to {
        background: rgba(255, 255, 255, 0.3);
    }
}

/* Add these responsive modifications */
@media (max-width: 768px) {
    .newsletter {
        padding: 60px 20px;
    }

    .newsletter .section-title {
        font-size: 2.2rem;
    }

    .newsletter p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .newsletter-form input {
        padding: 15px 20px;
        border-radius: 20px 20px 0 0;
    }

    .newsletter-form button {
        padding: 15px 20px;
        border-radius: 0 0 20px 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter {
        padding: 40px 15px;
    }

    .newsletter .section-title {
        font-size: 1.8rem;
    }
}








/* //imp-> footer section */
/* Enhanced Footer Styling */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #f7fafc;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

/* Animated background elements */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(140, 98, 247, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 60%, rgba(239, 68, 68, 0.08) 0%, transparent 40%);
    opacity: 0.3;
    z-index: -1;
    animation: footerGlow 15s infinite alternate;
}

@keyframes footerGlow {
    0% {
        opacity: 0.2;
        background-position: 0% 0%;
    }

    50% {
        opacity: 0.4;
        background-position: 100% 50%;
    }

    100% {
        opacity: 0.2;
        background-position: 0% 100%;
    }
}

/* Top wave decoration */
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #8c62f7 0%, #6a4bc3 100%);
    clip-path: polygon(0% 0%,
            5% 100%,
            10% 0%,
            15% 100%,
            20% 0%,
            25% 100%,
            30% 0%,
            35% 100%,
            40% 0%,
            45% 100%,
            50% 0%,
            55% 100%,
            60% 0%,
            65% 100%,
            70% 0%,
            75% 100%,
            80% 0%,
            85% 100%,
            90% 0%,
            95% 100%,
            100% 0%);
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Floating particles animation */
.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.footer-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(140, 98, 247, 0.2);
    animation: floatingParticle 15s infinite linear;
}

.footer-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.footer-particle:nth-child(2) {
    top: 30%;
    left: 30%;
    animation-duration: 30s;
    width: 12px;
    height: 12px;
}

.footer-particle:nth-child(3) {
    top: 70%;
    left: 70%;
    animation-duration: 20s;
    width: 10px;
    height: 10px;
}

.footer-particle:nth-child(4) {
    top: 40%;
    left: 80%;
    animation-duration: 22s;
}

.footer-particle:nth-child(5) {
    top: 60%;
    left: 20%;
    animation-duration: 18s;
    width: 15px;
    height: 15px;
}

@keyframes floatingParticle {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.2;
    }
}

.footer-column h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #fff, #8c62f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s infinite;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #fff, #8c62f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s infinite;
    animation-delay: 0.5s;
}

@keyframes shimmerText {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 200px;
    }
}

.footer-column h3::after,
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8c62f7, rgba(140, 98, 247, 0.2));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column h3:hover::after,
.footer-column h4:hover::after {
    width: 100%;
}

.footer-column p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-column ul {
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.footer-column ul li::before {
    content: "→";
    color: #8c62f7;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li:hover {
    padding-left: 20px;
}

.footer-column ul li:hover::before {
    opacity: 1;
    left: 0;
}

.footer-column ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 0;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #8c62f7, rgba(140, 98, 247, 0.2));
    transition: all 0.3s ease;
    border-radius: 2px;
}

.footer-column ul li a:hover {
    color: #8c62f7;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

/* Social media icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.social-link:hover {
    background-color: #8c62f7;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(140, 98, 247, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Footer logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

/* Animated contact info */
.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateX(5px);
}

.contact-icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 98, 247, 0.2);
    border-radius: 50%;
    color: #8c62f7;
    transition: all 0.3s ease;
}

.contact-info:hover .contact-icon {
    background: #8c62f7;
    color: #fff;
    transform: rotate(360deg);
}

/* Newsletter form in footer */
.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-newsletter-form {
    display: flex;
    margin-top: 15px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
    border: none;
    padding: 0 20px;
    background: linear-gradient(135deg, #8c62f7, #6a4bc3);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(135deg, #6a4bc3, #8c62f7);
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer::after {
        height: 10px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.8rem;
    }

    .footer-column h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 25px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }
}








.col a:hover .card {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8c62f7;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #6a4bc3;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


/* Stylish Product Headings */
.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.products-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.filter-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
    position: relative;
    padding-left: 20px;
    display: inline-flex;
    align-items: center;
}

.filter-heading::before {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #8c62f7;
    border-radius: 50%;
    margin-right: 8px;
}

.filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: #f7f7ff;
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.filter-group:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

/* Update select styling */
.filter-group select {
    border: 2px solid #e0e0ff;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: white;
    color: #444;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238c62f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-group select:focus {
    border-color: #8c62f7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 98, 247, 0.2);
}


/* Center the Products Title */
.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 2rem;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 0.8rem;
    margin-left: auto;
    margin-right: auto;
}

.products-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}


/* Logo Image Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    /* Adjust based on your logo size */
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo {
    margin-bottom: 15px;
}

.logo-image-footer {
    height: 32px;
    /* Slightly smaller in the footer */
    width: auto;
    margin-bottom: 10px;
}



/* Stylish Events Heading */
.events-heading {
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.events-heading::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.events-heading::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 30px;
    background: rgba(140, 98, 247, 0.3);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    border-radius: 2px;
}

/* Decorative element */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.section-divider .divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 98, 247, 0.2), transparent);
    flex-grow: 1;
}

.section-divider .divider-icon {
    margin: 0 15px;
    color: #8c62f7;
    transform: rotate(45deg);
}


/* Event Card Hover Effects */
.card-cover {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.card-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    z-index: -1;
}

.event-summary {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(140, 98, 247, 0.9);
    color: white;
    transition: all 0.4s ease;
    opacity: 0;
    border-top: 3px solid white;
}

.col a:hover .card-cover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.col a:hover .card-cover::before {
    opacity: 0.8;
}

.col a:hover .event-summary {
    bottom: 0;
    opacity: 1;
}

.summary-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.summary-text {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.summary-date {
    font-size: 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.summary-date svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

/* Stylish Blog Posts Heading */
.blog-section .section-title {
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.blog-section .section-title::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7 0%, #6a4bc3 100%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.blog-section .section-title::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 30px;
    background: rgba(140, 98, 247, 0.3);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    border-radius: 2px;
}

/* Add a decorative divider below the blog heading */
.blog-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.blog-divider .divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 98, 247, 0.2), transparent);
    flex-grow: 1;
}

.blog-divider .divider-icon {
    margin: 0 15px;
    color: #8c62f7;
}

/* Social Media Brand Colors for Icons */
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

/* Facebook brand color */
.social-link.facebook {
    background-color: #1877F2;
    /* Facebook blue */
}

.social-link.facebook:hover {
    background-color: #1877F2;
    /* Facebook blue */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Twitter brand color */
.social-link.twitter {
    background-color: #1DA1F2;
    /* Twitter blue */
}

.social-link.twitter:hover {
    background-color: #1DA1F2;
    /* Twitter blue */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

/* Instagram brand gradient */
.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Instagram gradient */
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Instagram gradient */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}


/* Adjusted Hero Section Sizing */
/* .hero {
  padding: 60px 0; 
  min-height: calc(100vh - 80px); 
  display: flex;
  align-items: center;
}

.hero-image img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  box-shadow: -7px 10px 40px;
  border-radius: 5%;
}

.hero-content h1 {
  margin-bottom: 15px;
}

.hero-content p {
  margin-bottom: 25px;
}


@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero-image img {
    max-height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
}


 */
/* //imp-> hero section */
/* Hero Product Carousel */
.hero-carousel {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f0ff 0%, #e8f7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(140, 98, 247, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(106, 75, 195, 0.07) 0%, transparent 30%);
    z-index: 0;
}

.hero-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    background: white;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(140, 98, 247, 0.03) 100%);
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding: 20px 40px;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #333 0%, #8c62f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInUp 0.8s 0.2s ease-out forwards;
    opacity: 0;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8c62f7;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    animation: fadeInUp 0.8s 0.3s ease-out forwards;
    opacity: 0;
}

.hero-price::before {
    content: "Special Price";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s 0.4s ease-out forwards;
    opacity: 0;
}

.hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary {
    background: linear-gradient(90deg, #8c62f7, #6a4bc3);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(140, 98, 247, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(140, 98, 247, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #8c62f7;
    border: 2px solid #8c62f7;
}

.hero-btn-secondary:hover {
    background: rgba(140, 98, 247, 0.05);
    transform: translateY(-3px);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out forwards;
}

.hero-image {
    max-width: 90%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transform: perspective(1000px) rotateY(10deg);
    transition: all 0.5s ease;
}

.hero-slide:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 60, 0, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
}

.hero-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(140, 98, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #8c62f7;
    transform: scale(1.3);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-arrow:hover {
    background: #8c62f7;
    color: white;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.05);
    }

    100% {
        transform: rotate(15deg) scale(1);
    }
}

@media (max-width: 992px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 20px;
        order: 2;
    }

    .hero-image-container {
        margin-bottom: 30px;
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-price {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}



/* Darker Hover Effects for Card Backgrounds */

/* Product Card Hover Effect - Darker Version */
.product-card .product-details {
    background-color: #fff;
    transition: background-color .3s ease
}

.product-card:hover .product-details {
    background-color: #e6e0ff;
    box-shadow: inset 0 0 0 1px rgba(140, 98, 247, .2)
}

.language-card {
    background-color: #fff;
    transition: all .3s ease
}

.language-card:hover {
    background-color: #e0d8ff;
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(140, 98, 247, .3)
}

.blog-card .blog-content {
    background-color: #fff;
    transition: background-color .3s ease
}

.blog-card:hover .blog-content {
    background-color: #e0d8ff
}

.testimonial-content {
    transition: background-color .5s ease
}

.testimonial-content:hover {
    background-color: #e0d8ff
}

.event-summary {
    transition: background-color .4s ease, bottom .4s ease, opacity .4s ease
}

.col a:hover .event-summary {
    background-color: rgba(106, 75, 195, .95)
}

.product-card:hover .product-title,
.language-card:hover .language-name,
.blog-card:hover h3 {
    color: #6a4bc3
}

.product-card:hover::before,
.language-card:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 75, 195, .12), transparent 70%);
    z-index: 0;
    pointer-events: none
}

.product-card:hover,
.language-card:hover,
.blog-card:hover {
    border-color: rgba(106, 75, 195, .3)
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    transition: transform .3s ease, box-shadow .3s ease
}

.blog-image-container {
    flex-shrink: 0
}

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    transition: background-color .3s ease
}

.blog-card:hover .blog-content {
    background-color: #e0d8ff;
    height: 100%
}

.blog-card::after {
    content: none
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.blog-grid .blog-card {
    height: 100%
}

.blog-card .blog-read-more {
    margin-top: auto
}


/* Complete Product Card Hover Effect Fix */
/* Compressed Product Card Hover Effects */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.product-card:hover {
    background-color: #e0d8ff;
    transform: translateY(-15px);
    box-shadow: 0 20px 35px rgba(140, 98, 247, .25);
}

.product-details {
    padding: 25px 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: background-color .3s ease;
}

.product-card:hover .product-details {
    background-color: #e0d8ff;
}

.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: background-color .3s ease;
}

.product-card:hover::after {
    background-color: #e0d8ff;
}

.add-to-cart.btn-primary {
    position: relative;
    z-index: 5;
}

.product-card .add-to-cart-container {
    background-color: #fff;
    width: 100%;
    transition: background-color .3s ease;
}

.product-card:hover .add-to-cart-container {
    background-color: #e0d8ff;
}




/* Analytics Dashboard Styles */
.analytics-dashboard {
    padding: 60px 0;
    background-color: #f8f9ff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(140, 98, 247, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(140, 98, 247, 0.15);
}

.card-header {
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 4px;
}

.period {
    font-size: 0.875rem;
    color: #718096;
}

.metric {
    margin-bottom: 20px;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 4px;
}

.metric-trend {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
}

.metric-trend.positive {
    background-color: rgba(72, 187, 120, 0.1);
    color: #48bb78;
}

.metric-trend.negative {
    background-color: rgba(245, 101, 101, 0.1);
    color: #f56565;
}

.metric-trend.neutral {
    background-color: rgba(237, 242, 247, 0.7);
    color: #718096;
}

.product-stats .stat-item {
    margin-bottom: 16px;
}

.product-name {
    display: block;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 4px;
}

.progress-bar {
    height: 6px;
    background-color: #edf2f7;
    border-radius: 3px;
    overflow: hidden;
    margin: 8px 0;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #8c62f7, #6a4bc3);
    border-radius: 3px;
    transition: width 1s ease;
}

.stat-value {
    font-size: 0.875rem;
    color: #718096;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        padding: 20px;
    }

    .metric-value {
        font-size: 1.5rem;
    }
}





/* login */
/* Auth Buttons and Modal Styles */
.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: 20px;
}

.auth-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:first-child {
    background-color: transparent;
    color: #6a4bc3;
    border: 2px solid #6a4bc3;
}

.auth-btn:last-child {
    background-color: #6a4bc3;
    color: white;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 75, 195, 0.2);
}

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.auth-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
    color: #666;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    border: 1px solid #ddd;
    color: #333;
    font-weight: 500;
}

.btn-google img {
    width: 18px;
    height: 18px;
}

.btn-google:hover {
    background-color: #f8f9fa;
}


.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.auth-modal.show {
    display: flex;
}

.close-button {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-button:hover {
    color: #333;
}


/* Add this to your styles.css */
.auth-buttons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.auth-buttons.hidden {
    opacity: 0;
    pointer-events: none;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.auth-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:first-child {
    background-color: transparent;
    color: #6a4bc3;
    border: 2px solid #6a4bc3;
}

.auth-btn:last-child {
    background-color: #6a4bc3;
    color: white;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 75, 195, 0.2);
}

.user-info {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.user-info span {
    color: #333;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: 20px;
}

.auth-buttons .auth-btn {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.user-info {
    margin-left: auto;
    margin-right: 20px;
    display: none;
    align-items: center;
    gap: 10px;
}

.user-info span {
    color: #333;
    font-weight: 500;
}

.user-info .auth-btn {
    background-color: #dc3545;
    color: white;
    border: none;
}

.user-info .auth-btn:hover {
    background-color: #c82333;
}



/* CSS for Product Description Tooltip */
.product-description-tooltip {
    position: fixed;
    /* Positioned by JavaScript */
    background-color: #2c3e50;
    /* A dark, modern blue-gray */
    color: #ecf0f1;
    /* Light gray text for contrast */
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
    z-index: 10000;
    /* Ensure it's on top of other elements */
    max-width: 280px;
    /* Prevent it from being too wide */
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Softer shadow */
    pointer-events: none;
    /* Allows mouse events to pass through to elements below */
    opacity: 0;
    /* Initial state for fade-in transition */
    /* transform will be handled by JS for positioning and animation */
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    white-space: pre-line;
    /* Respects newlines in the description and wraps text */
}



/* Product Card Styles */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

/* Product Detail Modal */
.product-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.product-detail-modal.show {
    opacity: 1;
    visibility: visible;
}

.product-detail-modal .modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.product-detail-modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.product-detail-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 2;
}

.product-detail-modal .close-modal:hover {
    color: var(--primary-color);
}

.product-detail-modal .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.product-detail-modal .modal-image img {
    width: 100%;
    border-radius: 8px;
}

.product-detail-modal .modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-detail-modal .modal-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-detail-modal .product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-detail-modal .stars {
    color: var(--star-color);
    margin-right: 5px;
}

.product-detail-modal .product-description {
    margin-bottom: 20px;
}

.product-detail-modal .product-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-detail-modal .product-description p {
    line-height: 1.6;
    color: var(--text-light);
}

.product-detail-modal .product-languages h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-detail-modal .language-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-detail-modal .language-pill {
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
}

.product-detail-modal .modal-actions {
    margin-top: 20px;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.language-selector label {
    font-weight: 500;
    color: var(--text-color);
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

/* Responsive design for modal */
@media (max-width: 768px) {
    .product-detail-modal .modal-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-modal .modal-content {
        padding: 20px;
    }
}



.modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
    transform: translateY(-50%);
    pointer-events: none;
    /* Allows clicks to pass through to the modal content */
}

.modal-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Make the buttons clickable */
}

.modal-nav-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.modal-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
    background-color: #f5f5f5;
}

.modal-content {
    transition: opacity 0.3s ease;
}

/* Stylish Dropdown Menus */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238c62f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding: 10px 40px 10px 15px;
    font-weight: 500;
    color: #444;
    border: 2px solid rgba(140, 98, 247, 0.15);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(140, 98, 247, 0.05);
    transition: all 0.3s ease;
    min-width: 160px;
    cursor: pointer;
    background-color: white;
}

select:hover,
select:focus {
    border-color: #8c62f7;
    box-shadow: 0 5px 15px rgba(140, 98, 247, 0.15);
    outline: none;
    transform: translateY(-2px);
}

/* Dropdown options styling */
select option {
    padding: 12px;
    font-weight: 500;
}

/* Active option styling */
select option:checked,
select option:focus {
    background: linear-gradient(135deg, #8c62f7, #6a4bc3);
    color: white;
}

/* Special styling for filter dropdowns */
.filter-group select {
    border-radius: 12px;
    background-color: #f7f7ff;
    border-color: rgba(140, 98, 247, 0.2);
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(140, 98, 247, 0.08);
}

/* Dropdown container styling */
.filter-group {
    position: relative;
}

.filter-group::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(140, 98, 247, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-group:hover::after {
    opacity: 1;
}

/* Language selector specific styling */
.language-selector select {
    font-weight: 600;
    background-color: #f0ebff;
    border-color: rgba(140, 98, 247, 0.25);
    color: #6a4bc3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    select {
        padding: 8px 35px 8px 12px;
        font-size: 0.95rem;
        min-width: 140px;
    }
}



/* Enhanced Dropdown Typography & Styling */

/* Dropdown text styling */
select {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #444;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Dropdown options styling */
select option {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 14px;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

/* Selected option styling */
select option:checked {
    font-weight: 600;
    background: linear-gradient(135deg, #8c62f7, #6a4bc3);
    color: white;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

/* Dropdown menu when open */
select:focus {
    border-color: #8c62f7;
    box-shadow: 0 0 0 3px rgba(140, 98, 247, 0.2);
    outline: none;
}

/* Category styling - bold categories */
.select-category option {
    font-weight: 600;
}

/* Sort by styling - smaller elegant text */
.select-sort option {
    letter-spacing: 0.5px;
}

/* Primary dropdown labels */
.filter-heading {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #555;
    margin-right: 12px;
    position: relative;
    padding-left: 16px;
}

/* Category label styling */
.filter-heading::before {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #8c62f7;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

/* Filter group hover effect */
.filter-group:hover .filter-heading::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 2px rgba(140, 98, 247, 0.3);
}

/* Option hover effect */
select:hover {
    background-color: #f5f2ff;
}

/* Custom styling for dropdown with animation */
.dropdown-open {
    animation: fadeInUp 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Enhance language selector appearance */
.language-selector select {
    font-weight: 600;
    color: #6a4bc3;
    text-transform: capitalize;
}

/* Style the display language text */
.language-display-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-right: 8px;
}

/* Unified Filter Row Styling */
.catalog-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background-color: #f8f7ff;
    border-radius: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Common styling for all filter groups */
.filter-group {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Heading styling for all filters */
.filter-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

/* Matching dot indicator for all filter headings */
.filter-heading::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #8c62f7;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.2s ease;
}

/* Make language selector match other filters */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* This pushes it to the right */
}

.language-selector label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-right: 12px;
    position: relative;
    padding-left: 16px;
}

.language-selector label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #8c62f7;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* Apply consistent styling to all select elements */
select {
    appearance: none;
    padding: 8px 35px 8px 12px;
    border-radius: 10px;
    border: 2px solid rgba(140, 98, 247, 0.15);
    background-color: white;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238c62f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    transition: all 0.3s ease;
    min-width: 140px;
}

/* Hover and focus states */
select:hover,
select:focus {
    border-color: #8c62f7;
    box-shadow: 0 0 0 3px rgba(140, 98, 247, 0.15);
    outline: none;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(140, 98, 247, 0.15);
    display: none;
    z-index: 100;
    min-width: 180px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 5px 0;
    margin-top: 10px;
    border: 2px solid rgba(140, 98, 247, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    color: #444;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f0ebff;
    color: #8c62f7;
    border-left: 3px solid #8c62f7;
    transform: translateX(5px);
}

/* Small indicator triangle for dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 101;
}

/* Settings pages styling */
.settings-section {
    padding: 80px 0;
    background-color: #f8f7ff;
}

.settings-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8c62f7, #6a4bc3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.settings-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8c62f7, #6a4bc3);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.settings-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(140, 98, 247, 0.1);
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.settings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(140, 98, 247, 0.15);
}

/* Animation for button options */
.theme-btn,
.width-btn,
.grid-btn,
.speed-btn,
.size-btn,
.weight-btn {
    position: relative;
    overflow: hidden;
}

.theme-btn::after,
.width-btn::after,
.grid-btn::after,
.speed-btn::after,
.size-btn::after,
.weight-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
    pointer-events: none;
}

.theme-btn:active::after,
.width-btn:active::after,
.grid-btn:active::after,
.speed-btn:active::after,
.size-btn:active::after,
.weight-btn:active::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}