:root {
    --primary-color: #0779e4;
    --primary-light: #e6f2ff;
    --secondary-color: #1e3a8a;
    --accent-color: #ff6600;
    --accent-light: #fff0e6;
    --text-color: #333333;
    --light-bg: #f0f7ff;
    --white: #ffffff;
    --gray: #f4f4f4;
    --dark-gray: #666666;
    --faq-bg: #f0f7ff;
    --faq-question-bg: #e0f0ff;
    --faq-question-color: #0056b3;
    --faq-answer-color: #444;
    --faq-border-color: #b3d7ff;
    --faq-hover-bg: #d0e8ff;
    --testimonial-bg: #f0f7ff;
    --testimonial-card-bg: #ffffff;
    --testimonial-text-color: #333333;
    --testimonial-highlight: #0056b3;
    --testimonial-shadow: rgba(7, 121, 228, 0.1);
    --feature-card-bg-1: #e3f2fd;
    --feature-card-bg-2: #e8f5e9;
    --feature-card-bg-3: #fff3e0;
    --feature-card-bg-4: #fce4ec;
    --feature-card-icon-1: #1976d2;
    --feature-card-icon-2: #388e3c;
    --feature-card-icon-3: #f57c00;
    --feature-card-icon-4: #c2185b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Hind Siliguri', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f7ff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.track-order {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.track-order:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.buy-now {
    background-color: var(--accent-color);
    color: var(--white);
}

.buy-now:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 80%);
    transform: rotate(30deg);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/*video container*/

/*@media (max-width: 768px) {*/
/*    .video-container {*/
/*        max-width: 300px;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .video-container {*/
/*        max-width: 290px;*/
/*    }*/
/*}*/


/* Flash Offer Section */
/*:root {*/
/*    --primary-color: #0066cc;*/
/*    --secondary-color: #003366;*/
/*    --accent-color: #ff6600;*/
/*    --light-color: #e6f2ff;*/
/*    --text-color: #ffffff;*/
/*}*/

.flash-offer {
    background: linear-gradient(135deg, #0066cc, #003366);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    max-width: 600px;
    overflow: hidden;
    position: relative;
}

.flash-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-text {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    /*color: #ffffff;*/
}

.discount {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#countdown {
    display: flex;
    gap: 0.5rem;
}

.time-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    min-width: 3.5rem;
}

.time-section span {
    display: block;
}

.time-section span:first-child {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    line-height: 1;
}

.time-section .label {
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    text-transform: uppercase;
    opacity: 0.8;
}

.grab-btn {
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    white-space: nowrap;
}

.grab-btn:hover {
    background-color: #ff8533;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

@media (max-width: 480px) {
    .flash-offer {
        padding: 1rem;
        width: 95%;
    }
    
    .offer-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    #countdown {
        margin-bottom: 1rem;
    }
    
    .grab-btn {
        width: 80%;
        text-align: center;
    }
}

/* Features Section */
.features {
    padding: 2rem 0;
    background-color: var(--light-bg);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    background-color: var(--feature-card-bg-1);
}

.feature-card:nth-child(2) {
    background-color: var(--feature-card-bg-2);
}

.feature-card:nth-child(3) {
    background-color: var(--feature-card-bg-3);
}

.feature-card:nth-child(4) {
    background-color: var(--feature-card-bg-4);
}

.feature-card:nth-child(5) {
    background-color: var(--feature-card-bg-1);
}

.feature-card:nth-child(6) {
    background-color: var(--feature-card-bg-2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 80%);
    transform: rotate(30deg);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: rotate(0deg);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:nth-child(1) i { color: var(--feature-card-icon-1); }
.feature-card:nth-child(2) i { color: var(--feature-card-icon-2); }
.feature-card:nth-child(3) i { color: var(--feature-card-icon-3); }
.feature-card:nth-child(4) i { color: var(--feature-card-icon-4); }
.feature-card:nth-child(5) i { color: var(--feature-card-icon-1); }
.feature-card:nth-child(6) i { color: var(--feature-card-icon-2); }

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Product Showcase Section */
.product-showcase {
    padding: 4rem 0;
    background-color: var(--white);
}

.product-grid {
    display: grid;
    gap: 2rem;
}

.product-card {
    display: flex;
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 0 0 40%;
    max-width: 350px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    display: inline-block;
    width: 52%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.product-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Order Tracking Section */
.order-tracking {
    background-color: var(--light-bg);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.order-tracking::before,
.order-tracking::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 121, 228, 0.1) 0%, rgba(7, 121, 228, 0) 70%);
    z-index: 0;
}

