* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #0f0f1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo  span{
  color: #00ffcc;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.0rem;
  position: relative;
  transition: color 0.3s ease;
}
header ul {
  display: flex;
  list-style: none;

}

header li {
  margin-left: 2rem;
}

header a {
  color: #00ffcc;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s ease;
}

header a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff00ff;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

header a:hover {
  color: #ff00ff;
}

header a:hover::after {
  width: 100%;
}


/* hyro Section */
.hyro {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  align-items: center;
  justify-content: center;
  background-position: center;
  position: relative;
 display: flex;
 gap: 40px;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}
.slide__img{
  flex: 1;
}
.slide__img img{
 width: 100%;
}
.hyro-content {
  position: relative;
  flex: 1;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  text-align: center;
}

.hyro-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #ff00ff;
  margin-bottom: 1rem;
}

.hyro-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #ff00ff;
  color: #fff;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  border-radius: 5px;
  box-shadow: 0 0 10px #ff00ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff00ff;
}

/* About Section (Index) */
.about {
  padding: 5rem 0;
}
.about__block img{
  width: 100%;
}
.about__block p{
margin-bottom: 20px;
}
.about h2 {
  font-family: 'Orbitron', sans-serif;
 font-size:  1.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 1rem;
}

.about .subtitle {
  text-align: start;
  color: #ff00ff;
  margin-bottom: 3rem;
}
.about__icon {
  font-size: 80px;
  color: #274255;
  margin-bottom: 10px;
}
.about__icon-main {
  font-size: 102px;
  color: #00ffff;
  margin-bottom: 10px;
}
.about__blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.about__blocks {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.about__blocks2 {
  display: flex
;
  gap: 30px;
}
.about__block{
  padding: 20px;
}
.about__block {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.about__block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.about__block h3 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffcc;
  margin-bottom: 0.5rem;
}

.about__block.block-1 {
  transform: rotate(-5deg);
}

.about__block.block-2 {
  transform: translateY(20px);
}
section.allen {
  display: flex
;
  gap: 40px;
}
.about__block.block-3 {
  transform: rotate(5deg);
}

.about__block:hover {
  transform: translateY(0) rotate(0);
}

/* Service Section (Index) */
.service {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.service h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.serv__blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.serv__block {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.serv__img-placeholder {
  width: 100%;
  height: 150px;
  background: #333;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.serv__block h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
}
.about__blocks {
  display: flex
;
  gap: 70px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
sub{
  text-align: center;
  display: block;
  color: #00ffcc;
}
.about__items {
  display: flex
;
  gap: 20px;
}
.about__item{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__item h4{
  text-align: center;
  color: #00ffcc;
}
.about__block span{
  text-align: center;
  color: #ff00ff;
  font-size: 4rem;
  display: block;
  font-weight: 700;
  text-align: center;
  margin: 0rem 0;
}
.serv__slider {
  margin-top: 3rem;
justify-content: center;
  display: flex;
}
.serv__icon {
  font-size: 40px;
  color: #00ffff;
  margin-bottom: 10px;
}
.serv__block {
  text-align: center;
  padding: 20px;
}
.slider-item {
  background: #00ffcc;
  color: #0f0f1a;
  padding: 1rem;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Projects Section (Index) */
.projects {
  padding: 5rem 0;
}

.projects h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-item {
  text-align: center;
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Team Section (Index) */
.team {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.team h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.tm__cards {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.tm__card {
  perspective: 1000px;
  height: 300px;
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-align: center;
  padding: 0rem;
  transition: transform 0.6s ease;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
}

.tm__card:hover .card-front {
  transform: rotateY(-180deg);
}

.tm__card:hover .card-back {
  transform: rotateY(0deg);
}

.tm__card img {
  width: 100%;
  height: 150px;
  object-fit: cover;

  margin-bottom: 1rem;
}

.tm__card h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
}

.card-back {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}

/* Testimonials Section (Index) */
.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-carousel {
  overflow: hidden;
  display: flex;
}

.carousel-item {
  background: #ff00ff;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  margin-right: 1rem;
  flex-shrink: 0;
  width: 300px;
}

/* Accordion Section (Index) */
.accordion_section {
  padding: 5rem 0;
  flex: 1;
}

.accordion_section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.accordion_item {
  margin-bottom: 1rem;
}

.accordion_header {
  width: 100%;
  padding: 1rem;
  background: #ff00ff;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion_content {
  display: none;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

/* Events Section (Index) */
.events {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.events h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.events-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.event-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
}

/* Contact Section (Index) */
.contact {
  padding: 5rem 0;
  flex: 1;
}

.contact h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 1rem;
}

.contact p {
  text-align: center;
  margin-bottom: 2rem;
}

.contact .btn {
  display: block;
  margin: 0 auto 2rem;
  text-align: center;
  width: fit-content;
}

.contact-info {
  text-align: center;
}

/* Footer */
.footer {
  background: #0f0f1a;
  padding: 3rem 0;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.foot__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.foot__logo img {
  height: 50px;
}

.foot__links h4,
.foot__contact h4,
.foot__policies h4 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffcc;
  margin-bottom: 1rem;
}

.foot__links ul,
.foot__policies ul {
  list-style: none;
}

.foot__links a,
.foot__policies a {
  color: #e0e0e0;
  text-decoration: none;
}

.foot__links a:hover,
.foot__policies a:hover {
  color: #ff00ff;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  color: #999;
}

/* About hyro Section (about.html) */
.about__hyro {
  position: relative;
  height: 60vh;
  min-height: 60vh;
  
}

.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00ffcc 50%, #ff00ff 50%);
  clip-path: polygon(0 0, 100% 0, 0 20%);
  opacity: 0.3;
}

.about__hyro-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.about__hyro-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px #00ffcc;
}

/* Team Section (about.html) */
.about__team .tm__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.about__team .tm__card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.about__team .tm__card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.about__team .tm__card h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
}

.about__team .stagger-1 {
  transform: translateY(-20px);
}

.about__team .stagger-2 {
  transform: translateY(20px);
}

.about__team .stagger-3 {
  transform: translateY(-20px);
}

.about__team .tm__card:hover {
  transform: translateY(0);
}

/* Mission Section (about.html) */
.mission {
  padding: 5rem 0;
}

.mission h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mission-image {
  flex: 1;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 2%;
  border: 3px solid #ff00ff;
}
.mission-text {
  flex: 2;
  font-size: 1.1rem;
}

/* Service hyro Section (service.html) */
.serv__hyro {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
}

.vertical-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00ffcc;
  opacity: 0.2;
}

.serv__hyro-content {
  text-align: center;
  flex: 1;
}

.serv__hyro-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px #ff00ff;
}

/* Services Masonry Section (service.html) */
.services-masonry {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.services-masonry h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
}

.masonry-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  break-inside: avoid;
  text-align: center;
}

.masonry-item.tall {
  height: 400px;
}

.masonry-img-placeholder {
  width: 100%;
  height: 200px;
  background: #333;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.masonry-item h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
}

/* Benefits Section (service.html) */
.benefits {
  padding: 5rem 0;
}

.benefits h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff00ff;
}

/* Contact hyro Section (contact.html) */
.contact-hyro {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.5;
}

.contact-hyro-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contact-hyro-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px #00ffcc;
}

