/* ==============================
   FACILITIES (GLASS CARDS)
============================== */
.facility-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.facility-item {
  /* Glass Background */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Glass Borders */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 5px solid #0055a5;
  
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(10, 26, 60, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px 0 rgba(10, 26, 60, 0.08);
}

/* ===== PREMIUM BUTTONS ===== */
.facility-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 12px 26px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  color: #ffffff;
  background: linear-gradient(135deg, #0055a5, #0077e6);
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 85, 165, 0.35), inset 0 -2px 0 rgba(255,255,255,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.facility-btn:hover { 
  transform: translateY(-3px) scale(1.03); 
  box-shadow: 0 18px 40px rgba(0, 85, 165, 0.55); filter: brightness(1.05); 
}
.facility-btn:active { transform: translateY(0) scale(0.98); }

.contact-btn {
  display: inline-block; margin-top: 24px; padding: 14px 34px;
  font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #FF8C00, #FF5500);
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-btn:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 15px 35px rgba(255, 85, 0, 0.5); filter: brightness(1.1); 
}
.contact-btn:active { transform: translateY(-1px); }

/* ==============================
   ALUMNI SECTION (GLASS)
============================== */
.alumni-section {
  background-color: transparent; /* Lets base body mesh shine through */
  padding: 70px 20px;
  text-align: center;
}

.alumni-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px;
  max-width: 1000px; margin: 40px auto 0;
}

.alumni-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 25px 15px;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(10, 26, 60, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.alumni-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px 0 rgba(10, 26, 60, 0.08);
}

.alumni-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid #0055a5; margin-bottom: 15px; }
.alumni-card h3 { margin: 10px 0 4px; font-size: 1.1rem; color: #003366; }
.alumni-role { font-size: 0.9rem; color: #555; }
.alumni-company { font-size: 0.9rem; font-weight: 600; color: #0a1a3c; margin-bottom: 12px; }
.alumni-card a { color: #0a66c2; font-size: 1.4rem; }
.alumni-card a:hover { color: #004182; }

/* ===== PREMIUM FOOTER ===== */
.premium-footer {
  background: linear-gradient(135deg, #0a1a3c, #020617);
  color: #ffffff; padding: 60px 20px 20px;
}
.footer-container { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-column h3, .footer-column h4 { margin-bottom: 12px; }
.footer-column p { font-size: 14.5px; line-height: 1.7; color: #e5e7eb; opacity: 1; }
.footer-column a { display: block; margin-bottom: 8px; font-size: 14px; color: #d1d5db; text-decoration: none; }
.footer-column a:hover { color: #FF8C00; }
.footer-bottom { text-align: center; margin-top: 40px; font-size: 13px; opacity: 0.7; }

.footer-founder { max-width: 1000px; margin: 0 auto 50px; padding-top: 10px; }
.founder-heading { text-align: center; color: #ffffff; font-size: 20px; font-weight: 600; margin-bottom: 18px; }
.footer-founder p { color: #e5e7eb; font-size: 14.5px; line-height: 1.75; margin-bottom: 14px; text-align: center; }
.founder-links { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.founder-links a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #c7d2fe; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; }
.founder-links a:hover { color: #FF8C00; transform: translateY(-1px); }
@media (max-width: 768px) { .footer-founder p { font-size: 14px; } }



/* Add to components.css */
.glass-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(10, 26, 60, 0.05);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 40px 20px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 40px;
}

.stat-item h3 {
  font-size: 52px;
  color: #0055a5;
  font-weight: 800;
  margin-bottom: 5px;
  /* Orange text shadow for a subtle 3D glowing pop */
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.2);
}

.stat-item p {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==============================
   NEXT-LEVEL PREMIUM FOOTER
============================== */
.premium-footer {
  position: relative;
  background: #020617; /* Deep, rich space black */
  color: #ffffff;
  padding: 80px 20px 20px;
  overflow: hidden;
  /* Glowing brand orange top border */
  border-top: 1px solid rgba(255, 140, 0, 0.3);
  box-shadow: inset 0 20px 50px -20px rgba(0, 85, 165, 0.5);
}

/* Ambient glow orb bleeding from the top center */
.footer-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 85, 165, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.footer-container, 
.footer-founder, 
.footer-bottom {
  position: relative;
  z-index: 1; /* Keeps content above the glow */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Headings */
.brand-column h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-column h4 {
  font-size: 15px;
  color: #FF8C00; /* Logo Orange */
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.footer-column p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #94a3b8;
}

/* Interactive Footer Links */
.footer-column a {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a::before {
  content: '\f061'; /* FontAwesome right arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  margin-right: 8px;
  opacity: 0;
  color: #FF8C00;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-column a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   FOUNDER CARD (DARK GLASS)
============================== */
.footer-founder {
  max-width: 900px;
  margin: 0 auto 50px;
}

.founder-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 0, 0.3); /* Subtle orange glow on border hover */
}

.founder-heading {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: center;
}

/* Premium Social Buttons */
.founder-links {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #FF8C00;
  border-color: #FF8C00;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 13.5px;
  color: #64748b;
}

.footer-bottom span {
  color: #FF8C00;
  font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .founder-card { padding: 25px 15px; }
  .founder-heading { font-size: 20px; }
  .social-btn { width: 100%; justify-content: center; }
}