/*
Theme Name: Martial Arts Medicine Conference
Theme URI: https://martialartsmedicine.com
Author: Replit AI
Author URI: https://replit.com
Description: A professional theme for the Martial Arts Medicine Conference, focused on sports medicine in martial arts with registration management and data export capabilities.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: martial-arts-medicine
Tags: conference, medical, sports, responsive, accessibility-ready
*/

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

/* Variables */
:root {
  /* Theme colors - these can be overridden by the customizer */
  --primary-color: #6C2AA2; /* Purple */
  --secondary-color: #8bc34a; /* Green */
  --header-bg-color: #ffffff; /* White */
  --footer-bg-color: #212121; /* Dark Gray */
  --button-text-color: #ffffff; /* White */

  /* Supporting colors */
  --dark-blue: #1d3557;
  --light-blue: #a8dadc;
  --light-color: #f1faee;
  --dark-color: #0c0a09;
  --text-color: #333333;
  --body-bg-color: #ffffff;
  /* --gray-color: #8d99ae; */
  --gray-color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  --light-gray: #f5f7fa;

  /* --font-heading: 'Montserrat', 'Arial', sans-serif; */
  --font-heading: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* --font-body: 'Open Sans', 'Arial', sans-serif; */
  --font-body: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --transition: all 0.3s ease;
}

/* Typography */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--dark-color);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
  line-height: 50px;
}

h2 {
  font-size: 2rem;
  line-height: 32px;
}

h3 {
  font-size: 1.75rem;
  line-height: 38px;
}

h4 {
  font-size: 1.5rem;
  line-height: 34px;
}

h5 {
  font-size: 1.25rem;
  line-height: 30px;
}

