body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #FFFFFF;
  background: #0D1B2A;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #0D1B2A;
  position: sticky;
  top: 0;
  z-index: 1000;
  transform: skewY(360deg);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo img {
  height: 50px;
  transform: skewY(2deg);
}

.nav-menu {}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.nav-menu a {
  color: #00BCD4;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #FF5722;
}

.header-contact {
  display: flex;
  gap: 20px;

}

.header-contact a {
  color: #00BCD4;
  text-decoration: none;
  font-size: 14px;
}

.btn {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  background: #00BCD4;
  color: #0D1B2A;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s;
}

.btn:hover {
  background: #FF5722;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-menu span {
  width: 30px;
  height: 3px;
  background: #00BCD4;
  transition: all 0.3s;
}

.hero .swiper-container {
  width: 100%;
  height: 600px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #FFFFFF;
}

.hero__content h1 {
  font-size: 48px;
  margin: 0;
  text-shadow: 2px 2px #0D1B2A;
}

.hero__content p {
  font-size: 20px;
  margin: 10px 0;
}

.about {
  padding: 80px 0;
  background: #0D1B2A;
}

.about__blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.about__block {
  flex: 1;
  min-width: 300px;
  background: #242c41;
  padding: 0px;
  border-radius: 15px;
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.about__block:hover {
  transform: rotate(0deg);
}

.about__block img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

.about__block h3 {
  color: #00BCD4;
}

.about__block-content {
  padding: 15px;
}

.services {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-position: center;
  padding: 90px 0;
  background-color: #4c4f57;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-block {
  background: #0D1B2A;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.service-block:hover {
  transform: scale(1.05);
}

.service-block img {
  width: 50px;
}

.contact {
  padding: 80px 0;
  background: #0D1B2A;
  text-align: center;
}

.contact__info p {
  margin: 10px 0;
}

.accordion {
  padding: 80px 0;
  background: #1E3A8A;
}

.accordion__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion__item {
  background: #0D1B2A;
  border-radius: 10px;
}

.accordion__button {
  width: 100%;
  padding: 15px;
  background: #00BCD4;
  border: none;
  color: #0D1B2A;
  text-align: left;
  cursor: pointer;
}

.accordion__content {
  display: none;
  padding: 15px;
  background: #1E3A8A;
}

.events {
  padding: 80px 0;
  background: #0D1B2A;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event {
  background: #1E3A8A;
  padding: 15px;
  border-radius: 10px;
}

footer {
  padding: 80px 0;
  background: #0D1B2A;
  text-align: center;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer__column a {
  display: block;
  color: #00BCD4;
  text-decoration: none;
  margin: 5px 0;
}

.footer__logo {
  height: 50px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00BCD4;
  color: #0D1B2A;
  padding: 10px 15px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  .nav-menu,
  .header-contact {
    display: none;
    width: 100%;
    transform: skewY(0);
  }

  .nav-menu.active,
  .header-contact.active {
    display: flex;
    flex-direction: column;
  }

  .burger-menu {
    display: flex;
  }

  .about__blocks,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .hero .swiper-container {
    height: 400px;
  }
}

.features {
  padding: 60px 0px;


}

.features h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 10px;
  color: #00BCD4;
}

.features p {
  color: #fff;
}

.features__subtitle {
  color: #f1f1f1;
  max-width: 720px;
  margin-bottom: 40px;
}

.features__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  flex: 1;
}

.feature {
  background: #f1f7fd;
  padding: 30px;
  border-radius: 5px;
  position: relative;
  transition: background 0.3s;
  text-align: center;
}

.feature--active {
  background: #0D1B2A;
  ;
  color: #fff;
}

.feature.feature--active h3,
.feature.feature--active p,
.feature.feature--active i {
  color: #fff;
}

.feature i {
  font-size: 36px;
  margin-bottom: 15px;
  color: inherit;
  color: #0D1B2A;
  ;
}

.feature h3 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #0D1B2A;
  ;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: #0D1B2A;
  ;
}

.features__story {
  flex: 1;
  border: 2px solid #cce6f6;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  max-width: 400px;
}

.features__story img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 3px;
}

.features__story h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
}

.features__story p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.features__story .btn {
  background: #1da1f2;
  color: #fff;
  padding: 10px 18px;
  display: inline-block;
  border-radius: 20px;
  text-decoration: none;
}

.service-icon {
  font-size: 40px;
  color: #0056b3;
  margin-bottom: 15px;
}

.contact__item img {
  width: 100%;
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
}

.contact__items {
  display: flex;
  gap: 56px;
  align-items: center;
}

.contact__item {
  flex: 1;
}

.contact__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordion {
  padding: 80px 0;
  background: #151c30;
}

.accordion__wrapper {
  display: flex;
  gap: 55px;
  align-items: center;
}

.accordion__wrap {
  flex: 1;
}

.events__items {
  display: flex;
  gap: 45px;
}

.events__item {
  flex: 1;
}

