/* ABOUT SECTION — shared styles
   Uses your site's container width and top-bar/footer styles from ../style.css
*/

/* layout */
.about-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 30px 20px;
}

/* SIDEBAR */
.about-sidebar {
  background: #f8faf9;
  border: 1px solid #e6e9ea;
  padding: 22px;
  border-radius: 8px;
  height: auto;
  position: sticky;
  top: 80px; /* keeps sidebar visible on scroll (adjust if needed) */
  align-self: start;
}

.about-sidebar h3 {
  font-size: 1.05rem;
  color: #0f5132;    /* darker green */
  margin-bottom: 12px;
  font-weight: 700;
}

.about-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-nav li + li {
  margin-top: 8px;
}

.about-nav a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: #1f2937;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: all .18s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.6));
}

.about-nav a:hover {
  background: #f0fdf4;
  border-color: #d1fae5;
  transform: translateX(4px);
  color: #065f46;
}

.about-nav a.active {
  background: #e6f9e9;
  border-left: 4px solid #1e8d35; /* green accent */
  color: #064e3b;
  font-weight: 700;
}

/* MAIN AREA */
.about-main {
  min-height: 300px;
}

/* small hero stripe */
.about-hero-small {
  background: linear-gradient(90deg, rgba(38,99,46,0.06), rgba(200,180,130,0.04));
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(20,83,45,0.04);
}

.about-hero-inner h1 {
  color: #064e3b;
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-hero-inner p {
  margin: 0;
  color: #374151;
  font-size: 0.98rem;
}

/* content grid below hero */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 14px;
}

/* gallery / image side */
.about-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(3, 41, 28, 0.06);
}

/* text block(s) */
.about-text-block {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eef2f1;
  box-shadow: 0 6px 18px rgba(15, 23, 15, 0.03);
}

.about-text-block.fullwidth {
  grid-column: 1 / -1;
}

.about-text-block h2 {
  color: #0f5132;
  margin-top: 0;
  font-size: 1.35rem;
}

.about-text-block h3 {
  color: #1e6f3a;
  margin-bottom: 8px;
  text-align: center;
  
}

.about-text-block p {
  color: #374151;
  line-height: 1.8;
  text-align: justify;
}

/* milestones list */
.milestones {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 18px;
  align-items: start;
}

.milestone-year {
  background: #fff6e6;
  color: #995b00;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #f3e0c1;
}

.milestone-desc {
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #eef2f1;
}

/* founder photo */
.founder-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 320px;
  box-shadow: 0 8px 26px rgba(3,41,28,0.06);
}

/* lists */
.mission-list,
.administration-list {
  list-style: disc;
  padding-left: 20px;
}

/* responsive */
@media (max-width: 992px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-sidebar { position: relative; top: 0; margin-bottom: 18px; }
  .about-content-grid { grid-template-columns: 1fr; }
  .about-gallery img { height: 180px; }
  .founder-photo img { height: 220px; }
}
/* founder photo */
.founder-photo {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically if there's extra space */
  grid-column: 1 / -1;     /* makes the image span full width across grid */
  text-align: center;
}


.founder-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px; /* adjust as needed */
  border-radius: 8px;
  object-fit: contain; /* ensures the full head is visible */
  box-shadow: 0 8px 26px rgba(3,41,28,0.06);
  margin: 0 auto;
}
.administration-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 18px;
}

.administration-list li {
  margin-bottom: 15px;
}

.administration-list a {
  text-decoration: none;
  color: #007BFF;
  transition: color 0.3s ease;
}

.administration-list a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.syndicate-header h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #064e3b;
}

.syndicate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.syndicate-table th,
.syndicate-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.syndicate-table th {
  background-color: #4CAF50;
  color: white;
}

.syndicate-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.syndicate-table td {
  font-size: 16px;
}

.syndicate-table td:first-child {
  font-weight: bold;
}
.senate-header h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #064e3b;
}

.section-header h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
.deans-header h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #064e3b;
}

.deans-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.deans-table th,
.deans-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.deans-table th {
  background-color: #4CAF50;
  color: white;
}

.deans-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.deans-table td {
  font-size: 16px;
}

.deans-table td:first-child {
  font-weight: bold;
}
.hod-header h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #064e3b;
}

.hod-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.hod-table th,
.hod-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.hod-table th {
  background-color: #4CAF50;
  color: white;
}

.hod-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.hod-table td {
  font-size: 16px;
}

.hod-table td:first-child {
  font-weight: bold;
}
.university-officers-header h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.university-officers-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.university-officers-table th,
.university-officers-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.university-officers-table th {
  background-color: #4CAF50;
  color: white;
}

.university-officers-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.university-officers-table td {
  font-size: 16px;
}

.university-officers-table td:first-child {
  font-weight: bold;
}

.university-officers-table a {
  color: #007BFF;
  text-decoration: none;
}

.university-officers-table a:hover {
  text-decoration: underline;
}
 .about-main img {
      width: 100%;
      max-width: 800px;
      border-radius: 8px;
      margin: 15px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .lab-section {
      margin-bottom: 30px;
    }
    .lab-section img {
      margin-top: 10px;
    }
.research-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .research-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .research-card .card-content {
      padding: 15px;
    }

    .research-card h4 {
      color: #b30505;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .research-card p {
      font-size: 0.9rem;
      color: #333;
      line-height: 1.5;
    }

    .image-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: center;
}

