html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px 0;
}

header {
    background: linear-gradient(-45deg, #2c3e50, #34495e, #4a5568, #2d3748);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #ffffff;
    border-bottom: 3px solid #77aaff;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: block;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(119, 170, 255, 0.5)) brightness(1.1);
}

.site-logo {
    width: 80px;
    height: auto;
    display: block;
}

.branding h1 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile menu toggle button - removed */

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #77aaff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

header nav a:hover::after,
header nav a:focus::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

header nav a:hover,
header nav a:focus {
    color: #77aaff;
    text-shadow: 0 0 8px rgba(119, 170, 255, 0.3);
    transform: translateY(-1px);
}

#hero {
    min-height: 400px;
    background: #e7e7e7;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0;
}

.banner-slideshow {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #f8f8f8;
}

.banner-images-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    height: 600px;
}

.banner-slideshow .banner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 98%;
    max-height: 98%;
    width: auto;
    height: auto;
    min-height: 500px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: contain;
}

.banner-slideshow .banner-image.active {
    opacity: 1;
}


.progress-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    background-color: rgba(248, 248, 248, 0.9);
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(200, 200, 200, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(150, 150, 150, 0.8);
}

.indicator.active {
    background-color: #77aaff;
    border-color: #77aaff;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(120, 120, 120, 0.8);
    transform: scale(1.1);
}

/* Enhanced Hero Section Styles */
.hero-content-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0 0 0;
    width: 100%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(119, 170, 255, 0.05), transparent);
    animation: shimmerHero 6s infinite;
}

.hero-content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #77aaff, transparent);
    opacity: 0.6;
}

@keyframes shimmerHero {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #333, #77aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #77aaff, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 2.5em;
    min-width: 60px;
    text-align: center;
}

.highlight-item h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2em;
}

.highlight-item p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

