/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&family=Orbitron:wght@400;500;700;900&display=swap');

:root {
    --primary-color: #FF6B00;
    /* Orange - Action */
    --primary-glow: rgba(255, 107, 0, 0.4);
    --secondary-color: #0a0f1c;
    /* Deep Gunmetal/Navy - Background */
    --secondary-light: #162032;
    /* Lighter Navy for cards */
    --accent-color: #FFFFFF;
    /* White */
    --text-color: #e0e0e0;
    /* Light Gray for text on dark bg */
    --text-muted: #a0a0a0;
    --neon-accent: #00f2ff;
    /* Cyan for tech accents */
    --glass-bg: rgba(22, 32, 50, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--neon-accent));
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-secondary {
    background-color: var(--secondary-light);
    color: white;
    border-color: var(--glass-border);
}

.btn-secondary:hover {
    background-color: #2a3b55;
    transform: translateY(-2px);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow);
}

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

/* Navigation */
.navbar {
    background-color: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 1px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
}

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

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

.nav-list a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--accent-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(10, 15, 28, 0.8) 0%, rgba(10, 15, 28, 0.4) 50%, rgba(10, 15, 28, 0.8) 100%),
        repeating-linear-gradient(transparent 0, transparent 2px, rgba(0, 242, 255, 0.03) 3px);
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 15, 28, 0.4) 0%, rgba(10, 15, 28, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-tech);
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    background-color: var(--accent-color);
}

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

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.service-card {
    background-color: var(--secondary-light);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-glow);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--neon-accent);
    text-shadow: 0 0 20px var(--neon-accent);
}

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

.service-card p {
    margin-bottom: 25px;
    color: var(--text-muted);
}

/* Call to Action */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

.cta h2 {
    color: var(--accent-color);
}

.cta h2::after {
    background-color: var(--accent-color);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
    /* White background */
    border-top: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3.5rem;
    color: #FF6B00;
    /* Orange color */
    margin-bottom: 25px;
    display: inline-block;
}

