
/* Banner Section */
.banner {
  background: url("/skmh.org/images/bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 200px 20px;
  position: relative;
  margin: 7% 0 0 0 ;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
  
}

.banner-text {
  position: relative;
  z-index: 2;
}

.banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Section General */
.section {
  padding: 60px 20px;
}

.container.two-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.text-left {
  flex: 1 1 50%;
}

.text-left h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #0369a1;
}

.text-left p {
  line-height: 1.6;
  color: #374151;
}

.image-right {
  flex: 1 1 40%;
  text-align: center;
}

.image-right img {
  max-width: 100%;
  border-radius: 12px;
}

/* Story Section */
.story-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1 1 45%;
}

.story-text h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #0369a1;
}

.story-text p {
  color: #374151;
  line-height: 1.6;
}

.gallery-right {
 
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-right img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Facilities Grid */
.facilities {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
}

.facilities h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0369a1;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.facility-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.facility-card .facility-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.color-img img {
  width: 70px;
  margin-bottom: 16px;
}

.facility-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111827;
}

.facility-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .container.two-columns, 
  .story-container {
    flex-direction: column;
  }
  
  .banner h1 {
    font-size: 2rem;
  }
}

