.alpha_news1-con {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.alpha_news1-con .alpha-news-text h2 {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alpha_news1-con .alpha-news-text p {
  color: #222;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
}

.alpha_news1-con .alpha-news-img img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

/* Floating Animation */
/* @keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
} */

/* =============================
   ✅ RESPONSIVE DESIGN BREAKPOINTS
   ============================= */

/* Extra Small Devices (Mobile Phones): max-width: 576px */
@media (max-width: 576px) {
  .alpha_news1-con {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .alpha_news1-con .alpha-news-text h2 {
    font-size: 26px;
  }

  .alpha_news1-con .alpha-news-text p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 5px;
  }

  .alpha_news1-con .alpha-news-img img {
    width: 280px;
    margin-top: 20px;
  }
}

/* Small Devices (Tablets): min-width: 577px and max-width: 768px */
@media (min-width: 577px) and (max-width: 768px) {
  .alpha_news1-con {
    flex-direction: row;
  }

  .alpha_news1-con .alpha-news-text h2 {
    font-size: 30px;
  }

  .alpha_news1-con .alpha-news-text p {
    font-size: 16px;
  }

  .alpha_news1-con .alpha-news-img img {
    width: 350px;
    margin-top: 25px;
  }
}

/* Medium Devices (Small Laptops): min-width: 769px and max-width: 992px */
@media (min-width: 769px) and (max-width: 992px) {
  .alpha_news1-con .alpha-news-text h2 {
    font-size: 34px;
  }

  .alpha_news1-con .alpha-news-text p {
    font-size: 16px;
    line-height: 1.8;
    padding-right: 10px;
  }

  .alpha_news1-con .alpha-news-img img {
    width: 400px;
  }
}

/* Large Devices (Desktops): min-width: 993px and max-width: 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
  .alpha_news1-con .alpha-news-text h2 {
    font-size: 38px;
  }

  .alpha_news1-con .alpha-news-text p {
    font-size: 17px;
  }

  .alpha_news1-con .alpha-news-img img {
    width: 480px;
  }
}


.alpha_news2-con {
  background: #fff;
  padding: 40px 20px;
}

.alpha_news2-con .news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  padding: 20px;
  border: 2px solid #8d8a8a;
}

.alpha_news2-con .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.alpha_news2-con .news-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.alpha_news2-con .news-card:hover .news-img {
  transform: scale(1.03);
}

.alpha_news2-con .news-content {
  padding: 18px 15px;
}

.alpha_news2-con .news-title {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.alpha_news2-con .news-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* =============================
   ✅ RESPONSIVE BREAKPOINTS
   ============================= */

/* Extra Small Devices (Mobile Phones): max-width: 576px */
@media (max-width: 576px) {
  .alpha_news2-con {
    padding: 25px 10px;
  }

  .alpha_news2-con .news-card {
    padding: 15px;
  }

  .alpha_news2-con .news-img {
    height: 180px;
  }

  .alpha_news2-con .news-title {
    font-size: 16px;
  }

  .alpha_news2-con .news-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Small Devices (Tablets): min-width: 577px and max-width: 768px */
@media (min-width: 577px) and (max-width: 768px) {
  .alpha_news2-con {
    padding: 30px 15px;
  }

  .alpha_news2-con .news-card {
    padding: 18px;
  }

  .alpha_news2-con .news-img {
    height: 200px;
  }

  .alpha_news2-con .news-title {
    font-size: 17px;
  }

  .alpha_news2-con .news-desc {
    font-size: 14.5px;
  }
}

/* Medium Devices (Small Laptops): min-width: 769px and max-width: 992px */
@media (min-width: 769px) and (max-width: 992px) {
  .alpha_news2-con .news-card {
    padding: 20px;
  }

  .alpha_news2-con .news-img {
    height: 210px;
  }

  .alpha_news2-con .news-title {
    font-size: 17.5px;
  }

  .alpha_news2-con .news-desc {
    font-size: 15px;
  }
}

/* Large Devices (Desktops): min-width: 993px and max-width: 1200px */
@media (min-width: 993px) and (max-width: 1200px) {
  .alpha_news2-con {
    padding: 50px 30px;
  }

  .alpha_news2-con .news-img {
    height: 230px;
  }

  .alpha_news2-con .news-title {
    font-size: 18px;
  }

  .alpha_news2-con .news-desc {
    font-size: 15.5px;
  }
}


