
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
    background-image: url('BG.png'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; 
}

.hero-section {
  font-family: 'Inter', sans-serif;
  background: #fff;
  padding: 40px 5% 40px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.hero-left {
  flex: 1 1 550px;
}

.hero-left h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000;
}

.highlight {
  color: #D4620E;
}

.subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.email-form {
  display: flex;
  max-width: 500px;
  margin-bottom: 10px;
}

.email-form input {
  flex: 1;
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.email-form button {
  background-color:#d4620e;
  color: white;
  padding: 14px 20px;
  border: none;
  font-size: 1rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-weight: bold;
}

.trial-info {
  margin: 10px 0 30px;
  font-size: 0.9rem;
  color: #444;
}

.trial-info span {
  margin-right: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

.hero-right {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 80px;
  margin-right: 40px;
  
}

.image-circle {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ffe29e 20%, #fff0 90%);
  border-radius: 50%;
  position: absolute;
  z-index: 0;
}

.mascot {
  width: 280px;
  max-width: 100%;
  z-index: 1;
  position: relative;
}

.chat {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
  max-width: 250px;
  z-index: 2;
  color: #fff;
  background: rgba(212, 98, 14, 0.50); /* semi-transparent */
  backdrop-filter: blur(8px);         /* <-- this adds the blur */
  -webkit-backdrop-filter: blur(8px); /* for Safari support */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.chat1 {
  left: -25px;
  bottom: 0;
}

.chat2 {
  right: -100px;
  top: 20px;
}

.chat3 {
  right: -90px;
  top: 170px;
}


/* Footer bar */
.footer-bar {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
}

.footer-bar div span {
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 100px;
    
  }

  .chat {
    display: none;
  }
}
.multi-channel-section {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 70px 50px;
  background: #f9f9f9;
}

.channel-left {
  flex: 1 1 300px;
}

.chat-block {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  max-width: 450px;
 margin-left: 100px;
}

.chat-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  
}

.chat-row .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
}

.chat-bubble {
  background: #f0f0f0;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  flex: 1;
  margin-right: 12px;
max-width: 250px;
}

.platform {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.channel-right {
  flex: 1 1 400px;
}

.platform-logos img {
  width: 50px;
  margin-right: 10px;
}

.channel-right h2 {
  font-size: 1.9rem;
  margin: 20px 0 12px;
  color: #111;
}

.channel-right p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  margin-left: 0;      /* ⬅️ removes any left margin */
  padding-left: 0;     /* ⬅️ removes any left padding */
  text-align: left;    /* ⬅️ ensures text starts from left */
}

.btn-black {
  background: #d4620e;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.automation-section {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
}

.auto-left {
  flex: 1 1 280px;
  margin-left: 130px;
  
}

.chat-card {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.chat-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.chat-header .dot {
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 50%;
  margin-right: 8px;
}

.chat-header img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.user-msg {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 14px;
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
}

.user-msg p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-left: 10px;
}

.bot-msg .bot-bubble {
  background: #0066ff;
  color: white;
  padding: 14px;
  border-radius: 18px;
  max-width: 100%;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.ai-badge {
  font-size: 0.75rem;
  color: #666;
  background: #eee;
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
}

.auto-right {
  flex: 1 1 300px;
  max-width: 500px;
  margin-right: 120px;
 
}

.auto-left h2 {
  font-size: 1.9rem;
  color: #111;
  margin-bottom: 14px;
  margin-left: 0%;
}

.auto-right p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}

.btn-black2 {
  background: #d4620e;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;            /* space from top */
  margin-left: 50%;
  transform: translateX(-50%); /* perfectly center it */
}

.ameany-feature-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 40px;
  background: #f9fcff;
  gap: 10px;
}

.feature-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-image {
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-left: 40px; 
}

.feature-right {
  flex: 1;
  max-width: 500px;
  margin-right: 60px; 
}

.feature-right h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.feature-right p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 24px;
}

.feature-box {
  background: #fff;
  border-left: 4px solid #007aff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

.feature-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
}

.ameany-codegen-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px;
  background-color: #ffffff;
  gap: 40px;
}

.codegen-left {
  flex: 1;
  max-width: 500px;
  margin-left: 140px;
}

.codegen-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.codegen-left p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 24px;
}

.feature-box {
  background: #f9f9f9;
  border-left: 4px solid #007aff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

.feature-list li {
  margin-bottom: 12px;
  color: #333;
}

.codegen-right {
  flex: 1;
  max-width: 600px;
  margin-right: 140px;
}

.feature-image {
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


.ameany-trust-section {
  background: linear-gradient(to bottom right, #ffffff, #ffffff);
  padding: 10px 20px;
}

.trust-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.trust-left {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.trust-left img {
  max-width: 500px;
  border-radius: 20px;
}

.trust-right {
  flex: 1 1 500px;
  padding: 20px;
  text-align: left;
}

.trust-right .highlight {
  color: #d4620e;
  font-weight: bold;
}

.trust-right h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.trust-right p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
}

.btn-orange {
  background: #d4620e;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 40px;
}

.trust-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-stats div {
  flex: 1 1 150px;
}

.trust-stats h3 {
  color: #d4620e;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.trust-stats p {
  color: #666;
  font-size: 0.95rem;
}

.ameany-process-section {
  background-color: #ffffff;
  padding: 40px 40px;
  text-align: center;
}

.process-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: bold;
}

.process-subtext {
  color: #444;
  font-size: 1rem;
  margin-bottom: 40px;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.process-step {
  flex: 1 1 280px;
  background: #f9f9f9;
  border-left: 4px solid #d4620e;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-step h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 8px;
}

.process-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.process-cta {
  margin-top: 40px;
}

.btn-orange {
  background: #d4620e;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.faq-section {
  background: #fff;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #d4620e;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a1a1a;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.5rem;
  color: #d4620e;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #444;
  font-size: 1rem;
}


@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .image-circle {
    width: 250px;
    height: 250px;
  }
  .mascot {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .hero-container,
  .multi-channel-section,
  .automation-section,
  .ameany-feature-section,
  .ameany-codegen-section,
  .ameany-process-section,
  .ameany-trust-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-left h1 {
    font-size: 2rem;
  }
  .subtext {
    font-size: 1rem;
  }

  .email-form {
    flex-direction: column;
  }
  .email-form input,
  .email-form button {
    border-radius: 8px;
    width: 100%;
  }
  .email-form button {
    margin-top: 10px;
  }

  .hero-right,
  .auto-left,
  .auto-right,
  .codegen-left,
  .codegen-right,
  .feature-left,
  .feature-right,
  .trust-left,
  .trust-right {
    margin: 0;
    flex: 1 1 100%;
    text-align: center;
  }

  .chat-block {
    margin-left: 0;
  }
  .platform-logos {
    justify-content: center;
  }
  .btn-black2 {
    margin-left: 0;
    transform: none;
  }
  .image-circle,
  .chat {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.6rem;
  }
  .subtext {
    font-size: 0.95rem;
  }
  .feature-right h2,
  .codegen-left h2,
  .auto-left h2,
  .trust-right h2,
  .process-title {
    font-size: 1.5rem;
  }
  .trust-stats {
    flex-direction: column;
    gap: 20px;
  }
  .footer-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-container h2 {
    font-size: 1.5rem;
  }
}




