/* =========================================================
   MTT College — Shared Stylesheet (Inner Pages)
   New design system — synced with homepage
   ========================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --main: #0a5a8e;
  --second: #d6000a;
  --main-light: #e1f0fa;
  --second-light: #ffe1e1;
  --dark: #0a2e44;
  --gray-bg: #f8fafc;
  --shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
  --shadow-hover: 0 20px 30px -10px rgba(10,90,142,0.3);
}

body {
  font-family: 'Inter', sans-serif;
  background: white;
  color: #1e293b;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.2;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.whatsapp-float i { font-size: 28px; margin-bottom: 2px; }
.whatsapp-float:hover { transform: scale(1.1); background: #20b859; }

/* ---------- Top bar ---------- */
.top-bar {
  background: #0a3b5c;
  color: white;
  padding: 10px 0;
  font-size: 0.95rem;
}
.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-contact { display: flex; gap: 25px; flex-wrap: wrap; justify-content: center; }
.top-contact span { display: inline-flex; align-items: center; gap: 6px; }
.top-contact i { color: #ffd966; }

/* ---------- Logo row ---------- */
.logo-row { padding: 18px 0; background: white; border-bottom: 1px solid #eef2f6; }
.logo-row .container { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.logo-img { height: 75px; }
.college-name { text-align: left; }
.college-name h1 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.college-name p { font-size: 0.9rem; color: #475569; margin-top: 4px; }
@media (max-width: 768px) {
  .college-name h1 { font-size: 1.15rem; }
  .college-name p { font-size: 0.78rem; }
  .logo-img { height: 55px; }
  .college-name { text-align: center; }
}

/* ---------- Menu ---------- */
.nav-bar {
  background: var(--main);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.menu-toggle {
  display: none;
  background: var(--second);
  color: white;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  text-align: left;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-menu li { position: relative; }
.nav-menu li a {
  display: block;
  padding: 14px 13px;
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.nav-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--second);
  transition: 0.3s;
  z-index: -1;
}
.nav-menu li a:hover::before { height: 100%; }
.nav-menu li a:hover { color: white; border-bottom-color: white; }

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  list-style: none;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--second);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.dropdown-content li a {
  padding: 12px 18px;
  color: var(--dark);
  font-size: 0.82rem;
  border-bottom: 1px solid #eef2f6;
}
.dropdown-content li a::before { background: var(--main-light); }
.dropdown-content li a:hover { color: var(--main); border-bottom-color: var(--main); }
.nav-menu li:hover > .dropdown-content { display: block; }
.nav-menu li.has-arrow > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  margin-left: 4px;
  opacity: 0.8;
}

/* mobile menu */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--dark);
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu li a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
  }
  .nav-menu li a::before { display: none; }
  .nav-menu li a:hover { background: var(--second); }
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border-top: none;
    border-radius: 0;
  }
  .dropdown-content li a { color: white; padding-left: 40px; font-size: 0.82rem; }
  .nav-menu li:hover > .dropdown-content { display: block; }
  .menu-toggle { display: block; }
}

/* ---------- Page Banner ---------- */
.page-banner {
  background-image: linear-gradient(rgba(10, 46, 68, 0.78), rgba(10, 46, 68, 0.85)),
                    url('https://mttcollege.org.in/admin_mtt/uploads/DSC03206.jpg');
  background-size: cover;
  background-position: center;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--main), var(--second));
}
.page-banner h1 {
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  opacity: 0.95;
}
.page-banner .breadcrumb a:hover { color: #ffd966; }
.page-banner .breadcrumb span { color: #ffd966; }
@media (max-width: 600px) {
  .page-banner { height: 200px; }
  .page-banner h1 { font-size: 1.7rem; letter-spacing: 1px; }
}

/* ---------- Common Section ---------- */
.section { padding: 70px 0; }
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  color: var(--main);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--second);
  margin: 12px auto 0;
  border-radius: 4px;
}
.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid transparent;
}
.btn-primary { background: var(--main); color: white; }
.btn-primary:hover { background: var(--second); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(214,0,10,0.3); }
.btn-outline { border: 2px solid var(--main); color: var(--main); background: white; }
.btn-outline:hover { background: var(--main); color: white; }

