/* Global styles */
:root {
  --primary-color: #4A6FE3; /* Changed from WhatsApp green to unique blue */
  --primary-dark: #344FA1; /* Darker shade of blue */
  --secondary-color: #FF8C42; /* Changed to orange accent color */
  --dark-color: #363636;
  --light-color: #f5f5f5;
  --white-color: #ffffff;
  --success-color: #48c774;
  --warning-color: #ffdd57;
  --danger-color: #f14668;
  --accent-color: #1B3280; /* Changed from WhatsApp teal */
  --theme-color: #4A6FE3; /* Main brand color - blue */
  --theme-light-bg: #EBF0FF; /* Light blue chat background */
  --theme-dark-bg: #151E3F; /* Dark blue header */
  --theme-blue: #4A6FE3;
  --theme-dark-blue: #344FA1;
  --theme-light-blue: #D1DDFF;
  --theme-light-gray: #F0F0F0;
  --theme-dark-gray: #2D3250;
  --theme-orange: #FF8C42;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #4a4a4a;
  scroll-behavior: smooth;
  position: relative;
  background-color: #f9f9f9;
}

/* WhatsApp chat bubble pattern for body background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='126' height='84' viewBox='0 0 126 84'%3E%3Cpath d='M84 12l12-12h30v42l-12 12H84z' fill='%2325D366' fill-opacity='0.03'/%3E%3Cpath d='M0 24l12-12h30v42l-12 12H0z' fill='%2325D366' fill-opacity='0.03'/%3E%3Cpath d='M42 54l12-12h30v42l-12 12H42z' fill='%2325D366' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

/* Typography updates */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Hero Section - WhatsApp style */
.hero.is-primary {
  background: linear-gradient(135deg, var(--theme-blue), var(--accent-color));
  position: relative;
  overflow: hidden;
}

/* Add decorative patterns to hero section */
.hero.is-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero.is-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float-background 20s ease-in-out infinite alternate-reverse;
}

@keyframes float-background {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Hero content wrapper - WhatsApp chat bubble style */
.hero-content-wrapper {
  position: relative;
  padding: 2rem;
  padding-top: 50px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.05);
  z-index: 3;
  animation: fadeInUp 1.2s ease-out;
  border: 1px solid rgba(255,255,255,0.2);
}

/* WhatsApp styled badges */
.material-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeInRight 1.2s ease-out;
  animation-fill-mode: both;
}

.material-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--theme-light-bg);
  color: var(--accent-color);
}

.material-badge .material-symbols-outlined {
  font-size: 1.5rem;
  margin-right: 0.6rem;
  color: white;
}

.material-badge:hover .material-symbols-outlined {
  color: var(--accent-color);
}

/* Features section with WhatsApp pattern */
#features {
  position: relative;
  overflow: hidden;
}

#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L20,0 L20,20 L0,20 L0,0 Z M10,17 C13.866,17 17,13.866 17,10 C17,6.134 13.866,3 10,3 C6.134,3 3,6.134 3,10 C3,13.866 6.134,17 10,17 Z' fill='%234A6FE3' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Material design styled feature boxes */
.feature-box {
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 10px; /* Changed from chat bubble shape */
  overflow: hidden;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  position: relative;
  z-index: 1;
  background-color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  background-color: var(--theme-light-bg);
}

/* Services section with WhatsApp pattern */
.has-background-light {
  position: relative;
}

.has-background-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,0 C4.5,0 0,4.5 0,10 C0,15.5 4.5,20 10,20 C15.5,20 20,15.5 20,10 C20,4.5 15.5,0 10,0 Z M10,18 C5.6,18 2,14.4 2,10 C2,5.6 5.6,2 10,2 C14.4,2 18,5.6 18,10 C18,14.4 14.4,18 10,18 Z' fill='%234A6FE3' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* WhatsApp style service cards */
.service-card {
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 10px; /* Changed from chat bubble shape */
  overflow: hidden;
  border-bottom: 4px solid var(--primary-color);
  position: relative;
  z-index: 1;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: var(--theme-light-bg);
}

/* Material design inspired ripple effect */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 10%, transparent 10.5%);
  background-position: center;
  background-size: 1500% 1500%;
  opacity: 0;
  transform: scale(5);
  transition: opacity 0.8s, transform 0.8s;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 0.4;
  transform: scale(1);
  background-size: 100% 100%;
  transition: opacity 0.4s, transform 1.5s;
}

