
  .wa-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:14px 18px;
  border-radius:50px;
  font-family:Arial, sans-serif;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 25px rgba(0,0,0,.3);
  z-index:9999;
  animation: jump 2s infinite, pulse 1.5s infinite;
}

.wa-btn img{
  width:36px;
  height:36px;
}

.wa-text{
  white-space:nowrap;
}

/* Jump Effect */
@keyframes jump{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

/* Pulse Glow */
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}
  70%{box-shadow:0 0 0 12px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

/* Mobile */
@media(max-width:600px){
  .wa-text{display:none;}
  .wa-btn{
    padding:14px;
    border-radius:50%;
  }
}


/*ont*/
.seo-flex-section{
  padding:60px 20px;
  background:pink;
  font-family:Arial, sans-serif;
}

.seo-flex{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* Image */
.seo-img img{
  width:100%;
  height:auto;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Content */
.seo-content h1{
  font-size:30px;
  margin-bottom:15px;
}

.seo-content h2{
  font-size:22px;
  margin:25px 0 10px;
}

.seo-content p{
  line-height:1.8;
  color:#333;
  margin-bottom:15px;
}

/* CTA Button */
.seo-btn{
  display:inline-block;
  margin-top:10px;
  background:#25D366;
  color:#fff;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* 📱 Mobile Responsive */
@media(max-width:768px){
  .seo-flex{
    grid-template-columns:1fr;
  }
  .seo-content h1{
    font-size:24px;
  }
}
/*drowp down*/
select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/*footer*/

<!-- ====== FOOTER CSS ====== -->
<style>
.nws-footer{
  background:#0b0f1a;
  color:#fff;
  font-family:Arial, sans-serif;
}
.footer-container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}
.footer-box h2,
.footer-box h3{
  color:#ffcc00;
  margin-bottom:12px;
  font-size:18px;
}
.footer-box p,
.footer-box li{
  font-size:14px;
  line-height:1.6;
  color:#ddd;
}
.footer-box ul{
  list-style:none;
  padding:0;
}
.footer-box ul li a{
  color:#ddd;
  text-decoration:none;
}
.footer-box ul li a:hover{
  color:#ffcc00;
}

.whatsapp-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 15px;
  background:#25d366;
  color:#000;
  font-weight:bold;
  border-radius:6px;
  text-decoration:none;
}

.footer-bottom{
  background:#05070d;
  text-align:center;
  padding:15px;
  font-size:13px;
  color:#aaa;
}

/* Mobile Optimization */
@media(max-width:600px){
  .footer-container{
    text-align:center;
  }
}
/*navi new*/

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 160px;
  height: auto;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 15px;
}

.menu a:hover {
  color: #007bff;
}

.service-select {
  padding: 6px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* MOBILE MENU */
.menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

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

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 20px;
  }

  .menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}




