/* ============================
   🌐 Global Styles
============================ */
/* body {
  background: #f5f7fa; 
  font-family: "Arial", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
} */

/* ============================
   🖼️ Swiper (Hero Slider)
============================ */
.index--section {
  width: 100%;
  position: relative;
  z-index: 1;
}

.mySwiper {
  margin-top: 70px;
  width: 100%;
  /* height: 350px; */
  height: calc(45vh - 70px);
  overflow: hidden;
  border-radius: 0 !important;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}



/* ============================
   🌍 International Linkage Overview
============================ */
.international-linkage {
  max-width: 1100px;
  margin: 100px auto 60px auto;
  padding: 60px;
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  line-height: 1.9;
  border-left: 6px solid #004080;
  transition: all 0.3s ease;
}

.international-linkage:hover {
  box-shadow: 0 10px 30px rgba(0, 64, 128, 0.15);
}

.international-linkage h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #004080;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.international-linkage p {
  margin-bottom: 22px;
  font-size: 17px;
  text-align: justify;
  color: #333;
}

.international-linkage strong {
  color: #0066cc;
  font-weight: 600;
}




/* ============================
   📰 News / Achievements Grid
============================ */
.achievements-section .container {
  max-width: 1200px;
  margin: 30px auto 20px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.achievement-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* Image */
.achievement-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-image img {
  transform: scale(1.05);
}

/* Text */
.achievement-text {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.achievement-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a2a66;
  margin-bottom: 10px;
  border-left: 5px solid #007bff;
  padding-left: 10px;
}

.achievement-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.achievement-venue {
  font-size: 0.9rem;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 10px;
}

/* Button */
.btn-view {
  margin-top: auto;
  display: block;
  text-align: center;
  background: #007bff;
  color: #fff;
  padding: 12px 0;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-view:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Responsive Grid */
@media (max-width: 992px) {
  .achievements-section .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .achievements-section .container {
    grid-template-columns: 1fr;
  }
}


