.corporate-bg{
  width:100%;
  background: #eff6ff;
}
.corporate-offer {
    padding: 94px 15px 15px 15px;
    display: flex;
    gap: 21px;
    max-width: 1207px;
    margin: 0 auto;
}
.corporate-offernew {
  list-style: none;
  margin-bottom: 36px;
}

.corporate-offernew li {
  align-items: center;
  gap: 10px;
  margin-bottom: 12px; 
  color: #374151; font-weight:bold;
}

.corporate-offernew li::before {
  color: #1d4ed8;
  font-weight: bold;
}
.benefits-area {
  max-width: 520px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 11px;
}

.icon-shape {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1e40af;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.icon-shape:hover {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1d4ed8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px; cursor:pointer;
}

.corporate-content h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 4px;
}

.corporate-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}
.badge-corporate{    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1e3a8a;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}
/*slider section */
.slider {
  width: 570px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* SLIDES */
.slides {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

/* PRICE CARD */
.price-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.small {
  font-size: 13px;
  color: #6b7280;
}

.price-left h3 {
  font-size: 24px;
  margin: 6px 0;
  color: #111827;
}

.price-left h3 span {
  font-size: 14px;
  color: #6b7280;
}

.price-left p {
  font-size: 13px;
  color: #6b7280;
}

.rating {
  font-weight: 600;
  color: #111827;
}

/* NAV BUTTONS */
.nav-cor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.prev { left: 12px; }
.next { right: 12px; }

.nav-cor:hover {
  background: rgba(0,0,0,0.7);
}
.price-card {
  animation: none;
}

.price-card.animate {
  animation: slideUpFade 0.5s ease;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width:768px) { 
.corporate-offer {
    background: #f8fbff;
    padding: 28px 15px 50px 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display:block;
    gap: 10px;
}
.slider{width:100%; margin-top:20px;}
}