:root {
  --gitam-green: #007367;
  --gitam-dark-green: #004740;
  --gitam-light-green: #8bcbb7;
  --gitam-antique-white: #f4e4c9;
  --gitam-antique-gold: #a58255;
  --gitam-beige: #ccba8d;
  --gitam-kind-coral: #dd736e;
  --gitam-mellow-yellow: #e0b541;
  --gitam-wide-blue: #5e95cd;

  --white: #ffffff;
  --text-dark: #1a2e2c;
  --text-muted: #4a6660;
  --border-light: rgba(0, 115, 103, 0.12);
  --radius-lg: 20px;
  --font-display: "forma-djr-display", "Georgia", serif;
  --font-body: "Inter", sans-serif;
}
@font-face {
  font-family: "forma-djr-display";
  src: local("Forma DJR Display Bold"), local("FormaDJRDisplay-Bold");
  font-weight: 700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #f9f7f3;
  line-height: 1.6;
}

#home,
#about,
#abstracts,
#events,
#gallery,
#contact {
  scroll-margin-top: 100px;
}

/* ---- NAV ---- */
.top-bar {
  background: #007269;
  
  color: var(--gitam-antique-white);
  font-size: 12px;
  /*padding: 6px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;*/
  position: sticky;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 100;
}
.top-bar-inner {
  padding: 6px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--gitam-antique-white);
  text-decoration: none;
  margin-left: 16px;
  opacity: 0.85;
}
.top-bar a:hover {
  opacity: 1;
}
/* Navbar */
.main-nav {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 0px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  /* width: 180px; */
  display: block;
}

/* Desktop Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 0px;
}

.nav-links a {
  text-decoration: none;
  color: #003f3f;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #008272;
}

/* Hamburger */
/* ==========================
   MOBILE NAVIGATION
========================== */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--gitam-dark-green);
  transition: all 0.35s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 21px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
}

/* Tablet */
@media (max-width: 1024px) {
  .menu-toggle i {
    font-size: 28px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #fff;

    flex-direction: column;
    align-items: flex-start;

    padding: 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

    z-index: 999;
    gap: 10px;
  }

  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    display: block;

    padding: 10px 16px;

    border-bottom: 1px solid #f3f3f3;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.25s ease;
  }

  /* .nav-links a:hover {
    background: rgba(0,115,103,.05);
    padding-left: 32px;
  } */
}

/* Small Mobile */
@media (max-width: 480px) {
  .nav-links {
    gap: 8px;
  }
  .nav-logo img {
    width: 140px;
  }

  .menu-toggle {
    font-size: 28px;
  }
}

.breadcrumb-bar {
  /* background: var(--gitam-antique-white); */
  /*padding: 10px 32px;*/
  font-size: 13px;
  color: var(--gitam-antique-gold);
  border-bottom: 1px solid rgba(165, 130, 85, 0.2);
}
.breadcrumb-inner {
  padding: 10px 0px;
}
.breadcrumb-bar a {
  color: var(--gitam-green);
  text-decoration: none;
}
.breadcrumb-bar a:hover {
  text-decoration: underline;
}
.breadcrumb-bar span {
  margin: 0 8px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 660px;

  overflow: hidden;
  background: #0f1b1a;
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.30); */
  z-index: 1;

  /* background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.1) 100%
  ); */
}
.hero .section-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 32px;
}
.slide-content {
  position: relative;
  width: 100%;
  max-width: 760px;
  padding: 20px 22px;
  border-radius: 24px;
  color: #ffffff;
}

