/* =========================
   COLOR VARIABLES
========================= */
:root {
  --navy-blue: #0a1f44;
  --navy-blue-dark: #07162f;
  --light-gray: #f5f5f5;
  --text-dark: #111;
}
.corner-logo {

position:absolute;
top:15px;
left:15px;

width:90px;

}
/* =========================
   BASE STYLES
========================= */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

h1, h2 {
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.6;
}

/* =========================
   HERO / HEADER
========================= */
.hero {
  background-color: var(--navy-blue);
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.subtitle {
  font-weight: 600;
  margin-top: 0.5rem;
}

.location {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =========================
   STATS
========================= */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 1rem;
}

.card {
  background: #ffffff;
  border: 2px solid var(--navy-blue);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}

.card span {
  display: block;
  font-size: 0.85rem;
  color: #666;
}

.card strong {
  font-size: 1.4rem;
  color: var(--navy-blue);
}


/* =========================
   SECTIONS
========================= */
.section {
  padding: 2.5rem 1.5rem;
  max-width: 900px;
  margin: auto;
}

.section.gray {
  background: #f9f9f9;
}

/* =========================
   VIDEO
========================= */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* =========================
   SOCIAL / RECRUITING BUTTONS
========================= */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  padding: 14px 20px;
  background-color: var(--navy-blue);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.social-links a:hover {
  background-color: var(--navy-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  background-color: var(--navy-blue);
  color: #ffffff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .social-links a {
    width: 100%;
  }
   .footer-qr {
  text-align: center;
  margin-top: 15px;
}

.footer-qr img {
  display: block;
  margin: 0 auto 8px;
  max-width: 120px;
  height: auto;
}

.footer-qr p {
  font-size: 0.8rem;
  color: #ffffff;
}

}
.profile-header{
text-align:center;
padding:20px;
}

.profile-pic {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 15px auto;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}
}

.return-link{
font-size:14px;
color:gray;
}