.order-tracking::before {
    top: -100px;
    left: -100px;
}

.order-tracking::after {
    bottom: -100px;
    right: -100px;
}

.order-tracking h2 {
    font-size: 1rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.order-tracking-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.order-tracking form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-tracking .form-group {
    width: 100%;
    margin-bottom: 1rem;
}

.order-tracking input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-tracking input[type="text"]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.order-tracking .track-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.order-tracking .track-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.order-details {
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.order-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.order-details p {
    margin-bottom: 0.5rem;
}

.download-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.error-message {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #ffe6e6;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
    color: #dc3545;
}


/* Testimonials Section */
.testimonials {
    padding: 2rem 0;
    background-color: #f0f7ff;
    position: relative;
    overflow: hidden;
}

.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 121, 228, 0.1) 0%, rgba(7, 121, 228, 0) 70%);
    z-index: 0;
}

.testimonials::before {
    top: -100px;
    left: -100px;
}

.testimonials::after {
    bottom: -100px;
    right: -100px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
    touch-action: pan-y;
}

.testimonial {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(7, 121, 228, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-left: 5px solid #0779e4;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: #0779e4;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.1;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(7, 121, 228, 0.2);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 4px solid #0779e4;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-content:hover .testimonial-image {
    transform: scale(1.1);
}

.testimonial h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: color 0.3s ease;
}

.testimonial-content:hover h3 {
    color: #0779e4;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    text-align: center;
    flex-grow: 1;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.testimonial-content:hover .stars {
    transform: scale(1.1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.slider-nav button {
    background-color: #0779e4;
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-nav button:hover {
    background-color: #1e3a8a;
    transform: scale(1.1);
}

.slider-nav .prev-btn {
    margin-left: 10px;
}

.slider-nav .next-btn {
    margin-right: 10px;
}

@media (min-width: 768px) {
    .testimonial {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial h3 {
        font-size: 1.1rem;
    }

    .testimonial p {
        font-size: 0.9rem;
    }

    .slider-nav button {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}

/* FAQ Section */
.faq {
    padding: 2rem 0;
    background-color: var(--faq-bg);
    position: relative;
    overflow: hidden;
}

.faq::before,
.faq::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 121, 228, 0.1) 0%, rgba(7, 121, 228, 0) 70%);
    z-index: 0;
}

.faq::before {
    top: -100px;
    left: -100px;
}

.faq::after {
    bottom: -100px;
    right: -100px;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid var(--faq-border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background-color: var(--faq-question-bg);
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--faq-hover-bg);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--faq-question-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
    background-color: var(--white);
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: var(--faq-answer-color);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.2rem;
}

/* cta section*/

.cta-section {
    padding: 1rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* Responsive styles */
@media (max-width: 768px) {
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Footer */
.new-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
}

.new-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.new-footer-nav a {
    color: var(--white);
    text-decoration: none;
    margin: 5px 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.new-footer-nav a:hover {
    color: var(--accent-light);
}

.new-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (min-width: 768px) {
    .testimonial {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 992px) {
    .product-card, .product-card.reverse {
        flex-direction: column;
    }

    .product-image {
        max-width: 100%;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at top right);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(150% at top right);
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        padding: 2rem 0;
    }

    .product-grid {
        gap: 1.5rem;
    }

    .product-image {
        padding: 1rem;
        margin: 0 auto;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial h3 {
        font-size: 1.1rem;
    }

    .testimonial p {
        font-size: 0.9rem;
    }

    .slider-nav button {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .new-footer-nav a {
        margin: 5px 5px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    .features h2,
    .testimonials h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        padding: 0.5rem;
    }

    .product-info {
        padding: 1rem 0.5rem;
    }

    .product-category {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Additional Styles for Better Look */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.hero {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)), 
                      url('path-to-your-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.feature-card {
    border-top: 4px solid var(--primary-color);
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) rotate(1deg);
}

.testimonial-content {
    border-bottom: 4px solid var(--primary-color);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

/* Improved Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better keyboard navigation */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .hero,
    .flash-offer,
    .testimonials,
    .new-footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .product-card {
        page-break-inside: avoid;
    }
}