/* Global Styles */
body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

p {
  font-weight: 500;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.2rem;
}

h3, h4, h5 {
  font-weight: 700;
  color: #2c3e50;
}

h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #006839;
}

h5 {
  color: #006839;
  font-size: 1.3rem;
  line-height: 1.4;
}

/* Countdown Banner Styles - Updated for static display under navbar */
.countdown-banner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #006839 0%, #4CAF50 50%, #2E7D32 100%);
    color: white;
    padding: 15px 0;
    z-index: 1040;
    box-shadow: 0 4px 25px rgba(0, 104, 57, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    /* Remove animation for static display */
}

.countdown-banner.hidden {
    display: none;
}

.countdown-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.countdown-text h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-text h4 i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.countdown-timer {
    text-align: center;
    flex: 1;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', monospace;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-unit {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    opacity: 0.7;
    animation: blink 2s infinite;
}

.countdown-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.countdown-btn-primary,
.countdown-btn-secondary {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 2px solid transparent;
}

.countdown-btn-primary {
    background: white;
    color: #006839;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.countdown-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #004d2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.countdown-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.countdown-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Close button for countdown banner */
.countdown-close-btn {
    position: absolute;
    top: -8px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;

display: none;
}

.countdown-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Body padding - no need for padding since banner is not fixed */
body {
    padding-top: 0;
}

body.countdown-banner-hidden {
    padding-top: 0;
}

/* Countdown Animation Effects */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes countdownFlip {
    0% { transform: rotateY(0); }
    50% { transform: rotateY(-90deg); }
    100% { transform: rotateY(0); }
}

.countdown-number.flip {
    animation: countdownFlip 0.5s ease-in-out;
}

/* Responsive Design for Countdown Banner */
@media (max-width: 1200px) {
    .countdown-banner-content {
        max-width: 100%;
    }
    
    .countdown-text h4 {
        font-size: 1.2rem;
    }
    
    .countdown-actions {
        gap: 8px;
    }
    
    .countdown-btn-primary,
    .countdown-btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .countdown-banner {
        padding: 12px 0;
    }
    
    .countdown-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .countdown-text h4 {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .countdown-timer {
        order: -1;
        max-width: 100%;
    }
    
    .countdown-display {
        gap: 6px;
    }
    
    .countdown-item {
        padding: 6px 10px;
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    body {
        padding-top: 0;
    }
    
    body.countdown-banner-hidden {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .countdown-banner {
        padding: 10px 0;
    }
    
    .countdown-banner-content {
        padding: 0 15px;
        gap: 12px;
    }
    
    .countdown-text h4 {
        font-size: 1rem;
    }
    
    .countdown-text h4 i {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .countdown-display {
        gap: 4px;
    }
    
    .countdown-item {
        padding: 5px 8px;
        min-width: 40px;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-unit {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
    
    .countdown-btn-primary,
    .countdown-btn-secondary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .countdown-close-btn {
        top: -8px;
        right: 10px;
        font-size: 1rem;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .countdown-banner {
        padding: 8px 0;
    }
    
    .countdown-text h4 {
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .countdown-text h4 i {
        font-size: 1rem;
    }
    
    .countdown-display {
        gap: 3px;
    }
    
    .countdown-item {
        padding: 4px 6px;
        min-width: 35px;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-unit {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1rem;
    }
    
    .countdown-actions {
        gap: 6px;
    }
    
    .countdown-btn-primary,
    .countdown-btn-secondary {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }
}

/* Remove all partner banner styles since it's replaced by countdown banner */

.banner-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.banner-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.banner-icon i {
    font-size: 1.1rem;
    color: white;
}

.partner-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partner-btn:hover {
    background: white;
    color: #006839;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.partner-btn i {
    transition: transform 0.3s ease;
}

.partner-btn:hover i {
    transform: translateX(3px);
}

.video-item:hover .video-overlay {
  background: rgba(0,104,57,0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay i {
  color: white;
  font-size: 1.5rem;
}

.video-item p {
  padding: 1rem;
  margin: 0;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Sections */
.details-section {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border-left: 4px solid #006839;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.details-section u {
  font-weight: 700;
  font-size: 1.1rem;
  color: #006839;
  text-decoration: none;
  border-bottom: 2px solid #006839;
  padding-bottom: 2px;
}

.details-section ul {
  margin-top: 1rem;
  margin-bottom: 0;
}

.details-section li {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.theme-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-left: 4px solid #006839;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 10px;
}

.location-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.location-detail {
  background: transparent;
  box-shadow: none;
}

.accommodation-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-3px);
}

.experience-section {
  /* background: linear-gradient(135deg, #fff9e6 0%, #fff3d9 100%);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0; */
}

/* Buttons */
.btn-green {
  background: linear-gradient(135deg, #006839, #4CAF50);
  color: #FFFFFF;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,104,57,0.3);
}

.btn-green:hover {
  background: linear-gradient(135deg, #004d2a, #45a049);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,104,57,0.4);
  color: #FFFFFF;
  text-decoration: none;
}

/* Footer Styles */
footer.bg-primary {
  background: linear-gradient(135deg, #081D4D, #0f2a5a) !important;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-section ul li a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.footer-text {
  color: #b8c5d6;
  font-size: 0.9rem;
}

.contact-info p {
  color: #b8c5d6;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: #4CAF50;
}

/* Newsletter Section */
.newsletter-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.newsletter-section h6 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  color: #b8c5d6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background: linear-gradient(135deg, #006839, #4CAF50);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,104,57,0.3);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006839, #4CAF50);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,104,57,0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
}

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #8a94a6;
  margin: 0;
  font-size: 0.85rem;
}

/* Page Content */
.page-content {
  /*display: none;*/
}

.page-content.active {
  display: block;
}

/* Content Sections */
.content-paragraph {
  text-align: justify;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Dropdown Menu */
.dropdown-menu {
  background: white;
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 9999;
}

.dropdown-item {
  color: #333;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  color: #006839;
}

.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.badge {
  font-size: 0.6rem;
  padding: 0.25rem 0.5rem;
  position: absolute;
  bottom: -11px;
  left: -4px;
  width: 100%;
  display: none;
  z-index: 99999;
}

.nav-link:hover .badge {
  display: inline-block;
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  border-radius: 15px;
  margin: 2rem 0;
}

.coming-soon h2 {
  color: #006839;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #666;
}

/* Modal Styles */
.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, #006839, #4CAF50);
  color: white;
  border-radius: 15px 15px 0 0;
}

.modal-title {
  font-weight: 700;
  
  color: #fff;
}

.btn-close {
  filter: invert(1);
}

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

.main-content > * {
  animation: fadeInUp 0.6s ease forwards;
}

.main-content > *:nth-child(2) { animation-delay: 0.1s; }
.main-content > *:nth-child(3) { animation-delay: 0.2s; }
.main-content > *:nth-child(4) { animation-delay: 0.3s; }
.main-content > *:nth-child(5) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
  
  .main-content {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  .btn-green {
    width: 100%;
    text-align: center;
  }

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

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-form input {
    min-width: 100%;
  }
  
  .social-icons {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .transportation-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Transportation Cards */
.transportation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.transport-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

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

.transport-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #006839, #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.transport-card:hover .transport-icon {
  transform: scale(1.1);
}

.transport-icon i {
  font-size: 2rem;
  color: white;
}

.transport-card h6 {
  color: #006839;
  font-weight: 700;
  margin-bottom: 1rem;
}

.route-details {
  margin-top: 1.5rem;
  text-align: left;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #006839;
}

.route-details h7 {
  color: #006839;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
  font-size: 1rem;
}

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

.route-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.9rem;
  color: #495057;
  /* display: flex; */
  align-items: center;
  font-weight: 500;
}

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

.route-list li strong {
  color: #006839;
}

.bus-routes {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
  padding-left: 1rem;
}

.transport-card p {min-height: 8rem;}

/* Partnership Page Specific Styles */
.partnership-section {
  margin: 3rem 0;
}

.partnership-table {
  border: 2px solid #006839;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.table-header {
  background: linear-gradient(135deg, #006839, #4CAF50);
  color: white;
}

.table-header th {
  border: none;
  padding: 1.5rem 1rem;
  text-align: center;
  vertical-align: middle;
}

.benefits-column {
  width: 40%;
  text-align: left !important;
}

.platinum-column, .gold-column, .silver-column {
  width: 20%;
}

.sponsor-tier {
  font-size: 1.1rem;
}

.tier-price {
  font-size: 0.9rem;
  font-weight: normal;
  opacity: 0.9;
}

.section-header td {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  color: #006839;
  font-weight: 700;
  padding: 1rem;
  border-top: 2px solid #006839;
}

.partnership-table tbody tr td {
  padding: 1rem;
  vertical-align: middle;
  border-color: #e9ecef;
}

.partnership-table tbody tr:hover {
  background-color: #f8f9fa;
}

.partnership-message {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid #006839;
}

.contact-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-left: 1rem;
}

.contact-card h6 {
  color: #006839;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-details p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.contact-details a {
  color: #006839;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.text-success {
  color: #28a745 !important;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefits-column {
    width: 50%;
  }
  
  .platinum-column, .gold-column, .silver-column {
    width: 16.67%;
  }
  
  .sponsor-tier {
    font-size: 0.9rem;
  }
  
  .tier-price {
    font-size: 0.75rem;
  }
  
  .partnership-table tbody tr td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  
  .contact-card {
    margin-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .table-responsive {
    font-size: 0.8rem;
  }
  
  .partnership-table tbody tr td {
    padding: 0.5rem 0.25rem;
  }
  
  .benefits-column {
    width: 55%;
  }
  
  .platinum-column, .gold-column, .silver-column {
    width: 15%;
  }
}

.local-organising-committee {
            margin-top: 2rem;
        }

        .committee-table {
            border: 2px solid #006839;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            background: white;
        }

        .committee-table thead {
            background: linear-gradient(135deg, #006839, #4CAF50);
        }

        .committee-table thead th {
            color: white;
            font-weight: 700;
            padding: 1rem;
            border: none;
            text-align: center;
            vertical-align: middle;
            font-size: 0.95rem;
        }

        .committee-table tbody tr {
            transition: all 0.3s ease;
        }

        .committee-table tbody tr:hover {
            background-color: #f8f9fa;
            transform: translateY(-1px);
        }

        .committee-table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .committee-table tbody tr:nth-child(even):hover {
            background-color: #f0f0f0;
        }

        .committee-table tbody td {
            padding: 1rem;
            vertical-align: middle;
            border-color: #e9ecef;
            font-size: 0.9rem;
            color: #333;
        }

        .committee-table tbody td:first-child {
            font-weight: 600;
            color: #006839;
            text-align: center;
            width: 8%;
        }

        .committee-table tbody td:nth-child(2) {
            font-weight: 700;
            color: #2c3e50;
            width: 22%;
        }

        .committee-table tbody td:nth-child(3) {
            color: #555;
            width: 45%;
        }

        .committee-table tbody td:nth-child(4) {
            color: #666;
            font-style: italic;
            width: 25%;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .committee-table {
                font-size: 0.8rem;
            }
            
            .committee-table thead th,
            .committee-table tbody td {
                padding: 0.75rem 0.5rem;
            }
            
            .committee-table tbody td:first-child {
                width: 10%;
            }
            
            .committee-table tbody td:nth-child(2) {
                width: 25%;
            }
            
            .committee-table tbody td:nth-child(3) {
                width: 40%;
            }
            
            .committee-table tbody td:nth-child(4) {
                width: 25%;
            }
        }

        @media (max-width: 576px) {
            .committee-table {
                font-size: 0.75rem;
            }
            
            .committee-table thead th,
            .committee-table tbody td {
                padding: 0.5rem 0.25rem;
            }
        }

@media (max-width: 768px) {
	.committee-member {width: 100%}
	.committee-member img {margin-bottom: 2rem;}

	.nav-item.dropdown .nav-link {padding-left: 1rem;}

	.experience-section .content-image {height: unset !important;}
}

/* Places of Interest Section */
.places-section {
  margin: 3rem 0;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.place-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  background: white;
  height: 250px;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.place-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.place-card:hover .place-image img {
  transform: scale(1.1);
}

.place-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(0);
  transition: all 0.4s ease;

background: #fff;
padding: 1rem !important;
}

.place-overlay h6 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;

color: #333;
text-align: center;
}

.place-image .video-overlay {top: calc(50% - 25px);}

.place-details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,104,57,0.95), rgba(76,175,80,0.95));
  color: white;
  padding: 2rem 1.5rem;
  transform: translateY(100%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;

background: rgba(255,255,255,.85);
}

.place-card:hover .place-details {
  transform: translateY(0);
}

.place-card:hover .place-overlay {
  transform: translateY(100%) !important;
}

.place-details h6 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 0.5rem;

color: #333;
}

.place-details p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;

color: #333;
}

/* Mobile Specific Styles for Places */
@media (max-width: 768px) {
  .place-card {
    /* On mobile, start with normal state */
  }
  
  .place-card:hover {
    /* Disable hover effects on mobile */
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  .place-card:hover .place-image img {
    /* Disable hover image scaling on mobile */
    transform: none;
  }
  
  .place-card:hover .place-overlay {
    /* Keep overlay visible on mobile */
    transform: translateY(0) !important;
  }
  
  .place-card:hover .place-details {
    /* Keep details hidden by default on mobile */
    transform: translateY(100%);
  }
  
  /* Mobile tap states */
  .place-card.mobile-details-shown .place-overlay {
    transform: translateY(100%) !important;
  }
  
  .place-card.mobile-details-shown .place-details {
    transform: translateY(0);
  }
  
  .place-card.mobile-details-shown .place-image img {
    transform: scale(1.1);
  }
}

/* Cultural Experiences Section */
.cultural-section {
  margin: 3rem 0;
}

.cultural-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.cultural-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.cultural-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.cultural-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.cultural-card h6 {
  padding: 1.5rem;
  margin: 0;
  color: #333;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

/* Shopping Extravaganza Section */
.shopping-section {
  margin: 3rem 0;
}

.shopping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.shopping-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.shopping-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.shopping-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.shopping-card h6 {
  padding: 1.5rem;
  margin: 0;
  color: #333;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

/* Enhanced Video Modal */
.enhanced-modal-body {
  padding: 0;
}

.video-info-section {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-info-section h5 {
  color: #006839;
  font-weight: 700;
  margin-bottom: 1rem;
}

.video-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.video-address {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.video-address i {
  color: #006839;
  margin-right: 0.5rem;
}

.learn-more-btn {
  background: linear-gradient(135deg, #006839, #4CAF50);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,104,57,0.3);

display: table;
margin: auto;
}

.learn-more-btn:hover {
  background: linear-gradient(135deg, #004d2a, #45a049);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,104,57,0.4);
  color: white;
  text-decoration: none;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .places-grid,
  .cultural-grid,
  .shopping-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .place-card {
    height: 220px;
  }
  
  .place-details {
    padding: 1.5rem 1rem;
  }
  
  .place-details h6 {
    font-size: 1.1rem;
  }
  
  .place-details p {
    font-size: 0.85rem;
  }
  
  .cultural-image,
  .shopping-image {
    height: 180px;
  }
  
  .cultural-card h6,
  .shopping-card h6 {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .video-info-section {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .places-section,
  .cultural-section,
  .shopping-section {
    margin: 2rem 0;
  }
  
  .place-card {
    height: 300px;
  }
  
  .place-details {
    padding: 1rem;
  }
  
  .place-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .cultural-image,
  .shopping-image {
    height: 160px;
  }
  
  .video-info-section {
    padding: 1rem;
  }
  
  .video-description {
    font-size: 0.9rem;
  }
  
  .learn-more-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
    font-size: 16px;
    font-weight: bold;
}

/* Navbar Styles */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background-color: white !important;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

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

.nav-link {
  transition: color 0.3s ease;
  position: relative;
  color: #333 !important;
  font-weight: 600;
  margin: 0 10px;

  font-size: .9rem;
}

.nav-item .btn-green {line-height: 15px;}

    .nav-link:hover, .nav-link.active {
        color: #006839 !important;
    }

.dropdown-item.active {
    color: #006839 !important;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #006839;
    transition: all 0.3s ease;
}

.nav-link:hover::before, .nav-link.active::before {
  width: 100%;
  left: 0;
}

.custom-navbar-underline {
  width: 100vw;
  height: 2px;
  background: linear-gradient(90deg, #006839, #4CAF50);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0;
}

/* Main Content */
main {
  padding: 2rem 0;
  background-image: url(../images/vector.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.main-content {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  border-radius: 15px;
  padding: 2rem;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */

  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

/* Image Effects */
.conference-image, .content-image {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  margin: 1.5rem 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.conference-image:hover, .content-image:hover {
  transform: scale(1.05);
}

/* Committee Member Cards */
.committee-member {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;

  width: 48%;
  float: left;
  margin: 1%;
  min-height: 423px;
}
.committee-member .content-paragraph {text-align: left;}
.committee-member .col-lg-6 {min-height: 20rem;}

.committee-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.committee-member h6 {
  color: #006839;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.committee-member .role {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
}

.committee-member img {
  transition: transform 0.3s ease;

  max-height: 323px;
  object-fit: cover !important;
  object-position: top;
}

.committee-member:hover img {
  transform: scale(1.05);
}

/* Transportation Cards */
.transportation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.transport-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

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

.transport-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #006839, #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.transport-card:hover .transport-icon {
  transform: scale(1.1);
}

.transport-icon i {
  font-size: 2rem;
  color: white;
}

.transport-card h6 {
  color: #006839;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Video Gallery */
.video-gallery {
  margin: 2rem 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-item {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.video-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,104,57,0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}


/* Social Programme Styles - Add these to the end of style.css */

/* Social programme cards */
.social-programme-card {
    min-height: 450px;
    padding-bottom: 80px;
    position: relative;
}

.social-programme-card .btn-green {
    margin: 0;
    white-space: nowrap;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.social-programme-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-programme-logo img {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
}

.social-programme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #006839, #4CAF50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-programme-icon i {
    font-size: 2rem;
    color: white;
}

/* Social Programme Modal */
#socialProgrammeModal .modal-header {
    background: linear-gradient(135deg, #006839, #4CAF50);
    color: white;
    border-radius: 15px 15px 0 0;
}

#socialProgrammeModal .modal-title {
    font-weight: 700;
    color: #fff;
}

#socialProgrammeModal .btn-close {
    filter: invert(1);
}

#socialProgrammeModal .modal-content {
    border-radius: 15px;
    border: none;
}

.social-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-feature-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

.social-feature-list li i {
    color: #28a745;
    margin-right: 0.5rem;
}

.social-coming-soon {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.social-coming-soon p {
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments for social programme */
@media (max-width: 768px) {
    .social-programme-card {
        min-height: auto;
        padding-bottom: 20px;
    }
    
    .social-programme-card .btn-green {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-programme-logo {
        margin-bottom: 1.5rem;
    }
}


/* Call for Abstracts Page Styles */
.call-for-abstracts-content {
    margin-top: 1rem;
}

/* Deadline Card */
.deadline-card {
    background: linear-gradient(135deg, #006839, #4CAF50);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,104,57,0.3);
}

.deadline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.deadline-icon i {
    font-size: 1.5rem;
    color: white;
}

.deadline-card h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.deadline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

/* Review Process Card */
.review-process-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #006839;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-process-card h6 {
    color: #006839;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #006839, #4CAF50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h7 {
    color: #006839;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.process-arrow {
    color: #006839;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Submission Types Grid */
.submission-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.submission-type-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #006839;
}

.submission-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.submission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #006839, #4CAF50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.submission-type-card:hover .submission-icon {
    transform: scale(1.1);
}

.submission-icon i {
    font-size: 1.5rem;
    color: white;
}

.submission-type-card h6 {
    color: #006839;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.word-count {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    color: #006839;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.submission-type-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Subthemes Grid */
.subthemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.subtheme-item {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.subtheme-item:hover {
    transform: translateX(5px);
    border-left-color: #006839;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.subtheme-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #006839, #4CAF50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.subtheme-content {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Special Issues Section */
.special-issues-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid #006839;
}

.special-issues-intro {
    margin-bottom: 2rem;
}

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

.journal-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.journal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #006839, #4CAF50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.journal-card:hover .journal-icon {
    transform: scale(1.1);
}

.journal-icon i {
    font-size: 1.2rem;
    color: white;
}

.journal-card h6 {
    color: #333;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.journal-requirements {
    margin-top: 2rem;
}

.requirements-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.requirements-card h6 {
    color: #006839;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.requirements-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.requirements-card li {
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.requirements-card li:last-child {
    margin-bottom: 0;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #006839, #4CAF50);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0,104,57,0.3);
}

.cta-section h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .content-paragraph {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    background: white;
    color: #006839;
    border: none;
}

.btn-lg:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #004d2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Call for Abstracts */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .submission-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .subthemes-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .journals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .cta-section .row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .deadline-card {
        padding: 1.5rem 1rem;
    }
    
    .review-process-card {
        padding: 1.5rem;
    }
    
    .special-issues-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .journals-grid {
        grid-template-columns: 1fr;
    }
}


/* Call for Curated Sessions Page Styles */
.call-for-curated-sessions-content {
    margin-top: 1rem;
}

/* Workshop Modes Section */
.workshop-modes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #006839;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.workshop-modes-section h6 {
    color: #006839;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.workshop-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.workshop-mode-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.workshop-mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-top-color: #006839;
}

.mode-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.workshop-mode-card:hover .mode-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #006839, #4CAF50);
}

.mode-icon i {
    font-size: 1.5rem;
    color: white;
}

.workshop-mode-card h7 {
    color: #006839;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.1rem;
}

.workshop-mode-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Workshop Highlight for Submission Cards */
.workshop-highlight {
    position: relative;
    border-top: 4px solid #4CAF50;
    background: linear-gradient(135deg, #f0f8f0 0%, #ffffff 100%);
}

.workshop-highlight .submission-icon {
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
}

.highlight-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Enhanced CTA for Workshop Focus */
.cta-section .btn-lg {
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
    color: white;
}

.cta-section .btn-lg:hover {
    background: linear-gradient(135deg, #45a049, #5cbf6a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Workshop-specific Deadline Card */
.call-for-curated-sessions-content .deadline-card {
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
}

.call-for-curated-sessions-content .deadline-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Workshop-specific Subtheme Hover Effects */
.call-for-curated-sessions-content .subtheme-item:hover {
    border-left-color: #4CAF50;
}

.call-for-curated-sessions-content .subtheme-number {
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
}

/* Workshop-specific Process Elements */
.call-for-curated-sessions-content .step-number {
    background: linear-gradient(135deg, #4CAF50, #6BCF7F);
}

.call-for-curated-sessions-content .process-arrow {
    color: #4CAF50;
}

/* Interactive Elements */
.workshop-modes-grid .workshop-mode-card {
    cursor: pointer;
}

.workshop-modes-grid .workshop-mode-card:active {
    transform: translateY(-3px) scale(0.98);
}

/* Accessibility Enhancements */
.workshop-mode-card:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

.workshop-mode-card[tabindex]:focus {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

/* Responsive Design for Workshop Modes */
@media (max-width: 768px) {
    .workshop-modes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .workshop-mode-card {
        padding: 1.5rem 1rem;
    }
    
    .mode-icon {
        width: 50px;
        height: 50px;
    }
    
    .mode-icon i {
        font-size: 1.2rem;
    }
    
    .workshop-modes-section {
        padding: 1.5rem;
    }

.committee-member {width: 100%;}
.content-paragraph {text-align: left;}
}

@media (max-width: 576px) {
    .workshop-modes-section h6 {
        font-size: 1.1rem;
    }
    
    .workshop-mode-card h7 {
        font-size: 1rem;
    }
    
    .workshop-mode-card p {
        font-size: 0.85rem;
    }
    
    .highlight-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
        top: -6px;
        right: 10px;
    }
}

#memberModalBody img {max-height: 35rem; object-fit: cover;}

.countdown-banner {display: none;}