*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Manrope', sans-serif;
}

body{
  background:#f7f9fc;
  color:#111;
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 50px;
  z-index:1000;
  border-bottom:1px solid #eee;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* LEFT */
.header-left{
  display:flex;
  align-items:center;
  gap:0px;
}

.header-left img{
  height:36px;
  margin-bottom: -5px;
}

.header-left a{
  text-decoration:none;
  color: inherit;
  position:relative;
}

.brand-name{
  font-weight:600;
  font-size:22px;
}

/* NAV */
.header-left nav{
  display:flex;
  gap:22px;
  margin-left:40px;
}

.header-left nav a{
  text-decoration:none;
  color:#444;
  font-size:14px;
  position:relative;
}


/* ================= DROPDOWN ================= */

.nav{
  display:flex;
  align-items:center;
}

/* wrapper */
.dropdown{
  position:relative;
}

/* main button */
.dropdown-toggle{
  text-decoration:none;
  color:#444;
  font-size:14px;
  cursor:pointer;
  position:relative;
}

/* dropdown box */
.dropdown-menu{
  position:absolute;
  top:30px;
  left:0;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  padding:10px 0;
  min-width:150px;

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s;
}

/* dropdown links */
.dropdown-menu a{
  display:block;
  padding:10px 15px;
  text-decoration:none;
  color:#333;
  font-size:14px;
  transition:0.2s;
}

.dropdown-menu a:hover{
  background:#f5f7fb;
}

.dropdown-menu a img{
  width: 20px;
  height: 20px;
  margin-bottom: -5px;
  margin-right: 5px;
}

/* SHOW DROPDOWN */
.dropdown.active .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* RIGHT */
.header-right{
  display:flex;
  align-items:center;
  gap:22px;
}

.header-right a{
  text-decoration:none;
  color:#444;
  font-size:14px;
  font-weight: bold;
  position:relative;
}

.header-right i{
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

/* Hover underline */
.header-left nav a::after,
.header-right a::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:0%;
  height:2px;
  background:#0a66ff;
  transition:0.3s;
}

.header-left nav a:hover::after,
.header-right a:hover::after{
  width:100%;
}

.header-right i:hover{
  transform:scale(1.1);
}


/* ================= HERO ================= */
.hero{
  height: calc(100vh - 100px);
  position:relative;
  overflow:hidden;
  margin-top:60px;
}

.hero-video{
  position:absolute;
  width:100%;
  height:auto;
  object-fit:cover;
}

/*.hero::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.4));
}*/

.hero-content{
  max-width: 600px;
  position:relative;
  z-index:2;
  text-align:center;
  transform:translateY(50%);
  color:#222;
  padding: 10px 20px 70px 20px;
  margin: auto;
}

.hero-content button {
    background: #0a66ff;
    color: #fff;
    border: none;
    padding: 6px 22px;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.hero-content h1{
  font-size:42px;
  margin-bottom:20px;
}

.hero-content p{
  margin:auto;
  margin-bottom:20px;
}

.hero button{
  background:#0a66ff;
  color:white;
  padding:10px 22px;
  border:none;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
}

.hero button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(10,102,255,0.3);
}


/* ================= PRODUCTS ================= */
.products{
  padding:0px 60px 50px 60px;
  text-align:center;
}

.products h2{
  font-size: 48px;
  max-width: 600px;
  margin: 0 auto;
}

.product-grid{
  display:flex;
  gap:30px;
  margin-top:50px;
}

.card{
  flex:1;
  background:white;
  padding:20px;
  border-radius:20px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.card video{
  width:100%;
  border-radius:15px;
}

.product-icon{
  width: 80px;
  margin-top: 20px;
}

.product-grid h3 {
  font-size: 36px;
  color: #333;
  font-weight: 600;
  max-width: 400px;
  margin: 0px auto 20px auto;
}

.product-grid p {
  color: #465a69;
  font-size: 13px;
  max-width: 300px;
  margin: 0 auto;
}

.product-grid button, .product-grid a{
  background:#0a66ff;
  color:#fff;
  border:none;
  padding: 10px 22px;
  border-radius:25px;
  cursor:pointer;
  margin-top:10px;
  transition:0.3s;
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
}

.product-grid button:hover, .product-grid a:hover{
  transform:translateY(-2px);
}


/* ================= ZIGZAG ================= */
.zigzag{
  padding:50px 60px;
  background:#f5f7fb;
}

.zigzag-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  max-width:1200px;
  margin:0 auto 120px;
}

.zigzag-row.reverse{
  flex-direction:row-reverse;
}

.zigzag-text{
  flex:1;
}

.zigzag-text h2{
  font-size:32px;
  margin-bottom:15px;
}

.zigzag-text p{
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

.zigzag-text button{
  background:#0a66ff;
  color:#fff;
  border:none;
  padding:6px 22px;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
}

.zigzag-text button:hover{
  transform:translateY(-2px);
}

.zigzag-image{
  flex:1;
  display:flex;
}

.zigzag-row .zigzag-image{
  justify-content:flex-end;
}

.zigzag-row.reverse .zigzag-image{
  justify-content:flex-start;
}

.zigzag-image img{
  width:100%;
  /*max-width:500px;*/
  border-radius:25px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  transition:0.4s;
}

.zigzag-image video{
  width:100%;
  border-radius:15px;
}

.zigzag-image img:hover{
  transform:scale(1.02);
}


/* ================= FOOTER ================= */
.footer{
  display:flex;
  justify-content:space-between;
  align-items: center;
  padding:30px 60px;
  background:#fff;
  border-top:1px solid #eee;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-brand img{
  height:25px;
}

.footer-brand span{
  font-weight:600;
}

.footer-left p{
  font-size:13px;
  color:#555;
}

.social-icons{
  display:flex;
  gap:30px;
  margin-top:12px;
}

.social-icons i{
  font-size:20px;
  color:#444;
  cursor:pointer;
  transition:0.3s;
}

.social-icons i:hover{
  color:#0a66ff;
  transform:scale(1.1);
}

.footer-right{
  display:flex;
  gap:25px;
  align-items:center;
}

.footer-right a{
  text-decoration:none;
  color:#444;
  font-size:14px;
  transition:0.3s;
}

.footer-right a:hover{
  color:#0a66ff;
}


/* ================= RESPONSIVE ================= */
@media(max-width:768px){

  .header{
    padding:12px 20px;
  }

  .header-left nav{
    display:none;
  }

  .products {
    padding: 40px 20px;
  }

  .product-grid{
    flex-direction:column;
  }

  .zigzag {
    padding: 20px;
  }

  .zigzag-row,
  .zigzag-row.reverse{
    flex-direction:column;
    text-align:center;
    margin: 0 auto 40px;
  }

  .zigzag-row .zigzag-image,
  .zigzag-row.reverse .zigzag-image{
    justify-content:center;
  }
}


@media(max-width:768px){

  .footer{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:25px;
    padding:30px 20px;
  }

  /* LEFT SECTION CENTER */
  .footer-left{
    width:100%;
    align-items:center;
    gap: 0;
  }

  .footer-brand{
    justify-content:center;
  }

  .footer-left p{
    margin:0;
  }

  /* SOCIAL ICONS CENTER */
  .social-icons{
    justify-content:center;
    margin-top: 14px;
  }

  /* RIGHT LINKS → ONE BELOW ANOTHER */
  .footer-right{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  .footer-right a{
    font-size:14px;
  }

}


