.elementor-1238 .elementor-element.elementor-element-9a740b2 > .elementor-container{min-height:400px;}.elementor-1238 .elementor-element.elementor-element-5e6f90c > .elementor-container{min-height:400px;}.elementor-1238 .elementor-element.elementor-element-343aa48 > .elementor-container{min-height:400px;}.elementor-1238 .elementor-element.elementor-element-9198ca4 > .elementor-container{min-height:400px;}.elementor-1238 .elementor-element.elementor-element-a28b434 > .elementor-container{min-height:400px;}.elementor-1238 .elementor-element.elementor-element-470c6a5 > .elementor-container{min-height:400px;}.elementor-1238 .elementor-element.elementor-element-8c39dd6 > .elementor-container{min-height:400px;}/* Start custom CSS for html, class: .elementor-element-904ea19 *//* Nominate Hero Section Styles */
.nominate-hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #dc2626 100%);
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(1deg); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(0,0,0,0.8) 0%, 
    rgba(220,38,38,0.6) 50%, 
    rgba(0,0,0,0.9) 100%
  );
  z-index: 2;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 700px;
  color: white;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: slideInUp 1s ease forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(-45deg, #ffffff, #dc2626, #ffffff, #ffd700);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  animation: slideInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: slideInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.5rem;
  animation: countUp 2s ease forwards;
}

@keyframes countUp {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInUp 1s ease 0.9s forwards;
  opacity: 0;
}

.btn-primary {
  background-color: #dc2626;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background-color: #b91c1c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.btn-secondary {
  background-color: transparent;
  color: white;
  padding: 15px 40px;
  border: 2px solid white;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background-color: white;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nominate-hero-section {
    height: 80vh;
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2dd5d65 *//* Why Nominate Section Styles */
.why-nominate-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.why-nominate-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(220,38,38,0.05) 50%, transparent 100%);
  z-index: 1;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1.5rem;
  animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reason-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.1), transparent);
  transition: left 0.6s ease;
}

.reason-card:hover::before {
  left: 100%;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stagger-item {
  animation: staggerIn 0.8s ease forwards;
}

@keyframes staggerIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-item:nth-child(1) { animation-delay: 0.2s; }
.stagger-item:nth-child(2) { animation-delay: 0.4s; }
.stagger-item:nth-child(3) { animation-delay: 0.6s; }

.reason-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}

.reason-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #dc2626;
  opacity: 0;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon::after {
  opacity: 1;
  transform: scale(1.1);
}

.icon {
  width: 2rem;
  height: 2rem;
}

.reason-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.reason-description {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-nominate-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reason-card {
    padding: 2rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8ccc08f *//* Nomination Criteria Section Styles */
.nomination-criteria-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
}

.criteria-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.criteria-content {
  background-color: #f9fafb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.criteria-tab {
  padding: 1rem 2rem;
  border: none;
  background-color: white;
  color: #6b7280;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.criteria-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.1), transparent);
  transition: left 0.5s ease;
}

.criteria-tab:hover::before {
  left: 100%;
}

.criteria-tab:hover {
  color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.criteria-tab.active {
  background-color: #dc2626;
  color: white;
  box-shadow: 0 5px 15px rgba(220,38,38,0.3);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eligibility Tab Styles */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.criteria-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.3);
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bounce-in {
  animation: bounceIn 0.8s ease forwards;
}

.bounce-in:nth-child(1) { animation-delay: 0.1s; }
.bounce-in:nth-child(2) { animation-delay: 0.2s; }
.bounce-in:nth-child(3) { animation-delay: 0.3s; }
.bounce-in:nth-child(4) { animation-delay: 0.4s; }

.criteria-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

.criteria-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.criteria-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Categories Tab Styles */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.category-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-50px);
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.slide-in-left:nth-child(1) { animation-delay: 0.1s; }
.slide-in-left:nth-child(2) { animation-delay: 0.2s; }
.slide-in-left:nth-child(3) { animation-delay: 0.3s; }
.slide-in-left:nth-child(4) { animation-delay: 0.4s; }
.slide-in-left:nth-child(5) { animation-delay: 0.5s; }
.slide-in-left:nth-child(6) { animation-delay: 0.6s; }

.category-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee2e2;
  border-radius: 12px;
  flex-shrink: 0;
}