.events__item img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 340px;
}

.social__links {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.blog {
  text-align: center;
  padding: 60px 0px;

}

.blog-section__title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ebe6e6;
}

.blog-section__subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #777;
}

.blog__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog__card {
  background: #0f1c2fd9;
  border: 1px solid #cce5ff;
  width: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.blog__card:hover {
  transform: translateY(-5px);
}

.blog__image {
  position: relative;
}

.blog__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog__date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #339af0;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
}

.blog__date .day {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.blog__date .month,
.blog__date .year {
  font-size: 12px;
  display: block;
}

.blog__content {
  padding: 20px;
}

.blog__content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #eeeeee;
}

.blog__content p {
  font-size: 14px;
  color: #c7c7c7;
  margin-bottom: 15px;
}

.blog__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.blog__footer .blog-read__more {
  background: #339af0;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.blog__footer .blog-read__more:hover {
  background: #2274c9;
}

.blog-post {
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  background: #fff;
  color: #333;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
}

.post__title {
  font-size: 28px;
  margin-top: 20px;
}

.post__meta {
  color: #888;
  margin-bottom: 20px;
}

.post__body img {
  max-width: 100%;
  margin: 20px 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

blockquote {
  margin: 20px 0;
  padding: 15px 25px;
  background: #f2f6f2;
  border-left: 5px solid #8bc34a;
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #4c6f35;
}

.post__tags-share {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.tags a,
.share a {
  margin-right: 10px;
  color: #007bff;
  text-decoration: none;
}

.share img {
  width: 20px;
  vertical-align: middle;
}

.author-box {
  display: flex;
  margin-top: 40px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 6px;
}

.author-box img {
  width: 70px;
  border-radius: 50%;
  margin-right: 15px;
}

.comments-section {
  margin-top: 50px;
}

.comment {
  display: flex;
  margin-bottom: 20px;
}

.comment img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.comment-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
}

.reply__form {
  margin-top: 40px;
}

.reply__form input,
.reply__form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.reply__form button {
  padding: 10px 20px;
  background: #1c1830;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.reply__form button:hover {
  background: #15172b;
}

.author__box {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.author__box img {
  border-radius: 100%;
}

.blog-post span {
  color: #777;
}

.blog-post h4 {
  margin: 0;
  margin-bottom: 10px;
}

.features__items {
  display: flex;
  gap: 55px;
}

.features__item {
  flex: 1;
}

.features__item img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}

.features__wrapper {
  margin-top: 30px;
  display: flex;
  gap: 50px;
}

.features__wrap {
  flex: 1;
}

.features__wrap i {
  font-size: 50px;
}

.features__wrap p {
  font-size: 14px;
  color: #999;
}

.services__items {
  display: flex;
  gap: 30px;
}

.services__item {
  flex: 1;
}

.services__item .services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event__card {
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #fff;
}

.events__items {
  display: flex;
  gap: 43px;
}

.events__item {
  flex: 1;
}

.events__item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.events__grid {
  margin-top: 30px;
}

.testimonial__items {
  display: flex;
  gap: 65px;
}

.testimonial__item {
  flex: 1;
}

.testimonial__item img {
  width: 100%;
  object-fit: cover;
  height: 360px;
}

.testimonial__page {
  padding: 80px 0;
}

.testimonial__card h3 {
  font-size: 14px;
  margin: 10px 0 0 0;
}

.testimonial__card p {}

.testimonial__card {
  margin-bottom: 30px;
}

.accordion__wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.gallery {
  padding: 80px 0;
}

.gallery__row {
  display: flex;
  gap: 0px;
  margin-bottom: 0px;
}

.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__grid img:hover {
  transform: scale(1.02);
}

.gallery__grid {
  flex: 1;
}

.blog-post ul li {
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  .contact__items {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-direction: column;
  }

  .accordion__wrapper {
    display: flex;
    gap: 55px;
    align-items: center;
    flex-direction: column;
  }

  .events__items {
    display: flex;
    gap: 43px;
    flex-direction: column;
  }

  .footer__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    flex: 1;
  }

  .hero {
    overflow: hidden;
  }
header{
  position: relative;
}
.header-contact.active{
  display: none;
}
  .nav-menu.active ul {
    position: absolute;
    left: 0;
    right: 0;
    display: flex
;
    padding: 20px;
    top: 36px;
    background: #0D1B2A;
    width: 100%;
    flex-direction: column;
}
.services__items {
  display: flex
;
  gap: 30px;
  flex-direction: column;
}


}

.contact .reply__form button {
  padding: 10px 20px;
  background: #555361;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.features__items {
  display: flex
;
  gap: 55px;
  flex-direction: column;
}
.testimonial__items {
  display: flex
;
  gap: 35px;
  flex-direction: column;
}
.cook__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 15px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.cook__banner a {
  color: #0af;
  margin-left: 15px;
  text-decoration: underline;
}

.cook__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.cook__banner button {
  padding: 6px 12px;
  background: #0af;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}