.twm-abus-section-wrap {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.twm-abus-section {
  align-items: center;
}

/* Image Container Styles */
.image-container {
  position: relative;
  padding-right: 30px;
}

.main-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.car-image-wrapper {
  position: relative;
  margin-top: -70px;
  margin-left: 50px;
  width: calc(100% - 50px);
}

.car-image {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transform: translateY(-20px);
  animation: float 3s ease-in-out infinite;
}

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

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: linear-gradient(135deg, #8BC34A, #689F38);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
  z-index: 2;
}

.badge-content span.since-text {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  opacity: 0.9;
}

.year-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.years-exp {
  font-size: 10px;
  margin-top: 5px;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  top: 30%;
  left: -40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-item {
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  animation: pulse 2s infinite;
}

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

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 18px;
  color: #8BC34A;
}

.stat-label {
  font-size: 10px;
  color: #666;
}

/* Content Styles */
.content {
  padding-left: 40px;
  position: relative;
}

.section-label {
  font-size: 14px;
  color: #8BC34A;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cm-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cm-title span {
  color: #8BC34A;
  position: relative;
}

.cm-title span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(139, 195, 74, 0.2);
  z-index: -1;
}

.heading-divider {
  width: 60px;
  height: 4px;
  background: #8BC34A;
  margin-bottom: 25px;
  border-radius: 2px;
}

.content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.highlight-first {
  font-size: 18px;
  color: #444;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 195, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8BC34A;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: #333;
}

.feature-content p {
  font-size: 13px;
  margin: 0;
  color: #666;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.cm-btn {
  padding: 14px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cm-btn.primary {
  background: #8BC34A;
  color: #fff;
  box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.cm-btn.primary:hover {
  background: #689F38;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 195, 74, 0.4);
}

.cm-btn.secondary {
  background: transparent;
  color: #8BC34A;
  border: 2px solid #8BC34A;
}

.cm-btn.secondary:hover {
  background: #8BC34A;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .car-image {
    max-width: 350px;
  }
}

@media (max-width: 991px) {
  .content {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .car-image-wrapper {
    margin-left: 0;
    text-align: center;
  }
  
  .floating-stats {
    position: relative;
    flex-direction: row;
    justify-content: center;
    left: 0;
    top: -20px;
    margin-bottom: 20px;
  }
  
  .cm-title {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p-t150 {
    padding-top: 80px;
  }
  
  .p-b120 {
    padding-bottom: 60px;
  }
  
  .cm-title {
    font-size: 32px;
  }
  
  .experience-badge {
    width: 110px;
    height: 110px;
    right: -15px;
  }
  
  .year-title {
    font-size: 26px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .car-image {
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .image-container {
    padding-right: 0;
  }
  
  .main-image {
    height: 300px;
  }
  
  .cm-title {
    font-size: 28px;
  }
}





