:root {
  --bg: #f5f7fb;
  --primary: #1F2A44;
  --secondary: #243A5E;
  --panel: rgba(7, 15, 24, 0.52);
  --panel-strong: rgba(7, 15, 24, 0.72);
  --text: #000;
  --muted: #3A4F7A;
  --accent: #0d6efd;
  --accent-2: #f0c24b;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --max-w: 1200px;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.top-strip {
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.top-strip .wrap {
  /* max-width: var(--max-w); */
  margin: 0 auto;
  padding: 0.5rem 1.6rem;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 1rem;
}

.contact-email {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.2s ease;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hero-slider {
  min-height: 55vh;
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 420px;
  max-height: 620px;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(5, 10, 18, 0.72) 10%, rgba(5, 10, 18, 0.4) 35%, rgba(5, 10, 18, 0.25) 50%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: var(--max-w); */
  margin: 0 auto;
  padding: 3.5rem 1.6rem;
  display: flex;
  /* justify-content: center;
  align-items: center; */
}

.hero-panel {
  max-width: 640px;
  text-align: center;
}

.hero-panel h1 {
  /* font-size: clamp(1.9rem, 2.4vw + 1.4rem, 3.1rem); */
  line-height: 1.15;
  margin: 0.4rem 0 0.8rem;
  color: #fff;
  font-weight: 400;
}

.hero-panel .quote-credit {
  font-size: 2rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 1.4rem;
}

.hero-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 3;
  pointer-events: none;
}

.hero-btn {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hero-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.03);
}

.hero-progress {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(460px, 80%);
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
  z-index: 3;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: #ffffff;
  transition: width 0.2s linear;
}

@media (max-width: 768px) {
  .hero-swiper {
    height: 52vh;
    min-height: 360px;
  }

  .hero-nav {
    padding: 0 0.6rem;
  }

  .hero-btn {
    width: 40px;
    height: 40px;
  }
}

/* Highlights Section */
.highlights-section {
  padding: 4rem 0 2.5rem;
  background: #fff;
}

.highlights-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--primary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-box {
  background: var(--secondary);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.highlight-number {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.highlight-label {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
}

.highlights-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin: 2.5rem 0 1.5rem;
}

/* Stats Banner */
.stats-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.stats-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13, 21, 37, 0.75), rgba(13, 21, 37, 0.5));
  z-index: 1;
}

.stats-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-icon {
  font-size: 2.2rem;
  color: #ff1744;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Highlight Cards */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.highlight-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 3px solid var(--secondary);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 2.2rem;
  color: #ff1744;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 23, 68, 0.1);
  border-radius: 8px;
}

.card-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0.8rem 0;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff1744;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.card-link:hover {
  color: #ff1744;
  border-bottom-color: #ff1744;
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .highlights-title {
    font-size: 1.8rem;
  }

  .highlight-box {
    padding: 1.5rem 1rem;
  }

  .highlight-number {
    font-size: 2.2rem;
  }

  .stats-banner-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .highlight-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* IRSSM Chapters Section */
.irssm-chapters-section {
  padding: 4rem 0 2rem;
  background: #fff;
}

.chapters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.chapter-box {
  padding: 2.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 120px;
}

.chapter-main {
  background: var(--secondary);
}

.chapter-secondary {
  background: var(--secondary);
}

.chapter-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.chapter-box span {
  font-size: 0.85rem;
  opacity: 0.9;
  display: block;
  margin-top: 0.3rem;
}

.chapters-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.chapters-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.welcome-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: fit-content;
}

.know-more-btn:hover {
  background: var(--primary);
  color: #fff;
}

.vision-aim-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vision-card,
.aim-card {
  background: #f5f7fb;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.vision-card h4,
.aim-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.8rem;
}

.vision-card p,
.aim-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.chapters-right {
  display: flex;
  gap: 1rem;
}

.chapters-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.chapter-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Chapter Cards */
.chapters-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.chapter-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #e0e0e0;
}

.chapter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.chapter-card .card-icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(36, 58, 94, 0.1);
  border-radius: 8px;
}

.chapter-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0.8rem 0;
}

.chapter-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.chapter-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.chapter-card .card-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  gap: 0.8rem;
}

@media (max-width: 1024px) {
  .chapters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chapters-content-wrapper {
    grid-template-columns: 1fr;
  }

  .vision-aim-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .chapters-grid {
    grid-template-columns: 1fr;
  }

  .chapter-box {
    min-height: 100px;
    padding: 1.5rem;
  }

  .chapter-box h3 {
    font-size: 1rem;
  }

  .welcome-section h2 {
    font-size: 1.3rem;
  }

  .chapters-right {
    order: -1;
  }

  .chapters-images {
    grid-template-columns: 1fr;
    height: 250px;
  }

  .chapter-image {
    height: 250px;
  }

  .chapters-cards {
    grid-template-columns: 1fr;
  }
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 5rem;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  /* background: rgba(255, 255, 255, 0.9); */
  color: #0b0f15;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease;
}

