

/* ================= CONTAINER ================= */
.container {
  width: 92%;
  max-width: 1150px;
  margin: auto;
}

/* ================= SECTION ================= */
.section {
  padding: 90px 0;
}

/* ================= HEADER ================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ================= SECTION ================= */
.events-space {
  padding: 70px 0;
}

/* HEADER */
.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f172a;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
}

/* ================= TIMELINE WRAPPER ================= */
.wrapper {
  position: relative;
}

/* CENTER LINE */
.wrapper::before {
  content: "";
  position: absolute;
  left: 160px;
  top: 120px;
  width: 2px;
  height: calc(100% - 120px);
  background: linear-gradient(to bottom, var(--theme-color), #00c6ff);
  opacity: 0.4;
  filter: blur(0.5px);
  /* z-index: -1; */
}

/* ================= EVENT CARD ================= */

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

/* LEFT TIME BLOCK */
.event-meta {
  min-width: 140px;
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color);
  text-align: right;
  line-height: 1.4;
}

/* DOT */
.event-card::before {
  content: "";
  position: absolute;
  left: 152px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: white;
  border: 4px solid var(--theme-color);
  border-radius: 50%;
  z-index: 20;
  box-shadow: 0 0 0 8px rgba(10, 110, 189, 0.08);
}

/* ================= CARD ================= */

.event-box-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  padding: 32px 34px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* GRADIENT GLOW */
.event-box-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(42, 7, 249, 0.15), /* #2A07F9 */
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}

.event-box-content:hover::after {
  opacity: 1;
}

/* HOVER */
.event-box-content:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.box-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* TEXT */
.box-text {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  margin-bottom:6px !important;
}

/* GRID */
.remembering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* CARD */
.speaker-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.speaker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.speaker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.3),
    transparent
  );
  z-index: 1;
}

/* CONTENT */
.speaker-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 2;
}

/* NAME */
.speaker-overlay h3 {
  font-size: 26px;
  font-weight: 700;
  color:#ffffff;
  margin-bottom: 6px;
}

/* SUBTEXT */
.speaker-overlay p {
  font-size: 16px;
  color: #e2e8f0;
}

/* HOVER ZOOM */
.speaker-card:hover img {
  transform: scale(1.1);
}

/* GLOW EFFECT */
.speaker-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 198, 255, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

.speaker-card:hover::after {
  opacity: 1;
}

/* SECTION BG */
.remembering {
  background: linear-gradient(180deg, #0f172a, #020617);
  padding: 120px 0;
}

/* TITLE WHITE */
.remembering .section-title {
  color: white;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .speaker-card {
    height: 350px;
  }

  .speaker-overlay h3 {
    font-size: 20px;
  }
}

/* ================= MICRO DETAILS ================= */

/* subtle line extension */
.event-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 160px;
  bottom: -30px;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--theme-color), transparent);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .container::before {
    left: 20px;
  }

  .event-card {
    flex-direction: column;
    padding-left: 40px;
  }

  .event-meta {
    text-align: left;
  }

  .event-card::before {
    left: 12px;
  }

  .section-title {
    font-size: 34px;
  }
}

/* PROFILE CARD */
.profile-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  transition: 0.3s;
}

/* ACCENT BAR */
.profile-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 5px;
  height: 60%;
  background: linear-gradient(var(--theme-color), #00c6ff);
  border-radius: 0 6px 6px 0;
}

/* HOVER */
.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* FLEX */
.profile-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* IMAGE */
.profile-image {
  width: 300px;
}

.profile-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* NAME */
.profile-image h3 {
  margin-top: 30px;
  font-size: 25px;
  color: var(--theme-color);
  text-align: center;
}

/* CONTENT */
.profile-content {
  flex: 1;
}

/* LIST */
.profile-content ul {
  margin-left: 18px;
  margin-bottom: 10px;
}

.profile-content li {
  font-size: 17px;
  margin-bottom: 6px;
  color: #334155;
}

