* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
/* --- GLOBAL RESET --- */

html, body {
margin: 0;
padding: 0;
background-color: #fff; /* or whatever your site background is */
}


/* ========== VARIABLES & UTILITIES ========== */
:root {
    --primary-blue: #0a0e27;
    --dark-blue: #050610;
    --gold: #D4AF37;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* New vibrant colors */
    --vibrant-red: #FF6B6B;
    --vibrant-blue: #4ECDC4;
    --vibrant-purple: #9B5DE5;
    --vibrant-yellow: #FEE440;
    --vibrant-orange: #F15BB5;
    --vibrant-green: #00BB6B;
}

section {
    scroll-margin-top: 70px;
}

/* ========== NAVIGATION BAR ========== */
/* Default navbar styles */
.navbar {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

/* Updated Logo Area */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* --- NAV LINKS --- */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a:hover {
    color: var(--vibrant-blue);
}

/* --- HAMBURGER ICON --- */
.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: black;
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-text {
        max-width: 120px;
    }
    
    .logo-main {
        font-size: 14px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
}


/* ========== HERO SECTION ========== */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--dark-blue) 50%,
        #1a3f7a 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Enhanced Hero with Colorful Particles */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--vibrant-blue), transparent);
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--vibrant-purple), transparent);
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    background: radial-gradient(circle, var(--vibrant-yellow), transparent);
    animation-duration: 25s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 70%;
    background: radial-gradient(circle, var(--vibrant-red), transparent);
    animation-duration: 18s;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 20%;
    background: radial-gradient(circle, var(--vibrant-green), transparent);
    animation-duration: 22s;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.7;
    }
}

/* Gentle gold glow overlay (optional visual depth) */
.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%
        );
    z-index: 1;
}

/* Hero content centered perfectly */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

/* Brand name styling */
.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.brand-main {
    font-size: 72px;
    display: block;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.brand-sub {
    font-size: 36px;
    display: block;
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 10px;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Headline */
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2;
}

/* Subtitle */
.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 50%, var(--vibrant-green) 100%);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(155, 93, 229, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        padding: 0 15px;
        min-height: 80vh;
    }

    .brand-main {
        font-size: 48px;
    }

    .brand-sub {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 16px;
    }
    
    .particle {
        display: none;
    }
    
    .particle:nth-child(1),
    .particle:nth-child(2) {
        display: block;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .brand-main {
        font-size: 36px;
    }

    .brand-sub {
        font-size: 18px;
        letter-spacing: 1px;
    }
}
/* ========== ABOUT SECTION ========== */
.about {
    padding: 100px 20px;
    background: var(--light-bg);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-purple), var(--vibrant-green));
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    font-weight: 800;
    color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 82, 204, 0.2);
    transition: var(--transition);
    animation: slideInRight 0.8s ease-out;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 82, 204, 0.3);
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-image {
        height: 300px;
        font-size: 70px;
    }
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 100px 20px;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.08);
    animation: slideUp 0.6s ease-out;
}

/* Colorful Product Categories */
.product-card[data-category="chair"] {
    border-top: 5px solid var(--vibrant-blue);
}

.product-card[data-category="table"] {
    border-top: 5px solid var(--vibrant-purple);
}

.product-card[data-category="container"] {
    border-top: 5px solid var(--vibrant-green);
}

.product-card:hover {
    transform: translateY(-15px);
}

.product-card[data-category="chair"]:hover {
    box-shadow: 0 25px 60px rgba(78, 205, 196, 0.3);
}

.product-card[data-category="table"]:hover {
    box-shadow: 0 25px 60px rgba(155, 93, 229, 0.3);
}

.product-card[data-category="container"]:hover {
    box-shadow: 0 25px 60px rgba(0, 187, 107, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
    position: relative;
}
.product-image img {
width: 100%;
height: 100%;
object-fit: contain; /* ensures the whole image is visible inside the box */
padding: 15px;       /* optional: adds spacing so image isn't touching edges */
background: white;   /* optional: makes image stand out if it has transparency */
}


.product-card:hover .product-image {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-blue) 100%);
}

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .product-image {
        height: 200px;
        font-size: 60px;
    }
}

/* ========== PRODUCTION UNIT SECTION ========== */
.production {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8e8e8 100%);
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.production-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
    position: relative;
}

.production-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-purple), var(--vibrant-green));
}

.production-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
}

