/* Reset and Base Styles */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: linear-gradient(135deg, rgb(24 95 185), rgb(25 127 254));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0 50px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #f0f0f0;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.2s both;
  text-align: center;
}
.hero-image{
  display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
}
.hero-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.detail-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item h3 {
  color: #ffc300;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
      text-align: center;
}

.detail-item p,
.detail-item ul {
  color: #f0f0f0;
  line-height: 1.6;
}

.detail-item ul {
  list-style: none;
  padding-left: 0;
}

.detail-item li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.detail-item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffc300;
  font-weight: bold;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.stat {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ffc300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Jury Section */
.jury-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.jury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.jury-member {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jury-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.jury-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

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

.jury-info {
  padding: 2rem;
}

.jury-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.jury-title {
  color: #0c71cc;
  font-weight: 500;
  margin-bottom: 1rem;
}

.jury-bio {
  color: #666;
  line-height: 1.6;
}

/* Jury Carousel Styles - Single Row */
.jury-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.jury-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 0.5rem;
}

.jury-slide {
  flex: 0 0 calc(33.333% - 1.33rem);
  opacity: 1;
  display: block;
}

.jury-slide .jury-member {
  margin: 0;
  height: 100%;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 -25px;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
}

.carousel-btn svg {
  color: #0c71cc;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0c71cc;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: #0c71cc;
}

/* Mobile responsive - 1.5 cards visible */
@media (max-width: 768px) {
  .jury-slide {
    flex: 0 0 calc(66.666% - 1rem);
  }

  .carousel-controls {
    padding: 0 -15px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .jury-slide {
    flex: 0 0 calc(100% - 0.5rem);
  }
}

/* Nomination Section */
.nomination-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.nomination-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.namination-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
}

.nomination-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.eligibility-criteria,
.deadline-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.eligibility-criteria h3,
.deadline-info h3 {
  color: #ffc300;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.eligibility-criteria ul {
  list-style: none;
  padding: 0;
}

.eligibility-criteria li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.eligibility-criteria li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ffc300;
}

.date-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  color: #333;
}

.form-container h3 {
  color: #333;
  margin-bottom: 1rem;
}

.google-form-container {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
}

.form-link-container {
  text-align: center;
  margin-top: 2rem;
}

.nomination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0c71cc, #0c71cc);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.nomination-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Venue Section */
.venue-section {
  padding: 100px 0;
  background: white;
}

.venue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.venue-details h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
}

.venue-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.venue-address svg {
  color: #0c71cc;
  margin-top: 0.2rem;
}

.event-datetime {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.datetime-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.datetime-item svg {
  color: #0c71cc;
}

.event-schedule h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 2rem;
}

.schedule-timeline {
  position: relative;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0c71cc;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: #0c71cc;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #0c71cc;
}

.timeline-time {
  min-width: 100px;
  font-weight: 600;
  color: #0c71cc;
  margin-right: 2rem;
  margin-left: 39px;
}

.timeline-content h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.map-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.map-info h4 {
  color: #333;
  margin-bottom: 1rem;
}

.map-info ul {
  list-style: none;
  padding: 0;
}

.map-info li {
  padding: 0.5rem 0;
  color: #666;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #0c71cc;
  background: transparent;
  color: #0c71cc;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0c71cc;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 250px;
}

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

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

.gallery-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(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gallery-overlay p {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Modal */
/* Modal backdrop */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

/* Modal content container */
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

/* Modal image */
.modal-image {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

/* Modal caption */
.modal-caption {
  color: white;
  text-align: center;
  margin-top: 15px;
  padding: 0 20px;
  max-width: 800px;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: #d4af37;
}

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

/* Award Items Styling */
.award-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.award-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .nomination-content,
  .venue-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3rem;
  }

  .timeline-time {
    margin-bottom: 0.5rem;
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .detail-item {
    padding: 1.5rem;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
.filter-btn:focus,
.nomination-btn:focus {
  outline: 2px solid #0c71cc;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-background::after {
    background: rgba(0, 0, 0, 0.8);
  }

  .detail-item {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
}

/* Responsive carousel */
@media (max-width: 768px) {
  .carousel-controls {
    padding: 0 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .award-items {
    grid-template-columns: 1fr;
  }
  .hero-image {flex-direction: column;}
  .hero-content{padding: 30px 0px;}
}
