@charset "utf-8";
/* CSS Document */
:root {
            --primary-blue: #0066cc;
            --light-blue: #66b3ff;
            --dark-blue: #003366;
            --orange: #ff9900;
            --white: #ffffff;
            --gray: #f5f5f5;
			--gray-light: #f5f5f5;
			--gray-medium: #e0e0e0;
			--gray-dark: #333333;
			--black: #000000;
        }
 .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--white);
        }
        
.logo span {
            color: var(--orange);
        }

 header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: var(--white);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
.header-contacts {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.header-contacts i {
    margin-right: 5px;
    color: var(--orange);
}

.phone-icon {
  font-size: 1.2em;
  margin-right: 5px;
  color: var(--white);
}

.container {
            width: 85%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.nav-links a {
            color: var(--white);
            text-decoration: none;
            margin-left: 2rem;
            transition: color 0.3s;
        }
        
.nav-links a:hover {
            color: var(--orange);
        }

footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 2rem 0;
            text-align: center;
        }
        
.footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        
.footer-links a {
            color: var(--light-blue);
            text-decoration: none;
        }
        
@media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
.hero h1 {
                font-size: 2rem;
            }
        }
.registered {
    font-size: 0.6em;
    vertical-align: super;
    
  }

/* Преимущества */
.features {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Карусель */
.hero-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 51, 102, 0.7);
    border-radius: 5px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: var(--orange);
}

   /* Страница контактов */
        .contact-section {
            padding: 4rem 0;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .contact-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .contact-card h3 {
            color: var(--dark-blue);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--light-blue);
            padding-bottom: 0.5rem;
        }
        
        .contact-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        
        .form-group textarea {
            min-height: 150px;
        }

/* Продукты */
.products {
    padding: 80px 0;
}

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

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-bottom: 1px solid var(--gray-medium);
}

.product-card h3 {
    padding: 15px;
    color: var(--dark-blue);
}

.product-description {
    padding: 0 15px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    min-height: 60px;
}

.product-specs {
    padding: 0 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.product-specs p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-specs i {
    color: var(--orange);
    margin-right: 8px;
    font-size: 0.8rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid var(--gray-medium);
}

.price {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Основные стили для всех страниц */
.page-header {
    background-color: var(--light-blue);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--orange);
}

 /* Страница заказчиков */
        .clients-section {
            padding: 4rem 0;
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .client-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .client-card:hover {
            transform: translateY(-5px);
        }
        
        .client-logo {
            max-width: 150px;
            height: auto;
            margin: 0 auto 1rem;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }
        
        .client-card:hover .client-logo {
            filter: grayscale(0%);
        }
        
        .client-card h3 {
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }
        
        .page-content {
            padding: 2rem 0;
        }

/* Стили для страницы продукции */

nav-prod {
	padding-top: 30px;
	justify-content: space-between;
    align-items: center;
}

.product-categories-nav-prod {
    margin-top: 30px;
}

.product-categories-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
	margin-top: 15px;
}

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

.product-categories-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.product-categories-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}