.cta-primary {
    background: linear-gradient(135deg, #77aaff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(119, 170, 255, 0.3);
    animation: ctaPulse 2.5s infinite;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(119, 170, 255, 0.4);
    animation-play-state: paused;
}

.cta-secondary {
    background: transparent;
    color: #77aaff;
    border: 2px solid #77aaff;
}

.cta-secondary:hover {
    background: #77aaff;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 140px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #77aaff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    display: block;
    font-size: 2.2em;
    font-weight: 700;
    color: #77aaff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero p {
    font-size: 1.2em;
    line-height: 1.6em;
    max-width: 800px;
    margin: 0 auto;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 4px 15px rgba(119, 170, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(119, 170, 255, 0.5), 0 0 0 8px rgba(119, 170, 255, 0.1);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(119, 170, 255, 0.3);
        transform: scale(1);
    }
}

/* Scrolled header state */
header.scrolled {
    backdrop-filter: blur(10px);
    background: linear-gradient(-45deg, rgba(44, 62, 80, 0.95), rgba(52, 73, 94, 0.95), rgba(74, 85, 104, 0.95), rgba(45, 55, 72, 0.95));
}

@media (max-width: 768px) {
    header.scrolled .header-inner {
        padding: 8px 0;
    }
    
    header.scrolled .branding h1 {
        font-size: 14px;
    }
    
    header.scrolled .site-logo {
        width: 50px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        position: relative;
    }
    
    .branding {
        flex: 1;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .branding h1 {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .site-logo {
        width: 60px;
    }
    
    .main-nav {
        width: 100%;
        order: 3;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 12px 8px;
        gap: 5px;
        margin: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }
    
    .nav-menu li {
        flex: 1;
        text-align: center;
        border: none;
        padding: 0;
        min-width: 0;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 10px 4px;
        display: block;
        width: 100%;
        border-radius: 5px;
        transition: all 0.3s ease;
        background: transparent;
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* Container adjustments for mobile */
    .container {
        width: 95%;
        padding: 15px 0;
    }
    
    /* WhatsApp button adjustments */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .branding h1 {
        font-size: 14px;
    }
    
    .site-logo {
        width: 50px;
    }
    
    .container {
        width: 98%;
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 2px;
        padding: 10px 5px;
    }
    
    .nav-menu a {
        font-size: 11px;
        padding: 8px 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Enhanced About Page Styles */
.about-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.about-hero h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #333, #77aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3em;
    color: #666;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-story {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #77aaff;
    transition: all 0.3s ease;
}

.about-story:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.year-badge {
    background: linear-gradient(135deg, #77aaff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story h3 {
    margin: 0;
    color: #333;
    font-size: 1.8em;
}

.about-story p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.85));
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #77aaff;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(119, 170, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-icon {
    font-size: 3em;
    margin-bottom: 15px;
    text-align: center;
}

.service-card h4 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.values-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(15px);
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.values-section:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.values-section h3 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
}

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

.value-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.value-item h5 {
    color: #333;
    font-size: 1.1em;
    margin: 0 0 10px 0;
}

.value-item p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, rgba(119, 170, 255, 0.95), rgba(0, 86, 179, 0.9));
    backdrop-filter: blur(20px);
    color: white;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(119, 170, 255, 0.3),
        0 8px 16px rgba(0, 86, 179, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerCTA 3s ease-in-out infinite;
}

@keyframes shimmerCTA {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(119, 170, 255, 0.4),
        0 12px 24px rgba(0, 86, 179, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-section h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    color: #0056b3;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 5px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    color: #003d82;
}

/* Enhanced Products Page Styles */
.products-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.products-hero h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #333, #77aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-subtitle {
    font-size: 1.3em;
    color: #666;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

.products-controls-container {
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    overflow: hidden;
}

.products-controls-container:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.products-stats-section {
    padding: 25px 25px 20px 25px;
    background: linear-gradient(135deg, rgba(119, 170, 255, 0.05), rgba(119, 170, 255, 0.02));
}

.products-stats-section h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
}

.products-controls {
    padding: 20px 25px 25px 25px;
}

.search-filter-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.filter-container {
    min-width: 200px;
}

.filter-select {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border: 2px solid rgba(119, 170, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
    color: #333;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2377aaff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #77aaff;
    box-shadow: 
        0 6px 20px rgba(119, 170, 255, 0.15),
        0 0 0 3px rgba(119, 170, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
}

.filter-select:hover {
    border-color: rgba(119, 170, 255, 0.4);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


.products-stats {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.products-stats span {
    color: #77aaff;
    font-weight: 700;
}

/* Enhanced Product Items */
.product-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.85));
    backdrop-filter: blur(12px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(119, 170, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.product-item:hover::before {
    left: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: block;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-item:hover .product-image-container img {
    transform: scale(1.05);
}


.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #77aaff;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    z-index: 2;
}

.product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: #333;
    font-size: 1.25em;
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-weight: 600;
}

.product-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 0.9em;
    min-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    color: #666;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
}

.meta-icon {
    font-size: 1.1em;
}

.product-item .product-actions {
    display: flex !important;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    flex-shrink: 0;
}

.btn-primary {
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9em;
    background: linear-gradient(135deg, #77aaff, #0056b3);
    color: white;
    display: block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(119, 170, 255, 0.3);
}

.btn-full-width {
    width: 100%;
    display: block;
}


/* No Results Message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 20px 0;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results-message h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.no-results-message p {
    color: #666;
    margin-bottom: 10px;
}

.no-results-suggestion {
    font-style: italic;
    margin-bottom: 25px !important;
}

.clear-filters-btn {
    background: #77aaff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.products-footer {
    margin-top: 0;
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(119, 170, 255, 0.03), rgba(119, 170, 255, 0.01));
}

.products-cta {
    background: linear-gradient(135deg, rgba(119, 170, 255, 0.95), rgba(0, 86, 179, 0.9));
    backdrop-filter: blur(20px);
    color: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 
        0 15px 30px rgba(119, 170, 255, 0.25),
        0 6px 12px rgba(0, 86, 179, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerProductsCTA 3s ease-in-out infinite;
}

@keyframes shimmerProductsCTA {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.products-cta:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(119, 170, 255, 0.4),
        0 12px 24px rgba(0, 86, 179, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.products-cta h3 {
    font-size: 2em;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.products-cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

#about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
    flex: 1;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(119, 170, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(119, 170, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

#contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
    flex: 1;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(119, 170, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(119, 170, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

#products-list {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
    flex: 1;
}

#products-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(119, 170, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(119, 170, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

#product-detail-content {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
}

#about h2, #contact h2, #products-list h2, #product-detail-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid rgba(119, 170, 255, 0.2);
    border-radius: 12px;
    font-size: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: #888;
    font-weight: 400;
}

.search-input:focus {
    border-color: #77aaff;
    box-shadow: 
        0 6px 20px rgba(119, 170, 255, 0.15),
        0 0 0 3px rgba(119, 170, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #77aaff;
    font-size: 1.1em;
    pointer-events: none;
    transition: all 0.3s ease;
}

.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 1.1em;
}

.no-results-message p {
    margin: 10px 0;
}

.no-results-message p:first-child {
    font-weight: bold;
    color: #333;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(119, 170, 255, 0.02), rgba(119, 170, 255, 0.01));
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 18px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
}

.product-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-in-out;
}

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

.product-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-item h3 {
    margin: 10px 0;
    color: #007bff;
}

.product-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
}

.product-item .price {
    font-size: 1.1em;
    font-weight: bold;
    color: #28a745;
    margin-top: 15px;
}

.product-item a {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.product-item a:hover {
    background: #0056b3;
}

#product-detail-content .product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

#product-detail-content .product-detail img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

#product-detail-content .product-info {
    flex-grow: 1;
    max-width: 500px;
    padding: 20px;
}

#product-detail-content .product-info h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 2.2em;
    font-weight: 600;
}

#product-detail-content .product-info .product-description {
    margin-bottom: 25px;
}

#product-detail-content .product-info .product-description p {
    line-height: 1.7;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 0;
}

.product-details {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.product-details h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
}

.product-details p {
    margin: 0;
    color: #666;
    font-size: 1em;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-tag {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.back-to-products {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.back-to-products:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.product-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.product-image-gallery {
    position: relative;
    width: 600px; /* Increased from 400px */
    height: 500px; /* Increased from 400px */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.product-image-gallery #main-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #6c757d;
    font-size: 1.2em;
    background-color: #e9ecef;
    flex-direction: column;
    gap: 8px;
}

.thumbnail-images {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumbnail-images .thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumbnail-images .thumbnail.active,
.thumbnail-images .thumbnail:hover {
    border-color: #007bff;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2em; /* Smaller font for consistency */
    border-radius: 50%; /* Make them round */
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#next-image {
    right: 10px;
}

#prev-image {
    left: 10px;
}

.gallery-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1); /* Slight zoom on hover */
}

/* Line Progress bar for product image gallery */
.line-progress-bar {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.progress-line {
    width: 100%;
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 3px;
    transition: width 0.4s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 3px 3px 0;
}


/* Enhanced Product Detail Styles */
.breadcrumb {
    margin-bottom: 30px;
    padding: 15px 0;
    font-size: 0.95em;
}

.breadcrumb a {
    color: #77aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
    font-weight: 500;
}

.image-zoom-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.thumbnail-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.85em;
    color: #666;
    font-weight: 600;
}

.image-counter {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.product-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.product-header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.product-id {
    color: #999;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description h3,
.product-specifications h3,
.product-features h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #77aaff;
    display: inline-block;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}

.product-specifications {
    margin-bottom: 30px;
}

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

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #77aaff;
}

.spec-item.full-width {
    grid-column: 1 / -1;
}

.spec-icon {
    font-size: 2em;
    min-width: 40px;
    text-align: center;
}

.spec-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1em;
}

