* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #2e2e2e;
  color: #fff;

  background-size: 50px 50px;
  background-position: center;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  transform: skewX(-10deg);
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #2ecc71;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-menu li a:hover {
  color: #27ae60;
  text-shadow: 0 0 10px #27ae60;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #2ecc71;
  margin: 2px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 91px;
    width: 320px;
    right: 0px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    height: 100vh;
    border-radius: 0px;
    transform: skewX(0);
  }

  .nav-menu.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* herro Section */
.herro {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, filter 0.5s;
}

.slide.active {
  opacity: 1;
}

.herro-content {
  position: relative;
  text-align: center;
  margin: auto;
  max-width: 900px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.service__item .icon {
  font-size: 48px;
  color: #00ff0d;
  margin-bottom: 15px;
}
.herro-content h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 48px;
  margin-bottom: 10px;
}

.herro-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.herro-buttons .btn {
  display: inline-block;
  padding: 15px 30px;
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.herro-buttons .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #2ecc71;
}

.herro-buttons .secondary {
  background: transparent;
  border: 2px solid #2ecc71;
}

/* About Section */
.about.ab .about-item {
  display: flex
;
  align-items: center;
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: transform 0.3s;
  flex-direction: column;
}
.about.ab .about-item i {
font-size: 50px;
margin-bottom: 30px;
}
.about {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.1);
}

.about h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.about-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: transform 0.3s;
}

.about__top {
  display: flex;
  gap: 40px;
  flex: 1;
  display: flex;
  margin-bottom: 40px;
}

.about__content p {
  margin-bottom: 15px;
}

.about__content ul {
  list-style: none;
}

.about__content ul li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.about__content {
  flex: 1;
}

.about__img {
  flex: 1;
  border-radius: 5px;
}

.about__img img {
  width: 100%;
  border-radius: 10px;
}

.about-item:hover {
  transform: rotate(5deg) scale(1.05);
}

.about-item img {
  width: 80px;
  margin-bottom: 15px;
}

.about-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Service Section */
.service {
  padding: 120px 0;
}

.service h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.service__content {
  display: flex;
  flex-direction: column;
}

.service__wrap {
  display: flex;
  gap: 30px;
}

.service__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service__item {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 10px;

  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #2ecc71;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  flex-direction: column;
}

.service__item:hover {
  transform: translateY(-10px);
  border-color: #27ae60;
}

.service__item img {
  width: 80px;
  margin-bottom: 15px;
}

.service__item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* projucts Section */
.projucts {
  padding: 100px 0;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.projucts h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.projucts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 40px;
  justify-content: center;
}

.project-item {
  flex: 1;
  min-width: 300px;
  max-width: 300px;
  text-align: center;
}

.project-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.project-item:hover img {
  transform: scale(1.05);
}

.project-item p {
  font-size: 14px;
  margin-top: 10px;
}

/* Free Quote Section */
.quote {
  padding: 80px 0;
  text-align: center;
}

.quote h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #2ecc71;
}

.quote form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.quote input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: background 0.3s;
}

.quote input:focus {
  background: rgba(0, 0, 0, 0.5);
  outline: none;
}

.quote .btn {
  background: #2ecc71;
  border: none;
  padding: 15px 30px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.quote .btn:hover {
  transform: scale(1.05);
}

/* teaming Section */
.teaming {
  padding: 80px 0;
}

.teaming__wrapor {
  display: flex;
  gap: 30px;
}

.teaming__wrapor img {
  width: 100%;
}

.teaming__img {
  flex: 1;
}

.teaming h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #2ecc71;
}

.teaming-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.teaming-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  transition: box-shadow 0.3s;
}

.teaming-item:hover {
  box-shadow: 0 0 20px #2ecc71;
}