/* Contact Form Section (contact.html) */
.contact-form-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.contact-form-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #00ffcc;
  border-radius: 5px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  transition: box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 10px #00ffcc;
}

.form-input::placeholder {
  color: #999;
}

textarea.form-input {
  height: 150px;
  resize: none;
}

/* Contact Info Section (contact.html) */
.contact-info-section {
  padding: 5rem 0;
}

.contact-info-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #ff00ff;
  margin-bottom: 1rem;
}

.contact-split {
  display: flex;
  gap: 2rem;
}

.contact-details,
.contact-map {
  flex: 1;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {

  .hyro-content h1,
  .about__hyro-content h1,
  .serv__hyro-content h1,
  .contact-hyro-content h1 {
      font-size: 2rem;
  }

  .about__blocks,
  .serv__blocks,
  .events-blocks,
  .tm__cards,
  .masonry-grid,
  .contact-split,
  .mission-content,
  .projects-grid,
  .benefits-grid {
      flex-direction: column;
      column-count: 1;
  }

  .vertical-text {
      display: none;
  }
}
html,body{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.masonry-icon {
  font-size: 88px;
  color: #2c3e50;
  margin-bottom: 15px;
  display: inline-block;
}
@media screen and (max-width:768px) {
  .header .container {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
} 
.slide__img{
  position: relative;
}
.slide__img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.slide__img img {
  width: 100%;
  height: 100%;
 object-fit: cover;

}
.about__blocks {
  display: flex
;
  gap: 70px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  flex-direction: column;
}
.about__blocks-grid {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.about__blocks2 {
  display: flex
;
  gap: 30px;
  flex-direction: column;
}
.about__items {
  display: flex
;
  gap: 20px;
  flex-direction: column;
}
.serv__slider {
  margin-top: 3rem;
  justify-content: center;
  display: flex
;
  flex-direction: column;
}
section.allen {
  display: flex
;
  gap: 40px;
  flex-direction: column;
}
}
.mission.terma{

}
.mission.terma .container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mission.terma .container ul{
  display: flex;
  list-style: none;
  padding-left: 10px;
  flex-direction: column;
  gap: 10px;
}
.cbk {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 10px;
}

.cbk p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cbk a {
  color: #00bfff;
  text-decoration: underline;
}

.cbk .cookie-accept {
  background-color: #00bfff;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cbk .cookie-accept:hover {
  background-color: #0099cc;
}