* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* ===== ACHIEVEMENT INTRO ===== */


/* ===== ACHIEVEMENT GALLERY ===== */
#achievement-gallery {
  padding: 70px 20px;
  background-color: #fdf5e6;
}

#achievement-gallery h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
  
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* ===== ACHIEVEMENT CARD ===== */
.achievement-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.achievement-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e3c72;
}

.card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}


.intro-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #222;
  text-align: center;
  padding: 40px 10px;
}

/* 5 Column Grid */
.intro-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Common Box Style */
.intro-box {
  padding: 35px 20px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.intro-box:hover {
  transform: translateY(-10px);
}

.intro-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.intro-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* Individual Colors */
.box1 { background: linear-gradient(135deg, #ff512f, #dd2476); }
.box2 { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.box3 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.box4 { background: linear-gradient(135deg, #f7971e, #ffd200); color:#222; }
.box5 { background: linear-gradient(135deg, #8e2de2, #4a00e0); }

/* Responsive */
@media (max-width: 1100px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}



/* Two Card Achivement Galary */

.two-image-cards-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-heading {
    padding: 60px 0;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.cards-row {
    display: flex;
    justify-content: center; /* center cards */
    gap: 30px;
    flex-wrap: wrap;
}

.image-card {
    width: 380px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.image-card img {
    width: 50%;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    
}

.card-content {
    padding: 22px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #333;
    text-align: center;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .image-card {
        width: 100%;
        max-width: 420px;
    }
}