*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(34,197,94,0.12), transparent 30%),
    linear-gradient(135deg,#020617,#0f172a,#111827);
  color:white;
  overflow-x:hidden;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:rgba(2,6,23,0.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(56,189,248,0.18);
}

.logo{
  font-size:36px;
  font-weight:900;
  color:#38bdf8;
  letter-spacing:3px;
  text-shadow:0 0 25px rgba(56,189,248,0.8);
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:28px;
  font-size:17px;
  font-weight:700;
  transition:0.3s;
}

nav a:hover{
  color:#38bdf8;
}

.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:90px 8%;
  position:relative;
  overflow:hidden;
}

.hero-glow{
  position:absolute;
  width:520px;
  height:520px;
  background:#38bdf8;
  filter:blur(180px);
  opacity:0.16;
  border-radius:50%;
  animation:glowMove 7s infinite alternate;
}

@keyframes glowMove{
  from{transform:translate(-120px,-50px);}
  to{transform:translate(120px,90px);}
}

.hero-content{
  max-width:1050px;
  position:relative;
  z-index:2;
  animation:fadeUp 1s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(35px);}
  to{opacity:1; transform:translateY(0);}
}

.badge{
  display:inline-block;
  padding:12px 22px;
  background:rgba(56,189,248,0.12);
  border:1px solid rgba(56,189,248,0.35);
  border-radius:50px;
  color:#7dd3fc;
  font-weight:700;
  margin-bottom:25px;
}

.hero h1{
  font-size:68px;
  line-height:1.12;
  margin-bottom:25px;
  text-shadow:0 0 35px rgba(56,189,248,0.25);
}

.hero-text{
  font-size:22px;
  color:#cbd5e1;
  line-height:1.8;
  max-width:850px;
  margin:auto;
}

.hero-buttons{
  margin-top:42px;
}

.btn{
  display:inline-block;
  padding:16px 34px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  margin:10px;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-5px) scale(1.04);
}

.primary{
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
  color:#020617;
  box-shadow:0 0 28px rgba(56,189,248,0.45);
}

.whatsapp{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:white;
  box-shadow:0 0 28px rgba(34,197,94,0.45);
}

.outline{
  border:1px solid rgba(56,189,248,0.45);
  color:white;
  background:rgba(15,23,42,0.55);
}

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:28px;
  padding:70px 8%;
}

.stat-card{
  text-align:center;
  padding:38px;
  border-radius:24px;
  background:rgba(30,41,59,0.72);
  border:1px solid rgba(56,189,248,0.22);
  box-shadow:0 0 25px rgba(56,189,248,0.16);
  transition:0.3s;
}

.stat-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 45px rgba(56,189,248,0.45);
}

.stat-card h2{
  font-size:52px;
  color:#38bdf8;
}

.stat-card p{
  color:#cbd5e1;
  margin-top:10px;
}

.about,
.why,
.services-preview,
.contact{
  padding:95px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:45px;
}

.section-title p{
  color:#7dd3fc;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:12px;
}

.section-title h2{
  font-size:48px;
  color:white;
  max-width:850px;
  margin:auto;
  line-height:1.2;
}

.about-box{
  max-width:950px;
  margin:auto;
  padding:42px;
  border-radius:28px;
  background:rgba(30,41,59,0.72);
  border:1px solid rgba(56,189,248,0.22);
  box-shadow:0 0 35px rgba(56,189,248,0.18);
}

.about-box p{
  color:#cbd5e1;
  font-size:20px;
  line-height:1.9;
  text-align:center;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.feature-card,
.service-card{
  position:relative;
  overflow:hidden;
  min-height:230px;
  padding:34px;
  border-radius:24px;
  background:rgba(30,41,59,0.76);
  border:1px solid rgba(56,189,248,0.22);
  box-shadow:0 0 25px rgba(56,189,248,0.16);
  transition:0.3s;
  text-decoration:none;
  color:white;
}

.feature-card::before,
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(56,189,248,0.14),transparent);
  transform:translateX(-100%);
  transition:0.7s;
}

.feature-card:hover::before,
.service-card:hover::before{
  transform:translateX(100%);
}

.feature-card:hover,
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 45px rgba(56,189,248,0.45);
}