.slide-content h3,
.slide-content p {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.slide-tag {
  display: inline-block;
  background: var(--gitam-mellow-yellow);
  color: var(--gitam-dark-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.slide-title {
  font-family: "forma-djr-display", "Inter", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 3rem;
  margin-bottom: 10px;
}
.slide-desc {
  font-size: 17px;
  color: #e9e9e9;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 760px;
}
.slide-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.slide-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gitam-dark-green);
  font-size: 14px;
}
.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gitam-green);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--gitam-dark-green);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgb(255, 255, 255);
  color: var(--gitam-dark-green);
  border: 2px solid rgba(0, 115, 103, 0.32);
  padding: 7px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: white !important;
  background: rgba(0, 0, 0, 0.08) !important;
  color: white;
}
.hero-nav {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--gitam-mellow-yellow);
  width: 28px;
  border-radius: 999px;
}
.hero-arrows {
  position: absolute;
  bottom: 22px;
  right: 32px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-counter {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .slide-content {
    max-width: 600px;
  }

  .slide-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .slide-desc {
    font-size: 15px;
  }

  .hero-nav {
    left: 24px;
    bottom: 24px;
  }

  .hero-arrows {
    right: 24px;
    bottom: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    top: 55%;
  }

  .hero-content-inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .hero {
    /* min-height: 650px; */
    height: 400px;
  }

  .hero .section-inner {
    padding: 0 20px;
    align-items: flex-end;
    padding-bottom: 90px;
  }

  .slide-content {
    max-width: 100%;
    padding: 0;
  }

  .slide-title {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .slide-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .slide-btns {
    margin-top: 20px;
  }

  .hero-nav {
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;

    gap: 6px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 18px;
    height: 8px;
  }
  .hero-nav {
    display: none;
  }
}

/* ---- SECTION COMMONS ---- */
.section {
  padding: 72px 32px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gitam-green);
  margin-bottom: 12px;
  display: none;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gitam-dark-green);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.divider-green {
  width: 60px;
  height: 3px;
  background: var(--gitam-green);
  margin-bottom: 24px;
  border-radius: 2px;
  display: none;
}

@media (max-width: 1024px) {
  .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ---- WHAT & WHY / HOW ---- */
.about-section {
  background: var(--white);
}

.two-col {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.about-card {
  padding: 36px;

  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.about-card.green-card {
  background: var(--gitam-green);
  color: var(--white);
}
.about-card.antique-card {
  background: var(--gitam-antique-white);
  color: var(--text-dark);
}
.about-card h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

.about1 .about-card h3 {
  letter-spacing: 0px;
  font-size: 20px;
  color: #007367;
  opacity: 1;
}
.about-card p,
.about-card li {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.9;
}
.card-number {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 64px;
  font-weight: 800;
  opacity: 0.07;
  line-height: 1;
}

/* ---- OBJECTIVES ---- */
.objectives-section {
  background: #f9f7f3;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.obj-card {
  width: 100%;
  /* max-width:380px; */

  display: flex;
  flex-direction: column;

  padding: 28px;

  background: #fff;

  border: 1px solid var(--border-light);

  border-radius: 12px;

  transition: 0.3s ease;
}

.obj-card-abstract {
  height: 470px;
  margin-right: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.obj-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.obj-card:hover {
  box-shadow: 0 8px 28px rgba(0, 115, 103, 0.1);
  transform: translateY(-3px);
}
.obj-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 115, 103, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.obj-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gitam-green);
  fill: none;
  stroke-width: 1.8;
}
.obj-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gitam-dark-green);
  margin-bottom: 8px;
}
.obj-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .obj-card {
    padding: 14px;
  }
}

/* ---- EDITIONS ---- */
/* .editions-section {
  background: var(--white);
}

.edition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .edition-cards {
    grid-template-columns: 1fr;
  }
}

.edition-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}



.edition-header {
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.edition-card.past .edition-header {
  background: var(--gitam-dark-green);
  color: var(--white);
}
.edition-card.upcoming .edition-header {
  background: var(--gitam-antique-white);
  color: var(--gitam-dark-green);
}

.edition-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}
.past .edition-pill {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.upcoming .edition-pill {
  background: rgba(0, 115, 103, 0.12);
  color: var(--gitam-green);
}

.edition-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.edition-header .edition-date {
  font-size: 13px;
  opacity: 0.75;
}

.edition-body {
  padding: 24px 28px;
  background: #fcfbf8;
}
.edition-body ul {
  list-style: none;
}
.edition-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.edition-body ul li:last-child {
  border-bottom: none;
}
.edition-body ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gitam-green);
  flex-shrink: 0;
  margin-top: 6px;
}
.edition-footer {
  padding: 16px 28px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}
.btn-sm-green {
  background: var(--gitam-green);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-sm-green:hover {
  background: var(--gitam-dark-green);
}
.btn-sm-outline {
  background: transparent;
  color: var(--gitam-green);
  border: 1.5px solid var(--gitam-green);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-sm-outline:hover {
  background: var(--gitam-green);
  color: var(--white);
} */

