.heros {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  min-height: 100vh;
  gap:40px;
}

/* Blue Background Block */
.yellows-block {
  position: absolute;
  left: 0;
  top: 50%;
  width: 380px;
  height: 50%;
  background: #0057b8; /* Premium Blue */
  z-index: -1;
  border-radius: 0 40px 40px 0;
  transform: translateY(-100%);
  margin-top: -100px;
}

/* Floating Glow Blobs (Blue & Yellow) */
.blobs {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 6s infinite alternate ease-in-out;
}

/*.blob1 { width: 260px; height: 260px; background: #f8d40a; top: 10%; left: 60%; } /* Yellow */
/*.blob2 { width: 300px; height: 300px; background: #0071e3; bottom: 10%; left: 5%; } /* Light Blue */

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-25px); }
}

.content3-card {
  max-width: 700px;
  padding: 40px;
  background: rgb(255, 255, 255);
  /*backdrop-filter: blur(16px);*/
  border-radius: 22px;
  border: 1px solid rgba(14, 13, 13, 0.52);
  box-shadow: 0 12px 45px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .4s ease;
  margin-top: -100px;
  margin-right: -100px;
  margin-left: 100px;
  justify-content: center;
}
.content3-card h1 {
  font-size: 38px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #003c96;
}
.image3-box img {
  width: 500px;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.25));
  transition: transform .5s ease;
  margin-top: -100px;
  margin-left: -10px;
}

/* Why Choose AWS */
.why-aws {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.why-aws h2 {
  color: #003366;
  margin-bottom: 40px;
  margin-top: -50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 250px;
}

.feature-item:hover {
  transform: translateY(-6px);
}

.feature-item img {
  width: 70px;
  margin-bottom: 10px;
}

/* Zigzag Layout */
.aws-zigzag {
  padding: 90px 0;
}

.aws-zigzag .container {
  width: 85%;
  margin: auto;
}

/* Each Zigzag Row */
.zigzag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 90px;

  /* Animation base */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

/* Reverse Layout */
.zigzag-item.reverse {
  flex-direction: row-reverse;
}

/* When Visible */
.zigzag-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Image Box */
.zigzag-img img {
  width: 420px;
  max-width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s ease;
}

/* Hover Effect (optional) */
.zigzag-img img:hover {
  transform: scale(1.03);
}

/* Text Section */
.zigzag-text {
  max-width: 560px;
  text-align: justify;
}

.zigzag-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0057b8;   /* Premium Cloud Blue */
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.zigzag-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #2d2d2d;
}

/* --------------------------
   Animations
---------------------------*/

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease-out;
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease-out;
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------
   Responsive
---------------------------*/

@media(max-width: 820px) {

  .zigzag-item {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .zigzag-item.reverse {
    flex-direction: column;
  }

  .zigzag-img img {
    width: 320px;
  }

  .zigzag-text {
    max-width: 100%;
  }
}
/* AWS Plans */
.aws-plans {
  background: var(--light-bg);
  padding: 90px 0;
  text-align: center;
  margin-top: -150px;
}

.aws-plans h2 {
  color: #003366;
  font-size: 2em;
  margin-bottom: 50px;
}

.plan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.plan-card {
  background: var(--white);
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  width: 280px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.plan-card h3 {
  color: #CC0000;
  font-size: 1.4em;
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  line-height: 1.8;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Premium */
.premium {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(204, 0, 0, 0.25);
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease-out;
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease-out;
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content, .zigzag-item {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img, .zigzag-img img {
    width: 100%;
    max-width: 350px;
  }

  .zigzag-text {
    text-align: center;
  }
}
