/* Reset and Base Styles */

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  line-height: 1.6;

  color: #333;

  overflow-x: hidden;
}

.container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;
}

/* Navigation */

.navbar {
  position: fixed;

  top: 0;

  width: 100%;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 69, 0, 0.1);

  z-index: 1000;

  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  height: 70px;
}

.nav-logo {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 1.5rem;

  font-weight: bold;

  color: #ff4500;
}

.logo-img {
  height: 60px;
  width: auto;
  animation: float 3s ease-in-out infinite;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.bee-icon {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.logo-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.nav-menu {
  display: flex;

  list-style: none;

  gap: 30px;
}

.nav-link {
  text-decoration: none;

  color: #333;

  font-weight: 500;

  position: relative;

  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff4500;
}

.nav-link::after {
  content: "";

  position: absolute;

  bottom: -5px;

  left: 0;

  width: 0;

  height: 2px;

  background: linear-gradient(45deg, #ff4500, #ff6b35);

  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;

  flex-direction: column;

  cursor: pointer;
}

.hamburger span {
  width: 25px;

  height: 3px;

  background: #ff4500;

  margin: 3px 0;

  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ffa500 100%); /* Fallback background */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ffa500 100%);
  z-index: -2;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='hexagons' x='0' y='0' width='50' height='43.4' patternUnits='userSpaceOnUse'%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1' points='24.8,22 37.3,29.2 37.3,43.7 24.8,50.9 12.3,43.7 12.3,29.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23hexagons)'/%3E%3C/svg%3E");
  opacity: 0.3;
  animation: movePattern 20s linear infinite;
  z-index: -1;
}

@keyframes movePattern {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(50px) translateY(43.4px);
  }
}

.hero-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;

  padding: 100px 20px 20px;

  max-width: 1200px;

  margin: 0 auto;
}

.hero-text {
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;

  font-weight: 700;

  color: white;

  margin-bottom: 20px;

  line-height: 1.2;
}

.word {
  display: inline-block;

  opacity: 0;

  transform: translateY(50px);

  animation: wordSlideUp 0.8s ease forwards;
}

.word:nth-child(2) {
  animation-delay: 0.2s;
}

