/* Start custom CSS for html, class: .elementor-element-a7b4bad *//* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #eef3f9, #dce7f5); /* soft light navy */
  color: #2b2b2b;
}

/* CONTAINER SPACING IMPROVEMENT */
section {
  position: relative;
}

/* HERO */
.alumni-hero {
  background: linear-gradient(135deg, #1f3c5f, #4a6fa5); /* richer navy gradient */
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* HERO TEXT */
.alumni-hero h1 {
  font-size: 36px;
  letter-spacing: 1px;
}

.alumni-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ABOUT */
.alumni-about {
  padding: 60px 20px;
  background: transparent;
}

.alumni-about p {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  font-size: 17px;
}

/* OBJECTIVES */
.objectives {
  padding: 70px 20px;
  background: #f4f8fd; /* slightly lighter contrast section */
  border-radius: 30px;
  margin: 40px 20px;
}

/* TEAM */
.team {
  padding: 70px 20px;
  background: transparent;
}

/* SECTION TITLES */
h2 {
  text-align: center;
  color: #1f3c5f;
  margin-bottom: 30px;
  font-weight: 600;
}

/* CARDS (if used) */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(31, 60, 95, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(31, 60, 95, 0.15);
}

/* TEAM MEMBERS */
.member {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.member:hover {
  transform: translateY(-8px);
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #ffcc00, #ffb300);
  color: #1f3c5f;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb300, #ffaa00);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-518f45e *//* SECTION BACKGROUND */
.about-decorated {
  background: #e6eef7;
  padding: 60px 20px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  color: #2a4d7a;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ffcc00;
  display: block;
  margin: 10px auto 0;
}

/* TEXT */
.about-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

/* HIGHLIGHT WORDS */
.about-text span {
  color: #2a4d7a;
  font-weight: 600;
}

/* MISSION TITLE */
.mission-title {
  margin-top: 40px;
  font-size: 24px;
  color: #2a4d7a;
  text-align: center;
}

/* LIST */
.mission-list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.mission-list li {
  background: white;
  margin: 10px 0;
  padding: 15px 20px;
  border-left: 5px solid #2a4d7a;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER EFFECT */
.mission-list li:hover {
  transform: translateX(5px);
  background: #f0f6ff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-460cb95 *//* ===== SECTION BACKGROUND ===== */
.team-section {
  padding: 100px 20px;
  background: linear-gradient(270deg, #1f3c5f, #4a6fa5, #2a4d7a);
  background-size: 600% 600%;
  animation: gradientFlow 12s ease infinite;
  position: relative;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.team-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  font-size: 34px;
}

/* ===== PRESIDENT CARD ===== */
.president-card {
  text-align: center;
  padding: 35px;
  border-radius: 25px;
  max-width: 380px;
  margin: 0 auto 60px;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.president-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.president-card:hover::before {
  left: 100%;
}

.president-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  margin-bottom: 15px;
}

.president-card h3 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 22px;
}

.president-card .role {
  color: #e0e0e0;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  margin-bottom: 50px;
}

/* ===== MEMBER CARD (SAME AS PRESIDENT) ===== */
.member-card {
  text-align: center;
  padding: 35px;
  border-radius: 25px;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);

  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.member-card:hover::before {
  left: 100%;
}

.member-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  margin-bottom: 15px;
}

.member-card h3 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 20px;
}

.member-card p {
  color: #e0e0e0;
}

/* HOVER FLOAT */
.member-card:hover,
.president-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* Pre-animation state */
.pre-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Animated state */
.animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}
.linkedin-icon {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  color: #0a66c2;
  transition: 0.3s;
}

.linkedin-icon:hover {
  color: #004182;
  transform: scale(1.2);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3dbc33d *//* ===== CONTACT GLASS (LEFT CORNER) ===== */
.contact-glass {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 280px;
  padding: 20px;
  border-radius: 20px;
  z-index: 999;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);

  color: #fff;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Shine effect same as cards */
.contact-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.contact-glass:hover::before {
  left: 100%;
}

/* Hover lift */
.contact-glass:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* Title */
.contact-glass h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* Contact items */
.contact-glass .contact-item {
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  transition: 0.3s;
}

.contact-glass .contact-item:hover {
  background: rgba(255,255,255,0.18);
}

/* Labels */
.contact-glass span {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

/* Email */
.contact-glass a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  word-break: break-word;
}

.contact-glass a:hover {
  text-decoration: underline;
}

/* Mobile adjust */
@media (max-width: 600px) {
  .contact-glass {
    left: 15px;
    right: 15px;
    width: auto;
    bottom: 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0b695a1 *//* ===== LIGHT CONTACT SECTION ===== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7, #fdfdfd);
}

.contact-title {
  font-size: 36px;
  color: #1f3c5f;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

/* Yellow underline (same style) */
.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 4px;
  background: #ffc107;
  border-radius: 2px;
}


/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* GLASS CARD */
.contact-card {
  padding: 25px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  transition: 0.3s;
}

/* TEXT */
.contact-card h3 {
  color: #1f3c5f;
  margin-bottom: 10px;
}

.contact-card a {
  color: #2a4d7a;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-69e3f6b *//* ===== CERTIFICATE SECTION ===== */
.certificate-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7, #fdfdfd);
}

/* TITLE */
.certificate-title {
  font-size: 36px;
  color: #1f3c5f;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

/* Yellow underline (same style) */
.certificate-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 4px;
  background: #ffc107;
  border-radius: 2px;
}

/* GRID */
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.certificate-card {
  padding: 25px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  position: relative;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}

/* Shine effect (same as your cards) */
.certificate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.certificate-card:hover::before {
  left: 100%;
}

/* IMAGE */
.certificate-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin: 15px 0;
}

/* TEXT */
.certificate-card h3 {
  color: #1f3c5f;
}

.certificate-card p {
  color: #555;
  font-size: 14px;
}

/* BUTTONS */
.certificate-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.certificate-actions a {
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  background: #1f3c5f;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.certificate-actions a:hover {
  background: #2a4d7a;
}

/* HOVER */
.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .certificate-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */