:root {
  --primary: #000b08;
  --primary-light: #26a18c;
  --dark: #111;
  --light: #e0e0e0;
  --glow-color: rgba(38, 161, 140, 0.8);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #0e0e0e, #1a1a1a);
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  padding-top: 60px;
}

.bc {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0b1d1c;
}

canvas#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}

.fixed-footer-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 11, 8, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: center;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.footer-cta-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-cta-btn {
  background: #fff;
  color: #1c7e6e;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.footer-cta-btn:hover {
  background-color: #1c7e6e;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.section-skew {
  padding: 60px 15px;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-reverse .section-content {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #04f385;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.integration-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(4, 243, 133, 0.2);
  transition: transform 0.3s ease;
}

.integration-img img:hover {
  transform: scale(1.03);
}

.integration-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
  text-align: left;
  max-width: 500px;
}

.integration-text ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.integration-text ul li i {
  color: #04f385;
  font-size: 1.2rem;
  margin-top: 4px;
}

.btn {
  border: 1px solid #04f385;
  background: #1fff6c;
  color: #161817;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: #6be884;
  border-color: #87f59d;
  color: #161817;
}

.integration-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.integration-text {
  flex: 1 1 400px;
}

.integration-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.integration-text li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #eaeaea;
}

.integration-text li i {
  color: #04f385;
  margin-right: 10px;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.integration-card {
  flex: 1 1 350px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(4, 243, 133, 0.15);
  transition: transform 0.4s ease;
}

.integration-card:hover {
  transform: scale(1.03);
}

.integration-card video,
.integration-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.promo-bar {
  background-color: #04f385;
  color: #000000;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 8px 0;
}

.promo-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.navbar {
  padding: 12px 0;
  background: var(--primary);
}

.signin-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 1000;
  padding: 6px 12px;
  font-size: 0.95rem;
}

.bg-dark-blue { background-color: var(--primary); }
.text-neon { color: var(--primary-light); }
.btn-neon { 
  background-color: var(--primary); 
  color: white; 
  border: #04f385;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background-color: #04f385;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgb(4 243 133);
  color: #0e0e0e;
}

.feature-card, .testimonial-card { 
  background-color: rgba(17, 17, 17, 0.9); 
  border-radius: 8px; 
  padding: 1.2rem; 
  text-align: center; 
  transition: transform 0.3s ease; 
  border: 1px solid rgba(40, 167, 147, 0.3);
  height: 100%;
}

.feature-card:hover { 
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.cta-banner { 
  background-color: rgba(17, 17, 17, 0.9); 
  padding: 2.5rem 1rem; 
  text-align: center; 
  border-radius: 8px; 
  border: 1px solid rgba(40, 167, 147, 0.3);
}

footer a { 
  color: var(--primary-light); 
  margin-right: 0.8rem; 
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

.social-icons a { 
  margin-right: 0.8rem; 
  color: var(--primary-light); 
  font-weight: bold; 
}

.pricing-box { 
  border: 1px solid var(--primary); 
  border-radius: 8px; 
  padding: 1.5rem; 
  background-color: rgba(17, 17, 17, 0.9);
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.hero-img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.img-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-height: 300px;
  width: 100%;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-dots {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background-color: var(--primary-light);
  transform: scale(1.2);
}

.stats-box {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(40, 167, 147, 0.3);
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  margin: 0 auto 10px;
}

.how-it-works-thumbnail {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(40, 167, 147, 0.5);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.8);
  border: 2px solid var(--primary-light);
  overflow: hidden;
}

.how-it-works-thumbnail img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

#hero .row {
  min-height: 70vh;
  align-items: center;
}

#hero .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

.coming-soon-full {
  background-image: url('https://images.unsplash.com/photo-1682685798254-f3916e6727d3?auto=format&fit=crop&q=80&w=1600');
  background-size: cover;
  background-position: center;
  height: 80vh;
  width: 100%;
  position: relative;
}

.coming-soon-full .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coming-soon-full .text-neon {
  color: #00ff95;
  text-shadow: 0 0 8px #00ff95;
}

.coming-soon-full .btn-neon {
  background-color: transparent;
  border: 2px solid #00ff95;
  color: #00ff95;
  transition: 0.3s;
}

.coming-soon-full .btn-neon:hover {
  background-color: #00ff95;
  color: #000;
  box-shadow: 0 0 12px #00ff95;
}

.chatbox {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 12px;
  padding: 15px;
  border: 1px solid var(--primary-light);
  max-width: 500px;
  margin: 0 auto;
}

.message {
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 6px;
}

.message.bot {
  background: rgba(40, 167, 147, 0.2);
}

.message.user {
  background: rgba(30, 30, 30, 0.6);
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 9999;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

footer {
  position: relative;
  z-index: 100;
  padding-bottom: 60px;
}

/* AI Chatbox Section */
#ai-chatbox img {
  max-width: 100%;
  max-height: 250px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

#ai-chatbox .col-md-6.text-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

/* Message Template Section */
.details-text {
  flex: 1 1 50%;
  text-align: left;
  padding: 20px;
}

.details-text h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #04f385;
  margin-bottom: 15px;
}

.details-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 1rem;
  color: #fff;
}