/* updated editions */

.retreats-section {
  background: #e9e9e9;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.retreats-section h2 {
  font-size: 38px;
  color: #014d47;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 650px;
  color: #54656f;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  /* justify-content: flex-end; */
  gap: 12px;
  margin-bottom: 10px;
  width: 100%;
}

.filter-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid #014d47;
  background: #fff;
  color: #014d47;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn .active {
  color: #014d47;
  background: #fff;
}

.filter-btn:hover {
  background: #007367;
}

/* Cards */
.retreat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.retreat-card {
  background: #fff;
  border: 1px solid #d7e5e2;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.completed {
  background: #00574f;
  color: #fff;
}

.upcoming-header {
  background: #efe3c8;
  color: #014d47;
}

.card-header p {
  font-size: 15px;
  margin-bottom: 0;
}

.status {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.completed-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.upcoming-badge {
  background: #d9d2b8;
  color: #014d47;
}

.card-body {
  padding: 15px 28px;
}

.card-body ul {
  list-style: none;
}
.card-body ul li:last-child {
  border-bottom: none;
}

.card-body li {
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid #e6eeec;
  position: relative;
  padding-left: 18px;
  color: #42535d;
}

.card-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #008272;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 22px;
}

.card-footer {
  margin-top: auto;
  padding: 16px 28px;
  border-top: 1px solid #e6eeec;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: #007c6c;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.note {
  color: #5f6e78;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .retreat-grid {
    grid-template-columns: 1fr;
  }

  .retreats-section h2 {
    font-size: 36px;
  }
}

/* ---- GALLERY ---- */
.gallery-section {
  background: var(--gitam-dark-green);
}
.gallery-section .section-label {
  color: var(--gitam-light-green);
}
.gallery-section .section-title {
  color: var(--gitam-antique-white);
}
.gallery-section .section-desc {
  color: rgba(244, 228, 201, 0.65);
}
.gallery-section .divider-green {
  background: var(--gitam-light-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 203, 183, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(139, 203, 183, 0.5);
  font-size: 12px;
  text-align: center;
  padding: 12px;
}
.gallery-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  opacity: 0.5;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 47, 40, 0.85) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}

/* ---- ABSTRACTS ---- */
.abstracts-section {
  background: #f9f7f3;
}

.abstract-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gitam-green);
  color: var(--white);
  border-color: var(--gitam-green);
}

.abstracts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abstract-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.abstract-card:hover {
  box-shadow: 0 4px 16px rgba(0, 115, 103, 0.08);
}

.abstract-num {
  min-width: 36px;
  height: 36px;
  background: rgba(0, 115, 103, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gitam-green);
  flex-shrink: 0;
}
.abstract-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gitam-dark-green);
  margin-bottom: 6px;
  line-height: 1.4;
}
/* .abstract-meta {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.8;
    color: #5f6e78;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: calc(1.8em * 3);
} */
.abstract-meta {
  font-size: clamp(13px, 0.7vw, 13px);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
  line-height: 1.8;

  min-height: calc(1.8em * 3);
}

.abstract-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tag-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.tag-oral {
  background: rgba(0, 115, 103, 0.1);
  color: var(--gitam-green);
}
.tag-poster {
  background: rgba(224, 181, 65, 0.15);
  color: #9a7010;
}

/* ---- UPCOMING EVENTS ---- */
.events-section {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-list {
  /* display: flex;
  flex-direction: column;
  gap: 16px; */
  height: 100%;
}

.event-empty {
  height: 100%;

  min-height: 415px; /* adjust based on your calendar height */

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fff;

  text-align: center;

  color: var(--text-muted);
}

.event-card-calender {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  background: var(--white);
  margin-bottom: 15px;
}
.event-card-calender:hover {
  box-shadow: 0 4px 16px rgba(0, 115, 103, 0.1);
  border-color: var(--gitam-light-green);
}
.event-card-calender .featured {
  border-color: var(--gitam-green);
  background: rgba(0, 115, 103, 0.02);
}

.event-date-box {
  min-width: 56px;
  text-align: center;
  background: var(--gitam-green);
  color: var(--white);
  border-radius: 6px;
  padding: 8px 6px;
  flex-shrink: 0;
  display: none;
}
.event-date-box .day {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.event-date-box .month {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 2px;
}

.event-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gitam-dark-green);
  margin-bottom: 6px;
}
.event-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-status {
  display: inline-flex;
  align-items: center;

  padding: 4px 10px;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 700;

  margin-bottom: 10px;
  display: none;
}

