/* ===========================
   GENERAL STYLES
=========================== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section {
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}

.section-title .subtitle {
  font-size: 1rem;
  color: #777;
}

.section-divider {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 50px 0;
}

/* ===========================
   GRID & CARDS
=========================== */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  margin: 10px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-title {
  color: #2a7be4;
}

.icon {
  color: #27ae60;
  font-size: 0.9rem;
}

/* ===========================
   FACULTY SECTION
=========================== */
.faculty-section {
  text-align: center;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.faculty-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.teacher-photo {
  width: 100px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #2a7be4;
}

.faculty-card h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.qualification,
.experience {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin: 0 5px;
  font-size: 1.1rem;
  color: #2a7be4;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #0056b3;
}

/* ===========================
   ACTIVITIES SECTION
=========================== */
.max-width {
  max-width: 900px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.6rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .faculty-card {
    padding: 15px;
  }
}
/* ===========================
   Floating Contact Button
=========================== */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.contact-button {
  background-color: #25D366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.contact-button:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.contact-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3);
}

.contact-button i {
  font-size: 1.3rem;
}

.contact-button span {
  margin-left: 10px;
  font-weight: 600;
  display: none;
}

@media (min-width: 640px) {
  .contact-button span {
    display: inline;
  }
}

/* ===========================
   Animations
=========================== */
.animate__animated {
  opacity: 0;
}

.animate__fadeInUp {
  opacity: 1;
  animation: fadeInUp 0.8s ease forwards;
}

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