.feature-card span{
  font-size:42px;
  display:block;
  margin-bottom:18px;
}

.feature-card h3,
.service-card h3{
  color:#38bdf8;
  font-size:27px;
  margin-bottom:15px;
}

.feature-card p,
.service-card p{
  color:#cbd5e1;
  line-height:1.7;
  font-size:17px;
}

.contact-box{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:20px;
}

.contact-box a{
  padding:22px;
  text-align:center;
  border-radius:18px;
  background:rgba(30,41,59,0.78);
  color:white;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(56,189,248,0.25);
  box-shadow:0 0 25px rgba(56,189,248,0.14);
  transition:0.3s;
}

.contact-box a:hover{
  background:#38bdf8;
  color:#020617;
  transform:translateY(-7px);
  box-shadow:0 0 40px rgba(56,189,248,0.55);
}

footer{
  text-align:center;
  padding:65px 8%;
  background:rgba(2,6,23,0.96);
  border-top:1px solid rgba(56,189,248,0.18);
}

footer h2{
  color:#38bdf8;
  font-size:38px;
  letter-spacing:3px;
  margin-bottom:12px;
}

footer p{
  color:#cbd5e1;
  margin:8px 0;
}

.socials{
  margin:28px 0;
}

.socials a{
  color:white;
  text-decoration:none;
  margin:8px;
  display:inline-block;
  padding:12px 20px;
  border-radius:50px;
  border:1px solid rgba(56,189,248,0.35);
  transition:0.3s;
}

.socials a:hover{
  background:#38bdf8;
  color:#020617;
}

.copyright{
  color:#64748b;
  font-size:14px;
}

.floating-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:2000;
  background:#22c55e;
  color:white;
  text-decoration:none;
  padding:15px 22px;
  border-radius:50px;
  font-weight:900;
  box-shadow:0 0 30px rgba(34,197,94,0.65);
  animation:pulse 1.6s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.07);}
  100%{transform:scale(1);}
}

@media(max-width:768px){
  .navbar{
    flex-direction:column;
    gap:16px;
  }

  nav a{
    margin:0 8px;
    font-size:15px;
  }

  .hero h1{
    font-size:39px;
  }

  .hero-text{
    font-size:18px;
  }

  .section-title h2{
    font-size:34px;
  }

  .about,
  .why,
  .services-preview,
  .contact{
    padding:70px 6%;
  }

  .btn{
    width:100%;
    max-width:280px;
  }
}
.page-hero{
  min-height:58vh;
  padding:120px 8% 70px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.page-hero h1{
  font-size:58px;
  max-width:950px;
  line-height:1.15;
  margin:18px auto;
}

.page-hero p{
  color:#cbd5e1;
  font-size:21px;
  max-width:780px;
  line-height:1.7;
}

.service-detail-grid,
.review-grid{
  padding:40px 8% 100px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(310px,1fr));
  gap:32px;
}

.big-service-card,
.review-card{
  padding:36px;
  border-radius:28px;
  background:rgba(15,23,42,0.82);
  border:1px solid rgba(56,189,248,0.28);
  box-shadow:0 0 35px rgba(56,189,248,0.16);
  transition:0.35s;
}

.big-service-card:hover,
.review-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 50px rgba(56,189,248,0.4);
}

.big-service-card h2,
.review-card h2{
  color:#38bdf8;
  font-size:32px;
  margin-bottom:16px;
}

.big-service-card p,
.review-card p{
  color:#e2e8f0;
  font-size:18px;
  line-height:1.8;
}

.big-service-card ul{
  margin-top:22px;
  list-style:none;
}

.big-service-card li{
  color:#cbd5e1;
  margin:12px 0;
  font-size:16px;
}

.big-service-card li::before{
  content:"✓ ";
  color:#22c55e;
  font-weight:900;
}

.video-box{
  width:100%;
  height:210px;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(56,189,248,0.22),rgba(34,197,94,0.12)),
    rgba(30,41,59,0.9);
  border:1px solid rgba(56,189,248,0.28);
  margin-bottom:24px;
  overflow:hidden;
}

.video-box video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cta-section{
  padding:90px 8%;
  text-align:center;
  background:rgba(2,6,23,0.5);
}