.event-status.upcoming {
  background: rgba(0, 115, 103, 0.12);
  color: var(--gitam-green);
}

.event-status.past {
  background: rgba(165, 130, 85, 0.12);
  color: #a58255;
}

.event-status.past {
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;

  padding: 8px 14px;

  border-radius: 20px;

  /* background: rgba(165, 130, 85, 0.12);
  color: #a58255; */

  font-size: 12px;
  font-weight: 600;
  color: #454242;
  background: #eae4e4;
}

.past-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #007367;
  border: 1px solid #007367;
  transition: 0.25s;
}

.pdf-link:hover {
  background: #007367;
  color: #fff;
}

.event-empty {
  grid-column: 1/-1;

  min-height: 250px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border-light);
  border-radius: 12px;

  background: #f9f7f3;
}

.mini-calendar {
  background: var(--gitam-antique-white);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(165, 130, 85, 0.2);
}
.calendar-header {
  text-align: center;
  margin-bottom: 16px;
}
.calendar-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gitam-dark-green);
}
.calendar-header p {
  font-size: 12px;
  color: var(--text-muted);
  display: none;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-day-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding: 4px 0;
}
.cal-day {
  font-size: 13px;
  padding: 6px 2px;
  border-radius: 4px;
  cursor: default;
  color: var(--text-dark);
}
.cal-day.has-event {
  background: var(--gitam-green);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}
.cal-day.today {
  outline: 2px solid var(--gitam-green);
}
.cal-day.empty {
  opacity: 0;
}

.upcoming-calls {
  margin-top: 20px;
}
.upcoming-calls h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gitam-green);
  margin-bottom: 12px;
}

.call-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(165, 130, 85, 0.2);
  font-size: 13px;
}
.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gitam-green);
  flex-shrink: 0;
}
.call-info {
  flex: 1;
}
.call-info strong {
  display: block;
  font-weight: 600;
  color: var(--gitam-dark-green);
}
.call-info span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-list {
    order: 2;
  }

  .events-grid > div:last-child {
    order: 1;
  }
}

/* ---- REGISTER ---- */
.register-section {
  background: #e9e9e9;
  color: var(--text-dark);
}
.register-section .section-label {
  color: var(--gitam-light-green);
}
.register-section .section-title {
  color: var(--text-dark);
}
.register-section .divider-green {
  background: var(--gitam-antique-white);
  opacity: 0.4;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .reg-grid {
    grid-template-columns: 1fr;
  }
}

.reg-types {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.reg-type {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s;
}
.reg-type:hover,
.reg-type.selected {
  background: #ffffff;
  border-color: var(--gitam-green);
}
.reg-type-icon {
  width: 38px;
  height: 38px;
  background: var(--gitam-light-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reg-type-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gitam-antique-white);
  fill: none;
  stroke-width: 1.8;
}
.reg-type h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.reg-type p {
  font-size: 12px;
  opacity: 0.7;
}

.reg-form {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  color: var(--text-dark);
}
.reg-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gitam-dark-green);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(0, 115, 103, 0.2);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fcfcfc;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gitam-green);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.form-check input {
  margin-top: 1px;
  accent-color: var(--gitam-green);
}

.btn-submit {
  width: 100%;
  background: var(--gitam-green);
  color: var(--white);
  border: none;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--gitam-dark-green);
}

/* ---- RESOURCES ---- */
.resources-section {
  background: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.resource-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  background: #fcfbf8;
}
.resource-card:hover {
  box-shadow: 0 6px 20px rgba(0, 115, 103, 0.1);
}
.resource-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke-width: 1.8;
}