.card-image {
  overflow: hidden;
  position: relative;
}

.card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.card-image img {
  transition: transform 0.5s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

/* Trust indicators */
.trust-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 600;
}

.trust-badge .icon {
  margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-item {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-item:before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 60px;
  color: rgba(37, 211, 102, 0.1);
  font-family: Georgia, serif;
}

.testimonial-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 1rem;
}

.rating-small {
  display: flex;
  align-items: center;
}

.app-store-rating {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 4px solid var(--primary-color);
}

.app-store-rating:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.rating-stars {
  display: inline-flex;
  align-items: center;
}

.rating-stars .icon {
  animation: pulse 2s infinite;
}

.rating-stars .icon:nth-child(1) {
  animation-delay: 0.1s;
}

.rating-stars .icon:nth-child(2) {
  animation-delay: 0.2s;
}

.rating-stars .icon:nth-child(3) {
  animation-delay: 0.3s;
}

.rating-stars .icon:nth-child(4) {
  animation-delay: 0.4s;
}

.rating-stars .icon:nth-child(5) {
  animation-delay: 0.5s;
}

.rating-stars .icon:nth-child(6) {
  animation-delay: 0.6s;
}

.rating-stars .icon:nth-child(7) {
  animation-delay: 0.7s;
}

.rating-stars .icon:nth-child(8) {
  animation-delay: 0.8s;
}

.rating-stars .icon:nth-child(9) {
  animation-delay: 0.9s;
}

.rating-stars .icon:nth-child(10) {
  animation-delay: 1s;
}

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

.testimonial-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Download Section */
.download-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%2325D366' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.download-image {
  max-width: 100%;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  border-radius: 8px;
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* App buttons with improved styling */
.buttons.are-large .app-btn {
  padding: 1.2rem 1.8rem;
  font-size: 1.1rem;
  border-radius: 12px;
  min-width: 180px;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* WhatsApp-style buttons */
.button.is-primary {
  background-color: var(--theme-blue);
  border-color: transparent;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.button.is-primary:hover {
  background-color: var(--theme-dark-blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* WhatsApp-inspired download buttons */
.app-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--theme-blue), var(--accent-color));
  color: white;
  border-radius: 24px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-right: 10px;
}

.app-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: white;
}

/* WhatsApp floating download button */
.floating-download-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-download-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-blue);
  color: white;
  width: auto;
  padding: 12px 20px;
  height: 60px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.floating-download-btn a:hover {
  background-color: var(--theme-dark-gray);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px) scale(1.05);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 111, 227, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(74, 111, 227, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 111, 227, 0);
  }
}

/* WhatsApp message bubbles for testimonials */
.testimonial-item {
  border-radius: 12px;
  background-color: var(--theme-light-blue);
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-item:before {
  content: '';
  position: absolute;
  top: 15px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--theme-light-blue);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 10px;
}

.testimonial-footer {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9em;
}

/* Footer with WhatsApp pattern */
.footer.has-background-primary {
  background: linear-gradient(135deg, var(--theme-dark-blue), var(--theme-dark-gray));
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0C6.716 0 0 6.716 0 15c0 8.284 6.716 15 15 15 8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15zm0 27C8.373 27 3 21.627 3 15S8.373 3 15 3s12 5.373 12 12-5.373 12-12 12z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.2;
}

/* WhatsApp check marks for features */
.feature-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--theme-light-blue);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-icon-container .icon {
  color: var(--theme-dark-blue);
}

.feature-box:hover .feature-icon-container {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--theme-blue);
}

.feature-box:hover .feature-icon-container .icon {
  color: white;
}

/* WhatsApp process step with chat bubble styling */
.process-step {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--theme-light-blue);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  background-color: var(--theme-blue);
  color: white;
  animation: pulse 2s infinite;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

/* WhatsApp-styled chat section */
.chat-container {
  max-width: 400px;
  margin: 0 auto;
  background-color: #E5E9F5; /* Changed to light blue background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chat-header {
  background-color: var(--theme-dark-gray);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--theme-light-gray);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-messages {
  padding: 15px;
  height: 300px;
  overflow-y: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%234A6FE3' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #E5E9F5;
}

