body {
  margin: 0;
  padding-top: 90px; 
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  min-height: 100vh; 
}
body {
  margin-top: 0px; 
}

.navbar {
  width: 100%;
  background: linear-gradient(90deg, #cc0033, #990026);
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.1);
  color: #ffd700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #fff;
  color: #cc0033;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.welcome-container {
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 60px;
  font-weight: bold;
  color: #cc0033; 
  margin-bottom: 20px;
}

img {
  width: 150px;
  opacity: 0;
  animation: fadeInLogo 3s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInLogo {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


html, body {
  height: auto; 
  display: block; 
}

main {
  flex: 1;
}

h2 {
  font-family: "amifer", sans-serif;
font-weight: 700;
font-style: normal;
color: red;
}

.card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.card::before {
  content: "";
  display: block;
  height: 6px;
  background: #cc0033; 
}

.card-title {
  font-family: "proxima-nova", sans-serif; 
  font-weight: 700;
  color: #cc0033;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-text,
.card p.small {
  font-family: "proxima-nova", sans-serif;
  color: #333;
}


.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card .btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  transition: all 0.2s ease;
}

.card .btn-outline-danger:hover {
  background-color: #cc0033;
  color: #fff;
  border-color: #cc0033;
}
body {
  padding-top: 70px;  
  min-height: 100vh;   
}

main {
  margin-top: 70px; 
}

.alumni-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px auto;
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

.info-card {
  background: linear-gradient(135deg, #cc0033, #990026);
  color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  color: #ffd700;
}

.info-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
font-family: "liebedoni-solid", sans-serif;
font-weight: 400;
font-style: normal;
}

.mission-img {
  width: 100%;      
  max-width: 400px;     
  height: auto;         
}

h2 {
font-family: "liebedoni-solid", sans-serif;
font-weight: 400;
font-style: normal;
}

section.text-center h2 {
    font-family: 'Georgia', serif; 
    font-weight: 700;
    color: #cc0033; 
}

h1, section.text-center h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: #cc0033; 
}


section.text-center h2 {
    font-family: 'Roboto Slab', serif; 
    color: #cc0033; 
    letter-spacing: 1px;
}

section.text-center ul li {
    margin-bottom: 0.5rem;
}

section.text-center ul li::before {
    content: "★ "; 
    color: #cc0033;
}

.info-card {
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 250px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.info-text {
    display: none;
    font-size: 0.95rem;
    color: #333;
    margin-top: 0.5rem;
}

.info-card:hover .info-text {
    display: block;
}
.info-card h4 {
    font-family: "proxima-nova", sans-serif; 
    color: #db1616; 
}

.info-card .info-text {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; 
    color: #333;
}

.info-card {
    background-color: #000; 
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: default;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 250px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.info-card h4 {
    font-family: "proxima-nova", sans-serif;
    color: #090708; 
}

.info-card .info-text {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #fff; 
    margin-top: 0.5rem;
}

section.py-5.bg-light p {
    font-family: "proxima-nova", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.card-body, 
.card-body .card-title, 
.card-body .card-text {
 font-family: "baga", sans-serif;
font-weight: 700;
font-style: normal;
}
.card-title {
  color: #cc0033;
}
