/* Base Styles & Variables */
:root {
    --primary-color: #441663;
    --secondary-color: rgba(1, 8, 27, 0.514);
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(circle at 1px 1px, #e0e0e0 1px, transparent 0);
    background-size: 25px 25px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.contact-us-btn {
    background: linear-gradient(135deg, #8B5A96 0%, #6B4C7A 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 90, 150, 0.4);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    margin-left: 10px;
}

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

/* Header */
.main-header {
    background: linear-gradient(to left, rgb(182, 94, 204), rgb(71, 0, 104));
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: fit-content;
    transition: transform 0.3s ease-in-out;
}

.main-header.header-hidden {
    transform: translateY(-60%);
}

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


.logo {
    max-width: auto;
    margin-right: 20px;
    max-height: 130px;
}

.logo-img {
    max-height: 130px;
    min-height: 120px;
    width: auto;
    opacity: 0.8;
    border-radius: 10px;
    transition: var(--transition);
    object-fit: contain;
    display: block;
}

.logo-img:hover {
    opacity: 1.0;
    transform: scale(1.05);
}
.logo-img-hero {
    position:absolute;
    top: 70%;
    left: 10%;
    transform: translate(-70%, -50%);/* center */
    opacity: 0.1; /* faded look as a background */
    width: 500px;  /* adjust size */
    z-index: 1; /* behind text */
}
    

@media (max-width: 768px) {
    .main-header {
        max-height: 70px;
        height: fit-content;
        padding: 8px 0;
    }
    
    .main-header .container {
        padding: 3px 20px 8px;
        align-items: flex-start;
        min-height: 54px;
    }
    
    .logo {
        margin-top: 3px;
        align-self: flex-start;
    }
    
    .logo-img {
        max-height: 45px;
        min-height: unset;
        object-fit: contain;
        width: auto;
    }
    
    .mobile-menu-btn {
        align-self: flex-start;
        margin-top: 3px;
    }
    
    .nav-links {
        font-size: 0.9rem;
    }
    
    .cart-icon {
        font-size: 1.3rem;
    }
    
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 1.2rem;
    }
    
    .slide-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 15px;
        padding: 15px;
    }
    
    .slide-image img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .slide-info h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
        color: #2c3e50;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
    }
    
    .featured-price {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #8B5A96;
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    }
    
    .featured-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
        color: #34495e;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
    }
    
    .slideshow-nav {
        padding: 10px 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .featured-products-container {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .hero {
        padding: 140px 0 80px;
        margin-top: 70px;
    }
    
    .logo-img-hero {
      left: 50%;
      opacity: 0.3;
      transform: translate(-50%, -90%);/* center horizontally & vertically */
      width: 300px; /* optional: scale down for mobile */
    }
  }

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

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

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

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

.cart-icon {
    margin-left: 20px;
    position: relative;
    color: white;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: rgba(117, 0, 121, 0.973);
    /*background-image: url('../herosection.jpg');*/
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 110vh;
    height: fit-content;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    color: #fff;
    padding: 120px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
    animation: moveStars 3s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.1) 0%, transparent 25%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    font-family: Poor-Richard;
    background: linear-gradient(90deg, #fbfcfbcb, #32d9f7), rgb(185, 164, 185); /* pick your colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for modern browsers */
    font-weight: bold;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

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

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 10;
}

.btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    touch-action: manipulation;
}

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

.btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    transition: transform 0.3s ease-in-out;
}

.main-header.header-hidden {
    transform: translateY(-60%);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, #32d9f7 0%, #750079 100%);
    border: none;
    color: white;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(50, 217, 247, 0.4);
}

/* Featured Products */
.featured-products, .services-preview, .testimonials, .newsletter {
    padding: 80px 0;
}

.featured-products-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-slideshow {
    max-width: 1000px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.slide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.slide-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.featured-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B5A96;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #34495e;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.slideshow-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.1);
}