/* Colorful Production Numbers */
.production-card:nth-child(1) .production-number {
    background: linear-gradient(135deg, var(--vibrant-blue), #2a9d8f);
}

.production-card:nth-child(2) .production-number {
    background: linear-gradient(135deg, var(--vibrant-purple), #7b4bc9);
}

.production-card:nth-child(3) .production-number {
    background: linear-gradient(135deg, var(--vibrant-green), #00a152);
}

.production-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    margin: 30px 0 0 30px;
}

.production-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 20px 30px 0;
}

.production-desc {
    color: var(--text-light);
    margin: 15px 30px 30px;
    font-size: 14px;
    line-height: 1.8;
}

.production-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-top: 15px;
}
.production-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures the whole image is visible */
    padding: 10px;       /* optional spacing */
    border-radius: 15px; /* matches your card style */
}


@media (max-width: 768px) {
    .production-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .production-image {
        height: 150px;
        font-size: 50px;
    }
}
/* ========== PRODUCTS SECTION VIEW ALL BUTTON FIX ========== */
.products .container > div:last-child {
    text-align: center;
    margin-top: 50px;
    padding-right: 0 !important; /* Remove the right padding */
}

.products .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 50%, var(--vibrant-green) 100%);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    min-width: 200px;
}

.products .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.products .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(155, 93, 229, 0.5);
    color: var(--primary-blue);
}

.products .cta-button:hover::before {
    left: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .products .cta-button {
        padding: 14px 35px;
        font-size: 14px;
        min-width: 180px;
    }
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: 100px 20px;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.3);
    position: relative;
    overflow: hidden;
}

/* Colorful Benefit Cards */
.benefit-card:nth-child(1) {
    border: 2px solid var(--vibrant-blue);
}

.benefit-card:nth-child(2) {
    border: 2px solid var(--vibrant-purple);
}

.benefit-card:nth-child(3) {
    border: 2px solid var(--vibrant-green);
}

.benefit-card:nth-child(4) {
    border: 2px solid var(--vibrant-yellow);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    color: var(--primary-blue);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.4);
}

/* Professional Icons */
.benefit-icon {
    margin-bottom: 25px;
    transition: all 0.4s ease;
    color: var(--gold);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 60px;
    height: 60px;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-blue);
}

/* Title */
.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Montserrat', sans-serif;
}

.benefit-card:hover .benefit-title {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Text */
.benefit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    transition: all 0.4s ease;
    font-weight: 400;
}

.benefit-card:hover .benefit-text {
    color: var(--text-light);
}

/* Animation for card appearance */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablet */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablet */
        gap: 25px;
    }
    
    .benefit-card {
        padding: 40px 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-us {
        padding: 60px 20px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .benefit-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }
    
    .benefit-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr); /* Still 2 items per row */
        gap: 15px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .benefit-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .benefit-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 items per row */
        gap: 12px;
    }
    
    .benefit-card {
        padding: 20px 12px;
    }
    
    .benefit-icon {
        height: 45px;
        margin-bottom: 12px;
    }
    
    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .benefit-title {
        font-size: 13px;
    }
    
    .benefit-text {
        font-size: 11px;
    }
}
/* ========== CONTACT SECTION ========== */
.contact {
    padding: 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Side - Map Background */
.contact-map-side {
    position: relative;
    background: linear-gradient(rgba(10, 14, 39, 0.3), rgba(10, 14, 39, 0.4)),
                url('maps.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.2); /* Reduced opacity */
}

.contact-info-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-purple), var(--vibrant-green));
    margin-bottom: 30px;
}

.company-info {
    margin-bottom: 30px;
}

