:root {
    --bg-light: #ffffff;
    --bg-secondary: #f8fafc;
    --text-dark: #0f172a;
    --text-dim: #475569;
    --primary: #1e40af;
    /* Professional Blue */
    --secondary: #3b82f6;
    --accent: #f97316;
    /* Vibrant Orange */
    --accent-cyan: #06b6d4;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Lenis CSS handled by external stylesheet */

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

/* Gradient Text Shared */
/* Gradient Text Shared */
.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-image-container {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 120%;
    max-width: 1000px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease-out;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.hero-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--accent-cyan);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

/* Features Grid */
.features {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card p {
    color: var(--text-dim);
}

/* Creative & Enterprise Sections */
.creative-section,
.enterprise-section {
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.section-content {
    flex: 1;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.specs-list li::before {
    content: '•';
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 0;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Education Section */
.education-section {
    padding: 8rem 5%;
    background: var(--bg-secondary);
}

.education-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.edu-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--card-bg);
}

.edu-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edu-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Impact Stats Section */
.impact-section {
    padding: 6rem 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.impact-item .number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
    /* Solid white for contrast on blue */
    font-family: var(--font-heading);
}

.impact-item .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Service Advantage Section */
.service-section {
    padding: 8rem 5%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid var(--card-border);
}

.service-item:last-child {
    border-right: none;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 5%;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05));
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-dim);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-dim);
}

.footer-col a {
    color: var(--text-dim);
    margin-left: 2rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-light);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Product Detail Section */
.product-detail-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, rgba(5, 5, 17, 0) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(5, 5, 17, 0) 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    background: white;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
    /* Amber 400 */
}

.product-rating span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.product-price-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-label {
    color: var(--text-dim);
    font-size: 1rem;
}

/* ... existing styles ... */

.size-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    min-width: 140px;
}

.size-btn:hover {
    border-color: var(--primary);
}

.size-btn.active {
    border-color: var(--primary);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 2px var(--primary);
}

.size-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.size-price {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.key-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ... existing styles ... */

.specs-table td {
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.specs-table td:first-child {
    color: var(--text-dim);
    width: 40%;
}

.specs-table td:last-child {
    font-weight: 600;
    text-align: right;
}

/* Responsive */
@media (max-width: 968px) {

    .hero,
    .creative-section,
    .enterprise-section,
    .education-section,
    .product-grid {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .enterprise-section {
        flex-direction: column-reverse;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-img {
        width: 100%;
        transform: none !important;
        /* Disable heavy tilting on mobile for performance */
    }

    .hero-image-container {
        margin-top: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .creative-section,
    .enterprise-section,
    .education-section {
        gap: 3rem;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        z-index: 1001;
        /* Keep logo above menu overlay */
    }
}

/* Default state for Menu Toggle (Desktop) */
.menu-toggle {
    display: none;
}

/* Best Seller Badge */
.bestseller-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: auto;
    z-index: 5;
}

/* Star Button Styles (Copied from MainStyle.css) */
.star-btn {
    position: relative;
    padding: 12px 35px;
    background: #fec195;
    font-size: 17px;
    font-weight: 500;
    color: #181818 !important;
    border: 3px solid #fec195;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    overflow: visible;
    display: inline-block;
}

.star-btn .star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-btn .star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-btn .star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-btn .star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-btn .star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-btn .star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s ease;
}

.star-btn:hover {
    background: transparent;
    color: #fec195 !important;
    box-shadow: 0 0 25px #fec1958c;
}

.star-btn:hover .star-1 {
    top: -80%;
    left: -30%;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.star-btn:hover .star-2 {
    top: -25%;
    left: 10%;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.star-btn:hover .star-3 {
    top: 55%;
    left: 25%;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.star-btn:hover .star-4 {
    top: 30%;
    left: 80%;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.star-btn:hover .star-5 {
    top: 25%;
    left: 115%;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.star-btn:hover .star-6 {
    top: 5%;
    left: 60%;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.star-btn .fil0 {
    fill: #fffdef;
}




/* Best Seller Image Badge */
.bestseller-img {
    position: absolute;
    top: -15px;
    right: 15px;
    width: 70px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s;
}

.model-card:hover .bestseller-img {
    transform: scale(1.1);
}

@import url('../assets/css/MainStyle.css');

/* IPS Carousel Section */
.ips-carousel-section {
    padding: 6rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    aspect-ratio: 16/9;
    /* Maintain aspect ratio */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or contain depending on image */
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
    border-color: #fff;
}