h6 {
  font-size: 1rem;
  line-height: 26px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Container */
.container {
  width: 100%;
  /* max-width: 1200px; */
/*   max-width: 1536px; */
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

/* Utilities */
.text-center {
  text-align: center;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.bg-light {
  /* background-color: var(--light-gray); */
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}

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

.bg-white {
  background-color: #fff;
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.text-white {
  color: #fff;
}

.text-primary {
  color: var(--primary-color);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-center {
  object-position: center;
}

/* Header */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-branding {
  display: flex;
  align-items: baseline;
  /* align-items: center; */
}

.site-branding img {
  max-height: 60px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  /* margin: 0; */
  margin-right: 10px;
}

.site-title a {
  color: var(--dark-blue);
  text-decoration: none;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
  margin-left: 1.5rem;
}

.main-navigation a {
  display: block;
  padding: 0.5rem 0;
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a {
  color: var(--primary-color) !important;
}

.main-navigation .register-button a {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.main-navigation .register-button a:hover,
.main-navigation .register-button a:focus {
  background-color: #c52f3a;
  color: white;
  text-decoration: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

.menu-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-color);
  position: relative;
  transition: var(--transition);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--dark-color);
  transition: var(--transition);
}

.menu-toggle-icon::before {
  top: -8px;
}

.menu-toggle-icon::after {
  bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .main-navigation.show ul {
    display: flex;
  }
  
  .main-navigation li {
    margin: 0.5rem 0;
  }
  
  .main-navigation li:first-child {
    margin-top: 0;
  }
  
  .main-navigation li:last-child {
    margin-bottom: 0;
  }
}

/* Footer */
.site-footer {
  background-color: #171717;
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-branding .footer-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-heading {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  line-height: 1.75rem;
}

/* .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
} */

.footer-link {
  color: var(--gray-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-link i {
  margin-right: 0.5rem;
}

.footer-link:hover,
.footer-link:focus {
  color: #fff;
  text-decoration: none;
}

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

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

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

.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
  padding-left: 5px;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icon:hover,
.social-icon:focus {
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  /* flex-wrap: wrap; */
}

.copyright {
  margin-bottom: 1rem;
  color: var(--gray-color);
}

.copyright p {
  font-size: 14px;
  line-height: 20px;
}

.footer-menu-secondary ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-secondary li {
  margin-left: 1.5rem;
}

.footer-menu-secondary a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-menu-secondary a:hover,
.footer-menu-secondary a:focus {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-menu-secondary ul {
    justify-content: center;
  }
  
  .footer-menu-secondary li:first-child {
    margin-left: 0;
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c52f3a;
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #3a6785;
  color: #fff;
  text-decoration: none;
}

.btn-light {
  display: inline-block;
  background-color: #fff;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.btn-light:hover,
.btn-light:focus {
  background-color: #f5f5f5;
  color: #c52f3a;
  text-decoration: none;
}

/* Section Styles */
.section-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  /* text-align: center; */
  font-size: 32px;
  line-height: 42px;
  color: #147F46 !important;
}

/* .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
} */

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem;
}

/* Hero Banner */

/* .hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
} */

/* 
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
} */

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-swiper {
  height: 500px;
  position: relative;
}

.swiper-slide .container  {
  color: #fff;
}
.swiper-slide{
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-pagination-bullet{
   background: #ffffff !important;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* .about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
} */

.highlight-item {
  display: flex;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* text-align: center; */
}

.highlight-icon {
  font-size: 1.15rem;
  color: var(--button-text-color);
  /* margin-bottom: 1rem; */
  margin-right: 1rem;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  padding-top: 4px;
}

.highlight-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

/* Speakers Section */
.featured-speakers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.speaker-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.speaker-image {
  height: 410px;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}

.placeholder-image {
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image .dashicons {
  font-size: 60px;
  opacity: 0.3;
}

.speaker-content {
  padding: 1.5rem;
}

.speaker-name,
.sponser-name {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  color: var(--dark-color) !important;
}

.speaker-title {
  color: #469580;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.speaker-bio p {
  font-size: 16px;
  line-height: 26px;
}
.speaker-page-title {
	font-size: 40px;
	line-height: 50px;
}



/* Topics Section */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.topic-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.topic-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.topic-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Sponsors */
.sponsors-carousel{
  display: flex;
  gap: 20px;
	justify-content: center;
}
.sponsor-level-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  position: relative;
}

.sponsor-level-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.sponsor-platinum {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.sponsor-gold {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.sponsor-silver {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.sponsor-box {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sponsor-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.sponsor-logo {
  /* max-width: 100%; */
  width: 100%;
  height: auto;
  /* max-height: 100px; */
  max-height: 400px;
  object-fit: contain;
  border: 1px solid #000000;
  padding: 25px;
}

.sponsor-placeholder {
  width: 100%;
  height: 80px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #aaa;
  text-align: center;
}

/* Registration Form */
.registration-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
}

.form-actions {
  margin-top: 2rem;
}

/* Programme Schedule */
.schedule-timeline {
  position: relative;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--light-blue);
}

.schedule-item {
  position: relative;
  margin-left: 50px;
  margin-bottom: 2rem;
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.schedule-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-item::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: -30px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.schedule-time {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.schedule-title {
  margin-bottom: 0.5rem;
}

.schedule-speakers,
.schedule-location {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.schedule-description {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Faculty Page */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.faculty-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faculty-image {
  height: 280px;
  overflow: hidden;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.faculty-card:hover .faculty-image img {
  transform: scale(1.05);
}

.faculty-content {
  padding: 1.5rem;
}

.faculty-name {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  color: #0c0a09;
}

.faculty-title {
  color: #6c2aa2;
  font-size: 16px;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 400;;
  font-size: 16px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 700;
}

p.faculty-title.faculty-organization {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 1rem;
  font-weight: 400;
}


/* Venue Page */
.venue-subtitle {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.venue-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.venue-contact-info {
  margin-top: 2rem;
}

.venue-info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.venue-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 40px;
  text-align: center;
}

.hotel-item {
  transition: var(--transition);
}

.hotel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.attraction-item {
  transition: var(--transition);
}

.attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Skip Link */
.skip-link {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: var(--dark-color);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  left: -9999em;
  outline: none;
  padding: 15px 23px 14px;
  text-decoration: none;
  text-transform: none;
  top: -9999em;
}

.skip-link:focus {
  clip: auto;
  height: auto;
  left: 6px;
  top: 7px;
  width: auto;
  z-index: 100000;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	  
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .py-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .mb-16 {
    margin-bottom: 3rem;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .schedule-timeline::before {
    left: 15px;
  }
  
  .schedule-item {
    margin-left: 40px;
  }
  
  .schedule-item::before {
    left: -25px;
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 576px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .featured-speakers {
    grid-template-columns: 1fr;
  }
  
  .faculty-grid {
    grid-template-columns: 1fr;
  }
  
  .attractions-grid {
    grid-template-columns: 1fr;
  }
}

.faculty-bio.faculty-bio-short {
    font-size: 14px;
    line-height: 20px;
    margin-top: 25px;
    font-style: italic;
}

.sponsors-section .sponser-name {
	font-family: "Roboto", Sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 26px;
    color: #0C0A09 !important;
    margin-top: 10px;
	text-align: center;
}
.sponsor-page .elementor-loop-container.elementor-grid{
	display: flex;
    justify-content: center;
}



