body {
  font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;   /* horizontal scroll hide */
  padding-top: 50px;
}



/* Headings slightly bolder */
h1, h2, h3, h4, h5, h6, .section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}
.navbar-nav .nav-link {
  font-family: 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
}

.navbar-nav .nav-link:hover {
  color: #dddddd !important;
}

.navbar-nav .nav-link.btn {
  font-weight: 600;
  font-size: 1.05rem;
}
.register-btn {
  background-color: #B04B3B;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.register-btn:hover {
  background-color: #922f27;
  transform: scale(1.05);
  color: #fff;
}

/* Shine effect */
.register-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  transform: skewX(-20deg);
}

.register-btn:hover::after {
  animation: shine 1s ease;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


/* Shine Effect */
.register-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-20deg);
}

.register-btn:hover::after {
  animation: shine 1s forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
  .back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #3A81AD; /* FACE theme color */
    color: #fff;
    font-size: 24px;
    padding: 12px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-btn:hover {
    background-color: #8e3c2f; /* darker shade */
    transform: scale(1.1);
}
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }
  
  .panelist-section {
    padding: 60px 0;
  }
  
  .panelist-title {
    font-size: 2.2rem;   
    font-weight: 700;
    text-align: center;
    margin: 20px 0;  
    padding: 20px 0;  
  }
  
  .highlight {
    color: #3A81AD;
    padding: 8px 20px;   /* andar ki spacing */
    border-radius: 10px;
  }
  
  
  .panelist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .panelist-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .panelist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  }
  
  .panelist-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .panelist-card:hover img {
    transform: scale(1.05);
  }
  
  .panelist-body {
    padding: 1.2rem;
    text-align: center;
  }
  
  .panelist-body h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #3A81AD;
  }
  
  .panelist-body .designation {
    font-weight: 600;
    color: #3A81AD;
    margin-bottom: 0.2rem;
  }
  
  .panelist-body .organization {
    font-size: 0.9rem;
    color: #555;
  }
  /* Speakers Section */
.speakers-card-section {
    padding: 60px 0;
    background-color: #fafafa;
  }
  
  .speakers-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color:#3A81AD;
  }
  
  .speakers-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .speakers-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .speakers-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  }
  
  .speakers-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .speakers-card:hover img {
    transform: scale(1.05);
  }
  
  .speakers-card-body {
    padding-top: 1.2rem;
    text-align: center;
  }
  
  .speakers-card-body h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #3A81AD; /* Main color */
  }
  
  .speakers-card-body .designation {
    font-weight: 600;
    color: #3A81AD;
    margin-bottom: 0.2rem;
  }
  
  .speakers-card-body .organization {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
  }
  
  .topic-badge {
    display: inline-block;
/*    background: #3A81AD;*/
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fafafa;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }
  
  .panelist-section {
    padding: 60px 0;
  }
  
  .sustainability-bg {
    background: linear-gradient(180deg, #f5fff5, #fafafa);
  }
  
  .ai-bg {
    background: linear-gradient(180deg, #f5f9ff, #fafafa);
  }
  
  .medical-bg {
    background: linear-gradient(180deg, #fff8f9, #fafafa);
  }
  
  .panelist-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  
  
  .highlight {
    font-weight: 700;
  }
  
  .highlight.green { color: #3A81AD; }
  .highlight.blue { color: #3A81AD; }
  .highlight.pink { color: #3A81AD; }
  
  .panelist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .panelist-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .panelist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  }
  
  .image-wrapper {
    overflow: hidden;
  }
  
  .panelist-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .panelist-card:hover img {
    transform: scale(1.05);
  }
  
  .panelist-body {
    padding: 1.2rem;
    text-align: center;
    transition: background 0.3s ease;
  }
  
  .panelist-body h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }
  
  .panelist-body .designation {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  
  .panelist-body .organization {
    font-size: 0.85rem;
    color: #555;
  }
  .card img {
    width: 100%;
    height: 250px; /* fixed height for all images */
    object-fit: cover; /* keeps aspect ratio, crops if needed */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.speakers-card-grid > .speakers-card:only-child,
.panelist-grid > .panelist-card:only-child {
  flex: 0 1 320px;
  max-width: 320px;
}
/* Featured two-card layout */
.featured-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* single featured card */
.featured-card {
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(20,40,60,0.08);
  border: 1px solid rgba(11,54,78,0.03);
  min-height: 260px;
}

/* left image column */
.featured-card .card-image {
  width: 40%;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.featured-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* social icons overlay on image */
.featured-card .socials {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display:flex;
  gap:10px;
}


/* right content column */
.featured-card .card-body {
  padding: 22px 26px;
  flex: 1;
  display:flex;
  flex-direction:column;
  justify-content: center;
  gap: 8px;
}

/* pill (role like KEYNOTE / PANEL) */
.featured-card .pill {
  display: inline-block;
  padding: 6px 12px;         /* slightly smaller */
  border-radius: 999px;
  background: #eaf6fb;       /* very light blue */
  color: #0E777E;            /* darker teal text for contrast */
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}

/* name + title */
.featured-card h3 {
  margin: 6px 0 0 0;
  font-size: 1.35rem;
  line-height: 1.06;
  color: #1f2a2d;
}
.featured-card .role {
  color:#3A81AD;
  font-weight:700;
  margin-top:6px;
}
.featured-card .org {
  color:#6b7280;
  margin-top:2px;
}

/* session line (optional) */
.featured-card .session {
  margin-top:10px;
  font-weight:700;
  color:#1f2a2d;
}

/* view profile button */
.featured-card .view-btn {
  margin-top: 14px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 28px;
  border: 0;
  background: #ffeade;
  color: #3A81AD;
  font-weight:700;
  cursor:pointer;
  width: max-content;
}
/* Remove underline and keep button styling */
.view-btn {
  display: inline-block;        /* make it behave like a button */
  text-decoration: none;        /* remove underline */
  background: #ffeade;
  color: #ff7a00;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

/* Make sure hover/focus don't re-add underline */
.view-btn:hover,
.view-btn:focus,
.view-btn:active {
  text-decoration: none;
  filter: brightness(0.98);
}

/* Accessible focus ring (keep for keyboard users) */
.view-btn:focus {
  outline: 3px solid rgba(255,122,0,0.18);
  outline-offset: 2px;
}

/* If something else keeps adding underline, force it (use sparingly) */
.view-btn {
  text-decoration: none !important;
}

/* responsive: stack on small screens */
@media (max-width: 900px) {
  .featured-grid { flex-direction: column; gap: 18px; }
  .featured-card { flex-direction: column; min-height: auto; }
  .featured-card .card-image { width: 100%; min-width: 0; height: 220px; }
  .featured-card .card-body { padding: 18px; }
}
.co-chair-badge {
  display: inline-block;   /* sirf text ki width lega */
  background-color: #3A81AD; /* aapka main color */
  color: #fff;             /* text white */
  padding: 2px 8px;        /* thoda spacing */
  border-radius: 4px;      /* halka rounded corner */
  font-size: 14px;         /* readable size */
}
.lh-sm {
  font-family: 'Nunito', sans-serif;
}

.lh-sm .fw-bold {
  font-size: 1.1rem;
}

.lh-sm small {
  font-size: 0.7rem;
}