:root {
  --teal: #0a7b6e;
  --teal-dark: #065a50;
  --teal-lite: #e6f4f2;
  --gold: #c8922a;
  --gold-lite: #fdf3e3;
  --ink: #1a2230;
  --muted: #5a6478;
  --line: #dde3ec;
  --white: #ffffff;
  --bg: #f7f9fc;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(10, 123, 110, .10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── TOPBAR ─────────────────────────────────────────── */
.topbar {
  background: var(--teal-dark);
  color: #c8ede9;
  font-size: .8rem;
  padding: .45rem 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-contact a {
  color: #c8ede9;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.topbar-contact a:hover {
  color: var(--white);
}

.topbar-social {
  display: flex;
  gap: .75rem;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8ede9;
  transition: background .2s;
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--white);
}

/* ─── HEADER ─────────────────────────────────────────── */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-wrap img {
  height: 60px;
  width: auto;
}

.logo-text {
  line-height: 1.3;
}

.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--teal-dark);
  display: block;
}

.logo-text span {
  font-size: .72rem;
  color: var(--muted);
}

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .55rem .85rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .18s, color .18s;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: var(--teal-lite);
  color: var(--teal);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 210px;
  z-index: 200;
  overflow: hidden;
}

.dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .85rem;
  color: var(--ink);
  transition: background .15s;
}

.dropdown a:hover {
  background: var(--teal-lite);
  color: var(--teal);
}

.dropdown a+a {
  border-top: 1px solid var(--line);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked~.header-inner nav {
  display: flex;
  flex-direction: column;
}

/* ─── HERO / SLIDER ───────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
}

.slider {
  display: flex;
  width: 500%;
  animation: slide 18s infinite;
}

.slider img {
  width: 20%;
  height: 520px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }

  18% {
    transform: translateX(0%);
  }

  20% {
    transform: translateX(-20%);
  }

  38% {
    transform: translateX(-20%);
  }

  40% {
    transform: translateX(-40%);
  }

  58% {
    transform: translateX(-40%);
  }

  60% {
    transform: translateX(-60%);
  }

  78% {
    transform: translateX(-60%);
  }

  80% {
    transform: translateX(-80%);
  }

  98% {
    transform: translateX(-80%);
  }

  100% {
    transform: translateX(0%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 90, 80, .65) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 580px;
  margin-left: 6%;
  color: var(--white);
  animation: fadeUp .9s ease both;
}

.hero-content .tag {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: .9rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1rem;
  opacity: .9;
  margin-bottom: 1.6rem;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.4rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: #a97420;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--teal);
  color: var(--white);
  padding: 1.4rem 0;
}

.stats-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  opacity: .85;
  margin-top: .2rem;
}

/* ─── LAYOUT HELPERS ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg);
}

.section-teal {
  background: var(--teal-dark);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-lite);
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
}

/* ─── WELCOME ───────────────────────────────────────────── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-img-wrap {
  position: relative;
}

.welcome-img-wrap img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.welcome-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: var(--white);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.welcome-badge strong {
  font-size: 1.5rem;
  display: block;
  font-family: 'Playfair Display', serif;
}

.welcome-badge span {
  font-size: .75rem;
}

.welcome-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.welcome-quote {
  border-left: 4px solid var(--teal);
  padding: .8rem 1.2rem;
  background: var(--teal-lite);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--teal-dark);
  margin: 1.4rem 0;
}

/* ─── CARDS ─────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.8rem;
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-lite);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.card p {
  font-size: .875rem;
  color: var(--muted);
}

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
}

.card a.card-link:hover {
  color: var(--teal-dark);
}

/* ─── OFFICE BEARERS ─────────────────────────────────────── */
.ob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.ob-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: box-shadow .2s;
}

.ob-card:hover {
  box-shadow: var(--shadow);
}

.ob-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--teal);
}

.ob-role {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}

.ob-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

/* ─── PRESIDENT'S PEN ─────────────────────────────────────── */
.pen-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.pen-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pen-photo img {
  width: 100%;
  object-fit: cover;
}

.pen-info {
  background: var(--teal-dark);
  color: var(--white);
  padding: 1.2rem 1.4rem;
}

.pen-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.pen-info p {
  font-size: .78rem;
  opacity: .85;
  line-height: 1.6;
}

.pen-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.pen-text p:first-child {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
}

