body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: #f5f3ff;
  background: linear-gradient(135deg, #5c5caa, #a28dd0, #b8a1e0);
  min-height: 100vh;
}

section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.06); 
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Headings */
h1, h2, h3 {
  color: #f0ebff;
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(50, 40, 90, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  z-index: 1000;
  color: #ffffff;
}

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

.nav-branding {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-weight: bold;
  font-size: 1.4rem;
  color: #ecd6ff;
}

.nav-subtitle {
  font-size: 0.9rem;
  color: #f5eaff;
}

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

.nav-links li a {
  text-decoration: none;
  color: #f3eaff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.navbar a.active {
  color: #ffd54f;
  border-bottom: 2px solid #ffd54f;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ecd6ff;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(60, 50, 90, 0.95);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}


/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1 1 280px;
  background-color: rgba(230, 215, 255, 0.12); /* soft light violet */
  border: 1px solid #ffc6e2; /* pastel pink border */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 213, 79, 0.8); /* yellow glow */
}

.card a {
  color: #ffd54f;
  text-decoration: none;
  font-weight: 600;
}

/* TIMELINE */
.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #ffffff;
}

.timeline-date {
  min-width: 100px;
  font-weight: bold;
  color: #fbd3e8; /* pastel pink */
}

.timeline-content {
  background-color: rgba(230, 215, 255, 0.12);
  padding: 15px 20px;
  border-left: 4px solid #ffb38e; /* pastel orange */
  border-radius: 6px;
  flex: 1;
}

.timeline-content strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
  color: #f3eaff;
}

/* LINKS */
.card a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(60, 50, 90, 0.95);
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-date {
    margin-bottom: 5px;
  }

  .card-container {
    flex-direction: column;
  }
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: transparent;
}


.logo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



/* Optional: adjust navbar spacing */
.navbar {
  margin-top: 10px;
}

@media (max-width: 600px) {
  .logo {
    width: 180px;
    height: 180px;
  }
}
/* === About Section Layout with Profile Picture === */
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  margin-top: 4px;
  border: 2px solid #ffd54f;
}

.about-text {
  flex: 1;
  text-align: left;
  line-height: 1.7;
  color: #f5f3ff;
}

/* === Responsive Layout for Mobile Devices === */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .profile-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .about-text {
    text-align: left;
  }
}
footer {
  background-color: rgba(230, 215, 255, 0.12); /* subtle card-like purple */
  border-top: 1px solid #ffc6e2; /* pastel pink top border */
  color: #f3eaff; /* text color */
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  border-radius: 0 0 12px 12px; /* rounded bottom corners */
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3); /* subtle shadow at top of footer */
}









