/* Root Variables */
:root {
  --primary-color: #1c3d5a;
  --secondary-color: #cccccc;
  --accent-color: #b22234;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --text-dark: #222222;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  padding-top: 76px;
}

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

sup {
	top: -5px !important;
	line-height: normal !important;
	left: 2px;;
}

/* Custom Bootstrap Overrides */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Navigation */
.navbar {
  transition: var(--transition);
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-brand img:hover {
  transform: scale(1.03);
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-weight: 600;
  padding: 0.75rem 0.85rem !important;
  transition: var(--transition);
  color: #334155 !important;
  font-size: 0.88rem;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color, #b22234) !important;
}

.nav-link.active {
  color: var(--primary-color, #1c3d5a) !important;
  font-weight: 700;
}

/* Sharp Highlight Buttons */
.nav-highlight {
  border-radius: 0 !important;
  margin: 0 4px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 16px !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-highlight-primary {
  background-color: var(--primary-color, #1c3d5a) !important;
  color: #ffffff !important;
  border-top: 3px solid #0f2337;
}

.nav-highlight-primary:hover {
  background-color: var(--accent-color, #b22234) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(178, 34, 52, 0.25);
}

.nav-highlight-accent {
  background-color: var(--accent-color, #b22234) !important;
  color: #ffffff !important;
  border-top: 3px solid #861826;
}

.nav-highlight-accent:hover {
  background-color: var(--primary-color, #1c3d5a) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(28, 61, 90, 0.25);
}

/* Sharp Dropdown Menu */
.dropdown-menu {
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  box-shadow: 0 10px 25px rgba(28, 61, 90, 0.12);
  padding: 6px 0;
  margin-top: 0;
}

.dropdown-item {
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  border-radius: 0 !important;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: var(--accent-color, #b22234);
  padding-left: 22px;
}

.navbar-toggler {
  border-radius: 0 !important;
  border: 1px solid #e2e8f0;
}

/* Hero Section */
.hero-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-section img.main-hero{
	width:100%;
	height:auto;
	display:block;
}
.hero-section img.mobil-hero{
	display:none;
}
@media (max-width:600px){
	.hero-section img.main-hero{
		display:none;
	}
	.hero-section img.mobil-hero{
		width:100%;
		height:auto;
		display:block;
	}
}
.psikoDernek{
	position: absolute;
	top: 3%;
	left: 10%;
	width: 100px;
	height: 70px;
	z-index: 3;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Countdown Section */
.countdown-section {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
}

.countdown-timer {
  max-width: 600px;
  margin: 0 auto;
}

.countdown-item {
  background: white;
  border-radius: 0 !important;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Access Section */
.quick-access-item {
  display: block;
  background: white;
  border-radius: 0 !important;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.quick-access-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary-color);
  text-decoration: none;
}

.quick-access-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.quick-access-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.quick-access-item span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Important Dates Slider */
.important-dates-slider {
  position: relative;
  background: white;
  border-radius: 0 !important;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 200px;
}

.date-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.date-slide.active {
  display: block;
}

.date-slide h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.date-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}

.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.slider-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

/* Social Media Section */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icon.twitter {
  background: linear-gradient(135deg, #000000, #1a1a1a);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Archive Section */
.archive-section {
  background: var(--bg-light);
}

#archive-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
.archive-item-wrapper {
	flex: 0 0 calc(15% - 1rem);
	max-width: calc(15% - 1rem);
}
@media (max-width: 992px) {
  .archive-item-wrapper {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

@media (max-width: 768px) {
  .archive-item-wrapper {
    flex: 0 0 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
  }
}

@media (max-width: 480px) {
  .archive-item-wrapper {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
.archive-item {
  background: white;
  border-radius: 0 !important;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  border: 2px solid transparent;
  display: flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.archive-details{
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
}

.archive-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.archive-image {
  width: 50px;
  height: 50px;
  border-radius: 0 !important;
  background: linear-gradient(135deg, var(--bg-light), #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  border: 3px solid var(--secondary-color);
  font-size: 1.1rem;
  transition: var(--transition);
  overflow:hidden;
}

.archive-image img{
	width:50px;
	height:50px;
}

.archive-item:hover .archive-image {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.archive-item h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: .9rem;
}

.archive-date {
  font-size: 0.7rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.archive-item small {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Premium Sharp Modern Footer */
.footer {
  background: #0f172a !important;
  color: #94a3b8;
  border-top: 4px solid var(--accent-color, #b22234);
  font-size: 0.9rem;
  padding-top: 60px;
  padding-bottom: 25px;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1.25rem;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.footer-contact-block {
  margin-bottom: 12px;
}

.footer-dept-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 4px;
  border-left: 2px solid var(--accent-color, #b22234);
}

.footer-contact-links {
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-contact-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-contact-links a:hover {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  font-size: 0.75rem;
  margin-right: 8px;
  color: var(--accent-color, #b22234);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  color: #ffffff;
}

.footer-dates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-dates-list li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.footer-dates-list li:last-child {
  border-bottom: none;
}

.footer-dates-list .date-label {
  display: block;
  font-size: 0.76rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-dates-list .date-val {
  color: #f8fafc;
  font-weight: 600;
}

.footer-social-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer-social-square {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border-radius: 0 !important;
}

.footer-social-square:hover {
  background: var(--accent-color, #b22234);
  color: #ffffff;
  border-color: var(--accent-color, #b22234);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(178, 34, 52, 0.3);
}

.footer-social-square.facebook:hover { background: #1877f2; border-color: #1877f2; }
.footer-social-square.instagram:hover { background: #e1306c; border-color: #e1306c; }
.footer-social-square.twitter:hover { background: #000000; border-color: #333333; }
.footer-social-square.youtube:hover { background: #ff0000; border-color: #ff0000; }

.footer-bottom-bar {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: #64748b;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: var(--accent-color);
  width: 20px;
}

/* Page Header */
.page-header {
margin-top: 25px;
    height: 150px;
  background: linear-gradient(rgba(28, 61, 90, 0.3), rgba(28, 61, 90, 0.3)),
    url(../img/page-header-bg.jpg) center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 600;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Info Section */
.info-section {
  background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
}

.info-card {
  display: block;
  background: white;
  border-radius: 0 !important;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  color: var(--primary-color);
  text-decoration: none;
  border-color: var(--primary-color);
}

.info-card.highlight {
  background: linear-gradient(135deg, var(--accent-color), #d63447);
  color: white;
  border-color: var(--accent-color);
}

.info-card.highlight:hover {
  color: white;
  transform: translateY(-8px) scale(1.02);
  border-color: white;
}

.info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  background: var(--bg-light);
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: var(--primary-color);
  color: white;
  /**transform: scale(1.1) rotate(5deg);*/
}

.info-card.highlight .info-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.info-card.highlight:hover .info-icon {
  background: white;
  color: var(--accent-color);
}

.info-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.info-card:hover .info-icon i {
  color: white;
}

.info-card.highlight .info-icon i {
  color: white;
}

.info-card.highlight:hover .info-icon i {
  color: var(--accent-color);
}

.info-icon img {
  width: 120px;
  border-radius: 0 !important;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {

  .info-card {
    padding: 1.5rem 1rem;
  }

  .info-icon {
    width: 60px;
    height: 60px;
  }

  .info-icon i {
    font-size: 1.5rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 35px;
  }

  .info-section .row {
    gap: 1rem;
  }

  #archive-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

}
/* Committee Page Specific Styles */
.leadership-section.section-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 2rem;
	position: relative;
}

.leadership-section.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
	border-radius: 2px;
}

/* Leadership Cards */
.leadership-section {
	background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
	padding: 3rem 0;
	border-radius: 20px;
}

.leadership-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
	border: 2px solid transparent;
	height: 100%;
}

.leadership-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color);
}

.leader-image {
	width: 120px;
	height: 120px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--primary-color);
	transition: var(--transition);
}

.leadership-card:hover .leader-image {
	border-color: var(--accent-color);
	transform: scale(1.05);
}

.leader-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.leader-info h5 {
	color: var(--text-dark);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.leader-info .country {
	color: #666;
	font-style: italic;
	margin-bottom: 1rem;
}

.leader-info .position {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-block;
}

/* Info Cards */
.info-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	height: 100%;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-header {
	background: linear-gradient(135deg, var(--primary-color), #2a4d6b);
	color: white;
	padding: 1.5rem;
	text-align: center;
}

.card-header i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--accent-color);
}

.card-header h4 {
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.card-header p {
	margin: 0;
	opacity: 0.9;
	font-size: 0.9rem;
}

.card-content {
	padding: 1.5rem;
}

.past-presidents-list {
	max-height: 300px;
	overflow-y: auto;
}

.president-item {
	display: block;
	padding: 0.5rem 0;
	border-bottom: 1px solid #eee;
	font-weight: 500;
}

.president-item:last-child {
	border-bottom: none;
}

.president-item span {
	color: #666;
	font-weight: 400;
	font-size: 0.9rem;
}

/* Committee Cards */
.committee-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	height: 100%;
}

.committee-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.committee-header {
	background: linear-gradient(135deg, var(--accent-color), #d63447);
	color: white;
	padding: 1.5rem;
	text-align: center;
}

.committee-header i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.committee-header h4 {
	margin: 0;
	font-weight: 600;
}

.committee-members {
	padding: 1.5rem;
}

.member-grid {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.member-name {
	display: block;
	padding: 0.75rem;
	background: var(--bg-light);
	border-radius: 8px;
	transition: var(--transition);
	font-weight: 500;
}

.member-name:hover {
	background: var(--primary-color);
	color: white;
	transform: translateX(5px);
}

.member-name small {
	color: #666;
	font-weight: 400;
}

.member-name:hover small {
	color: rgba(255, 255, 255, 0.8);
}

/* Advisory Board */
.advisory-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.advisory-header {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
	padding: 2rem;
	text-align: center;
}

.advisory-header i {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.advisory-header h4 {
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.advisory-header p {
	margin: 0;
	opacity: 0.9;
}

.advisory-members {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.advisory-member {
	display: block;
	padding: 0.5rem 0.75rem;
	background: var(--bg-light);
	border-radius: 6px;
	transition: var(--transition);
	font-weight: 500;
	border-left: 3px solid transparent;
}

.advisory-member:hover {
	background: white;
	border-left-color: var(--primary-color);
	transform: translateX(5px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advisory-member small {
	color: #666;
	font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
	.leadership-card {
		margin-bottom: 2rem;
	}
	
	.leader-image {
		width: 100px;
		height: 100px;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
	
	.card-header, .committee-header, .advisory-header {
		padding: 1rem;
	}
	
	.card-content, .committee-members, .advisory-members {
		padding: 1rem;
	}
}

@media (max-width: 576px) {
	.leadership-section {
		padding: 2rem 0;
	}
	
	.leadership-card {
		padding: 1.5rem;
	}
	
	.leader-image {
		width: 80px;
		height: 80px;
	}
	
	.leader-info h5 {
		font-size: 1rem;
	}
	
	.leader-info .position {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
}

.partner-societies.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.partner-societies.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Partner Grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    height: 100%;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    text-decoration: none;
    color: var(--primary-color);
}

.partner-logo {
    width: 150px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-item:hover .partner-logo {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: var(--transition);
}

.partner-item:hover .partner-name {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        padding: 1rem;
    }
    
    .partner-logo {
        width: 120px;
        height: 80px;
    }
}

/* Animation for hover effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(28, 61, 90, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(28, 61, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(28, 61, 90, 0);
    }
}

.partner-item:hover {
    animation: pulse 1.5s infinite;
}

/* Contact Page Specific Styles */
.contact-main-title {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
}

.contact-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color, #1c3d5a), var(--accent-color, #b22234));
	border-radius: 2px;
}

.contact-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

/* Secretariat Cards */
.contact-secretariat-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	border: 2px solid transparent;
}

.contact-secretariat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color, #1c3d5a);
}

.contact-card-header {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	padding: 2rem;
	text-align: center;
}

.contact-logo-container {
	margin-bottom: 1.5rem;
}

.contact-secretariat-logo,
.contact-organization-logo {
	max-width: 180px;
	object-fit: contain;
	background: white;
	padding: 10px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.contact-secretariat-card:hover .contact-secretariat-logo,
.contact-secretariat-card:hover .contact-organization-logo {
	transform: scale(1.05);
}

.contact-secretariat-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-company-name {
	font-size: 1.1rem;
	font-weight: 500;
	margin: 0;
	opacity: 0.9;
}

.contact-card-body {
	padding: 2rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: var(--bg-light, #f5f5f5);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.contact-info-item:hover {
	background: var(--primary-color, #1c3d5a);
	color: white;
	transform: translateX(5px);
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-icon {
	font-size: 1.2rem;
	color: var(--accent-color, #b22234);
	margin-right: 1rem;
	margin-top: 0.2rem;
	min-width: 20px;
	transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
	color: white;
}

.contact-info-text {
	flex: 1;
}

.contact-address {
	margin: 0;
	line-height: 1.6;
}

.contact-email-link,
.contact-phone-link {
	color: var(--primary-color, #1c3d5a);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.contact-email-link:hover,
.contact-phone-link:hover {
	color: var(--accent-color, #b22234);
	text-decoration: underline;
}

.contact-info-item:hover .contact-email-link,
.contact-info-item:hover .contact-phone-link {
	color: white;
}

/* Additional Information Section */
.contact-additional-info {
	background: linear-gradient(135deg, var(--bg-light, #f5f5f5), white);
	border-radius: 20px;
	padding: 2rem;
	margin-top: 2rem;
}

.contact-additional-title {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
}

.contact-info-box {
	text-align: center;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.contact-info-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
	font-size: 2.5rem;
	color: var(--accent-color, #b22234);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.contact-info-box:hover .contact-info-icon {
	color: var(--primary-color, #1c3d5a);
	transform: scale(1.1);
}

.contact-info-box h5 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
}

.contact-info-box p {
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-card-header {
		padding: 1.5rem;
	}
	
	.contact-card-body {
		padding: 1.5rem;
	}
	
	.contact-secretariat-title {
		font-size: 1.2rem;
	}
	
	.contact-company-name {
		font-size: 1rem;
	}
	
	.contact-info-item {
		padding: 0.75rem;
	}
	
	.contact-additional-info {
		padding: 1.5rem;
	}
	
	.contact-info-box {
		padding: 1rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 576px) {
	.contact-secretariat-card {
		margin-bottom: 2rem;
	}
	
	.contact-info-item {
		flex-direction: column;
		text-align: center;
	}
	
	.contact-icon {
		margin-right: 0;
		margin-bottom: 0.5rem;
	}
	
	.contact-info-icon {
		font-size: 2rem;
	}
}

/* Animation for cards */
@keyframes contactCardPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(28, 61, 90, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0);
	}
}

.contact-secretariat-card:hover {
	animation: contactCardPulse 2s infinite;
}

/* International Speakers Page Specific Styles */
.speakers-main-title {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
}

.speakers-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color, #1c3d5a), var(--accent-color, #b22234));
	border-radius: 2px;
}

.speakers-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

/* Speakers Grid */
.speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

/* Ensure minimum 4 columns on desktop */
@media (min-width: 1200px) {
	.speakers-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.speakers-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.speakers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.speakers-grid {
		grid-template-columns: 1fr;
	}
}

/* Speaker Card */
.speaker-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
	height: 100%; /* Equal height for all cards */
}

.speaker-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color, #1c3d5a);
}

/* Speaker Photo */
.speaker-photo {
	padding: 1.5rem 1.5rem 0;
	text-align: center;
}

.speaker-photo img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--primary-color, #1c3d5a);
	transition: all 0.3s ease;
}

.speaker-card:hover .speaker-photo img {
	border-color: var(--accent-color, #b22234);
	transform: scale(1.05);
}

/* Speaker Info */
.speaker-info {
	padding: 1rem 1.5rem;
	flex: 1; /* This makes the info section expand to fill available space */
	display: flex;
	flex-direction: column;
}

.speaker-name {
	color: var(--primary-color, #1c3d5a);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.speaker-institution {
	color: var(--accent-color, #b22234);
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.speaker-qualifications {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1; /* This makes qualifications expand to fill remaining space */
}

.speaker-qualifications li {
	position: relative;
	padding-left: 1.2rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #555;
}

.speaker-qualifications li::before {
	content: '•';
	color: var(--accent-color, #b22234);
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
}

/* Speaker Action */
.speaker-action {
	padding: 0 1.5rem 1.5rem;
	text-align: center;
}

.speaker-cv-btn {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.speaker-cv-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: all 0.3s ease;
}

.speaker-cv-btn:hover::before {
	left: 100%;
}

.speaker-cv-btn:hover {
	background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(178, 34, 52, 0.3);
}

.speaker-cv-btn i {
	font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.speakers-grid {
		gap: 1.5rem;
	}
	
	.speaker-photo {
		padding: 1rem 1rem 0;
	}
	
	.speaker-photo img {
		width: 100px;
		height: 100px;
	}
	
	.speaker-info {
		padding: 0.75rem 1rem;
	}
	
	.speaker-name {
		font-size: 1.1rem;
	}
	
	.speaker-institution {
		font-size: 0.85rem;
	}
	
	.speaker-qualifications li {
		font-size: 0.85rem;
	}
	
	.speaker-action {
		padding: 0 1rem 1rem;
	}
}

/* Animation for speaker cards */
@keyframes speakerCardPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(28, 61, 90, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0);
	}
}

.speaker-card:hover {
	animation: speakerCardPulse 2s infinite;
}
/* Abstract Submission Page Specific Styles */
.abstract-main-title {
    color: var(--primary-color, #1c3d5a);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.abstract-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color, #1c3d5a), var(--accent-color, #b22234));
    border-radius: 2px;
}

.abstract-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Section Cards */
.abstract-section-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color, #1c3d5a);
}

.abstract-section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.abstract-section-header {
    background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
    color: white;
    padding: 1.5rem 2rem;
}

.abstract-section-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.abstract-section-content {
    padding: 2rem;
    line-height: 1.7;
}

.abstract-section-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.abstract-section-content ul {
    margin-bottom: 1.5rem;
}

.abstract-section-content li {
    margin-bottom: 0.5rem;
}

/* Session Types */
.abstract-session-type {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light, #f5f5f5);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color, #b22234);
}

.abstract-session-type h4 {
    color: var(--primary-color, #1c3d5a);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Important Note Section */
.abstract-important-note {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.abstract-note-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

.abstract-note-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.abstract-note-content {
    padding: 2rem;
}

.abstract-congress-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Highlight and Warning Boxes */
.abstract-highlight-box {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #28a745;
}

.abstract-warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #ffc107;
}

/* Action Buttons */
.abstract-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.abstract-submit-btn,
.abstract-track-btn,
.abstract-awards-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.abstract-submit-btn {
    background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
    color: white;
}

.abstract-track-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.abstract-awards-btn {
    background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
    color: white;
}

.abstract-submit-btn:hover,
.abstract-track-btn:hover,
.abstract-awards-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Scholarship Info */
.abstract-scholarship-info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 1px solid #90caf9;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 5px solid #2196f3;
}

.abstract-scholarship-info h4 {
    color: var(--primary-color, #1c3d5a);
    margin-bottom: 1rem;
}

/* Templates Section */
.abstract-templates-section {
    background: var(--bg-light, #f5f5f5);
    padding: 2rem;
    border-radius: 15px;
}

.abstract-template-link {
    display: block;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color, #1c3d5a);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.abstract-template-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--accent-color, #b22234);
    text-decoration: none;
}

.abstract-template-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Technical Info */
.abstract-technical-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color, #1c3d5a);
}

.abstract-technical-info h4 {
    color: var(--primary-color, #1c3d5a);
    margin-bottom: 1rem;
}

/* Structure Section */
.abstract-structure-section {
    background: var(--bg-light, #f5f5f5);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.abstract-subsection {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid var(--accent-color, #b22234);
}

/* Reference Example */
.abstract-reference-example {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color, #1c3d5a);
    font-style: italic;
}

/* Poster Rules */
.abstract-poster-rules {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.abstract-poster-rules li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}
.abstract-poster-rules li::marker {
	content:'';
}
.abstract-poster-rules li::before {
    content: '•';
    color: var(--accent-color, #b22234);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Links */
.abstract-link {
    color: var(--primary-color, #1c3d5a);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.abstract-link:hover {
    color: var(--accent-color, #b22234);
    text-decoration: underline;
}

.abstract-email-link {
    color: var(--accent-color, #b22234);
    text-decoration: none;
    font-weight: 500;
}

.abstract-email-link:hover {
    text-decoration: underline;
}

/* Quotes */
.abstract-quote {
    font-style: italic;
    background: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--primary-color, #1c3d5a);
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .abstract-section-content {
        padding: 1.5rem;
    }
    
    .abstract-note-content {
        padding: 1.5rem;
    }
    
    .abstract-session-type {
        padding: 1rem;
    }
    
    .abstract-action-buttons {
        padding: 0 1rem;
    }
    
    .abstract-submit-btn,
    .abstract-track-btn,
    .abstract-awards-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .abstract-section-header {
        padding: 1rem;
    }
    
    .abstract-section-header h3 {
        font-size: 1.1rem;
    }
    
    .abstract-templates-section {
        padding: 1rem;
    }
    
    .abstract-template-link {
        padding: 1rem;
    }
    
    .abstract-template-link i {
        font-size: 1.5rem;
    }
}
/* Young Researcher Scholarships Page Specific Styles */
.scholarship-main-title {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
}

.scholarship-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color, #1c3d5a), var(--accent-color, #b22234));
	border-radius: 2px;
}

.scholarship-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

/* Overview Card */
.scholarship-overview-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.scholarship-overview-card:hover {
	border-color: var(--primary-color, #1c3d5a);
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.scholarship-card-header {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	padding: 2rem;
	text-align: center;
}

.scholarship-icon-container {
	margin-bottom: 1rem;
}

.scholarship-main-icon {
	font-size: 3rem;
	color: white;
	background: rgba(255, 255, 255, 0.2);
	padding: 1rem;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.scholarship-card-header h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.scholarship-card-content {
	padding: 2rem;
	line-height: 1.7;
}

.scholarship-application-note {
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	border: 1px solid #90caf9;
	border-radius: 10px;
	padding: 1.5rem;
	margin-top: 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border-left: 5px solid #2196f3;
}

.scholarship-application-note i {
	color: #2196f3;
	font-size: 1.2rem;
	margin-top: 0.2rem;
}

.scholarship-application-note p {
	margin: 0;
}

/* Section Headers */
.scholarship-section-header {
	background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
	color: white;
	padding: 1.5rem 2rem;
	border-radius: 15px 15px 0 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.scholarship-section-header i {
	font-size: 1.5rem;
}

.scholarship-section-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.scholarship-section-content {
	background: white;
	padding: 2rem;
	border-radius: 0 0 15px 15px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Eligibility Section */
.scholarship-eligibility-section {
	margin-bottom: 2rem;
}

.scholarship-eligibility-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.scholarship-eligibility-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--bg-light, #f5f5f5);
	border-radius: 15px;
	transition: all 0.3s ease;
	border-left: 4px solid var(--primary-color, #1c3d5a);
}

.scholarship-eligibility-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scholarship-eligibility-item.priority-item {
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	border-left-color: #ff9800;
}

.scholarship-eligibility-item.highlight-item {
	background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
	border-left-color: #4caf50;
}

.scholarship-eligibility-item.stats-item {
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	border-left-color: #2196f3;
}

.scholarship-item-icon {
	background: white;
	padding: 1rem;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	min-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scholarship-item-icon i {
	font-size: 1.2rem;
	color: var(--primary-color, #1c3d5a);
}

.priority-item .scholarship-item-icon i {
	color: #ff9800;
}

.highlight-item .scholarship-item-icon i {
	color: #4caf50;
}

.stats-item .scholarship-item-icon i {
	color: #2196f3;
}

.scholarship-item-content {
	flex: 1;
}

.scholarship-item-content p {
	margin: 0;
	line-height: 1.6;
}

/* Warning Box */
.scholarship-warning-box {
	background: white;
	border: 2px solid #dc3545;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(220, 53, 69, 0.1);
}

.scholarship-warning-header {
	background: linear-gradient(135deg, #dc3545, #c82333);
	color: white;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 600;
}

.scholarship-warning-header i {
	font-size: 1.2rem;
}

.scholarship-warning-content {
	padding: 2rem;
}

.scholarship-warning-content p {
	margin: 0;
	line-height: 1.7;
	color: #333;
}

/* Benefits Section */
.scholarship-benefits-section {
	margin-bottom: 2rem;
}

.scholarship-benefit-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	border: 2px solid transparent;
}

.scholarship-benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
	border-color: var(--primary-color, #1c3d5a);
}

.scholarship-benefit-icon {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.scholarship-benefit-icon i {
	font-size: 2rem;
}

.scholarship-benefit-content h4 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
}

.scholarship-benefit-highlight {
	color: #28a745;
	font-size: 2rem;
	font-weight: bold;
	margin: 0.5rem 0;
}

.scholarship-benefit-price {
	color: var(--accent-color, #b22234);
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0.5rem 0;
}

/* Process Section */
.scholarship-process-section {
	margin-bottom: 2rem;
}

.scholarship-process-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.scholarship-step {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.scholarship-step:hover {
	transform: translateX(10px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.scholarship-step-number {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	min-width: 50px;
}

.scholarship-step-content h5 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.scholarship-step-content p {
	margin: 0;
	line-height: 1.6;
	color: #666;
}

/* Contact Section */
.scholarship-contact-section {
	margin-top: 3rem;
}

.scholarship-contact-card {
	background: linear-gradient(135deg, var(--bg-light, #f5f5f5), white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.scholarship-contact-header {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.scholarship-contact-header i {
	font-size: 1.5rem;
}

.scholarship-contact-header h4 {
	margin: 0;
	font-weight: 600;
}

.scholarship-contact-content {
	padding: 2rem;
	text-align: center;
}

.scholarship-contact-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
	padding: 1rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.scholarship-contact-info i {
	color: var(--accent-color, #b22234);
	font-size: 1.2rem;
}

/* Email Links */
.scholarship-email-link {
	color: var(--accent-color, #b22234);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.scholarship-email-link:hover {
	color: var(--primary-color, #1c3d5a);
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.scholarship-card-content {
		padding: 1.5rem;
	}
	
	.scholarship-section-content {
		padding: 1.5rem;
	}
	
	.scholarship-eligibility-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.scholarship-step {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.scholarship-process-steps {
		gap: 1.5rem;
	}
}

@media (max-width: 576px) {
	.scholarship-card-header {
		padding: 1.5rem;
	}
	
	.scholarship-main-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
	
	.scholarship-section-header {
		padding: 1rem 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
	
	.scholarship-benefit-card {
		padding: 1.5rem;
	}
	
	.scholarship-benefit-icon {
		width: 60px;
		height: 60px;
	}
	
	.scholarship-benefit-icon i {
		font-size: 1.5rem;
	}
	
	.scholarship-contact-info {
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* Animation for cards */
@keyframes scholarshipPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(28, 61, 90, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0);
	}
}

.scholarship-overview-card:hover {
	animation: scholarshipPulse 2s infinite;
}

/* Scientific Program Page Specific Styles */
.program-main-title {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
}

.program-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color, #1c3d5a), var(--accent-color, #b22234));
	border-radius: 2px;
}

.program-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

/* Announcement Card */
.program-announcement-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.program-announcement-card:hover {
	border-color: var(--primary-color, #1c3d5a);
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.program-announcement-header {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	padding: 2rem;
	text-align: center;
}

.program-icon-container {
	margin-bottom: 1rem;
}

.program-main-icon {
	font-size: 3rem;
	color: white;
	background: rgba(255, 255, 255, 0.2);
	padding: 1rem;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.program-announcement-header h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.program-announcement-content {
	padding: 2rem;
}

.program-status-message {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #e8f5e8, #d4edda);
	border-radius: 15px;
	border-left: 5px solid #28a745;
}

.program-status-message i {
	color: #28a745;
	font-size: 2rem;
	margin-top: 0.5rem;
}

.program-status-text h4 {
	color: var(--primary-color, #1c3d5a);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.program-status-text p {
	margin: 0;
	line-height: 1.6;
}

.program-timeline-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.program-timeline-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--bg-light, #f5f5f5);
	border-radius: 10px;
}

.program-timeline-item i {
	color: var(--accent-color, #b22234);
	font-size: 1.2rem;
}

/* Section Headers */
.program-section-header {
	background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
	color: white;
	padding: 1.5rem 2rem;
	border-radius: 15px 15px 0 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.program-section-header i {
	font-size: 1.5rem;
}

.program-section-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.program-section-content {
	background: white;
	padding: 2rem;
	border-radius: 0 0 15px 15px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Feature Cards */
.program-feature-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	border: 2px solid transparent;
}

.program-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	border-color: var(--primary-color, #1c3d5a);
}

.program-feature-icon {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.program-feature-icon i {
	font-size: 1.5rem;
}

.program-feature-card h5 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 1rem;
}

.program-feature-card p {
	margin: 0;
	line-height: 1.6;
	color: #666;
}

/* Highlights Section */
.program-highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.program-highlight-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: linear-gradient(135deg, var(--bg-light, #f5f5f5), white);
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.program-highlight-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-highlight-number {
	background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	min-width: 60px;
}

.program-highlight-content h5 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.program-highlight-content p {
	margin: 0;
	line-height: 1.5;
	color: #666;
}

/* Sessions Grid */
.program-sessions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.program-session-type {
	background: white;
	padding: 1.5rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid var(--primary-color, #1c3d5a);
}

.program-session-type:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.program-session-icon {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.program-session-icon i {
	font-size: 1.2rem;
}

.program-session-type h5 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.program-session-type p {
	margin: 0;
	line-height: 1.5;
	color: #666;
	font-size: 0.9rem;
}

/* Updates Section */
.program-updates-card {
	background: linear-gradient(135deg, var(--bg-light, #f5f5f5), white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.program-updates-header {
	background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.program-updates-header i {
	font-size: 1.5rem;
}

.program-updates-header h4 {
	margin: 0;
	font-weight: 600;
}

.program-updates-content {
	padding: 2rem;
	text-align: center;
}

.program-update-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.program-update-option {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.program-update-option i {
	color: var(--accent-color, #b22234);
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.program-update-option h6 {
	color: var(--primary-color, #1c3d5a);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.program-update-option p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
}

.program-notify-btn {
	background: linear-gradient(135deg, var(--accent-color, #b22234), #d63447);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.program-notify-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(178, 34, 52, 0.3);
}

/* Contact Section */
.program-contact-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.program-contact-header {
	background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
	color: white;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.program-contact-header i {
	font-size: 1.5rem;
}

.program-contact-header h4 {
	margin: 0;
	font-weight: 600;
}

.program-contact-content {
	padding: 2rem;
	text-align: center;
}

.program-contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.5rem;
}

.program-contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--bg-light, #f5f5f5);
	border-radius: 10px;
}

.program-contact-item i {
	color: var(--accent-color, #b22234);
	font-size: 1.2rem;
}

.program-email-link {
	color: var(--accent-color, #b22234);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.program-email-link:hover {
	color: var(--primary-color, #1c3d5a);
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.program-announcement-content {
		padding: 1.5rem;
	}
	
	.program-section-content {
		padding: 1.5rem;
	}
	
	.program-status-message {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.program-highlight-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.program-update-option {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
	
	.program-contact-item {
		flex-direction: column;
		gap: 0.5rem;
	}
}

@media (max-width: 576px) {
	.program-announcement-header {
		padding: 1.5rem;
	}
	
	.program-main-icon {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
	
	.program-section-header {
		padding: 1rem 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
	
	.program-feature-card {
		padding: 1.5rem;
	}
	
	.program-highlights-grid {
		grid-template-columns: 1fr;
	}
	
	.program-sessions-grid {
		grid-template-columns: 1fr;
	}
}

/* Animation for announcement card */
@keyframes programPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0.4);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(28, 61, 90, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(28, 61, 90, 0);
	}
}

.program-announcement-card:hover {
	animation: programPulse 2s infinite;
}

/* ==========================================
   General Information Sharp Modern Design System
   ========================================== */
.gen-info-section {
  padding: 50px 0 70px 0;
  background-color: #f8fafc;
}

.gen-info-header {
  text-align: center;
  margin-bottom: 40px;
}

.gen-info-header .badge-tag {
  display: inline-block;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 !important;
  margin-bottom: 12px;
}

.gen-info-header h2 {
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  font-size: 2rem;
  margin-bottom: 10px;
}

.gen-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.gen-info-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.12);
}

.gen-info-card-top {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.gen-info-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 0 !important;
  margin-right: 14px;
  transition: all 0.3s ease;
}

.gen-info-card:hover .gen-info-icon-box {
  background-color: var(--accent-color, #b22234);
  transform: scale(1.08);
}

.gen-info-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin: 0;
  line-height: 1.3;
}

.gen-info-card-body {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}

.gen-info-card-body strong {
  color: #1e293b;
}

.gen-info-card-body a.gen-link {
  color: var(--accent-color, #b22234);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.gen-info-card-body a.gen-link:hover {
  color: var(--primary-color, #1c3d5a);
}

/* ==========================================
   Committees Sharp Modern Design System
   ========================================== */
.committees-section {
  padding: 50px 0 70px 0;
  background-color: #f8fafc;
}

.committee-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.committee-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color, #b22234);
  margin: 10px auto 0 auto;
}

/* Compact Leadership Card (Reduced by 50%+) */
.committee-leader-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  overflow: hidden;
  height: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.committee-leader-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 10px 20px rgba(28, 61, 90, 0.12);
}

.committee-leader-img-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #f1f5f9;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.committee-leader-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 !important;
  transition: transform 0.4s ease;
}

.committee-leader-info {
  padding: 12px 10px;
  text-align: center;
}

.committee-leader-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 2px;
}

.committee-leader-info .country {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 6px;
}

.committee-leader-info .position-badge {
  display: inline-block;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Info Cards (Past Presidents, Future President, Secretariat) */
.committee-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 22px 18px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.committee-info-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.12);
}

.committee-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.committee-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 0 !important;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.committee-info-card:hover .committee-info-icon {
  background-color: var(--accent-color, #b22234);
}

.committee-info-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin: 0;
}

.committee-info-header p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

/* Past President Items */
.president-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 2px solid #cbd5e1;
  border-radius: 0 !important;
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.2s ease;
}

.president-list-item:hover {
  border-top-color: var(--accent-color, #b22234);
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.president-list-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
}

/* Organizing Committee & Member Grid */
.committee-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.committee-box:hover {
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 10px 20px rgba(28, 61, 90, 0.08);
}

.committee-box-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

.committee-box-header i {
  font-size: 1.4rem;
  color: var(--primary-color, #1c3d5a);
  margin-right: 12px;
}

.committee-box-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin: 0;
}

.committee-member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  align-items: stretch;
}

.member-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 2px solid #cbd5e1;
  border-radius: 0 !important;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 54px;
  height: 100%;
}

.member-tag:hover {
  border-top-color: var(--accent-color, #b22234);
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* ==========================================
   Important Dates Sharp Timeline Design System
   ========================================== */
.dates-timeline-section {
  padding: 50px 0 80px 0;
  background-color: #f8fafc;
}

.dates-timeline-header {
  text-align: center;
  margin-bottom: 45px;
}

.dates-timeline-header .badge-tag {
  display: inline-block;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 !important;
  margin-bottom: 12px;
}

.dates-timeline-header h2 {
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.dates-timeline-header p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Timeline Container */
.dates-timeline-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.dates-timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #cbd5e1;
  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline Item */
.dates-timeline-item {
  position: relative;
  margin-bottom: 35px;
  width: 50%;
  padding: 0 30px;
  box-sizing: border-box;
}

.dates-timeline-item.left {
  left: 0;
  text-align: right;
}

.dates-timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Timeline Marker Icon Box */
.dates-timeline-marker {
  position: absolute;
  top: 0;
  width: 42px;
  height: 42px;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 0 !important;
  z-index: 2;
  box-shadow: 0 0 0 4px #f8fafc, 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dates-timeline-item.left .dates-timeline-marker {
  right: -21px;
}

.dates-timeline-item.right .dates-timeline-marker {
  left: -21px;
}

.dates-timeline-item:hover .dates-timeline-marker {
  background-color: var(--accent-color, #b22234);
  transform: scale(1.12);
}

/* Timeline Card */
.dates-timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 22px 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.dates-timeline-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.12);
}

.dates-timeline-date {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 6px;
}

.dates-timeline-card:hover .dates-timeline-date {
  color: var(--accent-color, #b22234);
}

.dates-timeline-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.dates-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  background-color: #f1f5f9;
  color: #475569;
  border-radius: 0 !important;
  margin-bottom: 8px;
}

.dates-badge.active-badge {
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .dates-timeline-container::before {
    left: 20px;
  }

  .dates-timeline-item {
    width: 100%;
    padding-left: 55px;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .dates-timeline-item.left,
  .dates-timeline-item.right {
    left: 0;
    text-align: left;
  }

  .dates-timeline-item.left .dates-timeline-marker,
  .dates-timeline-item.right .dates-timeline-marker {
    left: 0;
    right: auto;
  }
}

.member-tag small {
  color: #64748b;
  font-weight: 500;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================
   Contact Sharp Modern Design System
   ========================================== */
.contact-section {
  padding: 50px 0 70px 0;
  background-color: #f8fafc;
}

.contact-dept-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.contact-dept-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.12);
}

.contact-dept-tag {
  display: inline-block;
  background-color: #f1f5f9;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 0 !important;
  margin-bottom: 10px;
}

.contact-dept-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 14px;
}

.contact-dept-link {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  color: #475569;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-dept-link i {
  width: 22px;
  color: var(--primary-color, #1c3d5a);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.contact-dept-card:hover .contact-dept-link i {
  color: var(--accent-color, #b22234);
}

.contact-dept-link:hover {
  color: var(--accent-color, #b22234);
}

/* Bottom Secretariats Section */
.contact-secretariat-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.contact-secretariat-wrapper:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.12);
}

.contact-secretariat-logo-box {
  height: 75px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.contact-secretariat-logo-box img {
  object-fit: contain;
}

.contact-secretariat-logo-box img.contact-logo-tap {
  height: 68px;
  max-width: 220px;
}

.contact-secretariat-logo-box img.contact-logo-burkon {
  height: 42px;
  max-width: 220px;
}

.contact-secretariat-header-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 4px;
}

/* ==========================================
   Abstract Submission Sharp Modern Design System
   ========================================== */
.abstract-submission-section {
  padding: 50px 0 80px 0;
  background-color: #f8fafc;
}

.ab-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.ab-card:hover {
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.1);
}

.ab-card-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

.ab-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin: 0;
  display: flex;
  align-items: center;
}

.ab-card-header i,
.ab-card-header h3 i {
  font-size: 1.3rem;
  color: var(--primary-color, #1c3d5a);
  margin-right: 12px;
  flex-shrink: 0;
}

.ab-card-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  text-align: justify;
}

.ab-callout {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 18px 20px;
  margin: 20px 0;
}

.ab-callout.warning {
  border-top-color: var(--accent-color, #b22234);
  background-color: #fff5f5;
}

.ab-callout p {
  margin: 0;
  font-size: 0.92rem;
  color: #1e293b;
}

.ab-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin: 35px 0;
}

.ab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background-color: var(--primary-color, #1c3d5a);
  border: none;
  border-radius: 0 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(28, 61, 90, 0.15);
}

.ab-btn:hover {
  background-color: var(--accent-color, #b22234);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(178, 34, 52, 0.25);
}

.ab-btn-secondary {
  background-color: #334155;
}

.ab-btn-secondary:hover {
  background-color: var(--accent-color, #b22234);
}

.ab-session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ab-session-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 20px;
  height: 100%;
  transition: all 0.25s ease;
}

.ab-session-card:hover {
  border-top-color: var(--accent-color, #b22234);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.ab-session-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 10px;
}

.ab-session-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.ab-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.ab-template-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--primary-color, #1c3d5a);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.ab-template-card i {
  font-size: 1.8rem;
  color: var(--primary-color, #1c3d5a);
  transition: color 0.25s ease;
}

.ab-template-card:hover {
  border-top-color: var(--accent-color, #b22234);
  color: var(--accent-color, #b22234);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.ab-template-card:hover i {
  color: var(--accent-color, #b22234);
}

/* ==========================================
   Research Awards Sharp Modern Design System
   ========================================== */
.awards-section {
  padding: 50px 0 80px 0;
  background-color: #f8fafc;
}

.awards-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.awards-card:hover {
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.1);
}

.awards-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

.awards-card-header i {
  font-size: 1.4rem;
  color: var(--primary-color, #1c3d5a);
  margin-right: 12px;
}

.awards-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin: 0;
}

.awards-card-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  text-align: justify;
}

/* Overview Highlights Grid */
.awards-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.awards-highlight-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s ease;
}

.awards-highlight-card:hover {
  border-top-color: var(--accent-color, #b22234);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.awards-highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 0 !important;
  transition: background-color 0.25s ease;
}

.awards-highlight-card:hover .awards-highlight-icon {
  background-color: var(--accent-color, #b22234);
}

.awards-highlight-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 4px;
}

.awards-highlight-text p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Criteria 6-Grid Cards */
.awards-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.awards-criteria-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.awards-criteria-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.12);
}

.awards-criteria-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 0 !important;
  margin: 0 auto 14px auto;
  transition: all 0.3s ease;
}

.awards-criteria-card:hover .awards-criteria-icon-box {
  background-color: var(--accent-color, #b22234);
  transform: scale(1.08);
}

.awards-criteria-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 6px;
}

.awards-criteria-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Structure Comparison Grid */
.awards-structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.awards-structure-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 24px;
  transition: all 0.25s ease;
}

.awards-structure-card:hover {
  border-top-color: var(--accent-color, #b22234);
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.awards-structure-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
}

.awards-structure-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.awards-structure-list li {
  font-size: 0.92rem;
  color: #334155;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.awards-structure-list li:last-child {
  border-bottom: none;
}

.awards-structure-list li i {
  color: #10b981;
}

/* CTA Banner */
.awards-cta-banner {
  background: var(--primary-color, #1c3d5a);
  border-top: 4px solid var(--accent-color, #b22234);
  border-radius: 0 !important;
  color: #ffffff;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.awards-cta-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.awards-cta-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin: 0;
}

.contact-secretariat-company {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

/* ==========================================
   Scientific Program Status Page Design
   ========================================== */
.program-status-section {
  padding: 70px 0 90px 0;
  background-color: #f8fafc;
}

.program-status-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 5px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.program-status-box:hover {
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 16px 32px rgba(28, 61, 90, 0.12);
}

.program-illustration-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.program-illustration-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--primary-color, #1c3d5a), #2a4d6b);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  border-radius: 0 !important;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(28, 61, 90, 0.2);
  animation: programFloat 3.5s ease-in-out infinite;
}

.program-illustration-badge {
  position: absolute;
  bottom: -10px;
  right: -15px;
  width: 44px;
  height: 44px;
  background-color: var(--accent-color, #b22234);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(178, 34, 52, 0.3);
  animation: programPulse 2s infinite;
}

@keyframes programFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes programPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.program-title {
  font-size: clamp(1.1rem, 1.85vw, 1.55rem);
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .program-title {
    white-space: normal;
  }
}

.program-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.program-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 35px auto;
}

.program-info-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 18px 15px;
  text-align: center;
  transition: all 0.25s ease;
}

.program-info-item:hover {
  border-top-color: var(--accent-color, #b22234);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.program-info-item i {
  font-size: 1.3rem;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 8px;
}

.program-info-item h6 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin-bottom: 4px;
}

.program-info-item p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

/* ==========================================
   Registration & Accommodation Sharp Modern CSS
   ========================================== */
.reg-section {
  padding: 50px 0 80px 0;
  background-color: #f8fafc;
}

.reg-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.reg-card:hover {
  border-top-color: var(--accent-color, #b22234);
  box-shadow: 0 12px 24px rgba(28, 61, 90, 0.1);
}

.reg-card-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

.reg-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  margin: 0;
  display: flex;
  align-items: center;
}

.reg-card-header h3 i {
  font-size: 1.3rem;
  color: var(--primary-color, #1c3d5a);
  margin-right: 10px;
  flex-shrink: 0;
}

.reg-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.reg-table th {
  background-color: var(--primary-color, #1c3d5a);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 16px;
  font-size: 0.92rem;
  border-radius: 0 !important;
}

.reg-table th.early-header {
  background-color: #1e3a8a;
}

.reg-table th.late-header {
  background-color: var(--accent-color, #b22234);
}

.reg-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #334155;
  vertical-align: middle;
}

.reg-table tr:hover td {
  background-color: #f8fafc;
}

.reg-price-cell {
  font-weight: 700;
  color: var(--primary-color, #1c3d5a);
  font-size: 1.05rem;
}

.reg-price-cell small {
  font-weight: 500;
  font-size: 0.78rem;
  color: #64748b;
  display: block;
}

.reg-policy-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--primary-color, #1c3d5a);
  border-radius: 0 !important;
  padding: 22px;
  margin-top: 20px;
}

.reg-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.reg-policy-item {
  padding: 14px 16px;
  border-left: 4px solid #cbd5e1;
  background-color: #f8fafc;
  font-size: 0.88rem;
  color: #1e293b;
  border-radius: 0 !important;
}

.reg-policy-item.success {
  border-left-color: #10b981;
  background-color: #ecfdf5;
}

.reg-policy-item.warning {
  border-left-color: #f59e0b;
  background-color: #fffbeb;
}

.reg-policy-item.danger {
  border-left-color: #ef4444;
  background-color: #fef2f2;
}

.reg-bank-table td {
  padding: 10px 14px;
  font-size: 0.9rem;
  border-bottom: 1px dashed #e2e8f0;
}

.reg-bank-table tr:last-child td {
  border-bottom: none;
}