.spec-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.product-features {
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.features-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.action-buttons .btn-contact,
.action-buttons .btn-back {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    font-size: 1.1em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-back {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.btn-back:hover {
    background: linear-gradient(135deg, #5a6268, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-icon {
    font-size: 1.2em;
}


.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #f8f9fa;
}

.related-products h3 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-product-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-product-image {
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-item:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 20px;
}

.related-product-info h4 {
    color: #333;
    font-size: 1.1em;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.related-product-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.view-product-btn {
    display: inline-block;
    background: #77aaff;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-product-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Responsive design for product detail */
@media (max-width: 768px) {
    .product-gallery-container {
        gap: 10px;
    }
    
    .product-image-gallery {
        width: 100%;
        max-width: 450px;
        height: 350px;
        margin: 0 auto;
    }
    
    #product-detail-content .product-detail {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    #product-detail-content .product-info {
        max-width: 100%;
        padding: 15px;
    }
    
    #product-detail-content .product-info h2 {
        font-size: 1.8em;
        text-align: center;
    }
    
    .thumbnail-images {
        padding: 8px;
        gap: 8px;
    }
    
    .thumbnail-images .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .line-progress-bar {
        padding: 12px;
    }
    
    .progress-line {
        height: 5px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .back-to-products,
    .contact-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .product-image-gallery {
        height: 300px;
    }
    
    .container {
        width: 95%;
        padding: 10px 0;
    }
    
    #product-detail-content {
        padding: 20px 0;
    }
    
    .thumbnail-images .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .line-progress-bar {
        padding: 10px;
    }
}

/* Enhanced Contact Page Styles */
.contact-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.contact-hero h2 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #333, #77aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.3em;
    color: #666;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

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

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.85));
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid #77aaff;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(119, 170, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-icon {
    font-size: 2.5em;
    min-width: 60px;
    text-align: center;
}

.contact-details h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1em;
}

.contact-details p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.contact-details a {
    color: #77aaff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.quick-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.quick-contact:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.quick-contact h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.call-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    font-size: 1.2em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    background: white;
}

.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.file-hint {
    display: block;
    font-size: 0.85em;
    color: #999;
    margin-top: 5px;
    font-weight: normal;
}

.contact-footer {
    margin-top: 50px;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(119, 170, 255, 0.95), rgba(0, 86, 179, 0.9));
    backdrop-filter: blur(20px);
    color: white;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(119, 170, 255, 0.3),
        0 8px 16px rgba(0, 86, 179, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmerContactCTA 3s ease-in-out infinite;
}

