/* Modern Promotional Banners Design */
:root {
  --orange-primary: #FF8C00;
  --orange-secondary: #FFA500;
  --blue-primary: #1E90FF;
  --blue-secondary: #4169E1;
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
}

/* Override default info-boxes styling */
.info-boxes {
  margin: 40px 0;
  padding: 0;
}

.info-boxes-inner {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.info-boxes .info-box {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-boxes .info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--orange-primary);
}

/* Individual banner styling */
.info-boxes .info-box:nth-child(1) {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
  color: var(--white);
}

.info-boxes .info-box:nth-child(1):hover {
  border-color: var(--orange-secondary);
}

.info-boxes .info-box:nth-child(2) {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-secondary) 100%);
  color: var(--white);
}

.info-boxes .info-box:nth-child(2):hover {
  border-color: var(--blue-secondary);
}

.info-boxes .info-box:nth-child(3) {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
  color: var(--white);
}

.info-boxes .info-box:nth-child(3):hover {
  border-color: var(--orange-secondary);
}

/* Heading styles */
.info-boxes .info-box .info-box-heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 8px 0;
  font-family: 'Montserrat', sans-serif;
  color: inherit;
}

.info-boxes .info-box .info-box-heading.green {
  color: inherit;
  background: none;
}

/* Text styles */
.info-boxes .info-box .text {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
}

/* Add decorative elements */
.info-boxes .info-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

.info-boxes .info-box:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* Add icons for each banner */
.info-boxes .info-box::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.info-boxes .info-box:nth-child(1)::after {
  content: '💰';
  font-size: 20px;
  opacity: 0.7;
}

.info-boxes .info-box:nth-child(2)::after {
  content: '🚚';
  font-size: 20px;
  opacity: 0.7;
}

.info-boxes .info-box:nth-child(3)::after {
  content: '🏷️';
  font-size: 20px;
  opacity: 0.7;
}

/* Responsive design */
@media (max-width: 768px) {
  .info-boxes .info-box {
    padding: 25px 15px;
    height: 120px;
    margin-bottom: 15px;
  }
  
  .info-boxes .info-box .info-box-heading {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .info-boxes .info-box .text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .info-boxes .info-box {
    padding: 20px 10px;
    height: 100px;
  }
  
  .info-boxes .info-box .info-box-heading {
    font-size: 13px;
    margin-bottom: 5px;
  }
  
  .info-boxes .info-box .text {
    font-size: 11px;
  }
}

/* Animation for new elements */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-boxes .info-box {
  animation: slideInUp 0.6s ease forwards;
}

.info-boxes .info-box:nth-child(1) {
  animation-delay: 0.1s;
}

.info-boxes .info-box:nth-child(2) {
  animation-delay: 0.2s;
}

.info-boxes .info-box:nth-child(3) {
  animation-delay: 0.3s;
}

/* Pulse effect for special emphasis */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

.info-boxes .info-box:nth-child(3) {
  animation: pulse 2s infinite;
}