.message.received > div:first-child {
  background-color: #fff;
}

.message.sent > div:first-child {
  background-color: var(--theme-light-blue);
}

/* WhatsApp-styled Hero section */
.hero.is-primary {
  background: linear-gradient(135deg, var(--theme-blue), var(--accent-color));
}

/* WhatsApp mobile device styling */
.hero-device-mockup, .device-mockup {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.device-frame, .hero-device-frame {
  position: relative;
  width: 300px;
  height: 600px;
  background-color: #111;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.device-screen, .hero-device-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* Navbar WhatsApp styling */
.navbar.is-primary {
  background-color: var(--theme-dark-gray) !important;
}

/* WhatsApp animation for service cards */
.service-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Media queries to ensure responsiveness */
@media screen and (max-width: 768px) {
  .floating-download-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-download-btn a {
    width: auto;
    height: 50px;
    font-size: 14px;
  }
  
  .process-step, .feature-box, .testimonial-item {
    margin-bottom: 30px;
  }
  
  .device-frame, .hero-device-frame {
    width: 250px;
    height: 500px;
  }
}

/* WhatsApp double check animation */
.double-check {
  color: var(--theme-blue);
  margin-left: 5px;
  position: relative;
}

.double-check:after {
  content: "✓✓";
  font-size: 14px;
  opacity: 0;
  position: absolute;
  right: -20px;
  bottom: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* TaskBid Trusted Seal Styles */
.trusted-seal {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
}

.seal-outer-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 30px rgba(74, 111, 227, 0.2);
  position: relative;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255,255,255,0.2);
}

.seal-outer-ring::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4);
  top: 0;
  left: 0;
  animation: rotate 30s linear infinite;
}

.seal-inner-content {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--theme-blue) 0%, var(--accent-color) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2), 0 0 15px rgba(74, 111, 227, 0.5);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.seal-inner-content::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  top: -30px;
  left: -30px;
}

.seal-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 0 15px rgba(255,255,255,0.5);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.seal-text {
  text-align: center;
}

.seal-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2), 0 0 10px rgba(255,255,255,0.3);
}

.seal-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.seal-stars {
  color: #FFD700;
  font-size: 16px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.seal-stars i {
  margin: 0 1px;
}

.seal-year {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.seal-badge {
  position: absolute;
  top: 70px;
  background-color: var(--theme-orange);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2), 0 0 10px rgba(255, 140, 66, 0.5);
  animation: pulse 2s infinite;
}

.seal-ribbon {
  position: absolute;
  top: 0;
  left: 45%;
  transform: translateX(-50%);
  background-color: var(--theme-orange);
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15), 0 0 10px rgba(255, 140, 66, 0.5);
  border-radius: 4px;
  z-index: 5;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.seal-ribbon::before, .seal-ribbon::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 30px;
  background-color: var(--theme-orange);
  bottom: -15px;
  z-index: -1;
}

.seal-ribbon::before {
  left: 0;
  transform: skewY(30deg);
}

.seal-ribbon::after {
  right: 0;
  transform: skewY(-30deg);
}

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

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

@media screen and (max-width: 768px) {
  .seal-outer-ring {
    width: 250px;
    height: 250px;
  }
  
  .seal-inner-content {
    width: 200px;
    height: 200px;
  }
  
  .seal-icon {
    font-size: 30px;
  }
  
  .seal-title {
    font-size: 24px;
  }
}