.nav-bar.hide-nav {
  transform: translateY(-100%);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 100px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.search-btn {
  width: 40px;
  height: 30px;
  border: none;
  padding-right: 2px; 
  /* background: rgba(0, 0, 0, 0.03); */
  background: transparent;
  color: #4b5563;
  /* border-radius: 10px; */
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  border-right: 1px solid black;
  justify-content: center;
}

.search-btn:hover {
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

.sign-in-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
} 
.sign-in-btn-sidebar {
  padding: 0.5rem 1rem;
  border: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
} 
.sidebar-nav .sign-in-btn-sidebar:hover,
a.sign-in-btn-sidebar:hover {
  background: var(--secondary) !important;
  color: #fff !important;
  opacity: 0.9;
  border-left-color: transparent !important;
} 
.sign-in-text{
  /* padding: 0.5rem 1rem; */
  margin-left: -10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

@media(max-width: 768px) {
  .sign-in-text {
    padding-left: auto;
    padding-right: 10px;
  }
  .search-btn{
    border-right: none;
    padding-right: 10px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}

.nav-links a {
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  color: #4b5563;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0b0f15;
  background: rgba(13, 110, 253, 0.1);
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #000;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  /* display: flex; */
  align-items: center;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-logo {
  height: 45px;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4b5563;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.close-sidebar:hover {
  color: #0b0f15;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.sidebar-nav a {
  padding: 1rem 1.5rem;
  color: #4b5563;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover:not(.sign-in-btn-sidebar),
.sidebar-nav a.active:not(.sign-in-btn-sidebar) {
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.05);
  border-left-color: #0d6efd;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* .hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1.6rem 1.5rem;
} */

.hero-panel {
  max-width: 720px;
  padding: 2.6rem 2.4rem;
  /* background: rgba(7, 15, 24, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12); */
  /* border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px); */
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: var(--secondary);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #f7fbff;
  /* backdrop-filter: blur(8px); */

  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

h1 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(1.5rem, 3vw + 1rem, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.quote-credit {
  margin: 0 0 1.4rem;
  color: rgba(232, 238, 245, 0.8);
  font-weight: 500;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #0b0f15;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.btn.ghost {
  background: #fff;
  color: #000;
  box-shadow: 0 14px 28px rgba(249, 249, 249, 0.2);
}

.btn.ghost:hover {
  background: #d2d1d1;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.7rem;
  }
}

@media (max-width: 960px) {
  .nav-bar {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .nav-right {
    justify-content: flex-end;
    gap: 0.8rem;
  }

  .hero-inner {
    padding-top: 3.5rem;
  }
}

@media (max-width: 1324px) {
  /* Show hamburger, hide desktop nav */
  .hamburger-btn {
    display: flex;

  }
  .sign-in-btn {
    display: none;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-right {
    order: unset;
    width: auto;
    gap: 0.9rem;
  }
  
  .nav-bar {
    padding: 1rem 1.5rem;
  }
  
  .brand-logo {
    height: 50px;
  }
}

@media (max-width: 700px) {
  .top-strip{
    display: none;
  }
  /* .top-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  } */

  .nav-bar {
    padding: 0.1rem 1rem;
  }

  .brand-logo {
    height: 80px;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .hero-panel {
    padding: 2rem;
  }
}

@media (max-width: 520px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

/* Vision & Aim Section */
.vision-aim-section {
  background: #fff;
  /* padding: 5rem 0;  */
  color: var(--text);
  
}

.vision-aim-section .container {
  max-width: var(--max-w);
}

.welcome-panel {
  padding-right: 2rem;
  border-right: 3px solid #ddd;
}



.welcome-panel h2,.vision-card h2, .aim-card h2 {
  font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.4rem);
  line-height: 1.3;
  margin-bottom: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.know-more-btn:hover {
  background: var(--secondary);
  color: #fff;
  gap: 0.8rem;
}

.content-panels {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-left: 2rem;
}

.content-card {
  background: #f9fafc;
  padding: 1.8rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.content-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.content-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.content-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .welcome-panel {
    padding-right: 0;
    border-right: none;
    border-bottom: 3px solid #ddd;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .content-panels {
    padding-left: 0;
  }

  .welcome-panel h2 {
    font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
  }
}

/* IRSSM Family Section */
.irssm-family-section {
  /* background: linear-gradient(135deg, #f5f7fb 0%, #eef2f8 100%); */
  background: var(--primary);
  padding: 1.5rem 0;
  color: var(--text);
}

.irssm-family-section .container {
  max-width: var(--max-w);
}

.family-card {
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 14px;
  padding: 1.8rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.family-card:hover {
  border-color: var(--secondary);
  /* box-shadow: 0 12px 32px rgba(13, 110, 253, 0.15); */
  box-shadow: 0 24px 32px rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 3rem;
  color: var(--secondary);
  line-height: 1;
  display: contents;
}

.family-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1525;
  margin: 0.5rem 0 0;
}

.family-card p {
  font-size: 0.95rem;
  color: #556575;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.family-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.family-btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.family-btn:hover {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.25);
}

@media (max-width: 768px) {
  .irssm-family-section {
    /* padding: 2rem 0; */
  }

  .family-card {
    padding: 1.8rem 1.5rem;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .family-card h3 {
    font-size: 1.15rem;
  }
}

/* Partners Section */
.partners-section {
  position: relative;
  background: #fff;
  padding: 3.5rem 0;
  overflow: hidden;
}

.partners-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: rgba(13, 21, 37, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.partners-section .container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
}

.partners-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0d1525;
  margin-bottom: 3.5rem;
}

.partners-carousel-container {
  position: relative;
  width: 100%;
}

.partners-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
}

.partner-card {
  width: 300px;
  height: 320px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 12px;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
  transform: translateY(-3px);
}

.partner-logo {
  background: #fff;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.partner-name {
  background: var(--secondary);
  color: #fff;
  padding: 1.2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .partner-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 4rem 0;
  }

  .partners-title {
    margin-bottom: 2.5rem;
  }

  .partners-carousel-container {
    display: flex;
    justify-content: center;
  }

  .partners-track-wrapper {
    max-width: 320px;
  }

  .partner-card {
    width: 300px;
    height: 280px;
    flex-shrink: 0;
  }

  .partners-track {
    gap: 2rem;
  }

  .partner-logo {
    padding: 1.5rem;
  }

  .partner-logo img {
    max-height: 120px;
  }

  .partner-name {
    height: 80px;
    font-size: 0.9rem;
  }
}

  .partner-name {
    font-size: 0.9rem;
    padding: 1rem 0.8rem;
    height: 80px;
  }
}

/* Events Section */
.events-section {
  background: var(--primary);
  color: #fff;
  padding: 2.5rem 0;
}

.events-section .container {
  max-width: var(--max-w);
}

.events-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.featured-event {
  position: relative;
}

.featured-image {
  position: relative;
  border: 4px solid var(--secondary);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.event-details {
  padding: 1rem 0;
}

.event-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #fff;
}

.event-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.event-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.event-btn.know-more {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.event-btn.know-more:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.event-btn.call-papers {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
}

.event-btn.call-papers:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

.event-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-event {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar-event img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.sidebar-caption {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 4px;
}

.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
}

.brochure-btn:hover {
  background: #fff;
  color: #0a0a0a;
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .event-sidebar {
    flex-direction: row;
    gap: 1rem;
  }

  .sidebar-event {
    flex: 1;
  }

  .brochure-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 4rem 0;
  }

  .events-title {
    margin-bottom: 2rem;
  }

  .event-actions {
    width: 100%;
  }

  .event-btn {
    width: 100%;
    justify-content: center;
  }

  .event-sidebar {
    flex-direction: column;
  }

  .sidebar-event img {
    height: 180px;
  }

  .brochure-btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
}


/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  padding: 0 1rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  position: relative;
  color: #c0bdbd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.5s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
}

.footer-address p {
  margin-bottom: 0.5rem;
}

.social-icons-footer {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-icons-footer a{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.2s ease;
}
.social-icons-footer a:hover{
  transform: translateY(-2px);
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-input,
.footer-textarea {
  background: #2a2a2a;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-input::placeholder,
.footer-textarea::placeholder {
  color: #999;
}

.footer-input:focus,
.footer-textarea:focus {
  outline: none;
  background: #333;
}

.footer-btn {
  background: #fff;
  color: #1a1a1a;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.footer-btn:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  color: #c4c3c3;
  font-size: 0.85rem;
}

.highlight-footer{
  color: #fff;
  font-weight: 600;
}
.highlight-footer:hover{
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #fff;
  padding: 3.5rem 0;
}

.testimonials-section .container {
  max-width: var(--max-w);
}

.testimonials-wrap {
  position: relative;
}

.testimonials-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0d1525;
  margin-bottom: 2.2rem;
}

.testimonials-swiper {
  position: relative;
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

/* Scrollbar styling */
.testimonials-swiper .swiper-scrollbar {
  position: relative;
  height: 5px;
  background: #e8edf6;
  border-radius: 999px;
  margin-top: 16px;
}

.testimonials-swiper .swiper-scrollbar-drag {
  background: var(--secondary);
  border-radius: 999px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 14px;
  padding: 1.2rem 1.2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  height: 100%;
}

.testimonial-avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.18);
  overflow: hidden;
  background: #f3f6fb;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testimonial-name {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.2rem 0 0.3rem;
  color: #0d1525;
}

.testimonial-role {
  text-align: center;
  font-size: 0.85rem;
  color: #556575;
  margin: 0 0 0.6rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #425466;
  margin: 0;
  text-align: left;
}

/* Nav buttons */
.testimonial-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
}

.testimonial-nav::after {
  font-size: 18px;
}

.testimonials-section .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Half in / half out placement (clipped by container) */
.testimonials-section .swiper-button-prev { left: -27px; }
.testimonials-section .swiper-button-next { right: -27px; }

@media (max-width: 1400px) {
  .testimonials-section .swiper-button-prev { left: -10px; }
.testimonials-section .swiper-button-next { right: -10px; }
  
}
@media (max-width: 992px) {
  .testimonial-avatar { width: 80px; height: 80px; }
  
}

@media (max-width: 768px) {
  .testimonials-section { padding: 4rem 0; }
  .testimonials-section .swiper-button-prev { left: -8px; }
  .testimonials-section .swiper-button-next { right: -8px; }
  /* Hide nav buttons on mobile; rely on swipe + scrollbar */
  .testimonials-section .swiper-button-prev,
  .testimonials-section .swiper-button-next { display: none; }
}

/* Team Section */
.team-section {
  background: #fff;
  padding: 3.5rem 0;
}

.team-section .container { max-width: var(--max-w); }

.team-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1525;
  margin-bottom: 2.5rem;
}

.team-title span { color: var(--secondary); }

.team-highlight-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.team-card {
  background: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

.team-card--highlight {
  width: min(320px, 90vw);
  border: 1px solid #dbe4f3;
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.18);
}

.team-avatar {
  width: 86px;
  height: 86px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #0d1525;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 0.35rem;
}

.team-meta {
  font-size: 0.85rem;
  color: #5b6675;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .team-section { padding: 4rem 0; }
  .team-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #f9fafc;
}

.contact-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

.contact-left {
  background: #1f3256;
  color: #c9d6ee;
  position: relative;
}

.contact-left-inner {
  position: relative;
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-words {
  position: absolute;
  inset: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
  font-size: 3.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  text-transform: capitalize;
  line-height: 1.1;
}

.contact-globe {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 1.5rem;
}

.globe-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid #fff;
}

.globe-vert,
.globe-horiz {
  position: absolute;
  border: 4px solid #fff;
  border-radius: 999px;
}

.globe-vert {
  top: -4px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-top: none;
  border-bottom: none;
  width: 36px;
}

.globe-vert--right {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

.globe-horiz {
  left: -4px;
  right: -4px;
  height: 34px;
  border-left: none;
  border-right: none;
  top: 42px;
}

.globe-horiz--low { top: 96px; }

.contact-left-text {
  position: relative;
  z-index: 1;
  color: #fff;
}

.contact-left-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-left-sub {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-right {
  padding: 3rem 2.5rem;
  background: #fff;
}

.contact-copy h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  margin: 0 0 0.35rem;
  color: #0d1525;
  font-weight: 800;
}

.contact-copy p {
  margin: 0 0 1.6rem;
  color: #4b5666;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: 0.5fr 1.5fr; */
  gap: 0.75rem;
}
.contact-row1 {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: 0.5fr 1.5fr;
  gap: 0.75rem;
}


.form-select:focus {
  outline: none;
  border-color: #000;
  box-shadow: none;
}

.contact-form input,
.contact-form textarea,
.contact-flag, .form-select {
  width: 100%;
  border: 1px solid #e1e6ef;
  border-radius: 6px;
  background: #f0f2f7;
  padding: 0.85rem 0.9rem;
  font-size: 0.95rem;
  color: #222;
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.contact-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #222;
}

.flag-icon { font-size: 1.1rem; }
.dial-code { font-weight: 700; letter-spacing: 0.02em; }

.contact-btn {
  align-self: flex-start;
  padding: 0.8rem 1.8rem;
  background: #1f3256;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }

.contact-alt {
  margin: 0.6rem 0 0;
  color: #5a6472;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .contact-shell { grid-template-columns: 1fr; }
  .contact-left { min-height: 320px; }
}

@media (max-width: 600px) {
  .contact-section { padding: 3.5rem 0; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-right { padding: 2.2rem 1.5rem; }
}

/* Events Page */
.events-page { background: #fff; padding: 5rem 0; }
.events-page .container { max-width: var(--max-w); }

.events-page-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: start; }

.ep-title { font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.25rem; }

.ep-list { display: flex; flex-direction: column; gap: 0.9rem; }
.ep-item { background: #fff; border: 1px solid #e4e9f3; border-radius: 10px; padding: 0.9rem 1rem; box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.ep-item-title { font-size: 1rem; font-weight: 800; color: #18314f; margin: 0 0 0.25rem; }
.ep-item-desc { margin: 0; font-size: 0.88rem; color: #5a6472; }

.ep-footer { display: flex; justify-content: space-between; align-items: center; margin: 1rem 0 1.4rem; }
.ep-register { padding: 0.55rem 1.1rem; border-radius: 6px; background: #1f3256; color: #fff; border: none; font-weight: 700; }

.ep-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.ep-thumb { margin: 0; border-radius: 8px; overflow: hidden; border: 1px solid #e4e9f3; background: #f9fbff; }
.ep-thumb img { width: 100%; height: 120px; object-fit: cover; display: block; }
.ep-thumb figcaption { font-size: 0.8rem; padding: 0.4rem 0.6rem; color: #333; }

/* Calendar */
.cal { border: 1px solid #e4e9f3; border-radius: 12px; overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.cal-header { display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; gap: 0.5rem; padding: 0.6rem 0.6rem; border-bottom: 1px solid #e9eef7; }
.cal-title { text-align: center; font-weight: 800; color: #18314f; }
.cal-nav { width: 36px; height: 36px; border-radius: 50%; border: none; background: #f0f3fa; display: inline-flex; align-items: center; justify-content: center; color: #18314f; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-weekdays { padding: 0.3rem 0.6rem; color: #6b7480; font-weight: 700; font-size: 0.8rem; text-align: center; }
.cal-weekdays span { padding: 0.5rem 0; text-align: center; }
.cal-days { gap: 0.2rem; padding: 0.4rem 0.4rem 0.6rem; }
.cal-cell { position: relative; border: none; background: #fff; padding: 0.55rem 0; text-align: center; border-radius: 8px; font-weight: 600; color: #223; cursor: pointer; }
.cal-cell.muted { color: #b7bfcc; background: #fbfcff; }
.cal-cell.today { outline: 2px solid #1f3256; }
.cal-cell.selected { background: #1f3256; color: #fff; }
.cal-selected { padding: 0.6rem 0.9rem 0.9rem; color: #5a6472; font-size: 0.9rem; }

@media (max-width: 1024px){ .events-page-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px){ .events-page { padding: 3.8rem 0; } .ep-thumb img { height: 110px; } }



/* Initiatives Section (hero style) */
.initiatives-hero { padding: 5rem 0 5.5rem; background: #fff; }
.initiatives-hero .container { max-width: var(--max-w); }
.ini-title { text-align: center; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 2.5rem; }

.ini-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: start; }
.ini-head { font-size: clamp(1.6rem, 2.6vw, 3rem); font-weight: 900; color: var(--secondary); margin-bottom: 1rem; line-height: 1.25; }

.ini-stats { list-style: none; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; font-size: 1.85rem; color: #000; font-weight: 600;}
.ini-stats strong { font-weight: 800; margin-right: 0.35rem; }

.ini-body { margin: 0; max-width: 560px; color: #000; line-height: 1.65; }

.ini-right { display: flex; flex-direction: column; gap: 0.8rem; }
.ini-media { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.ini-media img { width: 100%; display: block; height: 100%; object-fit: cover; }
.ini-play { position: absolute; inset: 0; margin: auto; width: 70px; height: 70px; border-radius: 50%; border: none; background: rgba(17,34,70,0.92); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; cursor: pointer; box-shadow: 0 14px 34px rgba(0,0,0,0.2); transition: transform 0.2s ease; }
.ini-play:hover { transform: scale(1.05); }

.ini-link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; color: #1f3256; text-decoration: none; margin-top: 0.2rem; }
.ini-link:hover { text-decoration: underline; }

.ini-icons { display: flex; gap: 0.5rem; margin-top: 0.3rem; align-items: center; transition: all 0.3s ease; }
.ini-icon { width: 32px; height: 32px; background: var(--secondary); border-radius: 6px; display: inline-flex; justify-content: center; align-items: center; color: #fff; font-size: 1.2rem; }
.ini-icons span:hover{
  transform: translateY(-3px);
}
@media (max-width: 960px) {
  .ini-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .initiatives-hero { padding: 4rem 0; }
  .ini-icons { gap: 0.4rem; }
}

/* Initiatives Cards (Academics & Community) */
.ini-cards { padding: 0 0 5rem; background: #fff; }
.ini-cards .container { max-width: var(--max-w); display: flex; flex-direction: column; gap: 1.6rem; }

.ini-card { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid #e7ebf3; border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,0.08); overflow: hidden; gap:100px;}
.ini-card--reverse { grid-template-columns: 1fr 1fr; }

.ini-card-text { padding: 1.8rem 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.ini-card-text h3 { margin: 0; font-size: clamp(1.4rem, 3.1vw, 2.8rem); font-weight: 900; }
.ini-card-text p { margin: 0; color: #000; line-height: 1.6; }

.ini-card-link { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 700; color: #1f3256; text-decoration: none; }
.ini-card-link:hover { text-decoration: underline; }

.ini-card-media { position: relative; min-height: 220px; background: #f5f7fb; }
.ini-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ini-card-play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; border: none; background: rgba(17,34,70,0.92); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,0.2); transition: transform 0.2s ease; }
.ini-card-play:hover { transform: scale(1.05); }

@media (max-width: 900px) {
  .ini-card, .ini-card--reverse { grid-template-columns: 1fr; gap:30px;}
  .ini-card-media { order: -1; }
  .ini-card--reverse .ini-card-media { order: 1; }
}

@media (max-width: 600px) {
  .ini-cards { padding: 0 0 4rem; }
  .ini-card-text { padding: 1.5rem 1.4rem; }
}

/* Media Cards Carousel */
.media-carousel-section { padding: 5rem 0; background: #fff; }
.media-carousel-section .container { max-width: var(--max-w); }

.media-carousel-wrap { position: relative; padding: 0 60px; }

.media-swiper { overflow: hidden; background: #fff;}
.media-swiper .swiper-slide { height: auto; }

.media-card {
  background: #fff;
  border: 1px solid #e4e9f3;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  min-height: 280px;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

.media-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 12px;
  /* background: #f0f3fa; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
}

.media-icon i{
  font-size: 50px;
  color: var(--secondary);
}

.media-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: #0d1525;
}

.media-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6472;
  line-height: 1.6;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.media-nav:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
}

.media-nav-prev { left: 6px; }
.media-nav-next { right: 6px; }

.media-carousel-section .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .media-carousel-section { padding: 4rem 0; }
  .media-carousel-wrap { padding: 0 50px; }
  .media-nav { width: 42px; height: 42px; font-size: 1rem; }
  .media-nav-prev { left: 4px; }
  .media-nav-next { right: 4px; }
  .media-carousel-section .media-nav { display: none; }
}


/* --- Tourism Board Alliances (logo auto-slide) --- */
.tourism-board-alliances{ background: #ffffff; padding:15px 0 6px; }
.tourism-board-alliances .section-title{ margin-bottom:12px; color:#071217 }
.tba-wrap{ overflow:hidden; position:relative }
.tba-track{ display:flex; gap:40px; align-items:center; width:max-content; padding:12px 0 }
.tba-item{ display:flex; align-items:center; justify-content:center; padding:6px 12px }
.tba-item img{ height:170px; width:240px; border-radius: 20px; opacity:0.95; filter:grayscale(0.03); display:block }

/* Image container to allow caption overlay */
.tba-image{ position:relative; display:inline-block }
.tba-image img{ display:block; border-radius:20px }
.tba-caption{ position:absolute; left:50%; transform:translateX(-50%); bottom:10px; background:rgba(0,0,0,0.55); color:#fff; padding:6px 10px; border-radius:8px; font-weight:600; font-size:14px; letter-spacing:0.2px }

@media (max-width:768px){
  .tba-caption{ font-size:12px; padding:4px 8px }
  .tba-item img{ height:auto; width:120px }
}

/* duplicate container to create seamless loop - animate translateX by 50% */
.tba-track-wrap{ display:flex; width:max-content; align-items:center }
.tba-track-wrap .tba-track{ margin-right:48px }

@keyframes tba-scroll {
  0%{ transform: translateX(0) }
  100%{ transform: translateX(-50%) }
}
.tba-viewport{ display:block; overflow:hidden }
.tba-viewport .tba-track-wrap{ animation: tba-scroll 20s linear infinite }

@media (max-width: 768px){
  .tba-item img{ max-height:44px }
  .tba-track{ gap:20px }
  .tourism-board-alliances{ margin-bottom:140px }
}

/* IRSSM Timeline (Team page) */
.irssm-timeline-section {
  background: #fff;
  padding: 5rem 0 0rem;
}

.irssm-timeline-section .container {
  /* max-width: var(--max-w); */
}

.timeline-top {
  /* display: grid;
  grid-template-columns: auto 1fr auto; */
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.timeline-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #4d8f8a;
  text-align: center;
  font-weight: 700;
}

.timeline-qr {
  width: 58px;
  height: 58px;
  border: 2px solid #e08a47;
  display: grid;
  place-items: center;
  color: #e08a47;
  font-size: 0.75rem;
  font-weight: 700;
  background: #fff;
}

.timeline-flags {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 8px;
  align-items: center;
  margin: 3rem 0 1.5rem;
  width: 100%;
}

.timeline-flags img {
  width: 100%;
  height: 55px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  background: #fff;
  display: block;
}

.timeline-scroll {
  overflow: visible;
  padding: 1.5rem 0 0rem;
  width: 100%;
  height: auto;
}

.timeline-rail {
  --timeline-card: clamp(120px, 10vw, 180px);
  --top-offset: 220px;
  --bottom-offset: 90px;
  --year-top-offset: 85px;
  --year-bottom-offset: 170px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(13, minmax(60px, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 0 calc(var(--timeline-card) / 2);
  width: 100%;
  height: 670px;
}

.timeline-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 6px;
  background: #cfcfcf;
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  z-index: 10;
}

.timeline-card {
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 0.9rem 0.9rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  width: var(--timeline-card);
}

.timeline-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(13, 110, 253, 0.2);
  transform: translateY(-8px) scale(1.01);
  background: #f8fbff;
}

.timeline-card h4 {
  font-size: 0.85rem;
  margin: 0 0 0.15rem;
  font-weight: 700;
  color: #2d2d2d;
}

.timeline-card p {
  margin: 0;
  font-size: 0.72rem;
  color: #4b4b4b;
  line-height: 1.25;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9a9a9a;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
  background: var(--accent);
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 0.78rem;
  background: #fff;
  border: 1px solid #cfcfcf;
  padding: 4px 12px;
  border-radius: 6px;
  color: #4b4b4b;
  min-width: 50px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.timeline-item.top .timeline-card {
  position: absolute;
  left: 50%;
  bottom: calc(50% + var(--top-offset));
  transform: translateX(-50%);
}

.timeline-item.bottom .timeline-card {
  position: absolute;
  left: 50%;
  bottom: calc(50% + var(--bottom-offset));
  transform: translateX(-50%);
}

.timeline-item.top .timeline-card::after,
.timeline-item.bottom .timeline-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 26px;
  background: #cfcfcf;
}

.timeline-item.top .timeline-card::after {
  bottom: calc(-1 * var(--top-offset));
  height: var(--top-offset);
}

.timeline-item.bottom .timeline-card::after {
  bottom: calc(-1 * var(--bottom-offset));
  height: var(--bottom-offset);
}

.timeline-item.top .timeline-year {
  top: calc(50% + var(--year-top-offset));
}

.timeline-item.bottom .timeline-year {
  top: calc(50% + var(--year-bottom-offset));
}

.timeline-item.top .timeline-year::before,
.timeline-item.bottom .timeline-year::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(-1 * var(--year-top-offset));
  transform: translateX(-50%);
  width: 2px;
  height: var(--year-top-offset);
  background: #cfcfcf;
}

.timeline-item.bottom .timeline-year::before {
  top: calc(-1 * var(--year-bottom-offset));
  height: var(--year-bottom-offset);
}

.timeline-cap {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #bdbdbd;
  color: #666;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  z-index: 2;
  scroll-snap-align: center;
}

@media (max-width: 992px) {
  .timeline-top {
    grid-template-columns: auto 1fr;
  }

  .timeline-qr {
    justify-self: end;
  }

  .timeline-flags {
    grid-template-columns: repeat(6, 1fr);
  }

  .timeline-rail {
    --timeline-card: clamp(120px, 14vw, 170px);
    --top-offset: 200px;
    --bottom-offset: 80px;
    --year-top-offset: 70px;
    --year-bottom-offset: 150px;
    height: 600px;
    grid-template-columns: repeat(13, minmax(54px, 1fr));
  }
}

@media (max-width: 768px) {
  .irssm-timeline-section {
    padding: 3.2rem 0 3.6rem;
  }

  .timeline-top {
    grid-template-columns: auto 1fr;
    margin-bottom: 1rem;
  }

  .timeline-title h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .timeline-rail {
    --timeline-card: 150px;
    --top-offset: 170px;
    --bottom-offset: 70px;
    --year-top-offset: 60px;
    --year-bottom-offset: 135px;
    height: 520px;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    grid-template-columns: none;
    gap: 20px;
    padding: 0 60px;
    width: max-content;
    scroll-snap-type: none;
  }

  .timeline-scroll {
    overflow-x: auto;
    padding-top: 2rem;
  }

  .timeline-card {
    font-size: 0.8rem;
    min-height: 80px;
  }

  .timeline-year {
    font-size: 0.75rem;
  }

  .timeline-flags {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 0.6rem 0 1.8rem;
  }
}

@media (max-width: 576px) {
  .timeline-scroll {
    padding: 2rem 0;
  }

  .timeline-flags {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 0.5rem 0 1.5rem;
  }

  .timeline-rail {
    --timeline-card: 140px;
    --top-offset: 155px;
    --bottom-offset: 60px;
    --year-top-offset: 54px;
    --year-bottom-offset: 120px;
    height: 480px;
    grid-auto-columns: minmax(140px, 1fr);
    padding: 0 40px;
  }

  .timeline-cap {
    width: 54px;
    height: 54px;
    font-size: 0.8rem;
  }
}

/* Team Hero Section */
.team-hero-section {
  background: linear-gradient(135deg, #0D1525 0%, #1a2642 100%);
  padding: 4rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.team-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.team-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero-label {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #fff;
}

.team-hero-credit {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-style: italic;
}

.team-hero-section .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.team-hero-section .btn:hover {
  background: transparent;
  color: #fff;
}

.team-hero-image {
  position: relative;
  z-index: 1;
}

.team-hero-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .team-hero-section {
    padding: 3rem 0;
  }

  .team-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .team-hero-section {
    padding: 2rem 0;
  }

  .team-hero-content {
    text-align: center;
    padding-bottom: 2rem;
  }

  .team-hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .team-hero-section .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .team-hero-image {
    margin-top: 2rem;
  }
}

/* ====================================
   Membership Page Styles
   ==================================== */

/* Membership Hero Section */
.membership-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.membership-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.membership-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.membership-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Membership Plans Section */
.membership-plans {
  padding: 5rem 0;
  background: #f8f9fa;
}

.membership-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  cursor: pointer;
}

.membership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}


.membership-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.membership-card.featured .membership-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.membership-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0 1rem;
}

.membership-price {
  margin: 1.5rem 0;
}

.membership-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--accent);
  font-weight: 600;
}

.membership-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
}

.membership-price .period {
  font-size: 1.1rem;
  color: #6c757d;
}

.membership-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  flex-grow: 1;
  text-align: left;
}

.membership-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #495057;
}

.membership-features li i {
  color: #28a745;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.membership-select-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

.membership-select-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 42, 68, 0.3);
}

/* Selected card button gets blue accent */
.membership-card.active-selection .membership-select-btn {
  background: var(--accent) !important;
  font-weight: 700;
}

.membership-card.active-selection .membership-select-btn:hover {
  background: #0056d2 !important;
}

.membership-card.featured .membership-select-btn {
  background: var(--accent);
}

.membership-card.featured .membership-select-btn:hover {
  background: #0056d2;
}

/* Membership Form Section */
.membership-form-section {
  padding: 5rem 0;
  background: #fff;
}

.form-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-header .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Progress Steps */
.form-progress {
  max-width: 900px;
  margin: 0 auto;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.progress-step.active .step-circle {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.progress-step.completed .step-circle {
  background: #28a745;
  color: #fff;
}

.step-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
}

.progress-step.active .step-label {
  color: var(--secondary);
  font-weight: 600;
}

.progress-bar {
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--secondary);
  transition: width 0.4s ease;
}

/* Membership Form */
.membership-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.form-step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}

.required {
  color: #dc3545;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: #28a745;
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.valid-feedback {
  color: #28a745;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.form-text {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #6c757d;
}

/* Character Counter */
.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.4rem;
}

.char-counter .current {
  font-weight: 600;
}

/* Password Input */
.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--secondary);
}

/* Password Strength */
.password-strength {
  margin-top: 0.75rem;
}

.strength-bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.strength-bar-fill {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.strength-bar-fill.weak {
  width: 33%;
  background: #dc3545;
}

.strength-bar-fill.medium {
  width: 66%;
  background: #ffc107;
}

.strength-bar-fill.strong {
  width: 100%;
  background: #28a745;
}

.strength-text {
  font-size: 0.85rem;
  color: #6c757d;
}

.strength-level {
  font-weight: 600;
}

.strength-level.weak {
  color: #dc3545;
}

.strength-level.medium {
  color: #ffc107;
}

.strength-level.strong {
  color: #28a745;
}

/* Interest Tags */
.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.tag-checkbox {
  cursor: pointer;
  margin-bottom: 0;
}

.tag-checkbox input[type="checkbox"] {
  display: none;
}

.tag-label {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  user-select: none;
}

.tag-checkbox input[type="checkbox"]:checked + .tag-label {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.tag-checkbox:hover .tag-label {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Preference Options */
.preference-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.preference-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
  margin-bottom: 0;
}

.preference-checkbox:hover {
  background: #f8f9fa;
}

.preference-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--secondary);
}

/* Form Navigation */
.form-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
  justify-content: space-between;
}

.btn-prev, .btn-next, .btn-submit {
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-prev {
  background: #6c757d;
  color: #fff;
}

.btn-prev:hover {
  background: #5a6268;
  transform: translateX(-4px);
}

.btn-next {
  background: var(--secondary);
  color: #fff;
  margin-left: auto;
}

.btn-next:hover {
  background: var(--secondary);
  transform: translateX(4px);
}

.btn-submit {
  background: #28a745;
  color: #fff;
  margin-left: auto;
}

.btn-submit:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Review Section */
.review-section {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  position: relative;
}

.review-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #dee2e6;
}

.review-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
}

.review-value {
  font-size: 1rem;
  color: #212529;
}

.btn-edit {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-edit:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* Membership Summary */
.membership-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: #495057;
}

.summary-value {
  color: #212529;
  font-weight: 500;
}

/* Terms and Conditions */
.terms-conditions {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 0;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--secondary);
  flex-shrink: 0;
}

.terms-link {
  color: var(--secondary);
  text-decoration: underline;
}

.terms-link:hover {
  color: var(--secondary);
}

/* Success Modal */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-primary-modal {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 0.9rem 3rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-modal:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .membership-hero-title {
    font-size: 2.5rem;
  }

  .membership-hero-subtitle {
    font-size: 1.1rem;
  }

  .membership-card.featured {
    transform: scale(1);
  }

  .membership-card.featured:hover {
    transform: scale(1) translateY(-8px);
  }

  .progress-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .progress-step {
    flex: 1 1 45%;
  }

  .step-label {
    font-size: 0.8rem;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .membership-form {
    padding: 2rem 1.5rem;
  }

  .form-step-title {
    font-size: 1.5rem;
  }

  .form-navigation {
    flex-direction: column;
  }

  .btn-next, .btn-submit {
    margin-left: 0;
  }

  .btn-edit {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .review-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .membership-hero {
    padding: 4rem 0 3rem;
  }

  .membership-hero-title {
    font-size: 2rem;
  }

  .membership-plans {
    padding: 3rem 0;
  }

  .membership-form-section {
    padding: 3rem 0;
  }

  .interest-tags {
    gap: 0.5rem;
  }

  .tag-label {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

/* Notification Toast Animations */
@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.notification-toast {
  animation: slideInRight 0.3s ease;
}

/* ========== SELECTED CARD STYLING ========== */

/* Any selected card gets the same highlighted style as the popular card */
body .membership-card.active-selection {
  border-color: var(--secondary);
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

body .membership-card.active-selection:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Selected card button matches popular card button */
body .membership-card.active-selection .membership-select-btn {
  background: var(--secondary) !important;
}

body .membership-card.active-selection .membership-select-btn:hover {
  background: var(--secondary) !important;
}

/* Featured card styling ONLY when NOT selected - looks completely normal */
body .membership-card.featured:not(.active-selection) {
  border-color: var(--secondary);
  border-width: 3px;
  transform: scale(1.05);
}

body .membership-card.featured:not(.active-selection):hover {
  transform: scale(1.05) translateY(-8px);
}

/* Override: When ANY card has active-selection, non-selected cards (including featured) look normal */
body .membership-plans.has-active-selection .membership-card.featured:not(.active-selection) {
  border: 2px solid transparent;
  transform: scale(1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body .membership-plans.has-active-selection .membership-card.featured:not(.active-selection):hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Badge also resets on featured card when not selected */
body .membership-plans.has-active-selection .membership-card.featured:not(.active-selection) .membership-badge {
  background: var(--secondary);
}

/* Button also resets on featured card when not selected */
body .membership-plans.has-active-selection .membership-card.featured:not(.active-selection) .membership-select-btn {
  background: var(--primary);
}

body .membership-plans.has-active-selection .membership-card.featured:not(.active-selection) .membership-select-btn:hover {
  background: var(--secondary);
}

/* Featured badge styling */
.membership-card.featured .membership-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

/* Featured button styling */
.membership-card.featured:not(.active-selection) .membership-select-btn {
  background: var(--secondary);
}

.membership-card.featured:not(.active-selection) .membership-select-btn:hover {
  background: var(--secondary);
}

/* ========================================
   SIGN IN PAGE STYLES
======================================== */

/* Sign In Section */
.sign-in-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  background-color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.sign-in-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.sign-in-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 42, 68, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* Sign In Card */
.sign-in-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.sign-in-header {
  text-align: center;
  margin-bottom: 30px;
}

.sign-in-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.sign-in-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Social Sign In */
.social-sign-in {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  background: white;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: var(--secondary);
  background: rgba(13, 110, 253, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.social-btn i {
  font-size: 1.2rem;
}

.google-btn:hover {
  border-color: #db4437;
  background: rgba(219, 68, 55, 0.05);
}

.google-btn i {
  color: #db4437;
}

.facebook-btn:hover {
  border-color: var(--secondary);
  background: rgba(24, 119, 242, 0.05);
}

.facebook-btn i {
  color: var(--secondary);
}

/* Divider */
.sign-in-divider {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.sign-in-divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e0e6ed;
}

.sign-in-divider span {
  position: relative;
  background: white;
  padding: 0 15px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Form Groups */
.sign-in-form .form-group {
  margin-bottom: 20px;
}

.sign-in-form .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.sign-in-form .form-label i {
  font-size: 1.1rem;
  color: var(--secondary);
}

.sign-in-form .form-control {
  padding: 14px 18px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.sign-in-form .form-control:focus {
  border-color: var(--secondary);
  background: white;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
  outline: none;
}

.sign-in-form .form-control.is-valid {
  border-color: #198754;
  background-color: rgba(25, 135, 84, 0.05);
}

.sign-in-form .form-control.is-invalid {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.sign-in-form .invalid-feedback {
  font-size: 0.85rem;
  color: #dc3545;
  margin-top: 5px;
  display: none;
}

.sign-in-form .form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .form-control {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--secondary);
}

.password-toggle i {
  font-size: 1.2rem;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e6ed;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.form-check-label {
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
}

.forgot-password {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Submit Button */
.sign-in-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sign-in-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sign-in-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.sign-in-submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.sign-in-submit-btn:active {
  transform: translateY(0);
}

.sign-in-submit-btn .btn-text,
.sign-in-submit-btn .btn-loader {
  position: relative;
  z-index: 1;
}

/* Sign Up Link */
.sign-up-link {
  text-align: center;
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sign-up-link a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sign-up-link a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Modal Customization */
#forgotPasswordModal .modal-content,
#signInSuccessModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#forgotPasswordModal .modal-header {
  border-bottom: 1px solid #e0e6ed;
  padding: 20px 25px;
}

#forgotPasswordModal .modal-title {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

#forgotPasswordModal .modal-title i {
  color: var(--secondary);
}

#forgotPasswordModal .modal-body {
  padding: 25px;
}

/* Success Icon Animation */
.success-icon i {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sign-in-section {
    padding: 40px 15px;
  }

  .sign-in-card {
    padding: 35px 25px;
  }

  .sign-in-title {
    font-size: 1.6rem;
  }

  .social-btn {
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .sign-in-card {
    padding: 30px 20px;
  }

  .sign-in-title {
    font-size: 1.4rem;
  }

  .social-btn span {
    font-size: 0.9rem;
  }
}