@keyframes shimmerContactCTA {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.contact-cta:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(119, 170, 255, 0.4),
        0 12px 24px rgba(0, 86, 179, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-cta h3 {
    font-size: 2em;
    margin-bottom: 25px;
}

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cta-highlight:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-icon {
    font-size: 1.5em;
}

/* Contact Form Styles */
.contact-content {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.contact-info h3,
.contact-form-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    line-height: 1.6;
}

.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-input {
    display: none;
}

.file-label {
    display: inline-block;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    color: #6c757d;
}

.file-label:hover {
    border-color: #007bff;
    background: #e3f2fd;
    color: #007bff;
}

.file-info {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.file-name {
    font-weight: 600;
    color: #333;
}

.file-size {
    color: #666;
    margin-left: 10px;
}

.send-button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

.send-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.send-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Enhanced Elements */
@media (max-width: 768px) {
    /* Hero Section Responsive */
    .hero-content-wrapper {
        margin: 20px 0 0 0;
        padding: 30px 25px;
        border-radius: 15px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8em;
    }
    
    /* About Page Responsive */
    .about-hero h2 {
        font-size: 2.2em;
    }
    
    .about-subtitle {
        font-size: 1.1em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .values-section h3 {
        font-size: 1.8em;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.6em;
    }
    
    .story-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .about-story, .values-section, .cta-section {
        padding: 25px 20px;
    }
    
    /* Contact Page Responsive */
    .contact-hero h2 {
        font-size: 2.2em;
    }
    
    .contact-subtitle {
        font-size: 1.1em;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact {
        padding: 20px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .cta-highlights {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .cta-highlight {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .contact-cta h3 {
        font-size: 1.6em;
    }
    
    /* Products Page Responsive */
    .products-hero h2 {
        font-size: 2.2em;
    }
    
    .products-subtitle {
        font-size: 1.1em;
    }
    
    .products-controls-container {
        margin-bottom: 20px;
    }
    
    .products-stats-section {
        padding: 20px 20px 12px 20px;
    }
    
    .products-stats-section h3 {
        font-size: 1.2em;
    }
    
    .products-controls {
        padding: 15px 20px 20px 20px;
    }
    
    .search-filter-row {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .products-stats {
    text-align: center;
        order: -1;
        margin-bottom: 10px;
    }
    
    .search-container {
        max-width: 100%;
        width: 100%;
        order: 1;
    }
    
    .filter-container {
        min-width: auto;
        width: 100%;
        order: 2;
    }
    
    .products-cta {
        padding: 30px 20px;
    }
    
    .products-cta h3 {
        font-size: 1.6em;
    }
    
    /* Product Detail Responsive */
    .product-header h1 {
        font-size: 2em;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        margin: 15px 0 0 0;
        padding: 25px 20px;
        border-radius: 12px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .about-hero h2 {
        font-size: 1.8em;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .value-item {
        padding: 15px 10px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 12px;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.6em;
    }
    
    .stat-label {
        font-size: 0.8em;
    }
    
    /* Contact Page Small Screen */
    .contact-hero h2 {
        font-size: 1.8em;
    }
    
    .contact-cards {
        gap: 12px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .quick-contact {
        padding: 15px;
    }
    
    .contact-cta {
        padding: 25px 15px;
    }
    
    .contact-cta h3 {
        font-size: 1.4em;
    }
    
    .cta-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Products Page Small Screen */
    .products-hero h2 {
        font-size: 1.8em;
    }
    
    .products-controls-container {
        margin-bottom: 15px;
        border-radius: 16px;
    }
    
    .products-stats-section {
        padding: 15px 15px 10px 15px;
    }
    
    .products-stats-section h3 {
        font-size: 1.1em;
    }
    
    .products-controls {
        padding: 12px 15px 15px 15px;
    }
    
    .product-image-container {
        padding-bottom: 65%;
    }
    
    .product-content {
        padding: 12px;
    }
    
    .products-cta {
        padding: 25px 15px;
    }
    
    .products-cta h3 {
        font-size: 1.4em;
    }
    
    /* Product Detail Small Screen */
    .product-header h1 {
        font-size: 1.6em;
    }
    
    .spec-item {
        padding: 15px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-product-image {
        height: 150px;
    }
    
    .related-product-info {
        padding: 15px;
    }
}

footer {
    background: linear-gradient(-45deg, #2d3748, #2c3e50, #34495e, #4a5568);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #77aaff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerFooter 4s infinite;
}

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

footer p {
    margin: 8px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

footer p:first-child {
    font-size: 0.9em;
    opacity: 0.8;
    color: #e2e8f0;
}

footer p:last-child {
    font-size: 0.85em;
    opacity: 0.7;
    color: #cbd5e0;
}

@keyframes shimmerFooter {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
