Home
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0066ff 0%, #001a4d 50%, #000000 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
    border-bottom: 1px solid rgba(0, 153, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e0f4ff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00ccff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    margin-top: 80px;
    text-align: center;
    padding: 6rem 0;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    animation: fadeInUp 1s ease;
    background: linear-gradient(45deg, #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    color: #b3e0ff;
}

.cta-button {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
    border: 2px solid rgba(0, 204, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 204, 255, 0.6);
    border-color: rgba(0, 204, 255, 0.8);
}

.features {
    padding: 5rem 0;
    background: rgba(0, 10, 30, 0.3);
    backdrop-filter: blur(20px);
    margin: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 10, 30, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 153, 255, 0.3);
    color: #e0f4ff;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 204, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.6);
    background: rgba(0, 20, 60, 0.9);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    background: linear-gradient(45deg, #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-preview {
    padding: 5rem 0;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(0, 10, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    color: #e0f4ff;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 204, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.6);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #0066ff, #001a4d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.product-price {
    font-size: 1.5rem;
    color: #00ccff;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.product-description {
    color: #b3e0ff;
    margin-bottom: 1rem;
}

.btn-view {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: bold;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 255, 0.6);
    border-color: rgba(0, 204, 255, 0.8);
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: #b3e0ff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 153, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features {
        margin: 1rem;
    }
}
product
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0066ff 0%, #001a4d 50%, #000000 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
    border-bottom: 1px solid rgba(0, 153, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e0f4ff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ccff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.page-header {
    margin-top: 100px;
    text-align: center;
    padding: 3rem 0;
    color: white;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
}

.filters {
    background: rgba(0, 10, 30, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.filter-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    color: #e0f4ff;
    font-weight: 500;
}

.filter-group select, .filter-group input {
    background: rgba(0, 20, 60, 0.8);
    border: 1px solid rgba(0, 153, 255, 0.3);
    color: #e0f4ff;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filter-group select:focus, .filter-group input:focus {
    outline: none;
    border-color: #00ccff;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.4);
}

.category-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(0, 20, 60, 0.8);
    color: #e0f4ff;
    border: 1px solid rgba(0, 153, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    border-color: #00ccff;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: rgba(0, 10, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 153, 255, 0.3);
    color: #e0f4ff;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 204, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.6);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #0066ff, #001a4d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: #00ccff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.product-specs {
    color: #b3e0ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    color: #00ccff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
}

.rating-text {
    color: #b3e0ff;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view, .btn-cart {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-view {
    background: transparent;
    color: #00ccff;
    border: 1px solid rgba(0, 204, 255, 0.5);
}

.btn-view:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: #00ccff;
}

.btn-cart {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    color: white;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 255, 0.6);
}

.pagination {
    text-align: center;
    margin: 3rem 0;
}

