*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#050816;
  color:#fff;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

body::before{
  content:'';
  position:fixed;
  width:500px;
  height:500px;
  background:#006A4E;
  filter:blur(200px);
  top:-200px;
  left:-100px;
  opacity:.4;
  z-index:-1;
}

body::after{
  content:'';
  position:fixed;
  width:500px;
  height:500px;
  background:#F42A41;
  filter:blur(200px);
  bottom:-200px;
  right:-100px;
  opacity:.4;
  z-index:-1;
}

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.1);
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  padding:10px 18px;
  border-radius:35px;
  border:1px solid rgba(255,255,255,0.12);
}

.logo img{
  width:55px;
}

.logo h2{
  font-size:28px;
  font-weight:700;
}

.logo span{
  color:#00FFA3;
}

nav a{
  text-decoration:none;
  color:#fff;
  margin-left:25px;
  font-weight:500;
  transition:.3s;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#00FFA3;
  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

.header-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.lang-select select{
  padding:12px 16px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  color:#fff;
  font-size:14px;
  cursor:pointer;
  min-width:220px;
}

.lang-select select option{
  color:#000;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
  margin-top:40px;
}

.product-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:28px;
  padding:30px;
  text-align:left;
  box-shadow:0 15px 45px rgba(0,0,0,.2);
}

.product-card h3{
  font-size:22px;
  margin-bottom:14px;
}

.product-card p{
  line-height:1.8;
  color:#ccc;
  margin-bottom:18px;
}

.product-card .product-tag{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(0,255,163,.14);
  color:#00FFA3;
  font-size:13px;
  font-weight:700;
}

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
}

.slider{
  position:relative;
  min-height:100vh;
}

.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  min-height:100vh;
  display:none;
  justify-content:space-between;
  align-items:center;
  padding:0 8%;
  background-size:cover;
  background-position:center;
}

.slide.active{
  display:flex;
}

.slide::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(5,8,22,.65);
  z-index:1;
}

.slide-content,
.slide-image{
  position:relative;
  z-index:2;
}

.slide-content{
  max-width:540px;
}

.hero-text,
.slide-content{
  max-width:650px;
}

.hero-text h1,
.slide-content h1{
  font-size:60px;
  line-height:1.05;
  margin-bottom:25px;
  font-weight:800;
}

.hero-text h1 span,
.slide-content h1 span{
  color:#00FFA3;
}

.hero-text p,
.slide-content p{
  font-size:18px;
  line-height:2;
  color:#ddd;
  margin-bottom:35px;
}

.btn-group{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:15px 38px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.4s;
  display:inline-block;
}

.btn-green{
  background:#006A4E;
  color:#fff;
  box-shadow:0 0 25px rgba(0,255,163,.4);
}

.btn-red{
  background:#F42A41;
  color:#fff;
  box-shadow:0 0 25px rgba(244,42,65,.4);
}

.btn:hover{
  transform:translateY(-5px) scale(1.05);
}

.slide-image{
  max-width:540px;
}

.slide-image img{
  width:100%;
  border-radius:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.45);
}

.slider-nav{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:3;
}

.slider-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.6);
  background:rgba(255,255,255,.15);
  cursor:pointer;
  transition:.3s;
}

.slider-dot.active{
  background:#00FFA3;
  transform:scale(1.15);
}

.hero-image img{
  width:100%;
}

@keyframes float{
  0%,100%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-25px);
  }
}

section{
  padding:110px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:50px;
  margin-bottom:15px;
  color:#00FFA3;
}

.section-title p{
  color:#aaa;
}

.services{
  display:grid;
  grid-template-columns:repeat(4, minmax(220px,1fr));
  gap:30px;
  align-items:stretch;
}

.service-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  text-align:center;
  background:rgba(255,255,255,0.06);
  padding:42px 30px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.1);
  transition:.4s;
  position:relative;
  overflow:hidden;
  min-height:340px;
  height:100%;
  opacity:0;
  transform:translateY(25px);
  animation:slideUp .75s ease forwards;
}