.cta-section h2{
  font-size:52px;
  margin-bottom:15px;
}

.cta-section p{
  color:#cbd5e1;
  font-size:20px;
}

@media(max-width:768px){
  .page-hero h1{
    font-size:38px;
  }

  .page-hero p{
    font-size:17px;
  }

  .service-detail-grid,
  .review-grid{
    grid-template-columns:1fr;
    padding:30px 6% 80px;
  }

  .cta-section h2{
    font-size:34px;
  }
}
.products-section{
  padding:120px 8%;
  text-align:center;
}

.products-title{
  font-size:50px;
  margin-bottom:20px;
  color:#56bdf8;
}

.products-subtitle{
  font-size:18px;
  margin-bottom:60px;
  color:#ddd;
}

.products-container{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.product-card{
  width:320px;
  padding:35px;
  border-radius:20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card h2{
  margin-bottom:20px;
  color:#56bdf8;
}

.product-card p{
  color:#ccc;
  line-height:1.6;
  margin-bottom:25px;
}

.product-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.product-card button{
  padding:12px 30px;
  border:none;
  border-radius:10px;
  background:#56bdf8;
  color:white;
  font-size:16px;
  cursor:pointer;
}
.nav-links{
  list-style:none;
  display:flex;
  gap:10px;
  align-items:center;
}

.nav-links li{
  list-style:none;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.nav-links a:hover{
  color:#56bdf8;
}

.brand{
  display:flex;
  align-items:center;
  gap:20px;
  text-decoration:none;
  color:#56bdf8;
  font-size:34px;
  font-weight:900;
  letter-spacing:3px;
}

.brand-logo{
  width:220px;
  height:220px;
  object-fit:contain;
  margin-top:-10px;
}
.nav-links{
  display:flex;
  gap:34px;
  align-items:center;
  list-style:none;
}

.nav-links a{
  position:relative;
  color:#dff8ff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  letter-spacing:0.5px;
  padding:8px 14px;
  display:inline-block;
  border-radius:14px;
  transition:0.3s ease;
  border-bottom:2px solid rgba(86,189,248,0.7);
padding-bottom:6px;
text-shadow:0 0 15px rgba(86,189,248,0.8);
}

.nav-links a:hover{
  color:#ffffff;
transform:translateY(-2px) scale(1.05);
text-shadow:0 0 18px rgba(86,189,248,0.95);
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:6px;
  height:2px;
  background:linear-gradient(90deg,#19e6ff,#56bdf8,#ffffff);
  transform:scaleX(0);
  transform-origin:center;
  transition:0.3s ease;
  border-radius:10px;
}

.nav-links a:hover::after{
  transform:scaleX(1);
}

.navbar{
  padding:22px 7%;
  background:rgba(5,12,22,0.88);
  border-bottom:1px solid rgba(86,189,248,0.18);
  box-shadow:0 8px 35px rgba(0,0,0,0.35);
}
/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .services-grid,
  .reviews-grid,
  .products-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .service-card,
  .review-card,
  .product-card {
    width: 100%;
  }

  footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
}
.page-hero{
    min-height:100vh;
    padding:140px 10%;
    color:white;
    background:#0f0f0f;
}

.hero-description{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin-top:20px;
}

.footer{
    padding:30px;
    text-align:center;
    background:#000;
}

.footer a{
    color:white;
    margin:0 15px;
    text-decoration:none;
    font-size:14px;
}

.footer a:hover{
    color:#00ffd5;
}
.contact-buttons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:45px;
}

.contact-buttons a{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:24px 20px;
    border-radius:18px;
    text-decoration:none;
    color:white;
    font-size:22px;
    font-weight:700;
    border:1px solid rgba(86,189,248,0.35);
    background:rgba(255,255,255,0.03);
    transition:0.3s ease;
    box-shadow:0 0 18px rgba(86,189,248,0.08);
}

.contact-buttons a:hover{
    transform:translateY(-4px);
    border-color:#56bdf8;
    box-shadow:0 0 25px rgba(86,189,248,0.35);
}

@media(max-width:900px){
    .contact-buttons{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .contact-buttons{
        grid-template-columns:1fr;
    }
}