.category-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.category-desc {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Process Tab Styles */
.process-timeline {
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  width: 2px;
  height: calc(100% + 2rem);
  background-color: #e5e7eb;
  z-index: 1;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-marker {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex: 1;
  animation: slideInRight 0.6s ease forwards;
  opacity: 0;
  transform: translateX(50px);
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-content:nth-child(1) { animation-delay: 0.1s; }
.timeline-content:nth-child(2) { animation-delay: 0.2s; }
.timeline-content:nth-child(3) { animation-delay: 0.3s; }
.timeline-content:nth-child(4) { animation-delay: 0.4s; }

.timeline-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nomination-criteria-section {
    padding: 3rem 0;
  }
  
  .criteria-content {
    padding: 1.5rem;
  }
  
  .criteria-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .criteria-tab {
    width: 100%;
    max-width: 200px;
  }
  
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-item::after {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7dca5e7 *//* Nomination Form Section Styles */
.nomination-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-wrapper {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

/* Progress Bar Styles */
.progress-bar {
  display: flex;
  background-color: #f9fafb;
  padding: 2rem;
  justify-content: space-between;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background-color: #e5e7eb;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background-color: #dc2626;
  color: white;
  animation: pulse 2s infinite;
}

.progress-step.completed .step-number {
  background-color: #059669;
  color: white;
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

.progress-step.active .step-label {
  color: #dc2626;
}

/* Form Styles */
.nomination-form {
  padding: 2rem;
}

.form-step {
  display: none;
  animation: slideIn 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-content {
  min-height: 400px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
  position: relative;
  z-index: 2;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
  transform: translateY(-2px);
}

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #dc2626;
  transition: width 0.3s ease;
  z-index: 1;
}

.form-input:focus + .input-focus-line,
.form-textarea:focus + .input-focus-line {
  width: 100%;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styles */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.6;
  font-size: 0.9rem;
  color: #374151;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background-color: #dc2626;
  border-color: #dc2626;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Review Section Styles */
.review-content {
  text-align: center;
}

.review-text {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.review-summary {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.summary-section {
  margin-bottom: 1.5rem;
}

.summary-section:last-child {
  margin-bottom: 0;
}

.summary-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dc2626;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-label {
  font-weight: 600;
  color: #6b7280;
}

.summary-value {
  color: #000;
  font-weight: 500;
}

/* Form Navigation Styles */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.nav-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.prev-btn {
  background-color: #6b7280;
  color: white;
}

.prev-btn:hover {
  background-color: #4b5563;
  transform: translateY(-2px);
}

.next-btn,
.submit-btn {
  background-color: #dc2626;
  color: white;
  margin-left: auto;
}

.next-btn:hover,
.submit-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220,38,38,0.3);
}

.submit-btn {
  animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nomination-form-section {
    padding: 3rem 0;
  }
  
  .form-container {
    padding: 0 15px;
  }
  
  .progress-bar {
    padding: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .progress-bar::before {
    display: none;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .nomination-form {
    padding: 1.5rem;
  }
  
  .step-content {
    min-height: auto;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .next-btn,
  .submit-btn {
    margin-left: 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-751ccd3 *//* Success Stories Section Styles */
.success-stories-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(220,38,38,0.1) 0%, transparent 50%);
  z-index: 1;
}

.stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px rgba(220,38,38,0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(220,38,38,0.8), 0 0 40px rgba(220,38,38,0.3);
  }
}

.section-header .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.story-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease forwards;
}

.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.3s; }
.story-card:nth-child(3) { animation-delay: 0.5s; }

.hover-lift:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.story-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.story-category {
  background-color: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-content {
  padding: 2rem;
}

.story-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.story-title {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.story-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.nomination-date {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.read-more-btn {
  background: none;
  border: none;
  color: #dc2626;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.read-more-btn:hover {
  color: #b91c1c;
  transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: #dc2626;
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Stories CTA */
.stories-cta {
  text-align: center;
}

.cta-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220,38,38,0.4);
}

.glow {
  box-shadow: 0 0 30px rgba(220,38,38,0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(220,38,38,0.5);
  }
  100% {
    box-shadow: 0 0 40px rgba(220,38,38,0.8), 0 0 60px rgba(220,38,38,0.3);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .success-stories-section {
    padding: 3rem 0;
  }
  
  .stories-carousel {
    grid-template-columns: 1fr;
  }
  
  .story-stats {
    justify-content: space-around;
  }
  
  .story-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b64a822 *//* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  background-color: #f9fafb;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-content {
  margin-bottom: 4rem;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.05), transparent);
  transition: left 0.5s ease;
}

.faq-question:hover::before {
  left: 100%;
}

.faq-question:hover {
  background-color: #fef2f2;
}

.faq-item.active .faq-question {
  background-color: #dc2626;
  color: white;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.question-icon {
  width: 2rem;
  height: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.plus-icon,
.minus-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

.minus-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .plus-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .minus-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
  transform: translateY(0);
  opacity: 1;
}

/* FAQ Contact Card */
.faq-contact {
  display: flex;
  justify-content: center;
}

.contact-card {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(220,38,38,0.3);
  position: relative;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.contact-description {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-btn.primary {
  background-color: white;
  color: #dc2626;
}

.contact-btn.primary:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.contact-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.contact-btn.secondary:hover {
  background-color: white;
  color: #dc2626;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .question-text {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 200px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c4746e9 *//* Final Call-to-Action Section Styles */
.final-cta-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.cta-container {
  width: 100%;
  position: relative;
  z-index: 3;
}

.cta-content {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 30s ease-in-out infinite alternate;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.9) 0%,
    rgba(220,38,38,0.7) 30%,
    rgba(0,0,0,0.8) 70%,
    rgba(220,38,38,0.6) 100%
  );
  z-index: 2;
}

.cta-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.1;
  background: linear-gradient(-45deg, #ffffff, #dc2626, #ffffff, #ffd700);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.cta-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.9);
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.cta-stat:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.1s forwards;
  opacity: 0;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  box-shadow: 0 10px 30px rgba(220,38,38,0.4);
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220,38,38,0.6);
}

.cta-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background-color: white;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

.cta-testimonial {
  animation: fadeInUp 1s ease 1.4s forwards;
  opacity: 0;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: #dc2626;
  font-weight: bold;
}

.testimonial-author {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Floating particles animation */
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(220,38,38,0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(220,38,38,0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
  z-index: 2;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-10px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .final-cta-section {
    min-height: 80vh;
  }
  
  .cta-content {
    height: auto;
    min-height: 80vh;
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .cta-stat {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}/* End custom CSS */