.nav-btn {
    background: rgba(139, 90, 150, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(139, 90, 150, 1);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.featured-products h2, .services-preview h2, .testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.featured-products h2::after, .services-preview h2::after, .testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

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

.product-card {
    background: #ece0f8;
    border-radius: 10px;
    overflow: hidden;
    
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.product-image {
    height: fit-content;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 10px 0;
}

.trial-badge-card {
    background: linear-gradient(135deg, #32d9f7 0%, #750079 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.trial-badge-card i {
    margin-right: 5px;
}

.btn-trial {
    background: linear-gradient(135deg, #32d9f7 0%, #750079 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 217, 247, 0.4);
}

.btn-trial i {
    margin-right: 5px;
}

/* Services */
.services-slideshow-container {
    position: relative;
    margin-bottom: 40px;
}

.services-slideshow {
    overflow: hidden;
    border-radius: 10px;
}

.services-cards-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.service-card-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
}

.services-grid.desktop {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid.mobile {
    grid-template-columns: 1fr;
}


.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.services-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-nav-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.services-indicators {
    display: flex;
    gap: 10px;
}

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

.services-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Testimonials */
.testimonials {
    background: #f9f9f9;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container {
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

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

.testimonial-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

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

.testimonial-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Newsletter */
.newsletter {
    background: linear-gradient(to top, rgb(175, 115, 190), rgb(101, 47, 126));
    color: #fff;
    text-align: center;
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    padding: 0 30px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #2980b9;
}

/* Footer */
.main-footer {
    background: linear-gradient(to bottom, rgb(182, 94, 204), rgb(71, 0, 104));
    color: #fff;
    padding: 60px 0 0;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 15px;
    color: #ecf0f1;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

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

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -300px;
        width: 280px;
        height: auto;
        max-height: calc(100vh - 80px);
        background: rgba(139, 90, 150, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 5px 20px rgba(0,0,0,0.3);
        border-radius: 10px 0 0 10px;
        transform: translateX(0);
        opacity: 1;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        color: white;
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        color: #FFD700;
        padding-left: 10px;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .products-grid, .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .services-section .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .services-grid.desktop {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card-wrapper {
        padding: 0 10px;
    }
    
    .services-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 5px;
        padding: 10px;
    }
}

/* Mobile styles */
@media (max-width: 992px) {
    .logo {
        max-width: 250px;
    }
    
    .logo-img {
        max-height: 90px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .logo-img {
        max-height: 70px;
    }
}

@media (max-width: 576px) {
    .main-header {
        max-height: 50px;
        padding: 2px 0;
        overflow: hidden;
        position: sticky;
        top: 0;
        z-index: 1001;
    }
    
    .main-header .container {
        padding: 2px 10px 5px;
        height: fit-content;
        align-items: center;
        min-height: 50px;
        justify-content: space-between;
    }
    
    .logo {
        margin-top: 0;
        margin-left: -5px;
    }
    
    .logo-img {
        max-height: 50px;
        min-height: unset;
        object-fit: contain;
        width: 300px;
    }
    
    .mobile-menu-btn {
        font-size: 1.2rem;
        padding: 3px 5px;
        height: 30px;
        display: flex;
        align-items: center;
    }
    
    .nav-links {
        font-size: 0.8rem;
    }
    
    .nav-links li {
        margin-left: 15px;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 0;
    }
    
    .cart-icon {
        font-size: 1.1rem;
        padding: 3px;
    }
    
    .cart-icon a {
        color: #333;
        text-decoration: none;
    }
    
    .mobile-menu-btn {
        font-size: 1.1rem;
        padding: 3px;
        background: none;
        border: none;
        cursor: pointer;
        color: #333;
    }
    
    .slide-content {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .slide-image img {
        height: 150px;
    }
    
    .slide-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #2c3e50;
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
    }
    
    .featured-price {
        font-size: 1rem;
        margin-bottom: 8px;
        color: #8B5A96;
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    
    .featured-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.3;
        color: #34495e;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    
    .slideshow-nav {
        padding: 8px 10px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .featured-products-container {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 10px 0 60px;
        margin-top: 0;
        overflow: visible;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        margin: 5px 0;
        z-index: 999;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
    
    .cta-buttons {
        z-index: 999;
        position: relative;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgb(182, 94, 204) 0%, rgb(71, 0, 104) 100%);
    color: #fff;
    text-align: center;
    padding: 140px 0 60px;
    margin-top: 0;
    font-family: 'Segoe UI';
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ffffff, #f8f9fa, #e9ecef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% { 
        text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.category-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Products Filter */
.products-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* Service Detail Cards */
.service-detail-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to top, rgb(182, 94, 204), rgb(71, 0, 104));
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    margin-bottom: 20px;
}

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

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.mission-vision {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.mv-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-choose-us {
    padding: 80px 0;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.team-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

.member-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.map-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.map-placeholder {
    background: #e0e0e0;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Cart Styles */
.cart-section {
    padding: 80px 0;
    min-height: 60vh;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.cart-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    padding-top: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 15px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .page-header {
        padding: 40px 0 30px;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .categories-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 40px 40px;
}

.product-modal-image {
    text-align: center;
}

.product-modal-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.product-modal-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.modal-product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.product-description,
.product-features {
    margin-bottom: 25px;
}

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

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

#modal-features-list {
    list-style: none;
    padding: 0;
}

#modal-features-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
}

#modal-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.trial-info {
    background: linear-gradient(135deg, #e8f4fd 0%, #f3e5f5 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.trial-note {
    color: #750079;
    font-weight: 600;
    margin: 0;
}

.trial-note i {
    margin-right: 8px;
    color: #32d9f7;
}

.pricing-info {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.pricing-note {
    color: #f57c00;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-note i {
    margin-right: 8px;
}

.modal-actions {
    border-top: 1px solid #eee;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-color);
}

.quantity-selector input {
    width: 80px;
    padding: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.modal-actions .btn {
    width: 100%;
    margin: 5px 0;
    padding: 12px 20px;
    font-size: 1rem;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 20px 30px;
    }
    
    .product-modal-info h2 {
        font-size: 1.5rem;
    }
    
    .modal-product-price {
        font-size: 1.4rem;
    }
    
    .close-modal {
        padding: 15px;
        font-size: 24px;
    }
}