/* ─── EVENTS ─────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.event-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-card-body {
  padding: 1.2rem;
}

.event-card-body h3 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.event-card-body p {
  font-size: .82rem;
  color: var(--muted);
}

/* ─── CONFERENCE BANNER ───────────────────────────────────── */
.conf-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0f9e8d 100%);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.conf-banner-img {
  width: 40%;
  object-fit: cover;
  flex-shrink: 0;
}

.conf-banner-body {
  padding: 3rem 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conf-banner-body .tag {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.conf-banner-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: .9rem;
}

.conf-banner-body p {
  opacity: .9;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

/* ─── DOWNLOADS ───────────────────────────────────────────── */
.dl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.dl-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  transition: background .18s, border-color .18s;
}

.dl-list li a:hover {
  background: var(--teal-lite);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.dl-icon {
  width: 38px;
  height: 38px;
  background: var(--teal-lite);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-lite);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: .875rem;
  color: var(--muted);
}

.contact-info-item a:hover {
  color: var(--teal);
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #0c1c1a;
  color: #8ba8a4;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

/* .footer-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 1rem;
} */

.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: .55rem;
}

.footer-col ul li a {
  font-size: .82rem;
  color: #8ba8a4;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ba8a4;
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
}

.footer-bottom a {
  color: #8ba8a4;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ─── MOBILE MENU ─────────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 150;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 200;
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: 4px 0 24px rgba(0, 0, 0, .15);
  flex-direction: column;
  gap: .25rem;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mobile-nav-header img {
  height: 44px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}

.mobile-nav a {
  display: block;
  padding: .7rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background .15s;
}

.mobile-nav a:hover {
  background: var(--teal-lite);
  color: var(--teal);
}

.mobile-nav .mobile-sub {
  padding-left: 1rem;
}

.mobile-nav .mobile-group-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .8rem .9rem .2rem;
}

.menu-open .mobile-overlay,
.menu-open .mobile-nav {
  display: flex;
}

/* Subscribe Section  */
.subscribe-section {
  background: var(--gold);
  padding: 3rem 0;
  text-align: center;
}

.subscribe-section .section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
}

.subscribe-section .section-sub {
  color: rgba(255, 255, 255, .9);
  max-width: 500px;
  margin: .75rem auto 1.5rem;
}

.subscribe-section .subscribe-form {

  gap: .75rem;

  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.subscribe-form input,
.subscribe-form button {
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* ─── UTILITIES ───────────────────────────────────────────── */


.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}

/* Gallery css code starts here */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}


/* .gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
} */

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.zoom-effect {
  transition: transform .3s ease;
}
.zoom-effect:hover {
  transform: scale(1.05);
}
@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fullView {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.fullViewImg {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  animation: zoomIn .3s ease;
}

.closeBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}
/* bulletin card css code ends here */
.bulletin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.bulletin-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  /* padding: 14px; */
  overflow: hidden;
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.bulletin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  opacity: 0;
  transition: 0.35s ease;
  z-index: 0;
}


.bulletin-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.28);
  backdrop-filter: blur(10px);
}
.bulletin-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 60%;
  height: 250%;
  background: rgba(255,255,255,0.18);
  transform: rotate(25deg);
  transition: 0.7s;
}
card-content{
  padding: 14px;
  text-align: center;
}
card-content card-title{
  margin: 18px 4px 16px;
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  text-transform: capitalize;
  transition: color 0.35s ease;
}
.bulletin-card:hover::after {
  left: 130%;
}



.bulletin-card img,
.bulletin-card h3,
.bulletin-card a {
  position: relative;
  z-index: 1;
}

/* .bulletin-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.45s ease, filter 0.45s ease;
} */
.bulletin-card img {
  transition: transform 0.6s ease;
}
.bulletin-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.bulletin-card h3 {
  margin: 18px 4px 16px;
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  text-transform: capitalize;
  transition: color 0.35s ease;
}


.bulletin-card .btn {
  display: inline-block;
  margin: 0 4px 6px;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  color: #fff;
  font-weight: 700;
  border: none;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}


.bulletin-card .btn:hover {
  letter-spacing: 1px;
  transform: translateY(-3px) scale(1.03);
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.bulletin-card {
  animation: floatCard 5s ease-in-out infinite;
}

@media (max-width: 576px) {
  .bulletin-card img {
    height: auto;
  }
}