.service-box:nth-child(1){animation-delay:0.05s;}
.service-box:nth-child(2){animation-delay:0.15s;}
.service-box:nth-child(3){animation-delay:0.25s;}
.service-box:nth-child(4){animation-delay:0.35s;}
.service-box:nth-child(5){animation-delay:0.45s;}
.service-box:nth-child(6){animation-delay:0.55s;}
.service-box:nth-child(7){animation-delay:0.65s;}
.service-box:nth-child(8){animation-delay:0.75s;}

@keyframes slideUp{
  0%{opacity:0;transform:translateY(25px);}
  100%{opacity:1;transform:translateY(0);}
}

.service-box::before{
  content:'';
  position:absolute;
  width:150px;
  height:150px;
  background:#00FFA3;
  border-radius:50%;
  top:-70px;
  right:-70px;
  opacity:.08;
}

.service-box:hover{
  transform:translateY(-10px);
  border-color:#00FFA3;
  box-shadow:0 0 30px rgba(0,255,163,.18);
}

.service-box h3{
  font-size:24px;
  margin:0 0 16px;
}

.service-icon{
  width:84px;
  height:84px;
  border-radius:24px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(0,255,163,.12);
  margin-bottom:22px;
  box-shadow:0 10px 30px rgba(0,255,163,.08);
}

.service-icon svg,
.service-icon img{
  width:36px;
  height:36px;
}

.service-icon svg{
  fill:#00FFA3;
}

.service-box p{
  line-height:2;
  color:#ccc;
  max-width:320px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:35px;
}

.about-feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#00FFA3;
  flex-shrink:0;
}

.feature-icon svg{
  width:24px;
  height:24px;
  fill:#050816;
}

.about-feature h4{
  font-size:18px;
  margin:0 0 8px 0;
  color:#fff;
}

.about-feature p{
  margin:0;
  line-height:1.7;
  color:#ccc;
}

.counter{
  background:#0d1326;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  text-align:center;
  border-radius:30px;
}

.counter-box{
  padding:60px 20px;
}

.counter-box h2{
  font-size:65px;
  color:#F42A41;
  margin-bottom:10px;
}

.counter-box p{
  font-size:18px;
  color:#ddd;
}

.about{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:60px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:30px;
}

.about-text h2{
  font-size:48px;
  margin-bottom:25px;
  color:#00FFA3;
}

.about-text p{
  line-height:1.9;
  color:#ccc;
  margin-bottom:20px;
}

.contact{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
}

.contact-box{
  background:rgba(255,255,255,0.05);
  padding:40px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
}

.contact-box h3{
  font-size:35px;
  margin-bottom:25px;
}

.contact-box p{
  line-height:1.9;
  margin-bottom:15px;
  color:#ddd;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px;
  margin-bottom:20px;
  border:none;
  border-radius:12px;
  background:#11182d;
  color:#fff;
  font-size:16px;
}

.contact-form button{
  width:100%;
  padding:16px;
  border:none;
  background:#F42A41;
  border-radius:12px;
  font-size:18px;
  font-weight:600;
  color:#fff;
  cursor:pointer;
  transition:.4s;
}

.contact-form button:hover{
  transform:scale(1.03);
}

.map-container{
  margin-top:40px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.map-container iframe{
  width:100%;
  min-height:420px;
  border:none;
}

footer{
  background:#02040d;
  padding:40px 8%;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
}

footer p{
  color:#999;
}

.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:65px;
  height:65px;
  background:#25D366;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  font-size:30px;
  text-decoration:none;
  color:#fff;
  box-shadow:0 0 25px rgba(0,0,0,.4);
  z-index:999;
}

@media(max-width:991px){
  .hero{
    min-height:auto;
  }

  .slide{
    position:relative;
    flex-direction:column-reverse;
    padding:60px 5%;
  }

  .slide-content{
    max-width:100%;
    text-align:center;
  }

  .slide-content h1{
    font-size:40px;
  }

  .slide-image{
    width:100%;
    margin-bottom:30px;
  }

  .slide-image img{
    max-height:360px;
    object-fit:cover;
  }

  .slider-nav{
    bottom:20px;
  }

  nav{
    display:none;
  }
}