.resource-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-pdf {
  background: rgba(221, 115, 110, 0.1);
}
.icon-pdf svg {
  stroke: var(--gitam-kind-coral);
}
.icon-form {
  background: rgba(0, 115, 103, 0.1);
}
.icon-form svg {
  stroke: var(--gitam-green);
}
.icon-cal {
  background: rgba(224, 181, 65, 0.15);
}
.icon-cal svg {
  stroke: #9a7010;
}
.icon-link {
  background: rgba(94, 149, 205, 0.12);
}
.icon-link svg {
  stroke: var(--gitam-wide-blue);
}

.resource-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gitam-dark-green);
}
.resource-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.resource-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gitam-green);
  margin-top: auto;
}

/* ---- CONTACT ---- */
.contact-section {
  background: var(--gitam-antique-white);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(165, 130, 85, 0.2);
}
.contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gitam-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gitam-dark-green);
  margin-bottom: 2px;
}
.contact-card .role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.contact-detail {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.contact-detail svg {
  width: 14px;
  height: 14px;
  stroke: var(--gitam-green);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.contact-detail a {
  color: var(--gitam-green);
  text-decoration: none;
  /* Important */
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;

  flex: 1;
  min-width: 0;
}
.contact-detail a:hover {
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gitam-dark-green);
  color: var(--gitam-antique-white);
  padding: 48px 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 228, 201, 0.12);
}
/* @media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
} */

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 24px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;

    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-col h5 {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .footer-col ul {
    gap: 12px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    line-height: 1.7;
    padding-bottom: 80px;
  }
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.65;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin: 0 0 16px 0; /* remove default top margin */
  padding: 0;
  line-height: 1.2;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  margin: 0;
  padding: 0;
}

.footer-col ul li a {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col ul li a:hover {
  color: var(--secondary-mint);
}
.footer-col ul li a:hover {
  color: var(--gitam-antique-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- SCROLL STICKY CTA ---- */
.sticky-reg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gitam-green);
  color: var(--white);
  border: none;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 115, 103, 0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  transition:
    background 0.2s,
    transform 0.2s;
}
.sticky-reg:hover {
  color: var(--gitam-dark-green);
  transform: translateY(-2px);
  background: white;
}
.sticky-reg svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ---- ANNOUNCEMENT STRIP ---- */
.announcement-strip {
  background: var(--gitam-mellow-yellow);
  color: var(--gitam-dark-green);
  text-align: center;
  padding: 11px 32px;
  font-size: 13.5px;
  font-weight: 500;
}
.announcement-strip a {
  color: var(--gitam-dark-green);
  font-weight: 700;
  text-decoration: underline;
}
.announcement-strip strong {
  font-weight: 700;
}
/* ---- calendar script ---- */
.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 6px;
  background: var(--gitam-green);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.cal-nav-btn:hover {
  background: var(--gitam-dark-green);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.cal-day-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 0;
}

.cal-day {
  padding: 10px 4px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.cal-day:hover {
  background: rgba(0, 115, 103, 0.08);
}

.cal-day.today {
  border: 2px solid var(--gitam-green);
  font-weight: 700;
}

.event-date {
  position: relative;
  font-weight: 600;
}

.event-date::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gitam-green);
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.cal-day.selected {
  background: var(--gitam-kind-coral) !important;
  color: #fff !important;
}

.cal-day.empty {
  visibility: hidden;
}

.about-img {
  border-radius: 20px;
}

.about1 .mt-5 {
  margin-top: 5rem !important;
}

/* R&M HIghlights */

.gallery-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}
.gallery-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}
.gallery-track img:hover {
  transform: scale(1.05);
}
.gallery-wrap::before,
.gallery-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.gallery-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.01), transparent);
}

.gallery-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.01), transparent);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════
       FACULTY CARDS
    ═══════════════════════════════════════════════ */
.faculty-section {
  /* padding: 6rem 0; */
  background: var(--gitam-antique-white);
  position: relative;
  overflow: hidden;
}
.faculty-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.faculty-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* @media (min-width: 1024px) { .faculty-grid { grid-template-columns: repeat(5, 1fr); } } */
/* 
    .faculty-card {
      background: #ffffff;
      border: 1px solid rgba(130, 253, 233, 0.08);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
      cursor: default;
    } */