.pagination button {
    background: rgba(0, 10, 30, 0.8);
    color: #e0f4ff;
    border: 1px solid rgba(0, 153, 255, 0.3);
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover, .pagination button.active {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    border-color: #00ccff;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: #b3e0ff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 153, 255, 0.2);
}

@media (max-width: 768px) {
    .filters {
        padding: 1rem;
    }
    
    .filter-row {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .category-buttons {
        justify-content: center;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}
about
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0066ff 0%, #001a4d 50%, #000000 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
    border-bottom: 1px solid rgba(0, 153, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e0f4ff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ccff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.page-header {
    margin-top: 100px;
    text-align: center;
    padding: 4rem 0;
    color: white;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
    animation: fadeInUp 1s ease;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #b3e0ff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-section {
    background: rgba(0, 10, 30, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 3rem auto;
    border: 1px solid rgba(0, 153, 255, 0.2);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b3e0ff;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: rgba(0, 10, 30, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 204, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.6);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ccff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e0f4ff;
    font-size: 1.1rem;
    font-weight: 500;
}

.content-section {
    margin: 5rem 0;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: rgba(0, 10, 30, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 204, 255, 0.3);
    border-color: rgba(0, 204, 255, 0.5);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.value-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00ccff;
    text-align: center;
}

.value-description {
    color: #b3e0ff;
    line-height: 1.7;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-card {
    background: rgba(0, 10, 30, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 204, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.6);
}

.team-avatar {
    height: 200px;
    background: linear-gradient(135deg, #0066ff, #001a4d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #00ccff;
}

.team-position {
    color: #b3e0ff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-description {
    color: #b3e0ff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline {
    position: relative;
    margin: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00ccff, #0066ff);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(0, 10, 30, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 153, 255, 0.3);
    width: 45%;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 204, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.6);
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ccff, #0066ff);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 204, 255, 0.4);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00ccff;
}

.timeline-description {
    color: #b3e0ff;
    line-height: 1.6;
}

.contact-cta {
    background: rgba(0, 10, 30, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 5rem auto;
    border: 1px solid rgba(0, 153, 255, 0.2);
    text-align: center;
    color: white;
}

.cta-button {
    background: linear-gradient(45deg, #0066ff, #00ccff);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 204, 255, 0.3);
    display: inline-block;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 204, 255, 0.6);
    border-color: rgba(0, 204, 255, 0.8);
}

footer {
    background: rgba(0, 0, 0, 0.9);
    color: #b3e0ff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 153, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-year {
        left: 20px;
        transform: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
contact
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #0066ff 0%, #001a4d 50%, #000000 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(0, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
            border-bottom: 1px solid rgba(0, 153, 255, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00ccff, #0066ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #e0f4ff;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #00ccff;
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(45deg, #00ccff, #0066ff);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .page-header {
            margin-top: 80px;
            text-align: center;
            padding: 4rem 0 2rem;
            color: white;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
            animation: fadeInUp 1s ease;
            background: linear-gradient(45deg, #ffffff, #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #b3e0ff;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .contact-container {
            padding: 3rem 0 5rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 2rem;
        }

        .contact-info {
            background: rgba(0, 10, 30, 0.8);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 153, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            color: #e0f4ff;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(0, 20, 60, 0.6);
            border-radius: 15px;
            border: 1px solid rgba(0, 153, 255, 0.2);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(10px);
            border-color: rgba(0, 204, 255, 0.6);
            box-shadow: 0 8px 25px rgba(0, 204, 255, 0.3);
        }

        .info-icon {
            font-size: 2rem;
            margin-right: 1.5rem;
            background: linear-gradient(45deg, #00ccff, #0066ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 50px;
        }

        .info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #00ccff;
        }

        .info-text p {
            color: #b3e0ff;
        }

        .contact-form {
            background: rgba(0, 10, 30, 0.8);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 153, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e0f4ff;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(0, 20, 60, 0.8);
            border: 1px solid rgba(0, 153, 255, 0.3);
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: rgba(0, 204, 255, 0.8);
            box-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
            background: rgba(0, 30, 80, 0.9);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #7db8e8;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(45deg, #0066ff, #00ccff);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            border: 1px solid rgba(0, 204, 255, 0.3);
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 204, 255, 0.6);
            border-color: rgba(0, 204, 255, 0.8);
        }

        .map-section {
            margin-top: 4rem;
            padding: 3rem 0;
        }

        .map-container {
            background: rgba(0, 10, 30, 0.8);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 153, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            text-align: center;
        }

        .map-container h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
        }

        .map-placeholder {
            background: linear-gradient(135deg, #0066ff, #001a4d);
            height: 300px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            border: 1px solid rgba(0, 153, 255, 0.3);
        }

        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #b3e0ff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(0, 153, 255, 0.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 968px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }

            .contact-info,
            .contact-form {
                padding: 1.5rem;
            }

            .info-item {
                flex-direction: column;
                text-align: center;
            }

            .info-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        Cart 
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #0066ff 0%, #001a4d 50%, #000000 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(0, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
            border-bottom: 1px solid rgba(0, 153, 255, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00ccff, #0066ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #e0f4ff;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #00ccff;
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(45deg, #00ccff, #0066ff);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .cart-icon {
            position: relative;
            color: #e0f4ff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cart-icon:hover {
            color: #00ccff;
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .page-header {
            margin-top: 80px;
            text-align: center;
            padding: 4rem 0 2rem;
            color: white;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
            animation: fadeInUp 1s ease;
            background: linear-gradient(45deg, #ffffff, #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #b3e0ff;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cart-container {
            padding: 2rem 0 5rem;
        }

        .cart-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .cart-items {
            background: rgba(0, 10, 30, 0.8);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 153, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }

        .cart-items h2 {
            color: #ffffff;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
        }

        .cart-item {
            display: flex;
            align-items: center;
            background: rgba(0, 20, 60, 0.6);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 153, 255, 0.2);
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            border-color: rgba(0, 204, 255, 0.6);
            box-shadow: 0 8px 25px rgba(0, 204, 255, 0.3);
            transform: translateY(-2px);
        }

        .item-image {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0066ff, #001a4d);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .item-image img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(1);
            opacity: 0.9;
        }

        .item-details {
            flex: 1;
        }

        .item-name {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .item-specs {
            color: #b3e0ff;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .item-price {
            color: #00ccff;
            font-size: 1.2rem;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
        }

        .item-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-left: 1rem;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            background: rgba(0, 30, 80, 0.8);
            border-radius: 25px;
            border: 1px solid rgba(0, 153, 255, 0.3);
        }

        .quantity-btn {
            background: transparent;
            border: none;
            color: #00ccff;
            font-size: 1.2rem;
            width: 35px;
            height: 35px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .quantity-btn:hover {
            background: rgba(0, 204, 255, 0.2);
            color: #ffffff;
        }

        .quantity-display {
            color: #ffffff;
            font-weight: bold;
            padding: 0 1rem;
            min-width: 40px;
            text-align: center;
        }

        .remove-btn {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .remove-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
        }

        .cart-summary {
            background: rgba(0, 10, 30, 0.8);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 153, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .cart-summary h2 {
            color: #ffffff;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 153, 255, 0.2);
            color: #e0f4ff;
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-label {
            font-weight: 500;
        }

        .summary-value {
            font-weight: bold;
            color: #00ccff;
        }

        .total-row {
            font-size: 1.3rem;
            padding: 1.5rem 0;
            border-top: 2px solid rgba(0, 204, 255, 0.4);
            margin-top: 1rem;
        }

        .total-row .summary-value {
            font-size: 1.5rem;
            text-shadow: 0 0 15px rgba(0, 204, 255, 0.8);
        }

        .promo-code {
            margin: 2rem 0;
        }

        .promo-input {
            display: flex;
            gap: 0.5rem;
        }

        .promo-input input {
            flex: 1;
            background: rgba(0, 20, 60, 0.8);
            border: 1px solid rgba(0, 153, 255, 0.3);
            color: #ffffff;
            padding: 0.8rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .promo-input input:focus {
            outline: none;
            border-color: #00ccff;
            box-shadow: 0 0 10px rgba(0, 204, 255, 0.4);
        }

        .promo-input input::placeholder {
            color: #7db8e8;
        }

        .apply-btn {
            background: linear-gradient(45deg, #0066ff, #00ccff);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 204, 255, 0.6);
        }

        .checkout-btn {
            background: linear-gradient(45deg, #00ff88, #00ccff);
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .checkout-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
        }

        .continue-shopping {
            text-align: center;
            margin-top: 2rem;
        }

        .continue-btn {
            background: transparent;
            color: #00ccff;
            border: 2px solid rgba(0, 204, 255, 0.5);
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .continue-btn:hover {
            background: rgba(0, 204, 255, 0.1);
            border-color: #00ccff;
            transform: translateY(-2px);
        }

        .empty-cart {
            text-align: center;
            padding: 4rem 2rem;
            background: rgba(0, 10, 30, 0.8);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 153, 255, 0.3);
            color: #e0f4ff;
        }

        .empty-cart h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .empty-cart p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #b3e0ff;
        }

        .cart-icon-large {
            font-size: 5rem;
            color: #00ccff;
            margin-bottom: 2rem;
            opacity: 0.6;
        }

        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #b3e0ff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(0, 153, 255, 0.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 968px) {
            .cart-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cart-summary {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }

            .cart-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .item-controls {
                margin-left: 0;
                justify-content: center;
            }

            .cart-items, .cart-summary {
                padding: 1.5rem;
            }
        }