/* ---------- Profile / Leadership Card ---------- */
.profile-section {
  padding: 70px 0;
  background: var(--gray-bg);
}
.profile-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; gap: 25px; }
}
.profile-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 5px solid var(--second);
  position: sticky;
  top: 80px;
}
@media (max-width: 900px) { .profile-card { position: static; } }
.profile-img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--gray-bg);
}
.profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.profile-desig {
  color: var(--second);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.profile-social { display: flex; gap: 8px; justify-content: center; }
.profile-social a {
  width: 38px;
  height: 38px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: 0.3s;
}
.profile-social a:hover { background: var(--main); color: white; }

.profile-message {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.profile-message::before {
  content: '\f10e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(10,90,142,0.06);
  z-index: 0;
}
.profile-message h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--dark);
  position: relative;
  z-index: 1;
}
.profile-message h2 span { color: var(--second); }
.profile-message p {
  color: #475569;
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 16px;
  text-align: justify;
  position: relative;
  z-index: 1;
}
.profile-signature {
  margin-top: 24px;
  text-align: right;
  padding-top: 18px;
  border-top: 1px dashed #cbd5e1;
}
.profile-signature .sig-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main);
}
.profile-signature small { color: #777; }

/* ---------- Generic Content Box ---------- */
.content-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.content-box h2 {
  font-size: 1.6rem;
  color: var(--main);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--main-light);
  position: relative;
}
.content-box h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--second);
}
.content-box h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 18px 0 10px;
}
.content-box p { color: #475569; line-height: 1.85; margin-bottom: 14px; }
.content-box ul { margin-left: 22px; margin-bottom: 16px; }
.content-box ul li { color: #475569; line-height: 1.8; margin-bottom: 6px; }
.content-box ul.icon-list { list-style: none; margin-left: 0; }
.content-box ul.icon-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px dashed #e2e8f0;
}
.content-box ul.icon-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--second);
  position: absolute;
  left: 0;
  top: 10px;
}
.content-box ul.icon-list li:last-child { border-bottom: none; }