.faculty-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(130, 253, 233, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faculty-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(84, 255, 227, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.faculty-card-top {
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
  position: relative;
}
.faculty-card-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gitam-green),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.faculty-card:hover .faculty-card-top::before {
  opacity: 1;
}
.faculty-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.05)
  );
  border: 2px solid rgba(201, 168, 76, 0.4);
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Inter", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gitam-green);
  transition:
    border-color var(--transition),
    background var(--transition);
}
.faculty-card:hover .faculty-avatar {
  border-color: var(--gitam-green);
  background: rgba(201, 168, 76, 0.2);
  animation: goldPulse 1.5s ease-out;
}
.faculty-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gitam-dark-green);
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}
.faculty-photo {
  width: 100%;
  height: 120px;
  object-fit: contain;
}
/* .faculty-card-body {
      display: flex;
      flex-direction: column; 
      justify-content: space-between;
      padding: 0.75rem 1rem 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    
    } */

.faculty-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem 1.5rem;
}
.faculty-area {
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 600;
  line-height: 1.5;

  color: var(--gitam-green);

  margin-bottom: 14px;
}
.faculty-pubs li {
  font-size: 0.78rem;
  color: black;
  line-height: 1.5;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(123, 255, 189, 0.05);
}
.faculty-pubs li:last-child {
  border-bottom: none;
}
.faculty-pubs li::before {
  color: var(--gitam-green);
  opacity: 0.6;
}
.faculty-card-top {
  position: relative;
  height: 280px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;

  padding: 20px;
  overflow: hidden;
}

.faculty-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15));
}

.faculty-name {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--gitam-dark-green);

  margin-bottom: 12px;
}

.faculty-actions {
  margin-top: auto;
  padding-top: 20px;
}

.faculty-btn {
  width: 100%;
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 2px solid rgba(0, 115, 103, 0.25);
  border-radius: 12px;

  background: #fff;
  color: var(--gitam-green);

  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
}
.faculty-btn:hover {
  background: var(--gitam-green);
  border-color: var(--gitam-green);

  color: #007367 !important;

  transform: translateY(-2px);
}
.faculty-btn:hover i {
  transform: translateX(3px);
}
.faculty-btn i {
  transition: 0.3s ease;
}

@media (max-width: 767px) {
  .faculty-card-body {
    padding: 20px;
  }

  .faculty-btn {
    min-height: 48px;
  }
  .section {
    padding: 50px 10px;
  }
}

/* .events-container { padding: 32px 20px; } */

.events-header {
  /* display: flex;
    justify-content: space-between;
    align-items: center; */
  margin-bottom: 32px;
}

.events-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a7860;
}

.filter-buttons {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid #0a6b55;
  background: white;
  color: #0a6b55;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.events-tabs {
  display: flex;
  align-items: center;

  border-bottom: 1px solid rgba(0, 115, 103, 0.15);

  width: fit-content;
}
.event-tab {
  position: relative;

  border: none;
  background: none;

  padding: 14px 24px;

  font-size: 15px;
  font-weight: 600;

  color: #6b7280;

  cursor: pointer;

  transition: 0.3s ease;
}
.event-tab:hover {
  color: var(--gitam-green);
}
.event-tab.active {
  color: var(--gitam-green);
}
.event-tab::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 100%;
  height: 3px;

  background: var(--gitam-green);

  transform: scaleX(0);

  transition: 0.3s ease;
}

.event-tab.active::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .events-tabs {
    width: 100%;
  }

  .event-tab {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
  }
}

.filter-btn.active {
  background: #0a6b55;
  color: white;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background: #c8e6dd;
  border-radius: 24px;
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* min-height: 280px; */
  position: relative;
  transition: opacity 0.2s ease;
}

.event-card.hidden {
  display: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.date-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a5a47;
  white-space: nowrap;
}

.room-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #1a5a47;
}

.room-icon {
  width: 8px;
  height: 8px;
  background: #0a6b55;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.room-icon i {
  font-size: 6px;
  color: white;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0d3d2d;
  line-height: 1.35;
  margin-top: 4px;
}

.card-description {
  font-size: 12.5px;
  color: #3d7565;
  line-height: 1.4;
  flex-grow: 1;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1a5a47;
}