.company-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.company-info p {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

.contact-detail {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-detail:last-of-type {
    border-bottom: none;
}

.address, .email, .phone {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.email {
    color: var(--primary-blue);
    font-weight: 600;
}

.phone {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
}

.employment-info {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--gold);
}

.employment-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.employment-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.employment-email {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

/* Right Side - Keyboard Background */
.contact-form-side {
    position: relative;
    background: linear-gradient(rgba(5, 6, 16, 0.4), rgba(5, 6, 16, 0.5)),
                url('closeup-black-keyboard-table.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.keyboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 6, 16, 0.3); /* Reduced opacity */
}

.form-container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    color: white;
}

.form-container h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-container .divider {
    background: linear-gradient(90deg, var(--vibrant-blue), var(--vibrant-purple), var(--vibrant-green));
    margin-bottom: 25px;
}

.form-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 50%, var(--vibrant-green) 100%);
    color: var(--primary-blue);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map-side,
    .contact-form-side {
        min-height: 70vh;
        padding: 50px 30px;
    }
    
    .contact-info-box,
    .form-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-map-side,
    .contact-form-side {
        padding: 40px 25px;
        min-height: 60vh;
    }
    
    .contact-info-box {
        padding: 40px 30px;
    }
    
    .contact-info-box h3,
    .form-container h3 {
        font-size: 24px;
    }
    
    .form-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-map-side,
    .contact-form-side {
        padding: 30px 20px;
        min-height: 50vh;
    }
    
    .contact-info-box {
        padding: 30px 25px;
    }
    
    .contact-info-box h3,
    .form-container h3 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .company-info h4 {
        font-size: 18px;
    }
    
    .address, .email, .phone {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
}


/* ========== STATISTICS SECTION ========== */
.statistics {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a237e 50%, var(--dark-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Fix for section title color */
.statistics .section-title {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 50px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Colorful Stat Items */
.stat-item:nth-child(1) {
    border: 2px solid var(--vibrant-blue);
}

.stat-item:nth-child(2) {
    border: 2px solid var(--vibrant-purple);
}

.stat-item:nth-child(3) {
    border: 2px solid var(--vibrant-green);
}

.stat-item:nth-child(4) {
    border: 2px solid var(--vibrant-yellow);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Professional SVG Icons */
.stat-icon {
    margin-bottom: 25px;
    transition: all 0.4s ease;
    color: var(--gold);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 60px;
    height: 60px;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.stat-item:hover .stat-icon {
    transform: scale(1.15);
    color: #ffd700;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    color: #ffd700;
    transform: scale(1.05);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
    transform: translateY(-2px);
}

/* Animation for stat items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablet and Mobile */
@media (max-width: 768px) {
    .statistics {
        padding: 60px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 20px; /* Reduced gap for mobile */
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 30px 15px; /* Reduced padding for mobile */
    }
    
    .stat-icon {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .stat-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .stat-number {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 items per row */
        gap: 15px; /* Even smaller gap for very small screens */
    }
    
    .stat-item {
        padding: 25px 10px; /* Further reduced padding */
    }
    
    .stat-icon {
        height: 50px;
        margin-bottom: 12px;
    }
    
    .stat-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Extra Small Mobile (if needed for very small screens) */
@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Still 2 items per row */
        gap: 12px;
    }
    
    .stat-item {
        padding: 20px 8px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}
/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px; /* Changed from right to left */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #777;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px; /* Stays on right side */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-purple) 50%, var(--vibrant-green) 100%);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(155, 93, 229, 0.6);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

.back-to-top.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design - Stack vertically on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 100px; /* Position above back-to-top */
        left: 20px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
    
    .back-to-top {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 20px;
        font-size: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        left: 15px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 15px;
    }
}
/* Better touch targets for mobile */
@media (max-width: 768px) {
    .nav-links a {
        padding: 12px 0;
        display: block;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }
}
/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a237e 50%, var(--dark-blue) 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--vibrant-blue), var(--vibrant-purple), var(--vibrant-green), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

footer p {
    opacity: 0.9;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Optional: Add social media links */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--vibrant-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vibrant-blue);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--vibrant-blue);
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 30px 20px;
    }
    
    footer p {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 25px 15px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}
/* ========== ENHANCED COLORFUL FEATURES ========== */

/* Rainbow Gradient Text Animation */
.rainbow-text {
    background: linear-gradient(
        90deg,
        #ff6b6b,
        #ffd93d,
        #6bcf7f,
        #4d96ff,
        #9d4edd,
        #ff6b6b
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 8s ease infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Colorful Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: float-shapes 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--vibrant-blue);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--vibrant-purple);
    border-radius: 20% 50% 20% 50%;
    top: 70%;
    left: 80%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--vibrant-green);
    border-radius: 40% 10% 40% 10%;
    top: 30%;
    left: 90%;
    animation-delay: 10s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    background: var(--vibrant-yellow);
    border-radius: 30% 60% 30% 60%;
    top: 80%;
    left: 10%;
    animation-delay: 15s;
}

@keyframes float-shapes {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Colorful Loading Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid var(--vibrant-blue);
    border-right: 5px solid var(--vibrant-purple);
    border-bottom: 5px solid var(--vibrant-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Colorful Hover Effects */
.colorful-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.colorful-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s ease;
}

.colorful-hover:hover::before {
    left: 100%;
}

/* Gradient Background Sections */
.gradient-bg-1 {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%,
        var(--vibrant-purple) 50%,
        var(--vibrant-blue) 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg,
        var(--vibrant-green) 0%,
        var(--vibrant-blue) 50%,
        var(--vibrant-purple) 100%);
}

/* Colorful Pulse Animation */
.pulse-color {
    animation: pulse-color 2s infinite;
}

@keyframes pulse-color {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

/* Colorful Text Shadows */
.colorful-text-shadow {
    text-shadow: 3px 3px 0 var(--vibrant-blue),
                 6px 6px 0 var(--vibrant-purple),
                 9px 9px 0 var(--vibrant-green);
}

/* Animated Gradient Borders */
.animated-border {
    position: relative;
    background: linear-gradient(45deg, 
        var(--vibrant-blue), 
        var(--vibrant-purple), 
        var(--vibrant-green), 
        var(--vibrant-yellow));
    background-size: 400% 400%;
    animation: gradient-border 3s ease infinite;
    padding: 3px;
    border-radius: 15px;
}

.animated-border > div {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Colorful Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        var(--vibrant-blue), 
        var(--vibrant-purple));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        var(--vibrant-purple), 
        var(--vibrant-green));
}

/* Colorful Cursor Effects */
.colorful-cursor {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%234ECDC4"/></svg>'), auto;
}

/* Enhanced Product Cards with 3D Effect */
.product-card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
}