.word:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wordSlideUp {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 30px;

  opacity: 0;

  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;

  gap: 20px;

  opacity: 0;

  animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.btn {
  padding: 15px 30px;

  border: none;

  border-radius: 50px;

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;

  text-decoration: none;

  display: inline-block;

  text-align: center;
}

.btn-primary {
  background: white;

  color: #ff4500;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;

  color: white;

  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;

  color: #ff4500;

  transform: translateY(-3px);
}

/* Hero Visual */

.hero-visual {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  height: 400px;
}

.floating-bee {
  z-index: 2;

  animation: floatBee 4s ease-in-out infinite;
}

@keyframes floatBee {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }

  75% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

.bee-svg {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.orbit-container {
  position: absolute;

  width: 300px;

  height: 300px;
}

.orbit {
  position: absolute;

  border: 2px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  animation: rotate 10s linear infinite;
}

.orbit-1 {
  width: 150px;

  height: 150px;

  top: 75px;

  left: 75px;
}

.orbit-2 {
  width: 200px;

  height: 200px;

  top: 50px;

  left: 50px;

  animation-duration: 15s;

  animation-direction: reverse;
}

.orbit-3 {
  width: 250px;

  height: 250px;

  top: 25px;

  left: 25px;

  animation-duration: 20s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.planet {
  width: 12px;

  height: 12px;

  background: white;

  border-radius: 50%;

  position: absolute;

  top: -6px;

  left: 50%;

  transform: translateX(-50%);

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;

  bottom: 30px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 2;
}

.scroll-arrow {
  width: 30px;

  height: 30px;

  border: 2px solid white;

  border-top: none;

  border-left: none;

  transform: rotate(45deg);

  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  40% {
    transform: rotate(45deg) translateY(-10px);
  }

  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* Section Styles */

.section-header {
  text-align: center;

  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;

  font-weight: 700;

  color: #333;

  margin-bottom: 15px;

  position: relative;
}

.section-title::after {
  content: "";

  position: absolute;

  bottom: -10px;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background: linear-gradient(45deg, #ff4500, #ff6b35);

  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;

  color: #666;

  max-width: 600px;

  margin: 0 auto;
}

/* About Section */

.about {
  padding: 100px 0;

  position: relative;

  background: #f8f9fa;
}

.about-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

  z-index: -1;
}

.about-content {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 60px;

  align-items: start;
}

.about-text {
  display: grid;

  gap: 30px;
}

.about-card {
  background: white;

  padding: 30px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border: 1px solid rgba(255, 69, 0, 0.1);
}

.about-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;

  height: 60px;

  background: linear-gradient(45deg, #ff4500, #ff6b35);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  font-size: 1.5rem;

  color: white;

  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.about-card h3 {
  font-size: 1.3rem;

  color: #333;

  margin-bottom: 15px;
}

.about-card p {
  color: #666;

  line-height: 1.6;
}

.about-stats {
  background: white;

  padding: 30px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  border: 1px solid rgba(255, 69, 0, 0.1);
}

.stat-item {
  text-align: center;

  margin-bottom: 25px;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-number {
  font-size: 2.5rem;

  font-weight: 700;

  color: #ff4500;

  display: block;
}

.stat-label {
  font-size: 0.9rem;

  color: #666;

  margin-top: 5px;
}

/* Services Section */

.services {
  padding: 100px 0;

  position: relative;

  background: #fff;
}

.services-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: radial-gradient(circle at 20% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.05) 0%, transparent 70%);

  z-index: -1;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 57px;

  margin-top: 60px;
}

.service-card {
  background: white;

  padding: 40px 30px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;

  position: relative;

  border: 1px solid rgba(255, 69, 0, 0.1);

  overflow: hidden;
}

.service-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(45deg, #ff4500, #ff6b35);

  transform: scaleX(0);

  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card.featured {
  background: linear-gradient(135deg, #ff4500, #ff6b35);

  color: white;

  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.service-badge {
  position: absolute;

  top: 20px;

  right: 20px;

  background: white;

  color: #ff4500;

  padding: 5px 15px;

  border-radius: 20px;

  font-size: 0.8rem;

  font-weight: 600;
}

.service-icon {
  width: 70px;

  height: 70px;

  background: linear-gradient(45deg, #ff4500, #ff6b35);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;

  font-size: 1.8rem;

  color: white;

  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.service-card.featured .service-icon {
  background: white;

  color: #ff4500;
}

.service-card h3 {
  font-size: 1.4rem;

  margin-bottom: 15px;

  color: #333;
}

.service-card.featured h3 {
  color: white;
}

.service-card p {
  color: #666;

  line-height: 1.6;

  margin-bottom: 20px;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.service-features {
  list-style: none;

  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;

  position: relative;

  padding-left: 20px;

  color: #666;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #ff4500;

  font-weight: bold;
}

.service-card.featured .service-features li::before {
  color: white;
}

.service-price {
  font-size: 1.2rem;

  font-weight: 700;

  color: #ff4500;

  text-align: center;

  padding: 15px;

  background: rgba(255, 69, 0, 0.1);

  border-radius: 10px;
}

.service-card.featured .service-price {
  color: white;

  background: rgba(255, 255, 255, 0.2);
}

/* Contact Section */

.contact {
  padding: 100px 0;

  position: relative;

  background: #f8f9fa;
}

.contact-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

  z-index: -1;
}

.contact-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  margin-top: 60px;
}

.contact-info {
  display: flex;

  flex-direction: column;

  gap: 30px;
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 20px;

  background: white;

  padding: 25px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;

  border: 1px solid rgba(255, 69, 0, 0.1);
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;

  height: 50px;

  background: linear-gradient(45deg, #ff4500, #ff6b35);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-size: 1.2rem;

  flex-shrink: 0;
}

.contact-details h4 {
  color: #333;

  margin-bottom: 5px;
}

.contact-details p {
  color: #666;

  margin: 0;
}

.contact-form {
  background: white;

  padding: 40px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  border: 1px solid rgba(255, 69, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 15px 20px;

  border: 2px solid #e9ecef;

  border-radius: 10px;

  font-size: 1rem;

  transition: border-color 0.3s ease;

  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

  border-color: #ff4500;

  background: white;
}

.form-group textarea {
  resize: vertical;

  min-height: 120px;
}

/* Footer */

.footer {
  background: #333;

  color: white;

  padding: 60px 0 20px;
}

.footer-content {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 40px;

  margin-bottom: 40px;
}

.footer-section .footer-logo {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 1.5rem;

  font-weight: bold;

  color: #ff4500;

  margin-bottom: 20px;
}

.footer-section p {
  color: #ccc;

  line-height: 1.6;

  margin-bottom: 20px;
}

.social-links {
  display: flex;

  gap: 15px;
}

.social-links a {
  width: 40px;

  height: 40px;

  background: #ff4500;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  text-decoration: none;

  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff6b35;

  transform: translateY(-3px);
}

.footer-links h4 {
  color: #ff4500;

  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff4500;
}

.footer-links ul li i {
  color: #ff4500;

  margin-right: 10px;

  width: 15px;
}

.footer-bottom {
  border-top: 1px solid #555;

  padding-top: 20px;

  text-align: center;

  color: #ccc;
}

/* Animations */

.fade-in {
  opacity: 0;

  transform: translateY(30px);

  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;

  transform: translateY(0);
}

.slide-left {
  opacity: 0;

  transform: translateX(-50px);

  transition: all 0.8s ease;
}

.slide-left.visible {
  opacity: 1;

  transform: translateX(0);
}

.slide-right {
  opacity: 0;

  transform: translateX(50px);

  transition: all 0.8s ease;
}

.slide-right.visible {
  opacity: 1;

  transform: translateX(0);
}

.scale-in {
  opacity: 0;

  transform: scale(0.8);

  transition: all 0.8s ease;
}

.scale-in.visible {
  opacity: 1;

  transform: scale(1);
}

/* New Styles */

.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ffa500 100%);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='hexagons' x='0' y='0' width='50' height='43.4' patternUnits='userSpaceOnUse'%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1' points='24.8,22 37.3,29.2 37.3,43.7 24.8,50.9 12.3,43.7 12.3,29.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23hexagons)'/%3E%3C/svg%3E");
  opacity: 0.3;
  animation: movePattern 20s linear infinite;
}

.page-header-content {
  text-align: center;
  color: white;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.service-detail {
  padding: 100px 0;
  position: relative;
}

.service-detail.alt {
  background: #f8f9fa;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff4500, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.service-detail h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.service-detail-subtitle {
  font-size: 1.2rem;
  color: #ff4500;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-features-detailed {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.1);
}

.feature-item i {
  color: #ff4500;
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.feature-item h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-item p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.service-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.mockup-phone {
  width: 250px;
  height: 400px;
  background: #333;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
}

.whatsapp-chat {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #25d366;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 80%;
  font-size: 0.9rem;
}

.message.received {
  background: #f0f0f0;
  align-self: flex-start;
}

.message.sent {
  background: #dcf8c6;
  align-self: flex-end;
}

.services-preview {
  padding: 100px 0;
  background: #fff;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
}

.hero-subtitle-main {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: #333;
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.faq {
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f8f9fa;
}

.faq-question h4 {
  color: #333;
  margin: 0;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  position: relative;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='hexagons' x='0' y='0' width='50' height='43.4' patternUnits='userSpaceOnUse'%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1' points='24.8,22 37.3,29.2 37.3,43.7 24.8,50.9 12.3,43.7 12.3,29.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23hexagons)'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Additional responsive styles for new pages */
@media (max-width: 768px) {
  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-content.reverse {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-subtitle-main {
    font-size: 1.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-mockup {
    height: 300px;
  }

  .mockup-phone {
    width: 200px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 100px 0 60px;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .service-detail {
    padding: 60px 0;
  }

  .service-detail h2 {
    font-size: 2rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle-main {
    font-size: 1.3rem;
  }
}

/* Values and team grid styles */
.values-grid,
.team-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.value-card,
.team-card,
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 69, 0, 0.1);
  text-align: center;
}

.value-card:hover,
.team-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon,
.team-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff4500, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.value-card h3,
.team-card h3,
.feature-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.value-card p,
.team-card p,
.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Dashboard and bot interface mockups */
.bot-interface,
.crm-dashboard,
.website-mockup {
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
  margin: 0 auto;
}

.bot-header,
.dashboard-header {
  background: linear-gradient(45deg, #ff4500, #ff6b35);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.bot-features {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.bot-feature {
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  border: 1px solid rgba(255, 69, 0, 0.1);
}

.dashboard-stats {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-box {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid rgba(255, 69, 0, 0.1);
}

.stat-box .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff4500;
  display: block;
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}

/* Fixed CRM Dashboard */
.crm-dashboard-fixed {
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 350px;
  margin: 0 auto;
}

.dashboard-chart {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
}

.chart-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  text-align: center;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 80px;
  gap: 8px;
}

.chart-bar {
  background: linear-gradient(to top, #ff4500, #ff6b35);
  border-radius: 4px 4px 0 0;
  flex: 1;
  min-height: 20px;
  animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
  from {
    height: 0;
  }
  to {
    height: var(--height, 50%);
  }
}

/* Website mockup styles */
.browser-bar {
  background: #f0f0f0;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
  background: #28ca42;
}

.browser-url {
  background: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  color: #666;
  flex: 1;
}

.website-content {
  padding: 20px;
}

.website-header {
  height: 40px;
  background: linear-gradient(45deg, #ff4500, #ff6b35);
  border-radius: 5px;
  margin-bottom: 15px;
}

.website-body {
  display: grid;
  gap: 10px;
}

.content-block {
  height: 60px;
  background: #f8f9fa;
  border-radius: 5px;
  border: 1px solid rgba(255, 69, 0, 0.1);
}

/* Sticky Background Elements */
.sticky-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Floating Hexagons */
.floating-hexagon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 69, 0, 0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: floatHexagon 8s ease-in-out infinite;
}

.hex-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.hex-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.hex-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

@keyframes floatHexagon {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.7;
  }
}

/* Small Floating Bees */
.floating-bee-small {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 69, 0, 0.2);
  border-radius: 50%;
  animation: floatBeeSmall 10s ease-in-out infinite;
}

.floating-bee-small::before {
  content: "🐝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.bee-1 {
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.bee-2 {
  bottom: 40%;
  left: 5%;
  animation-delay: 5s;
}

@keyframes floatBeeSmall {
  0%,
  100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateX(30px) translateY(-20px) rotate(10deg);
  }
  50% {
    transform: translateX(60px) translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateX(30px) translateY(-30px) rotate(15deg);
  }
}

/* WhatsApp Bubbles */
.whatsapp-bubble {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  animation: bubbleFloat 6s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.bubble-1 {
  top: 20%;
  right: 25%;
  animation-delay: 0s;
}

.bubble-2 {
  bottom: 30%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-25px) scale(1.1);
    opacity: 1;
  }
}

/* Code Snippets */
.code-snippet {
  position: absolute;
  width: 80px;
  height: 60px;
  background: rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  padding: 10px;
  animation: codeFloat 8s ease-in-out infinite;
}

.code-line {
  height: 3px;
  background: rgba(255, 69, 0, 0.4);
  margin-bottom: 5px;
  border-radius: 2px;
  animation: codeBlink 2s ease-in-out infinite;
}

.code-line:nth-child(1) {
  width: 70%;
  animation-delay: 0s;
}

.code-line:nth-child(2) {
  width: 90%;
  animation-delay: 0.5s;
}

.code-line:nth-child(3) {
  width: 60%;
  animation-delay: 1s;
}

.snippet-1 {
  top: 50%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes codeFloat {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.9;
  }
}

@keyframes codeBlink {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Services Page Specific Backgrounds */
.services-header-bg .floating-api-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  animation: apiFloat 8s ease-in-out infinite;
}

.api-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.api-2 {
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.api-3 {
  bottom: 30%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes apiFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

.service-wave {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: waveExpand 6s ease-in-out infinite;
}

.wave-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.wave-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes waveExpand {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.1;
  }
}

/* WhatsApp Section Background */
.whatsapp-bg .whatsapp-message {
  position: absolute;
  animation: messageSlide 8s ease-in-out infinite;
}

.message-bubble {
  background: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.msg-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.msg-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes messageSlide {
  0%,
  100% {
    transform: translateX(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateX(20px);
    opacity: 1;
  }
}

.floating-phone {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(37, 211, 102, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 20px;
  animation: phoneRing 4s ease-in-out infinite;
}

.phone-1 {
  top: 60%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

.api-endpoint {
  position: absolute;
  display: flex;
  align-items: center;
  animation: dataTransfer 5s ease-in-out infinite;
}

.endpoint-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.endpoint-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #25d366, transparent, #25d366);
  margin: 0 10px;
}

.endpoint-1 {
  top: 40%;
  left: 20%;
}

@keyframes dataTransfer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Chatbot Section Background */
.chatbot-bg .floating-bot {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(108, 117, 125, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 22px;
  animation: botThink 6s ease-in-out infinite;
}

.bot-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

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

.chat-bubble {
  position: absolute;
  width: 70px;
  height: 50px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: bubblePop 4s ease-in-out infinite;
}

.bubble-1 {
  top: 40%;
  right: 20%;
  animation-delay: 1s;
}

.typing-indicator {
  display: flex;
  gap: 3px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: #6c757d;
  border-radius: 50%;
  animation: typingDot 1.5s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {
  0%,
  60%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.3);
    opacity: 1;
  }
}

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

.ai-brain {
  position: absolute;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a2be2;
  font-size: 20px;
  animation: brainPulse 5s ease-in-out infinite;
}

.brain-1 {
  bottom: 25%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes brainPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
  }
}

.automation-gear {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(255, 69, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 69, 0, 0.7);
  font-size: 18px;
  animation: gearSpin 8s linear infinite;
}

.auto-1 {
  top: 60%;
  right: 15%;
  animation-delay: 0s;
}

@keyframes gearSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* CRM Section Background */
.crm-bg .floating-dashboard {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(23, 162, 184, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17a2b8;
  font-size: 22px;
  animation: dashboardGlow 6s ease-in-out infinite;
}

.dash-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

@keyframes dashboardGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(23, 162, 184, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(23, 162, 184, 0.6);
    transform: scale(1.1);
  }
}

.data-visualization {
  position: absolute;
  width: 80px;
  height: 50px;
  display: flex;
  align-items: end;
  gap: 5px;
  animation: chartAnimate 4s ease-in-out infinite;
}

.chart-bar {
  background: linear-gradient(to top, #17a2b8, #20c997);
  border-radius: 2px 2px 0 0;
  animation: barGrow 2s ease-in-out infinite;
}

.bar-1 {
  width: 8px;
  height: 20px;
  animation-delay: 0s;
}

.bar-2 {
  width: 8px;
  height: 35px;
  animation-delay: 0.3s;
}

.bar-3 {
  width: 8px;
  height: 25px;
  animation-delay: 0.6s;
}

.viz-1 {
  bottom: 30%;
  left: 15%;
  animation-delay: 1s;
}

@keyframes chartAnimate {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes barGrow {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.3);
  }
}

.customer-profile {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(40, 167, 69, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 20px;
  animation: profilePulse 5s ease-in-out infinite;
}

.profile-1 {
  top: 50%;
  right: 25%;
  animation-delay: 2s;
}

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

.analytics-graph {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 20px;
  animation: graphTrend 7s ease-in-out infinite;
}

.graph-1 {
  bottom: 20%;
  left: 25%;
  animation-delay: 3s;
}

@keyframes graphTrend {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  75% {
    transform: translateY(-5px) rotate(-3deg);
  }
}

/* Website Development Background */
.website-bg .floating-code {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(108, 117, 125, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 22px;
  animation: codeType 6s ease-in-out infinite;
}

.code-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

@keyframes codeType {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.browser-window {
  position: absolute;
  width: 80px;
  height: 60px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: windowFloat 8s ease-in-out infinite;
}

.window-dots {
  display: flex;
  gap: 3px;
  padding: 8px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
}

.window-dots span:nth-child(1) {
  background: #ff5f57;
}
.window-dots span:nth-child(2) {
  background: #ffbd2e;
}
.window-dots span:nth-child(3) {
  background: #28ca42;
}

.window-1 {
  top: 40%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes windowFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.responsive-device {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(255, 69, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4500;
  font-size: 18px;
  animation: deviceRespond 5s ease-in-out infinite;
}

.device-1 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes deviceRespond {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(5deg);
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
  }
}

.seo-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(40, 167, 69, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 20px;
  animation: seoSearch 6s ease-in-out infinite;
}

.seo-1 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

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

/* Contact Page Backgrounds */
.contact-header-bg .floating-envelope {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  animation: envelopeFloat 8s ease-in-out infinite;
}

.env-1 {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

@keyframes envelopeFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}

.communication-wave {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: commWave 6s ease-in-out infinite;
}

.comm-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.comm-2 {
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
}

@keyframes commWave {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

.contact-form-bg .floating-message {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 69, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4500;
  font-size: 20px;
  animation: messageFloat 6s ease-in-out infinite;
}

.msg-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

@keyframes messageFloat {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

.support-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(40, 167, 69, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 20px;
  animation: supportPulse 5s ease-in-out infinite;
}

.support-1 {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes supportPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.6);
  }
}

.location-pin {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(220, 53, 69, 0.2);
  border-radius: 50% 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc3545;
  font-size: 18px;
  animation: pinDrop 4s ease-in-out infinite;
  transform: rotate(-45deg);
}

.pin-1 {
  top: 50%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes pinDrop {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0px);
  }
  50% {
    transform: rotate(-45deg) translateY(-10px);
  }
}

.contact-ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 50%;
  animation: rippleExpand 4s ease-in-out infinite;
}

.ripple-1 {
  top: 40%;
  left: 20%;
  animation-delay: 0s;
}

.ripple-2 {
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes rippleExpand {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.1;
  }
}

/* FAQ Background */
.faq-bg .question-mark {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 20px;
  animation: questionBounce 5s ease-in-out infinite;
}

.q-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

@keyframes questionBounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.answer-bubble {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(40, 167, 69, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 20px;
  animation: answerGlow 6s ease-in-out infinite;
}

.ans-1 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes answerGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.6);
  }
}

.help-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(23, 162, 184, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17a2b8;
  font-size: 18px;
  animation: helpSpin 8s linear infinite;
}

.help-1 {
  bottom: 30%;
  left: 25%;
  animation-delay: 1s;
}

@keyframes helpSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Home Page Service Icons */
.home-services-bg .service-icon-float {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 69, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 69, 0, 0.7);
  font-size: 24px;
  animation: serviceIconFloat 10s ease-in-out infinite;
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.icon-2 {
  top: 30%;
  right: 15%;
  animation-delay: 2.5s;
}

.icon-3 {
  bottom: 40%;
  left: 15%;
  animation-delay: 5s;
}

.icon-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 7.5s;
}

@keyframes serviceIconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-25px) rotate(270deg);
    opacity: 1;
  }
}

.tech-circuit {
  position: absolute;
  width: 120px;
  height: 80px;
  border: 2px solid rgba(255, 69, 0, 0.2);
  border-radius: 10px;
  animation: circuitPulse 6s ease-in-out infinite;
}

.tech-circuit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.5), transparent);
  animation: dataFlow 3s ease-in-out infinite;
}

.circuit-1 {
  top: 50%;
  left: 5%;
  animation-delay: 0s;
}

.circuit-2 {
  bottom: 25%;
  right: 8%;
  animation-delay: 3s;
}

@keyframes circuitPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

/* Home Features Background */
.home-features-bg .feature-badge {
  position: absolute;
  width: 55px;
  height: 55px;
  background: rgba(40, 167, 69, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 22px;
  animation: badgeShine 7s ease-in-out infinite;
}

.badge-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 3.5s;
}

@keyframes badgeShine {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.6);
    transform: scale(1.1);
  }
}

.automation-flow {
  position: absolute;
  display: flex;
  align-items: center;
  animation: flowAnimation 5s ease-in-out infinite;
}

.flow-dot {
  width: 12px;
  height: 12px;
  background: #ff4500;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.flow-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #ff4500, transparent, #ff4500);
  margin: 0 10px;
  animation: flowPulse 3s ease-in-out infinite;
}

.flow-1 {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes flowAnimation {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes flowPulse {
  0%,
  100% {
    background-position: -100% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

/* Responsive adjustments for all new sticky backgrounds */
@media (max-width: 768px) {
  .floating-api-icon,
  .service-wave,
  .whatsapp-message,
  .floating-phone,
  .api-endpoint,
  .floating-bot,
  .chat-bubble,
  .ai-brain,
  .automation-gear,
  .floating-dashboard,
  .data-visualization,
  .customer-profile,
  .analytics-graph,
  .floating-code,
  .browser-window,
  .responsive-device,
  .seo-icon,
  .floating-envelope,
  .communication-wave,
  .floating-message,
  .support-icon,
  .location-pin,
  .contact-ripple,
  .question-mark,
  .answer-bubble,
  .help-icon,
  .service-icon-float,
  .tech-circuit,
  .feature-badge,
  .automation-flow {
    transform: scale(0.8);
  }
}

@media (max-width: 480px) {
  .sticky-bg-elements {
    opacity: 0.6;
  }

  .floating-api-icon,
  .service-wave,
  .whatsapp-message,
  .floating-phone,
  .api-endpoint,
  .floating-bot,
  .chat-bubble,
  .ai-brain,
  .automation-gear,
  .floating-dashboard,
  .data-visualization,
  .customer-profile,
  .analytics-graph,
  .floating-code,
  .browser-window,
  .responsive-device,
  .seo-icon,
  .floating-envelope,
  .communication-wave,
  .floating-message,
  .support-icon,
  .location-pin,
  .contact-ripple,
  .question-mark,
  .answer-bubble,
  .help-icon,
  .service-icon-float,
  .tech-circuit,
  .feature-badge,
  .automation-flow {
    transform: scale(0.6);
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .about-card {
    padding: 25px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}
