:root {
    --pink-light: #ffd6e7;
    --pink-medium: #ff9ec6;
    --pink-dark: #ff6ba9;
    --blue-light: #d6f0ff;
    --blue-medium: #9ed4ff;
    --blue-dark: #6bb9ff;
    --text-dark: #5a3d4e;
    --text-light: #8a7b83;
    --white: #fff9fb;
}

html {
    scroll-behavior: smooth !important;
}

body {
    margin: 0;
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

nav {
    background-color: var(--white);
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(255, 105, 169, 0.1);
    /* position: sticky; */
    top: 0;
    z-index: 100;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8em 2em;
    box-shadow: 0 2px 15px rgba(255, 105, 169, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 35px;
    margin-right: 8px;
}

nav h1 {
    margin: 0;
    color: var(--pink-dark);
    font-size: 1.5em;
    font-weight: 700;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 1.5em;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

nav a:hover {
    color: var(--pink-dark);
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--pink-medium);
    border-radius: 2px;
}

.cta-button {
    background: linear-gradient(45deg, var(--pink-medium), var(--pink-dark));
    color: white;
    padding: 0.6em 1.2em;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(255, 105, 169, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 105, 169, 0.4);
}

header {
    text-align: center;
    padding: 6em 2em 4em;
    background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

header h2 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

header p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 2em;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.upload-section {
    background: white;
    padding: 2.5em;
    text-align: center;
    margin: 2em auto;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(255, 150, 200, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.upload-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pink-medium), var(--blue-medium));
}

.upload-section h3 {
    font-size: 1.8em;
    margin-bottom: 1em;
    color: var(--text-dark);
}

.upload-instructions {
    margin-bottom: 1.5em;
    color: var(--text-light);
}

.upload-box {
    border: 2px dashed var(--pink-medium);
    border-radius: 15px;
    padding: 2em;
    margin: 1em auto;
    background-color: var(--white);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.upload-box:hover {
    border-color: var(--blue-medium);
    background-color: var(--blue-light);
    transform: translateY(-3px);
}

.upload-box i {
    font-size: 3em;
    color: var(--pink-medium);
    margin-bottom: 0.5em;
    display: block;
    transition: all 0.3s;
}

.upload-box:hover i {
    color: var(--blue-medium);
}

.section {
    padding: 4em 2em;
    text-align: center;
}

.section h3 {
    font-size: 2.2em;
    margin-bottom: 1em;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-medium), var(--blue-medium));
    border-radius: 3px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 8px 20px rgba(255, 150, 200, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 150, 200, 0.15);
    background-color: rgb(255, 255, 255);
    background-color: rgb(255, 229, 247);
}

.feature-card i {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    background: linear-gradient(45deg, var(--pink-medium), var(--blue-medium));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h4 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Carousel styles - fixed for the 83:117 aspect ratio */
.theme-section {
    padding: 4em 2em;
    text-align: center;
    background-color: var(--white);
}

.theme-intro {
    max-width: 700px;
    margin: 0 auto 2em;
    color: var(--text-light);
}

/* Updated Carousel styles */
.carousel-container {
    position: relative;
    /* max-width: 350px; */
    /* max-width: 70%; */
    /* Adjusted to fit one image */
    margin: 2em auto;
    background:transparent;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(255, 150, 200, 0.2); */
    padding: 15px;
    /* height: 450px; */
    /* Slightly taller to accommodate caption */
    /* overflow: hidden; */
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    display: none;
    /* Hide all items by default */
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    /* background-color: red; */
}

.carousel-item.active {
    display: flex;
    /* Only show active item */
}

.carousel-item img {
    /* height: 400px; */
    /* width: 283px; */
    width: 40%;
    /* A4 aspect ratio (1:1.4142) */
    aspect-ratio: 1/1.4121;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    object-fit: cover;
    box-shadow: 0 10px 50px rgba(255, 150, 200, 0.2);
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 50%;
    display: flex;
    left: 25%;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    z-index: 10;
    box-sizing: border-box;
    /* background-color: red; */
}



.carousel-button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.carousel-button i {
    font-size: 1.2em;
    color: var(--text-dark);
}

/* Image caption styles */
.image-caption {
    /* margin-top: 10px; */
    font-size: 1.2em;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Improved footer styles */
footer {
    background-color: var(--pink-light);
    padding: 1.5em;
    text-align: center;
    margin-top: 2em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo {
    margin-bottom: 0.8em;
}

footer .logo img {
    width: 30px;
    margin-right: 8px;
}

footer h1 {
    color: var(--pink-dark);
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    width: 100%;
    margin: 1em 0;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-section h4 {
    color: var(--text-dark);
    margin-bottom: 0.8em;
    font-size: 1.1em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--pink-dark);
}

.contact-item i {
    margin-right: 0.5em;
    font-size: 1.2em;
}

.social-icons {
    margin: 0.8em 0;
    display: flex;
    justify-content: center;
    gap: 1.2em;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    font-size: 1.3em;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 150, 200, 0.2);
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: var(--pink-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 150, 200, 0.3);
}

.copyright {
    margin-top: 0.8em;
    font-size: 0.9em;
    color: var(--text-light);
}
/* Platform icons in header */
.platform-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2em;
}

.platform-icon {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.platform-icon i {
    font-size: 1.5em;
    margin-right: 8px;
}

.platform-icon span {
    font-weight: 600;
}

.whatsapp i {
    color: #25D366;
}

.instagram i {
    color: #E1306C;
}

.telegram i {
    color: #0088cc;
    opacity: 0.5;
}

.coming-soon {
    font-size: 0.7em;
    background-color: var(--pink-medium);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

/* Process section */
.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    max-width: 1200px;
    margin: 2em auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-medium), var(--blue-medium));
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--pink-medium), var(--blue-medium));
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 1em;
}