.details-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.details-text ul li i {
  color: #04f385;
  font-size: 1.2rem;
  margin-top: 3px;
}

.btn-neon-template {
  background-color: #04f385;
  color: #0e0e0e;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(4, 243, 133, 0.5);
}

.btn-neon-template:hover {
  background-color: #00cc70;
  color: #0e0e0e;
  box-shadow: 0 0 20px rgba(4, 243, 133, 0.8);
}

.image-container {
  flex: 1 1 40%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.image-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  border: 1px solid rgba(4, 243, 133, 0.5);
  box-shadow: 0 0 15px rgba(4, 243, 133, 0.3);
  transition: transform 0.4s ease;
}

.image-container img:hover {
  transform: scale(1.03);
}

/* Popup Section Styles */
.popup-container {
  max-width: 700px;
  margin: 40px auto;
}

#popup-box {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border: 1px solid var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: Arial, sans-serif;
  color: var(--light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: glowBorder 2s ease-in-out infinite;
  overflow: hidden;
}

@keyframes glowBorder {
  0%, 100% {
    box-shadow: 0 0 10px var(--glow-color), 0 0 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 20px var(--glow-color), 0 0 30px rgba(0, 0, 0, 0.3);
  }
}

#popup-box:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

#popup-box h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--light);
  transition: color 0.3s ease;
}

#popup-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--light);
  transition: color 0.3s ease;
}

#popup-box p span {
  color: var(--primary-light);
  font-weight: 600;
  transition: color 0.3s ease;
}

.icon {
  background: var(--light);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--primary-light);
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon:hover {
  transform: scale(1.1) rotate(10deg);
  background: var(--primary-light);
  border-color: var(--light);
  color: var(--dark);
}