/* SECTION TITLE */
.profile-content h4 {
margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 28px;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--theme-color);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .profile-flex {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .profile-image {
    width: 150px;
  }

  .event-box-content {
    padding: 18px;
  }

  .box-title {
    font-size: 16px;
  }
}

/* ================= SECTION ================= */
.awards-modern {
 background: #f9fbfd;
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.awards-modern::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.15), transparent);
  z-index: 0;
}

/* ================= ROW ================= */
.award-row {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

/* reverse */
.award-row.reverse {
  flex-direction: row-reverse;
}

/* ================= IMAGE ================= */
.award-img {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}



/* image */
.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

/* zoom effect */
.award-row:hover .award-img img {
  transform: scale(1.05);
}

/* glow behind */
/*.award-img::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 20px;*/
/*  left: 20px;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: linear-gradient(135deg, var(--theme-color), #00c6ff);*/
/*  border-radius: 20px;*/
/*  z-index: -1;*/
/*  opacity: 0.2;*/
/*  filter: blur(25px);*/
/*}*/

/* ================= CONTENT ================= */
.award-info {
  flex: 1;
  padding: 10px;
}

/* event-badge */
.event-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--theme-color), #00c6ff);
  color: #fff;
  padding: 6px 30px;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

/* name */
.award-info h2 {
  font-size: 30px;
  margin-bottom: 5px;
  color: #0f172a;
  letter-spacing: -0.3px;
}
.award-info .events-designation {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--theme-color);
}
.events-designation-1 {
  color: var(--theme-color2);
}

/* MAIN LIST */
.award-info ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-top:30px;
}

/* MAIN ITEMS */
.award-info li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #334155;
  line-height: 1.7;
}

