@charset "UTF-8";

:root {
	--primary-color: #4A436E;
	--secondary-color: #B0B8C0;
	--accent-color: #25D8F9;
	--bg-white: #ffffff;
	--bg-light: #E8EAEF;
	--text-dark: #1E2A4A;
	--transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size:14px;
  line-height: 1.6;
  color: var(--text-dark);
  padding-top: 76px;
}
h1{ font-size: 35px; }
h2{ font-size: 28px; }
h3{ font-size: 23px; }
h4{ font-size: 20px; }
h5{ font-size: 17px; }
h6{ font-size: 15px; }

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;
}

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

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

.navbar-nav {
  align-items: center;
}

.nav-link {
  font-weight: 500;
  padding: 0.75rem 0.8rem !important;
  transition: var(--transition);
  color: var(--text-dark) !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.nav-highlight {
  background-color: var(--accent-color) !important;
  color: white !important;
  border-radius: 5px;
  margin: 0 3px;
  font-size: 0.85rem;
}

.nav-highlight:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* 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;
	}
}
#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: 15px;
  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: 12px;
  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: 12px;
  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: 50%;
  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: 50%;
  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);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color), #2a4d6b) !important;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

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

.footer-dates li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}

.footer-social-icon:hover {
  transform: scale(1.15);
  border-color: white;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-social-icon.facebook:hover {
  background: #1877f2;
}

.footer-social-icon.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b);
}

.footer-social-icon.twitter:hover {
  background: #1da1f2;
}

.footer-social-icon.youtube:hover {
  background: #ff0000;
}

.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 {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

/* Invititation */
.invitation p{ text-align:justify; }

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

.info-card {
  display: block;
  background: white;
  border-radius: 15px;
  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: 50%;
  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: 8px;
}

.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;
	margin-bottom:1em;
	transition: all 0.3s ease;
	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;
	list-style: none;
    padding-left: 0;
}

.abstract-poster-rules li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    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, #3498db, #2980b9);
	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;
}

#kongreKayitBilgileri {
	max-width: 900px;
	margin: 2em auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--text-dark);
}

#kongreKayitBilgileri .kkb-card {
	background: var(--bg-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	overflow: hidden;
}

#kongreKayitBilgileri .kkb-card-header {
	background-color: var(--primary-color);
	color: var(--bg-white);
	padding: 20px 25px;
	font-size: 1.5em;
	font-weight: 600;
}

#kongreKayitBilgileri .kkb-card-body {
	padding: 25px;
}

#kongreKayitBilgileri .kkb-card-body h3 {
	color: var(--primary-color);
	font-size: 1.3em;
	margin-top: 25px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--bg-light);
}

#kongreKayitBilgileri .kkb-price-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
}
#kongreKayitBilgileri .kkb-price-table th:not(:first-child){
	text-align:center;
}


#kongreKayitBilgileri .kkb-price-table th,
#kongreKayitBilgileri .kkb-price-table td {
	border: 1px solid var(--secondary-color);
	padding: 12px 15px;
	text-align: left;
}

#kongreKayitBilgileri .kkb-price-table thead {
	background-color: var(--bg-light);
}

#kongreKayitBilgileri .kkb-price-table th {
	font-weight: 600;
}

#kongreKayitBilgileri .kkb-price-table td:first-child {
	font-weight: 500;
}

#kongreKayitBilgileri .kkb-price-table td:not(:first-child) {
	text-align: center;
}

#kongreKayitBilgileri .kkb-info-list {
	list-style-type: none;
	padding-left: 0;
}

#kongreKayitBilgileri .kkb-info-list li {
	padding: 8px 0 8px 25px;
	position: relative;
	line-height: 1.6;
	border-bottom: 1px dashed var(--bg-light);
}

#kongreKayitBilgileri .kkb-info-list li:last-child {
	border-bottom: none;
}

#kongreKayitBilgileri .kkb-info-list li::before {
	content: '✓';
	color: var(--accent-color);
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 8px;
}

#kongreKayitBilgileri .kkb-info-note {
	background-color: var(--bg-light);
	border-left: 5px solid var(--secondary-color);
	padding: 15px;
	margin-top: 20px;
	border-radius: 4px;
}

#kongreKayitBilgileri .kkb-contact-box {
	background-color: var(--bg-light);
	border-left: 5px solid var(--secondary-color);
	padding: 15px;
	margin-top: 20px;
	border-radius: 4px;
}

#kongreKayitBilgileri a {
	color: var(--primary-color);
	font-weight: 600;
	text-decoration: none;
}

#kongreKayitBilgileri a:hover {
	text-decoration: underline;
}

#kongreKayitBilgileri .kkb-button-container {
	text-align: center;
	padding: 10px 25px 30px 25px;
}

#kongreKayitBilgileri .kkb-cta-button {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--bg-white);
	padding: 14px 40px;
	font-size: 1.2em;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	transition: var(--transition);
}

#kongreKayitBilgileri .kkb-cta-button:hover {
	filter: brightness(1.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}