/* Enhanced mobile responsiveness throughout the site */
@media screen and (max-width: 768px) {
  .hero-body {
    padding: 3rem 1.5rem;
  }
  
  .hero-content-wrapper {
    padding: 1.5rem;
  }

  .title.mb-5 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
  }

  .subtitle.is-4 {
    font-size: 1.1rem !important;
  }

  .material-badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .material-badge .material-symbols-outlined {
    font-size: 1.2rem;
    margin-right: 0.4rem;
  }

  .buttons.are-large {
    flex-direction: column;
    width: 100%;
  }

  .app-btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0 !important;
    justify-content: center;
  }

  .trusted-seal {
    max-width: 280px;
  }

  .seal-outer-ring {
    width: 250px;
    height: 250px;
  }
  
  .seal-inner-content {
    width: 200px;
    height: 200px;
  }
  
  .seal-icon {
    font-size: 30px;
  }
  
  .seal-title {
    font-size: 22px;
  }

  .seal-badge {
    bottom: 120px;
  }

  /* Improve column stacking on mobile */
  .columns:not(.is-desktop) {
    margin: 0;
  }

  .column {
    padding: 0.5rem;
  }

  section {
    padding: 3rem 1rem !important;
  }

  /* Make process steps more compact on mobile */
  .process-step {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin: 0 auto 15px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 10px auto;
    display: block;
    text-align: center;
  }

  /* Make feature boxes more readable on mobile */
  .feature-box {
    margin-bottom: 15px;
    padding: 1.2rem;
  }

  /* Adjust service cards for better mobile display */
  .service-card {
    margin-bottom: 20px;
  }

  /* Improve testimonials on mobile */
  .testimonial-item {
    margin-bottom: 15px;
  }

  /* Make footer more compact */
  footer.footer {
    padding: 2rem 1rem 1rem !important;
  }

  .is-flex.is-justify-content-center {
    flex-wrap: wrap;
  }

  /* Make WhatsApp section more mobile-friendly */
  .whatsapp-section .columns {
    display: flex;
    flex-direction: column-reverse;
  }

  .chat-container {
    margin-bottom: 2rem;
    height: 400px;
  }

  .whatsapp-benefit-item {
    padding: 10px;
    margin-bottom: 15px;
  }
}

/* Small phone optimization */
@media screen and (max-width: 480px) {
  .hero-content-wrapper {
    padding: 1.2rem;
  }
  
  .title.mb-5 {
    font-size: 1.5rem !important;
  }
  
  .subtitle.is-4 {
    font-size: 1rem !important;
  }
  
  .material-badge {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }
  
  .trusted-seal {
    max-width: 220px;
  }
  
  .seal-outer-ring {
    width: 200px;
    height: 200px;
  }
  
  .seal-inner-content {
    width: 160px;
    height: 160px;
  }
  
  .seal-title {
    font-size: 18px;
  }
  
  .seal-subtitle {
    font-size: 12px;
  }
  
  .seal-badge {
    bottom: 90px;
    padding: 4px 12px;
    font-size: 10px;
  }
  
  .seal-ribbon {
    font-size: 12px;
    padding: 6px 15px;
  }
}

/* Service Request Wizard Modal Styles */
#service-request-modal .modal-card {
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

#service-request-modal .modal-card-head {
  background-color: var(--theme-blue);
  color: white;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

#service-request-modal .modal-card-title {
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
}

#service-request-modal .modal-card-body {
  padding: 1.5rem;
}

#service-request-modal .modal-card-foot {
  background-color: #f5f5f5;
  border-top: none;
  justify-content: space-between;
  display: flex;
  border-radius: 0 0 12px 12px;
  padding: 1rem 1.5rem;
}

/* Step indicators */
.step-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #777;
  position: relative;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background-color: var(--theme-blue);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(74, 111, 227, 0.3);
}

.step-indicator.completed {
  background-color: var(--success-color);
  color: white;
}

.step-indicator.completed::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-line {
  flex: 1;
  height: 3px;
  background-color: #e0e0e0;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--theme-blue);
  transition: width 0.4s ease;
}

.step-indicator.completed + .step-line::after,
.step-indicator.active + .step-line::after {
  width: 100%;
}

/* Step content */
.step-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.step-content.active {
  display: block;
}

/* Service options */
.service-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1.5rem;
}

.service-option {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 1rem;
  text-align: center;
}

.service-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}

