/* =========================
   BASE
========================= */
.container1 {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 5px 0;
  background: linear-gradient(
  135deg,
  #0f2a44 0%,
  #1b3c6b 45%,
  #2f5aa8 100%
);

  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #ffedb5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 16px;
  color: #e0e7ff;
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  background: linear-gradient(135deg, #ffb703, #ff8c00);
  color: #000000;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255,183,3,0.45);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255,140,0,0.6);
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #1b3c6b;
}

/* =========================
   HERO POINTS
========================= */
.hero-points {
  list-style: none;
  padding-left: 0;
}

.hero-points li {
  padding-left: 26px;
  margin-bottom: 10px;
  position: relative;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffb703;
  font-weight: bold;
}

/* =========================
   HERO IMAGE
========================= */
.hero-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

.image-caption {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: #c7d2fe;
}

/* =========================
   FEATURE STRIP
========================= */
.feature-strip {
  background: #ffffff;
  padding: 70px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.feature-box {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  padding: 32px;
  border-radius: 20px;
  border-left: 6px solid #2563eb;
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.feature-box:nth-child(2) {
  border-left-color: #ff8c00;
}

.feature-box:nth-child(3) {
  border-left-color: #22c55e;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

/* =========================
   FOUNDATION SECTION
========================= */
.foundation {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff, #f0f5ff);
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.foundation-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin: 25px 0;
}

.mini-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border-left: 5px solid #3f5efb;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.mini-card:hover {
  background: linear-gradient(135deg, #3f5efb, #1b3c6b);
  color: #ffffff;
  transform: translateY(-6px);
}

/* =========================
   FACILITIES LIST
========================= */
.facility-list {
  list-style: none;
  padding-left: 0;
}

.facility-list li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

.facility-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* =========================
   GALLERY
========================= */
.gallery {
  background: #ffffff;
  padding: 20px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 35px 80px rgba(63,94,251,0.4);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef3ff, #ffffff);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 20px;
  border-top: 6px solid #2563eb;
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.testimonial-card:nth-child(2) {
  border-top-color: #ff8c00;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* =========================
   HEADINGS ACCENT
========================= */
h2 {
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffb703, #ff8c00);
  display: block;
  margin-top: 10px;
  border-radius: 4px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero-grid,
  .feature-grid,
  .foundation-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}