.process-step h4 {
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Testimonials */
.testimonials {
    background-color: var(--blue-light);
    padding: 4em 2em;
    text-align: center;
    margin-top: 3em;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 8px 20px rgba(255, 150, 200, 0.1);
    text-align: left;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5em;
    color: var(--pink-light);
    font-family: serif;
    line-height: 0.5;
}

.testimonial-text {
    margin-bottom: 1.5em;
    font-style: italic;
    z-index: 1;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9em;
}

/* New styles for the Chat Data Export Guide section */
.export-guide-section {
    background-color: var(--white);
    padding: 4em 2em;
    text-align: center;
}

.selector-container {
    max-width: 700px;
    margin: 2em auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.selector-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin-bottom: 1.5em;
}

.selector-label {
    font-weight: 600;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    color: var(--text-dark);
}

.selector-options {
    display: flex;
    background-color: white;
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(255, 150, 200, 0.15);
    width: 100%;
}

.selector-option {
    flex: 1;
    cursor: pointer;
    padding: 10px 0;
    text-align: center;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.selector-option.active {
    background: linear-gradient(45deg, var(--pink-medium), var(--blue-medium));
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 150, 200, 0.2);
}

.selector-option:not(.active) {
    color: var(--text-light);
}

.selector-option:hover:not(.active) {
    background-color: var(--pink-light);
    color: var(--text-dark);
}

.instructions-container {
    background-color: white;
    border-radius: 15px;
    padding: 2em;
    max-width: 700px;
    margin: 1em auto;
    box-shadow: 0 8px 20px rgba(255, 150, 200, 0.1);
    text-align: left;
    min-height: 300px;
}

.instruction-set {
    display: none;
}

.instruction-set.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

.instruction-step {
    margin-bottom: 1.5em;
    position: relative;
    padding-left: 30px;
}

.instruction-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--pink-medium);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

.instruction-step h4 {
    margin-top: 0;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

.instruction-step p {
    margin: 0;
    color: var(--text-light);
}

.instruction-note {
    margin-top: 1.5em;
    padding: 1em;
    background-color: var(--blue-light);
    border-radius: 10px;
    font-style: italic;
    color: var(--text-dark);
}

/* Selector Section Styles */
.selector-section {
    padding: 4em 2em;
    padding-top: 0 !important;
    text-align: center;
    background-color: var(--white);
}

.selector-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 1.5em;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(255, 150, 200, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    margin: 0.5em;
}

.selector-item.active {
    background: linear-gradient(45deg, var(--pink-medium), var(--blue-medium));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 150, 200, 0.2);
}

