  *{
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
  }
body {
  /* margin: 0; */
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  /* color: #1ebe57; */
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  padding: 15px;
  text-align: justify;
}

/* .hero-text button {
  margin-top: 25px;
  padding: 14px 30px;
  font-size: 1rem;
  background-color: #6aed8c;
  border: 5px solid #60c14f;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-text button:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
} */

/* 🔥 Glowing pulse animation */
@keyframes glowing-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 161, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* 🌟 Combined button style */
.hero-text .button {
  margin-top: 25px;
  margin-left: 22px;
  position: relative;
  display: inline-block;
  padding: 14px 22px;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  border: 5px solid #60c14f;
  color: white;
  background: linear-gradient(to right, #4bd956de, #175602);
  background-size: 200% auto;
  animation: glowing-pulse 2s infinite;
  transition: all 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 0 0 rgba(194, 182, 182, 0.7);
}

/* Glowing border layer */
.hero-text .button::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 60px;
  box-shadow: 1px 1px 10px 5px #9eff30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-text .button:hover {
  color: #ffffff;
  background-position: right center;
  background-color: #ffffff;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
}

.hero-text .button:hover::before {
  opacity: 1;
}



.hero-video {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-video video {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  /* border-radius: 15px; */
  /* box-shadow: 0 6px 15px rgba(0,0,0,0.1); */
}

/* QR Code Section */
.qr_code {
  max-width: 1200px;
  margin: 80px auto;
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.qr_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.qr_txt h2 {
  font-size: 2rem;
  text-align: center;
  /* color: #25D366; */
}

.qr_img img {
  width: 250px;
  height: auto;
  border-radius: 10px;
}

.whatsapp-flow {
  text-align: left;
  max-width: 600px;
}

.whatsapp-flow h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  /* color: #1ebe57; */
}

.whatsapp-flow p {
  font-size: 1rem;
  margin: 8px 0;
  line-height: 1.8;
}

/* Achieving Ads Section */
.Achieving_Ads {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 100px auto;
  padding: 40px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.Ads {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Ads h2 {
  font-size: 2rem;
  /* color: #1ebe57; */
  margin-bottom: 20px;
}

.Ads p {
  text-align: left;
  margin: 8px 0;
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  padding-left: 25px;
}

.Ads p::before {
  content: "✔";
  position: absolute;
  left: 0;
  /* color: #25D366; */
  font-weight: bold;
}

.Ads_img {
  flex: 1;
  text-align: center;
}

.Ads_img img {
  width: 80%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* Section Container */
.blue-tick-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #4e3efc, #5d47ff, #6a50ff);
  color: #fff;
  /* padding: 60px 40px; */
  overflow: hidden;
  position: relative;
}

/* Grid lines effect */
.blue-tick-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  z-index: 0;
}

.blue-tick-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Left side (robot image) */
.blue-tick-image {
  flex: 1;
  text-align: center;
  animation: slideInLeft 1.2s ease forwards;
}

.blue-tick-image img {
  width: 320px;
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

/* Right side (text + button) */
.blue-tick-text {
  flex: 1;
  padding: 20px 40px;
  animation: slideInRight 1.2s ease forwards;
}

.blue-tick-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #00000091;
}

.blue-tick-text p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #e0e0ff;
}

.blue-tick-text a {
  display: inline-block;
  background: #d0ed8bd1;
  color: #fff;
  border: 5px solid #60c14f;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blue-tick-text a:hover {
  background: #fff;
  color: #4f489b;
  transform: translateY(-3px);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blue-tick-content {
    flex-direction: column;
    text-align: center;
  }

  .blue-tick-text {
    padding: 20px;
  }

  .blue-tick-text h2 {
    font-size: 1.6rem;
  }

  .blue-tick-image img {
    width: 220px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;
  }

  .qr_txt {
    flex-direction: column;
    gap: 40px;
  }

  .Achieving_Ads {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .Ads p {
    text-align: center;
    padding-left: 0;
  }

  .Ads p::before {
    display: none;
  }

  .Ads_img img {
    width: 90%;
  }
}
  
  