.image-row .small-img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  object-fit: cover;
}
/* ---------- Patents & IPR Page ---------- */
.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.about-img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.about-img:hover {
  transform: scale(1.05);
}
/* === Counseling & Welfare Page Enhancements === */

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.about-image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-image-grid img:hover {
  transform: scale(1.03);
}

.about-image-wide {
  margin: 25px 0;
}

.about-image-wide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-image-wide img:hover {
  transform: scale(1.02);
}

/* Improve spacing for headings and paragraphs */
.about-main h3 {
  margin-top: 30px;
  color: #b71c1c; /* subtle deep red accent (matches KU theme) */
}

.about-main p, 
.about-main ul {
  line-height: 1.7;
  color: #333;
}
/* === Online Fees Payment Enhancements === */

.fee-form {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.fee-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: #b71c1c;
  box-shadow: 0 0 4px rgba(183, 28, 28, 0.3);
}

.btn-primary {
  background: #b71c1c;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #a31515;
}
/* === Placement Page Enhancements === */

.recruiters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px 0 30px;
}

.recruiter-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruiter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.placement-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

.placement-table th,
.placement-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: center;
}

.placement-table th {
  background-color: #b71c1c;
  color: #fff;
}

.placement-table tr:nth-child(even) {
  background-color: #f8f8f8;
}

.placement-table tr:hover {
  background-color: #f1f1f1;
}
/* === Faculty Profile Enhancements === */

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.faculty-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.faculty-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.faculty-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.faculty-card p {
  margin: 4px 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.faculty-card a {
  color: #b71c1c;
  text-decoration: none;
}

.faculty-card a:hover {
  text-decoration: underline;
}
 /* === Staff Directory Enhancements === */

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.staff-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.staff-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.staff-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.staff-card p {
  margin: 4px 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.staff-card a {
  color: #b71c1c;
  text-decoration: none;
}

.staff-card a:hover {
  text-decoration: underline;
}
/* === Careers / Recruitments Section === */

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.career-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.career-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.career-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.career-card p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 3px 0;
}

.apply-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #b71c1c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #d32f2f;
}

.career-image, .career-image-wide {
  text-align: center;
  margin: 25px 0;
}

.career-image img,
.career-image-wide img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
/* === Training & Development Section === */

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.training-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.training-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.training-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.training-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.training-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.training-table th,
.training-table td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}

.training-table th {
  background-color: #f5f5f5;
  color: #b71c1c;
  font-weight: 600;
}

.training-image,
.training-image-wide {
  text-align: center;
  margin: 25px 0;
}

.training-image img,
.training-image-wide img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
/* === Policies & Guidelines Section === */

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.policy-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.policy-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.policy-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.policy-docs {
  margin: 20px 0 30px;
  list-style-type: none;
  padding: 0;
}

.policy-docs li {
  margin: 8px 0;
}

.policy-docs a {
  color: #b71c1c;
  text-decoration: none;
  font-weight: 500;
}

.policy-docs a:hover {
  text-decoration: underline;
}

.policy-image, .policy-image-wide {
  text-align: center;
  margin: 25px 0;
}

.policy-image img,
.policy-image-wide img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
/* === Events & News Section === */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.event-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.event-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 6px;
}

.event-card p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 3px 0;
}

.event-link {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background: #b71c1c;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.event-link:hover {
  background: #d32f2f;
}

/* News List Section */
.news-list {
  margin: 30px 0;
}

.news-item {
  background: #fff;
  border-left: 4px solid #b71c1c;
  padding: 15px 20px;
  margin-bottom: 18px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.news-date {
  color: #777;
  font-size: 13px;
}

.news-item h4 {
  font-size: 17px;
  color: #b71c1c;
  margin: 6px 0;
}

.news-item p {
  font-size: 14.5px;
  line-height: 1.6;
}

.events-image,
.events-image-wide {
  text-align: center;
  margin: 25px 0;
}

.events-image img,
.events-image-wide img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
/* === Campus Facilities Section === */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.facility-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.facility-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.facilities-image,
.facilities-image-wide {
  text-align: center;
  margin: 25px 0;
}

.facilities-image img,
.facilities-image-wide img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
/* === Clubs & Societies Section === */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.facility-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.facility-card h4 {
  color: #b71c1c;
  font-size: 18px;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.facilities-image,
.facilities-image-wide {
  text-align: center;
  margin: 25px 0;
}

.facilities-image img,
.facilities-image-wide img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
/* Grid layout for cultural activities */
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Individual card styling */
.facility-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Card image styling */
.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Card content */
.facility-card h4 {
  margin: 15px 10px 10px;
  font-size: 1.1rem;
  color: #f24561; /* Highlight color same as other sections */
  text-align: center;
}

.facility-card p {
  padding: 0 10px 15px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* Wide banner image styling */
.facilities-image-wide img {
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  object-fit: cover;
}