.card-location i {
  font-size: 14px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  width: 100%;
}

.view-btn {
  background: #0a6b55;
  color: white;
  border: none;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.register-link {
  font-size: 12px;
  font-weight: 600;
  color: #1a6b55;
  background: #fff;
  border-radius: 18px;

  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 20px;
}

.register-link i {
  font-size: 12px;
}
.register-link:hover {
  color: #003f3f;
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: #666;
  font-size: 14px;
}

.reg-container {
  background: #e9e9e9;

  color: #007367;
}

.event-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
  z-index: 9999;
}

.event-modal.active {
  opacity: 1;
  visibility: visible;
}

.event-modal-content {
  width: min(650px, 90%);
  background: #fff;

  border-radius: 20px;
  padding: 32px;

  position: relative;

  transform: translateY(20px);
  transition: 0.3s ease;
}

.event-modal.active .event-modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;

  border: none;
  background: #f3f5f7;
  border-radius: 50%;

  cursor: pointer;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 24px; */
  background: #ebf4f3;
}

.modal-title {
  font-size: 25px;
  line-height: 1.3;
  /* margin-bottom: 16px; */
  color: #014d47;
  font-weight: 600;
}

.modal-description {
  font-size: 16px;
  line-height: 1.8;
  color: #5f6e78;
}

.modal-location {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #014d47;
}

.modal-actions {
  margin-top: 30px;
}

.modal-actions .register-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  text-decoration: none;

  background: #007c6c;
  color: #fff;

  padding: 12px 20px;
  border-radius: 8px;
}

.abstracts-block {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.abstracts-block {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;

  padding-right: 8px;

  scrollbar-width: thin;
  scrollbar-color: var(--gitam-green) #f1f1f1;
}
.abstract-row {
  padding: 16px;

  border-bottom: 1px solid var(--border-light);
}

.abstract-row:last-child {
  border-bottom: none;
}

.abstract-row:hover {
  background: rgba(0, 115, 103, 0.03);
}

.abstract-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 115, 103, 0.08);
  color: var(--gitam-green);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abstract-content {
  flex: 1;
}

.abstract-content h4 {
  font-size: 15px;

  line-height: 1.5;

  color: var(--gitam-dark-green);

  font-weight: 600;

  margin-bottom: 8px;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;

  text-overflow: ellipsis;
}
.abstract-content p {
  margin: 0;

  color: #5f6e78;

  font-size: 13px;

  line-height: 1.7;

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;
}

.abstract-content p span {
  color: #83929b;
}
.tag-pill {
  flex-shrink: 0;
}

.section-how-we-do-it {
  padding: 60px 20px;
}

.slider .abstract-row {
  padding: 15px 0;
}
.slick-slide {
  padding: 24px;
}

.slick-slide img {
  /* width: 100%; */
  border-radius: 15px;
}

/* .slick-list {
  margin: 0;
} */
.view-all-wrapper {
  margin-top: auto;
  padding-top: 18px;
}

@media screen and (max-width: 425px) {
  .slick-slide {
    padding: 12px;
  }
}

.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  border-radius: 16px;
}

.slick-prev::before,
.slick-next::before {
  color: var(--gitam-green);
  font-size: 30px;
  opacity: 1;
}

.slick-prev,
.slick-next {
  top: 105%;
  width: 40px;
  height: 40px;
}

.slick-next {
  right: 48%;
}

.slick-prev {
  left: 45%;
}

.websitelink svg,
.linkedIn svg {
  stroke: none;
}
@media screen and (max-width: 991px) {
  .slick-prev {
    left: 36%;
  }
  .slick-next {
    right: 45%;
  }
}

@media (max-width: 767px) {
  .slick-prev {
    left: 38%;
  }

  .slick-next {
    right: 38%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

.abstract-programs-grid {
  display: flex;
}

.program-title {
  font-size: 15px;
  font-weight: 700;

  color: var(--gitam-dark-green);

  margin-bottom: 22px;
}

.abstract-list {
  flex: 1;
}

.slick-initialized .slick-slide {
  display: flex;
}

/* swiper slide */
.heroSwiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #007367;
}