.service-option.selected {
  border-color: var(--theme-blue);
  background-color: rgba(74, 111, 227, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(74, 111, 227, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--theme-blue);
}

.service-title {
  font-weight: 500;
  color: #444;
}

.service-option.selected .service-title {
  color: var(--theme-blue);
  font-weight: 600;
}

/* Service request fixed button */
.service-request-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.service-request-button .button {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-request-button .button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .step-indicator {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .service-option {
    width: 100px;
    height: 100px;
  }
  
  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .service-title {
    font-size: 0.9rem;
  }
  
  .service-request-button {
    bottom: 20px;
    right: 20px;
  }
  
  .service-request-button .button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  #service-request-modal .modal-card-head,
  #service-request-modal .modal-card-foot {
    padding: 1rem;
  }
  
  #service-request-modal .modal-card-body {
    padding: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .step-indicator {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .step-line {
    margin: 0 5px;
  }
  
  .service-options {
    gap: 15px;
  }
  
  .service-option {
    width: 90px;
    height: 90px;
  }
  
  .service-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .service-title {
    font-size: 0.8rem;
  }
  
  .service-request-button {
    bottom: 15px;
    right: 15px;
  }
  
  .service-request-button .button span:not(.icon) {
    display: none;
  }
  
  .service-request-button .button .icon {
    margin-right: 0;
  }
}

/* Call-to-Action Section Styles */
#request-service-cta {
  background: linear-gradient(135deg, var(--theme-blue), var(--accent-color));
  position: relative;
  overflow: hidden;
}

#request-service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-features {
  margin-bottom: 2rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cta-button-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

#cta-request-service {
  padding: 1.5rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#cta-request-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Media queries for the CTA section */
@media screen and (max-width: 768px) {
  .cta-feature-item {
    font-size: 1rem;
  }
  
  .cta-button-container {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  #cta-request-service {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .cta-button-container {
    padding: 1.25rem;
  }
  
  #cta-request-service {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }
}

/* Problem description field styles */
#problem-description {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-width: 2px;
}

#problem-description:focus {
  border-color: var(--theme-blue);
  box-shadow: 0 0 0 0.125em rgba(74, 111, 227, 0.25);
}

#problem-description.is-danger {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
}

#problem-description.is-warning {
  border-color: var(--warning-color);
  box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

#problem-description.is-success {
  border-color: var(--success-color);
  box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
}

.description-progress {
  height: 3px;
  background-color: #e0e0e0;
  width: 100%;
  margin-top: -3px;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  display: none;
}

.description-progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--theme-blue);
  transition: width 0.3s ease;
}

.field:focus-within .description-progress {
  display: block;
}

/* Image upload styles */
.file-cta {
  background-color: var(--theme-light-blue);
  color: var(--theme-dark-blue);
  border-color: var(--theme-light-blue);
  transition: all 0.3s ease;
}

.file-cta:hover {
  background-color: var(--theme-blue);
  border-color: var(--theme-blue);
  color: white;
}

.file-name {
  border-color: var(--theme-light-blue);
  transition: all 0.3s ease;
}

.file:hover .file-name {
  border-color: var(--theme-blue);
}

.file.is-fullwidth {
  width: 100%;
}

.file.is-fullwidth .file-label {
  width: 100%;
}

.file.is-fullwidth .file-name {
  width: 100%;
  max-width: unset;
}

#image-previews .card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

#image-previews .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#image-previews .image {
  position: relative;
}

.image-delete-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#image-previews .card:hover .image-delete-button {
  opacity: 1;
}

#image-preview-container {
  animation: fadeIn 0.5s ease;
}

@media screen and (max-width: 768px) {
  #image-previews .column {
    padding: 0.5rem;
  }
  
  .image-delete-button {
    opacity: 1;
  }
}

/* Common problems dropdown styles */
#common-problems {
  border-color: #dbdbdb;
  border-radius: 4px;
  color: #363636;
  transition: all 0.3s ease;
}

#common-problems:hover {
  border-color: var(--theme-light-blue);
}

#common-problems:focus {
  border-color: var(--theme-blue);
  box-shadow: 0 0 0 0.125em rgba(74, 111, 227, 0.25);
}

/* When there's a value selected, highlight the dropdown */
#common-problems:not([value=""]) {
  border-color: var(--theme-blue);
  color: var(--theme-dark-blue);
  font-weight: 500;
}

#common-problems option {
  padding: 8px;
}

/* Style for the dropdown container */
.select:not(.is-multiple):not(.is-loading)::after {
  border-color: var(--theme-blue);
}

/* Video Section Styles */
.has-background-gradient-light {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-5px);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.has-shadow {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.key-benefits .benefit-item {
  transition: all 0.3s ease;
}

.key-benefits .benefit-item:hover {
  transform: translateX(5px);
}

.key-benefits .icon-text {
  display: flex;
  align-items: center;
}

.key-benefits .icon-text .icon {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .key-benefits {
    margin-top: 2rem;
    padding-left: 0 !important;
  }
}