.selector-item.active .selector-icon i {
    color: white;
}

.selector-item.active .selector-title {
    color: white;
}

.selector-item.active p {
    color: rgba(255, 255, 255, 0.9);
}

.selector-icon i {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: var(--pink-medium);
}

.selector-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

.selector-item p {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Product Details Section */
.product-details-section {
    /* padding: 4em 2em; */
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
    padding-top: 0 !important;
    text-align: center;
    background-color: var(--white);
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    max-width: 1000px;
    margin: 2em auto;
}

.product-image {
    flex: 1;
    min-width: 400px !important;
    /* max-width: 400px; */
    aspect-ratio: 1/1.4142 !important;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 150, 200, 0.2);
}

.product-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
    padding: 1em;
}

.product-selectors {
    margin-bottom: 2em;
}

.selector-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin-bottom: 1.5em;
}

.selector-btn {
    padding: 0.8em 1.2em;
    border: none;
    border-radius: 25px;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 150, 200, 0.1);
}

.selector-btn.active {
    background: linear-gradient(45deg, var(--pink-medium), var(--blue-medium));
    color: white;
}

.selector-btn:hover:not(.active) {
    background-color: var(--pink-light);
}

.product-price {
    font-size: 2em;
    font-weight: 700;
    color: var(--pink-dark);
    margin: 1em 0;
}

.order-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--pink-medium), var(--pink-dark));
    color: white;
    padding: 1em 2em;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 105, 169, 0.3);
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 169, 0.4);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--pink-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}




/* Mobile Optimizations for Love Charts */