.trust-item h3 {
    font-size: 1.2rem;
    font-weight: 800;
    /* Bold titles */
    margin-bottom: 15px;
    color: #000000;
    /* Black text */
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.trust-item p {
    font-size: 0.95rem;
    color: #333333;
    /* Dark grey description */
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #05080f;
    color: var(--text-muted);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--primary-glow);
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.social-icons a:hover {
    color: white;
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.newsletter-form {
    display: flex;
    margin-top: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    border: none;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        order: -1;
    }
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bento-card {
    background: var(--secondary-light);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-card.large {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-card.medium {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    z-index: 2;
}

.bento-card p {
    color: var(--text-muted);
    z-index: 2;
    max-width: 80%;
}

.bento-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    transition: var(--transition);
    z-index: 1;
}

.bento-card:hover .bento-bg {
    opacity: 0.4;
    transform: scale(1.05);
}

/* Responsive Bento */
@media (max-width: 968px) {

    .bento-card.large,
    .bento-card.medium {
        grid-column: span 12;
        grid-row: auto;
        min-height: 300px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Feature Grid (Icons) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 80px 0;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Hero Stats Overlay */
.hero-stats-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 3;
    padding: 20px;
}

.hero-stats-overlay .stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.hero-stats-overlay .stat-item {
    text-align: center;
}

.hero-stats-overlay .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

.hero-stats-overlay .stat-label {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
    }

    .nav-list.mobile-active {
        left: 0;
    }

    .nav-list li {
        margin: 15px 0;
    }

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

    .tagline {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    /* Hero Stats Tablet */
    .hero-stats-overlay .stats-grid {
        gap: 30px;
    }

    .hero-stats-overlay .stat-number {
        font-size: 3rem;
    }

    /* Product Grid Tablet */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Bento Grid Tablet */
    .bento-card p {
        max-width: 100%;
    }

    /* Quote Section Tablet */
    .quote-section blockquote {
        font-size: 1.3rem;
    }

    /* Currency Selector Tablet */
    .currency-selector-wrapper {
        margin-right: 15px !important;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px;
    }

    .tagline {
        font-size: 1.1rem !important;
    }

    /* Hero Stats Mobile */
    .hero-stats-overlay {
        bottom: 15px;
        padding: 10px;
    }

    .hero-stats-overlay .stats-grid {
        flex-direction: row;
        /* Horizontal */
        justify-content: space-around;
        gap: 10px;
    }

    .hero-stats-overlay .stat-number {
        font-size: 1.5rem !important;
        /* Smaller size */
    }

    .hero-stats-overlay .stat-label {
        font-size: 0.6rem !important;
    }

    /* Navbar Mobile Layout */
    /* Navbar Mobile Layout */
    .navbar .container {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        /* Increased side width */
        align-items: center;
        padding: 0 15px;
        width: 100%;
        min-height: 70px;
        /* Ensure enough height */
    }

    .logo {
        grid-column: 2;
        justify-self: center;
        text-align: center;
        width: 100%;
    }

    .logo img {
        height: 60px;
        /* Increased logo size */
        display: block;
        margin: 0 auto;
    }

    .nav-right {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 8px;
        width: auto;
        position: absolute;
        right: 15px;
    }

    .menu-toggle {
        grid-column: 1;
        justify-self: start;
        display: block;
        margin-right: 0;
        z-index: 1002;
        position: absolute;
        left: 15px;
        transform: scale(1.2);
        /* Make menu icon larger */
    }

    /* Compact Currency Selector */
    .country-selector span,
    .country-selector i {
        display: none;
    }

    .currency-selector-wrapper {
        margin-right: 5px !important;
    }

    .country-selector img {
        width: 22px !important;
        height: auto;
    }

    .cart-icon {
        font-size: 1.2rem;
    }

    /* Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 14px 20px;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        gap: 15px;
        padding: 10px;
    }

    .bento-card h3 {
        font-size: 1.5rem;
    }

    .bento-card p {
        font-size: 0.9rem;
    }

    /* Quote Section Mobile */
    .quote-section blockquote {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 50px 0 !important;
    }

    .trust-grid {
        gap: 30px;
    }

    .trust-icon {
        font-size: 2.5rem !important;
    }

    /* Product Showcase Mobile */
    .product-showcase h2 {
        font-size: 1.8rem;
    }

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

    /* Section Padding Mobile */
    .section-padding {
        padding: 50px 0 !important;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }

    /* Currency Dropdown Mobile */
    .currency-dropdown {
        right: -10px !important;
        min-width: 160px !important;
    }

    .currency-option {
        padding: 10px 12px !important;
        font-size: 0.85rem;
    }
}

/* Particle.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

/* Hero Section Adjustments */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

/* style.css */
/* Base (Mobile) Styles */
.navbar {
    display: flex;
    flex-direction: column;
    /* Stack items vertically on mobile */
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .navbar {
        flex-direction: row;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero-section {
        padding: 4rem;
    }
}

/* Particles.js container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #000;
    /* Dark background */
}

/* Hero section adjustments */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

/* Add to existing style.css */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #FF6B00;
    color: white;
    border: 2px solid #FF6B00;
}

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

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

.btn-secondary:hover {
    background-color: #222;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-outline {
    background-color: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.btn-outline:hover {
    background-color: #FF6B00;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

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

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

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

/* Add these to your existing style.css */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #FF6B00;
    color: white;
    border: 2px solid #FF6B00;
}

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

.btn-outline {
    background-color: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.btn-outline:hover {
    background-color: #FF6B00;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

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

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000;
    /* Pitch black background */
    padding: 0.5rem 0;
    /* Thinner navbar */
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 95%;
    /* Widen container to push items to edges */
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop Navigation Layout */
@media (min-width: 768px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .nav-list {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-self: start;
        /* Align links to the left */
    }

    .logo {
        justify-self: center;
        /* Center the logo */
        text-align: center;
    }

    .nav-right {
        justify-self: end;
        /* Align cart to the right */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
    }
}

/* Mobile Navigation Adjustments */
@media (max-width: 767px) {
    .nav-list {
        display: none;
        /* Hidden by default on mobile, toggled via JS */
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }
}

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

.cart-icon {
    position: relative;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF6B00;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Keep existing hero-content styles from previous CSS */
/* Product Showcase Styles from Reference */
/* Product Showcase Styles */
.product-showcase {
    padding: 4rem 0;
    background: #f9f9f9;
}

.product-showcase h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    background: none;
    -webkit-text-fill-color: var(--secondary-color);
}

.featured-workshop-section h2 {
    color: var(--secondary-color);
    background: none;
    -webkit-text-fill-color: var(--secondary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Image Slider */

.product-image-slider {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    position: relative;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.3s;
    opacity: 0;
    /* Hidden by default */
}

.product-card:hover .slider-arrow {
    opacity: 1;
    /* Show on hover */
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Product Info */
.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.card-buttons .btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
}

/* Currency Dropdown Hover */
.currency-option:hover {
    background: rgba(255, 107, 0, 0.2) !important;
}

/* User Account Styles */
.user-menu-container {
    position: relative;
    margin-left: 15px;
}

.user-icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.user-icon:hover {
    color: var(--primary-color);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: var(--secondary-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-dropdown.active {
    display: flex;
}

.user-info {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 10px;
}

.user-name {
    display: block;
    font-weight: 600;
    color: white;
}

.user-email {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.user-links {
    list-style: none;
}

.user-links li {
    margin-bottom: 8px;
}

.user-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.user-links a:hover {
    color: var(--primary-color);
}

/* Auth Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

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

.auth-modal-content {
    max-width: 400px;
    background: var(--secondary-light);
    border: 1px solid var(--glass-border);
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    z-index: 0;
}

.auth-divider span {
    background: var(--secondary-light);
    padding: 0 10px;
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

.btn-google:hover {
    background: #f1f1f1;
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: #00c851;
}

.notification.error {
    background: #ff4444;
}

.notification.info {
    background: var(--primary-color);
}

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

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

/* Home Page Flip Card Styles */
.product-card.home-card {
    background: transparent;
    perspective: 1000px;
    height: 420px;
    /* Increased height */
    /* Fixed height for flip effect */
    border: none;
    box-shadow: none;
}

.product-card.home-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.product-card.home-card:hover .card-inner,
.product-card.home-card .card-inner.flipped {
    transform: rotateY(180deg);
}

.product-card.home-card .card-front,
.product-card.home-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card.home-card .card-front {
    z-index: 2;
}

.product-card.home-card .card-back {
    transform: rotateY(180deg);
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

/* Adjust image slider for home card */
.product-card.home-card .product-image-slider {
    height: 250px;
    /* Increased height for image */
    border-bottom: 1px solid #eee;
    padding: 5px;
    /* Reduced padding to maximize space */
}

.product-card.home-card .product-image {
    object-fit: contain !important;
    /* Force contain */
    max-height: 100% !important;
    width: auto !important;
    margin: 0 auto;
}

.product-card.home-card .product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}