/* Global style */
*{
  font-family: "Poppins", sans-serif;
}
/* Modal container */
.modal-container {
  padding: 25px;
  border-radius: 15px;
  background-color: #f5f5f5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 90%;
  margin: 50px auto;
}

/* Section headings */
h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0077cc;
  margin-bottom: 15px;
}
#header-placeholder {
  position: sticky;
  top: 0;          
  width: 100%;
  z-index: 9999;  
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    /* NEW SECTION STYLE */
    .image-float {
       animation: floatY 3s ease-in-out infinite;
     }
     @keyframes floatY {
       0%, 100% { transform: translateY(0); }
       50% { transform: translateY(-10px); }
     }
     .image-gradient-border {
       display: inline-block;
       padding: 4px;
       border-radius: 22px;
       background: linear-gradient(135deg, #4E56C0, #7D84FF);
       box-shadow: 0 8px 20px rgba(78,86,192,0.25);
       transition: transform 0.4s ease;
     }
     .image-gradient-border:hover {
       transform: scale(1.05) rotate(1deg);
     }
     .image-gradient-border img {
       border-radius: 18px;
       background: white;
     }

     .features-list .feature {
       display: flex;
       align-items: start;
       margin-bottom: 12px;
       font-size: 15px;
     }
     .feature-icon {
       color: #4E56C0;
       font-size: 1.3rem;
       margin-right: 10px;
       transition: transform 0.3s ease, color 0.3s ease;
     }
     .feature:hover .feature-icon {
       transform: scale(1.3);
       color: #7D84FF;
     }

     /* .btn-glow {
       background: linear-gradient(135deg,#4E56C0,#7D84FF);
       color: white;
       border: none;
       padding: 10px 24px;
       border-radius: 8px;
       font-weight: 600;
       text-decoration: none;
       transition: box-shadow 0.3s ease, transform 0.3s ease;
     } */
     .btn-glow:hover {
       box-shadow: 0 0 15px rgba(78,86,192,0.6);
       transform: translateY(-2px);
     }
     .btn-outline {
       border: 2px solid #ffffff !important;
       color: #4E56C0;
       padding: 10px 24px;
       border-radius: 8px;
       font-weight: 600;
       text-decoration: none;
       transition: all 0.3s ease;
     }
     /* .btn-outline:hover {
       background: #4ec04e;
       color: white;
     } */
     .content-box {
       background: #fff;
       border-left: 5px solid #4E56C0;
       border-radius: 20px;
       padding: 30px;
       box-shadow: 0 8px 18px rgba(78,86,192,0.1);
       transition: transform 0.3s ease;
     }
     .content-box:hover {
       transform: translateY(-5px);
     }
     .section-subtitle {
       text-transform: uppercase;
       color: #4E56C0;
       font-weight: 700;
     }
     .section-title {
       margin-bottom: 15px;
     }
     .feature-list {
       list-style: none;
       padding: 0;
       margin: 15px 0;
     }
     .feature-list li {
       display: flex;
       align-items: start;
       gap: 8px;
       font-size: 15px;
       margin-bottom: 8px;
     }
     .feature-list i {
       color: #4E56C0;
       transition: transform 0.3s ease;
     }
     .feature-list li:hover i {
       transform: scale(1.3);
     }

     .btn-glow {
       background: linear-gradient(to right, #4bd956de, #287e0b);
       color: #fff;
       border: none;
       padding: 10px 24px;
       border-radius: 8px;
       font-weight: 600;
       text-decoration: none;
       transition: all 0.3s ease;
     }
     .btn-glow:hover {
       box-shadow: 0 0 12px rgba(91, 192, 78, 0.6);
       transform: translateY(-2px);
     }

     /* .btn-outline {
       border: 2px solid #ffffff;
       color: #4E56C0;
       padding: 10px 24px;
       border-radius: 8px;
       font-weight: 600;
       text-decoration: none;
       transition: all 0.3s ease;
     } */
     /* .btn-outline:hover {
       background: #4ec057;
       color: white;
     } */

     .btn-group { margin-top: 15px; display: flex; gap: 10px; flex-wrap: wrap; }

     .image-gradient-border {
       display: inline-block;
       padding: 4px;
       border-radius: 20px;
       background: linear-gradient(135deg, #4E56C0, #7D84FF);
       box-shadow: 0 8px 20px rgba(78,86,192,0.2);
       animation: floatY 3s ease-in-out infinite;
     }
      .image-gradient-border img, .image-gradient-border video {
       border-radius: 18px;
       background: white;
       width: 100%;
       height: 450px;
     }
     @media (max-width:450px) {
      .image-gradient-border img, .image-gradient-border video{
       border-radius: 18px;
       background: white;
       width: 100%;
       height: auto;
      }
     }
     @keyframes floatY {
       0%, 100% { transform: translateY(0); }
       50% { transform: translateY(-10px); }
     }
     /* Floating animation for images */
     .float-anim {
       animation: floatY 3s ease-in-out infinite;
     }
     @keyframes floatY {
       0%, 100% { transform: translateY(0); }
       50% { transform: translateY(-10px); }
     }

     /* Gradient border box */
     .gradient-box {
       border-radius: 25px;
       padding: 4px;
       background: linear-gradient(135deg, #4E56C0, #7D84FF);
       display: inline-block;
       transition: transform 0.4s ease, box-shadow 0.4s ease;
     }
     .gradient-box:hover {
       transform: scale(1.03);
       box-shadow: 0 0 25px rgba(78,86,192,0.4);
     }
     .gradient-box img {
       border-radius: 20px;
       background: #fff;
     }

     /* Glow button */
     .btn-glow {
       background: linear-gradient(to right, #4bd956de, #287e0b);
       color: #fff;
       font-weight: 600;
       padding: 10px 24px;
       border-radius: 8px;
       border: none;
       text-decoration: none;
       transition: all 0.3s ease;
     }
     .btn-glow:hover {
       box-shadow: 0 0 15px rgba(91, 192, 78, 0.6);
       transform: translateY(-2px);
     }

     /* Outline button */
     .btn-outline {
       border: 2px solid #4E56C0;
       color: #4E56C0;
       font-weight: 600;
       padding: 10px 24px;
       border-radius: 8px;
       text-decoration: none;
       transition: all 0.3s ease;
     }
     .btn-outline:hover {
       background: #4ec057;
       color: #fff;
     }

     /* Feature icon hover */
     .feature i {
       color: #4E56C0;
       transition: transform 0.3s ease, color 0.3s ease;
     }
     .feature:hover i {
       color: #7D84FF;
       transform: scale(1.3);
     }

      section#whatsapp-api {
        background: linear-gradient(319deg, #d8f78ee0, #94efd226);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }

      section#whatsapp-verification {
        background: linear-gradient(319deg, #8eb8f7e0, #94c9ef26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }

      section#whatsapp-ads {
        background: linear-gradient(319deg, #958ef7e0, #94c9ef26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }

      section#whatsapp-qr {
        background: linear-gradient(319deg, #c48ef7e0, #94c9ef26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }

      section#whatsapp-chat-widget{
        background: linear-gradient(45deg, #e79650de, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }
      section#whatsapp-chatbot{
        background: linear-gradient(45deg, #ed5fc3de, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }
      section#whatsapp-lead-capture{
        background: linear-gradient(45deg, #5fed95de, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }
      section#whatsapp-broadcast{
        background: linear-gradient(45deg, #ed5f5fde, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }
      section#shared-team-inbox{
        background: linear-gradient(45deg, #5feddade, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }
      section#whatsapp-ai-generator{
        background: linear-gradient(45deg, #685fedde, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }
      section#whatsapp-catalog{
        background: linear-gradient(45deg, #e4ed5fde, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }
      section#task-automation{
        background: linear-gradient(45deg, #ed5f5fde, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }
      section#whatsapp-payments{
        background: linear-gradient(45deg, #5f74edde, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-left: 10px solid #349b62f0;
      }
      section#whatsapp-analytics{
        background: linear-gradient(45deg, #87ed5fde, #efafaf26);
        margin-top: 20px;
        border-radius: 30px 5px;
        border-right: 10px solid #349b62f0;
      }

.hero-buttons .button {
  margin-top: 25px;
  margin-left: 22px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  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-buttons .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-buttons .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-buttons .button:hover::before {
  opacity: 1;
}
@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);
  }
}