/* Media Query for Tablets and Smaller (max-width: 768px) */
@media (max-width: 768px) {
  /* Adjust body padding to account for fixed promo bar and navbar */
  body {
    padding-top: 80px;
  }

  /* Promo Bar */
  .promo-bar {
    padding: 6px 0;
    font-size: 0.85rem;
  }

  .promo-text {
    animation: scroll-left 15s linear infinite;
  }

  /* Navbar */
  .navbar {
    padding: 8px 0;
  }

  .navbar-brand img {
    width: 60px;
    height: auto;
  }

  .signin-btn {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  /* Navigation Dots */
  .nav-dots {
    right: 8px;
    gap: 6px;
    transform: translateY(-50%) scale(0.8);
  }

  .nav-dot {
    width: 7px;
    height: 7px;
  }

  /* Hero Section */
  #hero .row {
    min-height: auto;
    text-align: center;
  }

  #hero .col-md-6 {
    padding: 0 1rem;
    margin-bottom: 1rem;
  }

  #hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  #hero .lead {
    font-size: 0.9rem;
  }

  .hero-img-container {
    max-width: 80%;
    margin: 0 auto 1.5rem;
  }

  .hero-img {
    max-height: 200px;
  }

  /* Features Section */
  .feature-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .feature-card h4 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .feature-icon img {
    height: 25px;
  }

  /* Popup Section */
  .popup-container {
    padding: 10px;
    margin: 20px 1rem;
  }

  #popup-box {
    max-width: 90%;
    padding: 12px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #popup-box h3 {
    font-size: 1rem;
  }

  #popup-box p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .icon {
    padding: 10px;
    font-size: 18px;
  }

  /* Integration Sections */
  .section-skew {
    padding: 30px 10px;
  }

  .section-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .integration-img img {
    width: 120px;
    height: 120px;
  }

  .integration-text ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  /* AI Chatbox Section */
  #ai-chatbox .col-md-6 {
    padding: 0 0.8rem;
  }

  #ai-chatbox img {
    max-height: 200px;
  }

  .chatbox {
    padding: 10px;
    max-width: 90%;
  }

  .message {
    font-size: 0.85rem;
    padding: 6px;
  }

  /* Use Cases Section */
  .feature-card {
    padding: 1rem;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* Message Template Section */
  .details-text h3 {
    font-size: 1.4rem;
  }

  .details-text ul li {
    font-size: 0.9rem;
  }

  .image-container img {
    max-width: 100%;
    max-height: 250px;
  }

  /* Pricing Section */
  .pricing-box {
    padding: 1rem;
  }

  .pricing-box h4 {
    font-size: 1.3rem;
  }

  .pricing-box .display-4 {
    font-size: 2rem;
  }

  .pricing-box ul li {
    font-size: 0.85rem;
  }

  /* Testimonials Section */
  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .testimonial-card small {
    font-size: 0.8rem;
  }

  /* How It Works Section */
  .how-it-works-thumbnail {
    width: 100px;
    height: 100px;
  }

  .stats-box {
    padding: 8px;
    min-width: 80px;
  }

  .stats-box .display-6 {
    font-size: 1.5rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 1.5rem 1rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner .lead {
    font-size: 0.9rem;
  }

  /* FAQ Section */
  .accordion-button {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .accordion-body {
    font-size: 0.85rem;
    padding: 0.8rem;
  }

  /* Fixed Footer CTA */
  .fixed-footer-cta {
    padding: 0.5rem 0.8rem;
  }

  .footer-cta-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-cta-content p {
    font-size: 0.8rem;
  }

  .footer-cta-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
    bottom: 70px;
    right: 10px;
  }

  .whatsapp-float img {
    width: 40px;
    height: 40px;
  }

  /* Footer */
  footer {
    padding-bottom: 80px;
  }

  footer .small {
    font-size: 0.8rem;
  }

  footer img {
    max-width: 100px;
  }
}

/* Media Query for Phones (max-width: 576px) */
@media (max-width: 576px) {
  /* Further reduce font sizes and spacing */
  body {
    padding-top: 70px;
  }

  .promo-bar {
    font-size: 0.75rem;
    padding: 5px 0;
  }

  .navbar-brand img {
    width: 50px;
  }

  .signin-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  .nav-dots {
    right: 5px;
    gap: 5px;
  }

  .nav-dot {
    width: 6px;
    height: 6px;
  }

  #hero h1 {
    font-size: 1.5rem;
  }

  #hero .lead {
    font-size: 0.85rem;
  }

  .hero-img-container {
    max-width: 90%;
  }

  .hero-img {
    max-height: 180px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .feature-card h4 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }

  .popup-container {
    padding: 8px;
    margin: 10px 0.5rem;
  }

  #popup-box {
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  #popup-box h3 {
    font-size: 0.9rem;
  }

  #popup-box p {
    font-size: 0.8rem;
  }

  .icon {
    padding: 8px;
    font-size: 16px;
  }

  .integration-img img {
    width: 100px;
    height: 100px;
  }

  .integration-text ul li {
    font-size: 0.85rem;
  }

  .details-text h3 {
    font-size: 1.2rem;
  }

  .details-text ul li {
    font-size: 0.85rem;
  }

  .image-container img {
    max-height: 200px;
  }

  .pricing-box h4 {
    font-size: 1.2rem;
  }

  .pricing-box .display-4 {
    font-size: 1.8rem;
  }

  .pricing-box ul li {
    font-size: 0.8rem;
  }

  .testimonial-card p {
    font-size: 0.85rem;
  }

  .testimonial-card small {
    font-size: 0.75rem;
  }

  .how-it-works-thumbnail {
    width: 80px;
    height: 80px;
  }

  .stats-box .display-6 {
    font-size: 1.2rem;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .cta-banner .lead {
    font-size: 0.85rem;
  }

  .accordion-button {
    font-size: 0.85rem;
  }

  .accordion-body {
    font-size: 0.8rem;
  }

  .footer-cta-content p {
    font-size: 0.75rem;
  }

  .footer-cta-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
}