/* Cache bust: 1758014337260 */
/* Cache bust: 1758014296852 */
/* Cache bust: 1758012845501 */
/* Cache bust: 1758012791320 */
/* Educational Innovation Theme - Complete Redesign */
.theme-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.theme-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745);
  border-radius: 2px;
}

/* Theme Pillars */
.theme-pillar {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.theme-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
  border-radius: 16px 16px 0 0;
}

.theme-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #007bff;
}

.pillar-header {
  margin-bottom: 25px;
}

.pillar-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.pillar-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* SDG Section */
.pillar-sdgs {
  margin-top: 20px;
}

.sdg-label {
  color: #495057;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 25px;
  justify-items: center;
}

.sdg-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.sdg-item:hover {
  transform: scale(1.1);
}

.sdg-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sdg-icon-large:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .theme-container {
    padding: 25px 20px;
  }
  
  .theme-pillar {
    padding: 20px 15px;
  }
  
  .pillar-title {
    font-size: 1.1rem;
  }
  
  .sdg-grid {
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
    gap: 18px;
  }
  
  .sdg-icon-large {
    width: 85px;
    height: 85px;
  }
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    z-index: 9999;
  }
  
  #loading-overlay::after {
    content: "Loading...";
  }
  
@media (min-width: 768px) {
    .text-md-white {
        color: #ffffff !important;
    }
}
  
@media (max-width: 767px) {
    .mobile-logo {
        max-width: 160px !important;
    }
}

/* Terms and Conditions Styling - Backup in custom.css */
.terms-condition-box .terms-checkbox {
  transform: scale(1.2) !important;

  border: 2px solid #dc3545 !important;
  font-weight: bold !important;
  outline:#dc3545 !important;
  box-shadow: none !important;
}

.terms-condition-box .terms-text {
  font-weight: bold !important;
  color: #8d8c8c !important;

 
 

}

.terms-condition-box .terms-link {
  font-weight: bold !important;
  color: #001f60 !important;



}

/* Additional specificity for checkbox */
.terms-condition-box input[type="checkbox"].terms-checkbox {
  transform: scale(1.2) !important;
  accent-color: #dc3545 !important;
  border: 2px solid #dc3545 !important;
  font-weight: bold !important;
  box-shadow: none !important;
}

/* Symposium Speaker Cards Styling */
.speaker-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,123,255,0.15) !important;
  border-color: #007bff !important;
  background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
}

.speaker-card .speaker-image-container img {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.speaker-card:hover .speaker-image-container img {
  transform: scale(1.05);
  border-color: #007bff !important;
  box-shadow: 0 6px 20px rgba(0,123,255,0.2);
}

.speaker-card .badge {
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.speaker-card:hover .badge {
  background-color: #0056b3 !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,86,179,0.3);
}

.speaker-card .speaker-info h4 {
  color: #2c3e50;
  font-weight: 600;
}

.speaker-card .speaker-info p {
  color: #6c757d;
}

/* Symposium Details Styling */
.symposium-details .bg-light {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border: 1px solid #dee2e6;
}

.symposium-details .fas {
  color: #007bff;
}

.symposium-details .fw-600 {
  color: #495057;
}

/* Responsive adjustments for speaker cards */
@media (max-width: 768px) {
  .speaker-card {
    min-height: 280px !important;
  }
  
  .speaker-card .speaker-image-container img {
    width: 100px !important;
    height: 100px !important;
  }
}









































  