/* Colorful Notification System */
.colorful-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.colorful-notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, var(--vibrant-green), #00a152);
}

.notification-error {
    background: linear-gradient(135deg, var(--vibrant-red), #d32f2f);
}

.notification-info {
    background: linear-gradient(135deg, var(--vibrant-blue), #0288d1);
}

/* Colorful Progress Bars */
.progress-container {
    width: 100%;
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar {
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, 
        var(--vibrant-blue), 
        var(--vibrant-purple), 
        var(--vibrant-green));
    width: 0%;
    transition: width 1s ease-in-out;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .floating-shapes {
        display: none;
    }
    
    .colorful-text-shadow {
        text-shadow: 2px 2px 0 var(--vibrant-blue),
                     4px 4px 0 var(--vibrant-purple);
    }
}
/* ========== PRODUCT COLOR SELECTOR ========== */
.product-color-selector {
    margin: 15px 0;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: #999;
}

.color-option.active {
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(10, 14, 39, 0.2);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Specific color styles */
.color-red { background-color: #ff4444; }
.color-blue { background-color: #4444ff; }
.color-yellow { background-color: #ffd700; }
.color-black { background-color: #000000; }
.color-white { 
    background-color: #ffffff; 
    border: 2px solid #ddd;
}

.color-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
    text-align: center;
}

.color-option-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Product image transitions */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: opacity 0.5s ease-in-out;
}

.product-image img.fade-out {
    opacity: 0;
}

.product-image img.fade-in {
    opacity: 1;
}

/* Color name display */
.selected-color {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 600;
}

/* Enhanced product card for color variants */
.product-card-with-colors {
    position: relative;
}

.color-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-purple));
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
/* ========== PRODUCT COLOR SELECTOR ========== */
.product-color-selector {
    margin: 15px 0;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: #999;
}

.color-option.active {
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(10, 14, 39, 0.2);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Specific color styles */
.color-red { background-color: #ff4444; }
.color-blue { background-color: #4444ff; }
.color-yellow { background-color: #ffd700; }
.color-black { background-color: #000000; }
.color-white { 
    background-color: #ffffff; 
    border: 2px solid #ddd;
}
.color-green { background-color: #00bb6b; }

.color-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
    text-align: center;
}

.color-option-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Product image transitions */
.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    transition: opacity 0.3s ease-in-out;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image img.hidden {
    opacity: 0;
    position: absolute;
}

.product-image img.active {
    opacity: 1;
    position: relative;
}

/* Color name display */
.selected-color {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 600;
}

/* Enhanced product card for color variants */
.product-card-with-colors {
    position: relative;
}

.color-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--vibrant-blue), var(--vibrant-purple));
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Loading state for images */
.product-image .image-loading {
    opacity: 0.5;
}

/* Fallback for missing images */
.product-image .image-fallback {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 14px;
}
/* Additional color styles for dining table */
.color-brown { 
    background-color: #8B4513; 
    border: 2px solid #654321;
}
/* Additional color styles for dining table set */
.color-orange { 
    background-color: #FFA500; 
    border: 2px solid #FF8C00;
}