/* CUSTOM BULLET (GLOW DOT) */
.award-info li::before {
content: "";
position: absolute;
left: 0;
top: 8px;
width: 10px;
height: 10px;

background: linear-gradient(to right, var(--theme-color) 0%, #00c6ff 100%);
border-radius: 50%;
}

/* ================= SUB LIST ================= */

.award-info ul ul {
  margin-top: 8px;
  padding-left: 10px;
}

/* SUB ITEMS */
.award-info ul ul li {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 8px;
  padding-left: 22px;
}

/* SUB BULLET (SMALLER + DIFFERENT STYLE) */
.award-info ul ul li::before {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  box-shadow: none;
}

/* ================= HOVER ================= */
.award-row {
  transition: transform 0.4s ease;
}

.award-row:hover {
  transform: translateY(-8px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .award-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .award-row.reverse {
    flex-direction: column;
  }

  .award-info h2 {
    font-size: 24px;
  }
}

/* SECTION */
.lifetime-modern {
  background: linear-gradient(180deg, #f8fbff, #eef5fb);
  padding: 80px 0;
}

/* CARD */
.lifetime-card-modern {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.lifetime-card-modern:hover {
  transform: translateY(-8px);
}

/* FLEX */
.lifetime-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* IMAGE */
.lifetime-image {
  width: 260px;
}

.lifetime-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* CONTENT */
.lifetime-content {
  flex: 1;
}

/* TITLE */
.lifetime-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

/* INTRO */
.intro {
  margin-bottom: 25px;
  padding-left: 18px;
}

.intro li {
  margin-bottom: 6px;
  font-size: 17px;
}

/* ================= GROUPED TIMELINE ================= */

.timeline-groups {
  margin-top: 25px;
}

/* GROUP */
.timeline-group {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 14px;
  border-left: 4px solid var(--theme-color);
  transition: 0.3s;
}

.timeline-group:hover {
  transform: translateY(-4px);
  background: #eef6ff;
}

/* GROUP TITLE */
.timeline-group h4 {
  font-size: 16px;
  color: var(--theme-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* LIST */
.timeline-group ul {
  list-style: none;
  padding-left: 0;
}

/* ITEM */
.timeline-group li {
  margin-bottom: 8px;
  font-size: 17px;
  color: #334155;
  padding-left: 55px;
  position: relative;
}

/* YEAR */
.timeline-group span {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: var(--theme-color);
}

/* DIVIDER */
.timeline-group li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  background: #e2e8f0;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lifetime-flex {
    flex-direction: column;
  }

  .lifetime-image {
    width: 180px;
  }

  .lifetime-content h2 {
    font-size: 24px;
  }
}

/* STRONG HIGHLIGHT LINE */
.timeline-group strong {
  color: #0f172a;
  font-weight: 600;
}

/* BETTER SPACING */
.timeline-group li {
  padding-left: 100px; /* increase spacing */
  margin-bottom: 10px;
  line-height: 1.7;
}

/* INTRO EMPHASIS */
.intro li strong {
  color: var(--theme-color);
}

/* YEAR */
.timeline-group span {
  position: absolute;
  left: 0;
  top: 0;
  width: 85px; /* increase width */
  font-weight: 600;
  color: var(--theme-color);
}

/* ================= TABLET (<=1024px) ================= */
@media (max-width: 1024px) {

  .section-title {
    font-size: 38px;
  }

  /* TIMELINE LINE */
  .wrapper::before {
    left: 120px;
  }

  /* DOT */
  .event-card::before {
    left: 112px;
  }

  /* CARD */
  .event-card {
    gap: 25px;
  }

  /* TIME */
  .event-meta {
    min-width: 100px;
    font-size: 16px;
  }

  /* CONTENT */
  .event-box-content {
    padding: 24px;
  }

  /* PROFILE */
  .profile-flex {
    gap: 30px;
  }

  .profile-image {
    width: 220px;
  }

  /* AWARDS */
  .award-row {
    gap: 40px;
  }
}


/* ================= MOBILE (<=768px) ================= */
@media (max-width: 768px) {

  /* GLOBAL */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* TIMELINE LINE */
  .wrapper::before {
    left: 20px;
    top: 0;
    height: 100%;
  }

  /* CARD STACK */
  .event-card {
    flex-direction: column;
    padding-left: 50px;
    gap: 15px;
  }

  /* DOT */
  .event-card::before {
    left: 12px;
    top: 6px;
  }

  /* TIME */
  .event-meta {
    text-align: left;
    font-size: 14px;
  }

  /* BOX */
  .event-box-content {
    padding: 18px;
  }

  .box-title {
    font-size: 18px;
  }

  .box-text {
    font-size: 14px;
  }

  /* SPEAKER */
  .speaker-card {
    height: 300px;
  }

  .speaker-overlay h3 {
    font-size: 18px;
  }

  .speaker-overlay p {
    font-size: 14px;
  }

  /* PROFILE */
  .profile-flex {
    flex-direction: column;
    align-items: center;
  }

  .profile-image {
    width: 100%;
  }

  /* AWARDS */
  .award-row {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
  }

  .award-row.reverse {
    flex-direction: column;
  }

  .award-info h2 {
    font-size: 22px;
  }

  .award-info li {
    font-size: 15px;
  }

  /* LIFETIME */
  .lifetime-flex {
    flex-direction: column;
    gap: 25px;
  }

  .lifetime-image {
    width: 180px;
  }

  .lifetime-content h2 {
    font-size: 24px;
  }

  /* TIMELINE GROUP */
  .timeline-group li {
    padding-left: 80px;
    font-size: 14px;
  }

  .timeline-group span {
    width: 70px;
  }
}


/* ================= SMALL MOBILE (<=480px) ================= */
@media (max-width: 480px) {

  .section-title {
    font-size: 24px;
  }

  .event-meta {
    font-size: 13px;
  }

  .box-title {
    font-size: 16px;
  }

  .box-text {
    font-size: 13px;
  }

  .speaker-card {
    height: 260px;
  }

}
