body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    overflow-x: hidden;
}

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

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

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.hero-content {
    z-index: 1;
}



.btn {
    background: #ff7b00;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #e06900;
}

.navbar {
    background: #1e1e1e;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar li {
    display: inline-block;
    margin: 0 15px;
}

.navbar a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff7b00;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section.dark {
    background: #1e1e1e;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, background 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: #333333;
}

.footer {
    background: #1e1e1e;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}
.about {
    padding: 80px 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.about h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #f1c40f;
}

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

.about-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.about-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.about-extra, .about-mission {
    margin-top: 30px;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
}

.about-extra h3, .about-mission h3 {
    color: #f1c40f;
}

.about ul {
    margin-top: 10px;
    padding-left: 20px;
}

.about ul li {
    margin-bottom: 8px;
}
.projects {
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.projects h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f1c40f;
}

.carousel {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 60s linear infinite;
}

.carousel-track img {
    width: 350px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* половина длины трека */
}
.map-container {
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
}
.contacts {
  background-color: #000; /* чёрный фон */
  color: #fff; /* белый текст */
  padding: 50px 20px;
  text-align: center;
}

.contacts h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #00aaff; /* яркий голубой заголовок */
}

.contact-box {
  background: #111;
  padding: 20px;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  text-align: left;
}

.contact-box a {
  color: #00ffcc;
  font-weight: bold;
  text-decoration: none;
}

.contact-box a:hover {
  color: #ffaa00;
}