/* ---------- About / Two-column with image ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } }
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; transition: 0.5s; }
.about-img-wrap:hover img { transform: scale(1.05); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,90,142,0) 60%, rgba(10,90,142,0.3) 100%);
  pointer-events: none;
}

/* ---------- MV Themed Sections (Mission/Vision/Objective) ---------- */
.themed-section { padding: 70px 0; background: var(--gray-bg); }
.themed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.themed-row:last-child { margin-bottom: 0; }
.themed-row.reverse { direction: rtl; }
.themed-row.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .themed-row, .themed-row.reverse { grid-template-columns: 1fr; gap: 25px; direction: ltr; }
}
.themed-text h2 {
  font-weight: 700;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.themed-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 4px;
  border-radius: 4px;
}
.themed-text p { color: #475569; line-height: 1.85; margin-bottom: 14px; font-size: 1.02rem; }
.themed-text .icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.themed-text ul { margin: 14px 0 14px 22px; }
.themed-text ul li { color: #475569; line-height: 1.8; margin-bottom: 8px; }

.themed-image {
  position: relative;
  padding: 25px;
}
.themed-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
  transition: 0.4s;
}
.themed-image:hover img { transform: scale(1.02); }
.themed-image::before {
  content: '';
  position: absolute;
  width: 88%; height: 88%;
  border-radius: 24px;
  z-index: 1;
  opacity: 0.18;
}

/* mission theme */
.theme-blue .icon-circle { background: linear-gradient(45deg, var(--main), #0a3b5c); }
.theme-blue h2 { color: var(--main); }
.theme-blue h2::after { background: var(--main); }
.theme-blue .themed-image::before { background: var(--main); top: 0; left: 0; }

/* vision theme */
.theme-red .icon-circle { background: linear-gradient(45deg, var(--second), #a30008); }
.theme-red h2 { color: var(--second); }
.theme-red h2::after { background: var(--second); }
.theme-red .themed-image::before { background: var(--second); bottom: 0; right: 0; }

/* objective theme */
.theme-gold .icon-circle { background: linear-gradient(45deg, #d4af37, #b8941d); }
.theme-gold h2 { color: #b8941d; }
.theme-gold h2::after { background: #d4af37; }
.theme-gold .themed-image::before { background: #d4af37; top: 0; right: 0; }

/* ---------- Course Cards ---------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.course-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s;
  border-bottom: 4px solid var(--main);
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--second);
}
.course-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.course-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.course-card:hover .course-card-img img { transform: scale(1.08); }
.course-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--second);
  color: white;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.course-content { padding: 25px; }
.course-content h3 {
  font-size: 1.5rem;
  color: var(--main);
  margin-bottom: 12px;
  font-weight: 700;
}
.course-content p { color: #475569; line-height: 1.7; font-size: 0.95rem; margin-bottom: 18px; }

/* ---------- Tables ---------- */
.data-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: white;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.data-table thead {
  background: var(--main);
  color: white;
}
.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  font-size: 0.92rem;
  color: #475569;
}
.data-table tr:nth-child(even) td { background: #fafbfd; }
.data-table tr:hover td { background: var(--main-light); }
.session-tag {
  background: var(--main-light);
  color: var(--main);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
}
.date-tag {
  background: #fff5f5;
  color: var(--second);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--main);
  font-weight: 600;
  font-size: 0.85rem;
}
.download-btn:hover { color: var(--second); }

/* ---------- Faculty / Staff Grid ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.staff-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
  text-align: center;
}
.staff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.staff-photo {
  height: 220px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  font-size: 4rem;
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-info { padding: 20px; }
.staff-info h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }
.staff-info .role { color: var(--second); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.staff-info .qual { color: #777; font-size: 0.85rem; margin-top: 6px; }

/* ---------- Facility Cards ---------- */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.facility-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.facility-img { height: 200px; overflow: hidden; }
.facility-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.facility-card:hover .facility-img img { transform: scale(1.08); }
.facility-content { padding: 22px; }
.facility-content h3 { color: var(--main); font-size: 1.2rem; margin-bottom: 10px; }
.facility-content p { color: #475569; font-size: 0.92rem; line-height: 1.7; }
.facility-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--main), var(--second));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* ---------- Photo / Media Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,90,142,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2.5rem; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--main);
  color: white;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.contact-info-card h2 { font-size: 1.6rem; margin-bottom: 25px; position: relative; }
.contact-info-card h2 span { color: #ffd966; }
.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
}
.contact-info-card .info-item i {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffd966;
  flex-shrink: 0;
}
.contact-info-card .info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card .info-item p { font-size: 0.95rem; opacity: 0.95; line-height: 1.6; }

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { color: var(--main); font-size: 1.5rem; margin-bottom: 22px; }
.form-row { margin-bottom: 18px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row.two-col { grid-template-columns: 1fr; } }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--main);
  box-shadow: 0 0 0 3px var(--main-light);
}
.form-row textarea { resize: vertical; min-height: 130px; }

/* ---------- Stats Strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: linear-gradient(135deg, var(--main), #0a3b5c);
  border-radius: 16px;
  overflow: hidden;
  margin: 30px 0;
}
.stat-cell {
  padding: 30px 20px;
  text-align: center;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd966;
  margin-bottom: 4px;
}
.stat-cell .stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* ---------- Footer ---------- */
footer {
  background: #0c4a6e;
  color: #e2e8f0;
  padding: 60px 0 20px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: white;
  margin-bottom: 22px;
  font-size: 1.25rem;
  border-left: 6px solid var(--second);
  padding-left: 14px;
}
.footer-col p, .footer-col li {
  margin-bottom: 12px;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
.footer-col i {
  color: var(--second);
  margin-right: 14px;
  font-size: 1.1rem;
  width: 22px;
}
.footer-col a:hover { color: white; text-decoration: underline; }
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.social-links a {
  background: #1e5a7a;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: 0.3s;
}
.social-links a:hover { background: var(--second); transform: scale(1.1); }
.copyright {
  text-align: center;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #2d6a8f;
  font-size: 0.9rem;
}
.developed { text-align: center; margin-top: 12px; font-size: 0.85rem; color: #b0c4de; }
.developed a { color: white; font-weight: 500; }