.teaming-item img {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.teaming-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Testimonial Section */
.testimonials {
  padding: 0px 0;
  padding: 4rem 0;
  flex: 1;

}
sub{
  font-size: 20px;
  margin-bottom: 30px;
  display: block;
}
.testimonials h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.testimonial-slider {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
}

.testimonial-item p {
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-item cite {
  font-size: 14px;
  color: #2ecc71;
}
.all{

padding: 30px 0 80px;

}
.all__wrap{
  display: flex;
  gap: 50px;
  align-items: center;
}
/* Accordion Section */
.accordion {
  padding: 0px 0;
  flex: 1;
}

.accordion h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.accordion__item {
  max-width: 600px;
  margin: 0 auto 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.accordion__item h3 {
  font-size: 18px;
  padding: 15px;
  background: #2ecc71;
  cursor: pointer;
}

.accordion__item p {
  padding: 15px;
  display: none;
}

/* eveen Section */
.eveen {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.1);
}

.eveen h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.event__timeline {
  max-width: 100%;
  margin: 0px auto 0;


}

.event__wrap {
  display: flex;
  gap: 45px;
  margin-top: 60px;
}
.event__timeline{
  flex: 1;
}
.event__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.event__content ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}
.event__item {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid #2ecc71;
}

/* Footer */
.footer {
  background: #111;
  padding: 40px 0;
  color: #fff;
}
.foooter-item  h3{
  text-align: center;
  margin-bottom: 30px;
}
footer .logo img {
  height: 50px;
  display: flex
;
  margin: auto;
}
.footer__links ul{
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}
.foooter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.foooter-item {
  flex: 1;
  min-width: 200px;
}

.foooter-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2ecc71;
}

.foooter-item ul {
  list-style: none;
}

.foooter-item ul li {
  margin-bottom: 10px;
}

.foooter-item ul li a {
  color: #fff;
  text-decoration: none;
}

.foooter-item ul li a:hover {
  color: #2ecc71;
}

.foooter-item p {
  font-size: 14px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}


.timeline {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.1);
}

.timeline h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}


.stats {
  padding: 80px 0;
}

.stats h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stats-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.stats-item h3 {
  font-family: 'Press Start 2P', cursive;
  font-size: 32px;
  color: #2ecc71;
  margin-bottom: 10px;
}

.stats-item p {
  font-size: 16px;
}

.contacct-details {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.1);
}

.contacct-details h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.contacct-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.contacct-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.contacct-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.map img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 450px;
}

/* contacct Form Textarea */
.quote textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  min-height: 100px;
  resize: vertical;
}

.quote textarea:focus {
  background: rgba(0, 0, 0, 0.5);
  outline: none;
}

/* Benefits Section (for service.html) */
.benefits {
  padding: 80px 0;
}

.benefits h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.benefit-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Service Slider Section (for service.html) */
.service__slider {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.1);
}

.service__slider h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #2ecc71;
}
.about.ab.toto .container{
display: flex;
flex-direction: column;
line-height: 150%;
}
.about.ab.toto .container ul{
  list-style: none;
  padding-left: 15px;
}
.about.ab.toto .container ul li,
.about.ab.toto .container  p,
.about.ab.toto .container  h3,
.about.ab.toto .container  h4{
  margin-bottom: 15px;
}
body,html{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cok-ban {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2b2b2b;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
  flex-wrap: wrap;
}

.cok-ban p {
  margin: 0;
  flex: 1 1 auto;
}

.cok-ban a {
  color: #00d8ff;
  text-decoration: underline;
}

.cok-ban button {
  background: #00d8ff;
  color: #000;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0;
}
@media screen and (max-width:768px){
  .herro-content h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    margin-bottom: 10px;
}
.about__top {
  display: flex
;
  gap: 40px;
  flex: 1;
  display: flex
;
  margin-bottom: 40px;
  flex-direction: column;
}
.service__wrap {
  display: flex
;
  gap: 30px;
  flex-direction: column;
}
.teaming__wrapor {
  display: flex
;
  gap: 30px;
  flex-direction: column;
}
.teaming {
  padding: 0px 0;
}
.event__wrap {
  display: flex
;
  gap: 45px;
  margin-top: 60px;
  flex-direction: column;
}
.all__wrap {
  display: flex
;
  gap: 50px;
  align-items: center;
  flex-direction: column;
}
}
.cok-ban {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.cok-ban p {
  margin: 0;
}
.cok-ban a {
  color: #ffd700;
  text-decoration: underline;
}
.cok-ban button {
  background-color: #ffd700;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.under-header {
  margin-top: 100px; /* например, отступ сверху под шапкой */
  padding: 20px;
  
}