*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:white;
  color:#3f4ea3;
}

.hero{
  padding-top:120px;
  padding-bottom:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: white;
}

.hero-container{
  width:90%;
  max-width:1200px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  overflow-x: hidden;
}

.hero-left{
  flex:1;
}

.logo{
  height:200px;
  width: auto;
  margin-bottom:15px;
  animation:slideLeft 1s ease forwards;
}

.hero-title{
  font-size:58px;
  font-weight:700;
  margin-bottom:20px;
  animation:slideLeft 1.1s ease forwards;
}

.hero-desc{
  font-size:18px;
  color:#4b5563;
  line-height:1.6;
  max-width:500px;
  margin-bottom:35px;
  animation:slideLeft 1.2s ease forwards;
}

.download-btn{
  display:inline-block;
  background:#16a34a;
  color:white;
  padding:14px 28px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
  animation:slideLeft 1.3s ease forwards;
}

.download-btn:hover{
  background:#15803d;
  transform:translateY(-3px);
}

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.main-product{
  width:500px;
  max-width:100%;
  object-fit:contain;
  animation:slideRight 1.2s ease forwards;
}

@keyframes slideLeft{
  0%{ opacity:0; transform:translateX(-80px); }
  60%{ opacity:1; transform:translateX(10px); }
  80%{ transform:translateX(-5px); }
  100%{ opacity:1; transform:translateX(0); }
}

@keyframes slideRight{
  0%{ opacity:0; transform:translateX(80px); }
  60%{ opacity:1; transform:translateX(-10px); }
  80%{ transform:translateX(5px); }
  100%{ opacity:1; transform:translateX(0); }
}

.product-section{
  padding:100px 0;
  background:#f8fafc;
}

.product-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.section-title{
  font-size:42px;
  margin-bottom:60px;
  color:#3f4ea3;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.product-card h3 {
  color: var(--primary);
  text-align: left;
}

.product-card{
  padding:30px;
  border-radius:15px;
  transition:all 0.4s ease;
  cursor:pointer;
}

.product-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  margin-top:20px;
  transition:transform 0.4s ease;
}

.product-card:hover{
  transform:scale(1.05);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.product-card:hover img{
  transform:scale(1.08);
}

@media(max-width:900px){
  .product-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .product-grid{
    grid-template-columns:1fr;
  }
}

  .menu-toggle{
  display:none;
  position:absolute;
  left:20px;
  top:18px;
  font-size:24px;
  color: #3f4ea3;
  cursor:pointer;
  z-index:1001;
}

.footer-dpi{
  background:#f8fafc;
  padding:60px 8% 30px;
  color:#3f4ea3;
  width:100%;
  border-top:3px solid #3f4ea3;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:25px;
}

.footer-logo{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.footer-logo img{
  width:100px;
  height:auto;
  margin-bottom:15px;
}

.footer-logo h3{
  font-family:'Mont',sans-serif;
  font-size:24px;
  color:#3f4ea3;
  letter-spacing:2px;
  margin-bottom:6px;
  text-align:center;
}

.footer-logo p{
  font-size:18px;
  opacity:0.9;
  text-align:center;
}

.footer-social{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  margin:10px 0;
}

.footer-social a{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#e2e8f0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#3f4ea3;
  font-size:20px;
  transition:all 0.3s ease;
  text-decoration:none;
}

.footer-social a:hover{
  background:#16a34a;
  color:white;
  transform:translateY(-5px);
}

.footer-bottom{
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid #e2e8f0;
  font-size:14px;
  opacity:0.9;
  text-align:center;
  width:100%;
  color:#4b5563;
}

.footer-bottom b{
  color:#3f4ea3;
}

@media (max-width:768px){
.hero{
  padding-top:110px;
  padding-bottom:50px;
}

.hero-container{
  flex-direction:column;
  text-align:center;
  gap:30px;
}

.logo{
  width:140px;
  margin:auto;
}

.hero-title{
  font-size:36px;
}

.hero-desc{
  font-size:16px;
  max-width:100%;
  margin:auto;
  margin-bottom:25px;
}

.download-btn{
  padding:12px 22px;
  font-size:14px;
}

.main-product{
  width:300px;
}

.section-title{
  font-size:30px;
  margin-bottom:40px;
}

.product-grid{
  grid-template-columns:1fr;
  gap:25px;
}

.product-card{
  padding:20px;
}

.product-card img{
  height:180px;
}

  .footer-dpi{
    padding:40px 20px 20px;
  }

  .footer-container{
    gap:20px;
  }

  .footer-logo img{
    width:70px;
    margin-bottom:10px;
  }

  .footer-logo h3{
    font-size:18px;
    letter-spacing:1px;
  }

  .footer-logo p{
    font-size:14px;
  }

  .footer-social{
    gap:12px;
    margin:5px 0;
  }

  .footer-social a{
    width:38px;
    height:38px;
    font-size:16px;
  }

  .footer-bottom{
    font-size:12px;
    line-height:1.6;
    margin-top:15px;
    padding-top:15px;
  }

}