/* Base Mobile Fixes */
@media (max-width: 768px) {
    /* Global Mobile Fixes */
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: var(--white) !important;
    }
    
    /* Reset previous debugging styles */
    html {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Typography Adjustments */
    h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }
    
    h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.7em !important;
    }
    
    h4 {
        font-size: 1.2rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        padding: 0 15px;
    }

    /* Navigation Improvements */
    nav {
        padding: 0.8em 1.2em !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--white) !important;
    }
    
    .logo {
        z-index: 101;
    }
    
    .logo img {
        width: 30px !important;
    }
    
    .logo h1 {
        font-size: 1.3rem !important;
    }
    
    .hamburger {
        z-index: 101;
        top: 50% !important;
        transform: translateY(-50%);
        right: 1.2em !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        z-index: 100;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        margin: 1em 0 !important;
        font-size: 1.2rem;
        display: block;

    }

    /* Header Improvements */
    header {
        padding: 3em 1em 2.5em !important;
    }
    
    header h2 {
        font-size: 1.8rem !important;
        margin-top: 0;
    }
    
    header p {
        font-size: 1rem !important;
        padding: 0 10px;
        margin-bottom: 1.5em;
    }
    
    .platform-icons {
        flex-direction: column;
        align-items: center;
        gap: 10px !important;
    }
    
    .platform-icon {
        width: 200px !important;
        max-width: 80%;
        justify-content: center;
        margin-bottom: 0.5em;
    }
    
    .cta-button {
        margin-top: 1em;
        padding: 0.7em 1.5em !important;
        font-size: 1rem !important;
    }

    /* Section Layout Fixes */
    .section, 
    .selector-section, 
    .export-guide-section,
    .product-details-section,
    .theme-section {
        padding: 2em 1em !important;
        width: 100% !important;
        box-sizing: border-box;
        overflow: visible !important;
    }
    
    .theme-section {
        padding-bottom: 1em !important;
    }
    
    .section h3,
    .export-guide-section h3,
    .product-details-section h3,
    .theme-section h3 {
        padding: 0 10px;
        margin-bottom: 1em !important;
    }

    /* Feature Cards Adjustments */
    .features {
        gap: 1em !important;
        padding: 0 10px;
    }
    
    .feature-card {
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 1.5em !important;
        margin-bottom: 1em;
        box-sizing: border-box;
    }

    /* Carousel Improvements */
    .carousel-container {
        height: auto !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 1em auto !important;
    }
    
    .carousel-wrapper {
        width: 100% !important;
    }
    
    .carousel-item {
        padding: 0 !important;
        justify-content: center !important;
    }
    
    .carousel-item img {
        width: 220px !important;
        height: auto !important;
        aspect-ratio: 1/1.4142 !important;
    }
    
    .image-caption {
        font-size: 1.8rem !important;
        margin-top: 0.5em;
    }
    
    .carousel-buttons {
        width: 100% !important;
        left: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box;
    }
    
    /* Selector & Instruction Improvements */
    .selector-container {
        padding: 0 10px;
    }
    
    .selector-options {
        width: 100%;
    }
    
    .selector-option {
        padding: 8px 0 !important;
        font-size: 0.9rem !important;
    }
    
    .instructions-container {
        padding: 1.5em !important;
        border-radius: 10px;
        margin: 1em 10px !important;
        width: auto !important;
    }
    
    .instruction-step {
        padding-left: 25px !important;
    }
    
    .instruction-step::before {
        width: 20px !important;
        height: 20px !important;
    }
    
    .instruction-step h4 {
        font-size: 1rem !important;
        margin-bottom: 0.3em !important;
    }
    
    .instruction-step p {
        font-size: 0.9rem !important;
        padding: 0 !important;
    }
    
    .instruction-note p {
        font-size: 0.85rem !important;
        padding: 0 !important;
    }

    /* Product Details */
    .product-container {
        flex-direction: column !important;
        gap: 1em !important;
        margin: 1em auto !important;
    }
    
    .product-image {
        min-width: unset !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .product-info {
        min-width: 100% !important;
        padding: 0.5em !important;
        text-align: center !important;
    }
    
    .product-selectors {
        margin-bottom: 1em !important;
    }
    
    .selector-buttons {
        justify-content: center !important;
        gap: 0.5em !important;
    }
    
    .selector-btn {
        padding: 0.6em 1em !important;
        font-size: 0.9rem !important;
    }
    
    .product-price {
        font-size: 1.8rem !important;
        margin: 0.7em 0 !important;
    }
    
    .order-button {
        padding: 0.8em 1.8em !important;
        font-size: 1rem !important;
    }

    /* Footer Adjustments */
    footer {
        padding: 1.5em 1em !important;
    }
    
    .social-icons {
        margin: 0.8em 0 !important;
    }
    
    .social-icons a {
        margin: 0 8px !important;
    }

    /* Improved mobile footer */
    footer {
        padding: 1.5em 1em !important;
        text-align: center;
    }
    
    .footer-sections {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    
    .footer-section {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .contact-info {
        padding: 0 1em;
    }
    
    .social-icons {
        gap: 1em;
    }
    
    /* Make instruction containers wider on mobile */
    .instructions-container {
        max-width: calc(100% - 20px) !important;
        margin: 1em auto !important;
        padding: 1.5em !important;
        box-sizing: border-box;
    }
    
    /* Improve carousel display on mobile */
    .carousel-container {
        width: 100% !important;
        max-width: 100% !important; 
    }
    
    .carousel-item img {
        width: 70% !important;
        max-width: 220px !important;
    }
    
    /* Fixed parallax issues on mobile */
    .parallax {
        background-attachment: scroll; /* Change to scroll on mobile for better performance */
    }
    
    /* Make all section content cover full width on mobile */
    .section, 
    .selector-section, 
    .export-guide-section,
    .product-details-section,
    .theme-section {
        width: 100% !important;
        padding: 2em 0.5em !important;
        box-sizing: border-box;
    }
    
    .section > h3,
    .selector-section > h3,
    .export-guide-section > h3,
    .product-details-section > h3,
    .theme-section > h3 {
        padding: 0 !important;
        margin-bottom: 1em !important;
    }
    
    .theme-intro,
    .section p {
        padding: 0 0.8em !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Ensure feature cards use full width */
    .feature-card {
        min-width: calc(100% - 20px) !important;
        max-width: 100% !important;
        margin: 0 10px 1em 10px;
    }

}

/* Extra Small Devices */
@media (max-width: 480px) {
    /* Typography adjustments */
    h2 {
        font-size: 1.6rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    /* Carousel adjustments */
    .carousel-item img {
        width: 180px !important;
    }
    
    .image-caption {
        font-size: 1.5rem !important;
    }
    
    /* Button size adjustments */
    .selector-btn {
        width: auto !important;
        min-width: 100px;
    }
    
    /* Product selector adjustments */
    .selector-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    .carousel-item img {
        width: 90% !important;
        max-width: 180px !important;
    }
    
    /* Better button spacing */
    .selector-btn {
        margin: 0.3em;
    }
}


/* Add captivating scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for feature cards */
.feature-card {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Parallax effect for header */
header {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-layer-1 {
    background: radial-gradient(circle at 20% 50%, var(--pink-light) 0%, transparent 50%);
    transform: translateZ(-1px) scale(2);
}

.parallax-layer-2 {
    background: radial-gradient(circle at 80% 80%, var(--blue-light) 0%, transparent 60%);
    transform: translateZ(-2px) scale(3);
}

.parallax-content {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

/* Modern floating animation for images */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.carousel-item.active img {
    animation: float 6s ease-in-out infinite;
}

/* Add a cool gradient overlay effect that moves on scroll */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(255, 214, 231, 0.2) 0%, 
                rgba(214, 240, 255, 0) 50%,
                rgba(214, 240, 255, 0.2) 100%);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 0;
}

/* Gradient animation for sections */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section::before {
    animation: gradientMove 15s ease infinite;
}

/* Smooth 3D card tilt effect */
.feature-card, .carousel-item img, .product-image img {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}


/* Apply subtle hover effects only on desktop */
@media (min-width: 769px) {
    .feature-card:hover, .carousel-item img:hover, .product-image img:hover {
        transform: perspective(1000px) rotateX(2deg) rotateY(5deg);
        box-shadow: 0 20px 30px rgba(255, 150, 200, 0.2);
    }
    footer .footer-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 2em;
        padding: 1em 0;
    }
    
    footer .social-icons {
        grid-row: 1;
        grid-column: 3;
        margin: 0;
    }
    
    footer .logo {
        grid-row: 1;
        grid-column: 1;
        margin: 0;
    }
    
    footer .footer-sections {
        grid-row: 1;
        grid-column: 2;
        margin: 0;
        justify-content: center;
    }
    
    footer p:not(.copyright) {
        display: none;
    }
    
    footer .copyright {
        grid-row: 2;
        grid-column: 1 / span 3;
        margin-top: 0.5em;
        margin-bottom: 0;
    }
}

html,body{
    overflow-x:hidden !important;
}




/* Data Privacy Section Styles */
.data-privacy-section {
    background-color: var(--white);
    padding: 50px 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}



.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.privacy-icon {
    margin-bottom: 20px;
}

.privacy-icon i {
    font-size: 48px;
    color: #4a8ecb;
    padding: 20px;
    border-radius: 50%;
    background-color: #e8f4ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.privacy-content h3 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.privacy-content p {
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.privacy-points {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.privacy-points li {
    flex: 1 1 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    max-width: 480px;
}

.privacy-points li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.privacy-points li i {
    color: #4a8ecb;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.privacy-points li span {
    flex: 1;
}

.privacy-points li strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.privacy-seal {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-seal i {
    color: #4caf50;
    font-size: 30px;
    margin-bottom: 15px;
}

.privacy-seal p {
    font-weight: 600;
    font-style: italic;
    color: #444;
    margin-bottom: 0;
}

/* Customer Reviews Section Styles */
.reviews-section {
    padding: 60px 20px;
    background-color: var(--white);
    position: relative;
}

.reviews-section h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: #333;
}

.reviews-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 17px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.review-card {
    flex: 1;
    max-width: 500px;
    min-width: 280px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    margin-right: 15px;
}

.review-avatar i {
    font-size: 42px;
    color: #8bb9e1;
}

.review-meta {
    flex: 1;
}

.review-meta h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
}

.review-meta p {
    margin: 0 0 5px;
    font-size: 14px;
    color: #888;
}

.review-stars {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    flex: 1;
}

.review-text p {
    margin: 0;
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.review-nav-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #8bb9e1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    background-color: #f0f7ff;
    color: #4a8ecb;
}

.review-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-points {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-points li {
        flex: 1 1;
        max-width: 100%;
    }
    
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        max-width: 100%;
    }
}



