/* Digital Tech Elements */
.digital-particle {
  position: absolute;
  background: rgba(124, 32, 33, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.tech-gradient-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.digital-grid {
  background-image: linear-gradient(rgba(124, 32, 33, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(124, 32, 33, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
}

.tech-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7C2021, #9a3f40);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.tech-icon-container::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg) translate(-50%, -50%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    top: -100%;
  }
  100% {
    left: 100%;
    top: 100%;
  }
}

.process-step {
  position: relative;
  padding-left: 30px;
  margin-bottom: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #7C2021;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 1rem);
  background: rgba(124, 32, 33, 0.3);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.tech-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  background: white;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 32, 33, 0.2);
}

.tech-card-header {
  background: linear-gradient(135deg, #7C2021, #9a3f40);
  color: white;
  padding: 1.5rem;
}

.tech-card-body {
  padding: 1.5rem;
}

.digital-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge-tech {
  background: #7C2021;
  color: #ffffff;
}

.badge-beginner {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.badge-intermediate {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.badge-advanced {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #7C2021, #9a3f40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.testimonial-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  background: white;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(124, 32, 33, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Hero Section */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.3s ease;
  z-index: -1;
}

.hero-cta:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.digital-highlight {
  color: #fff;
  background: rgba(124, 32, 33, 0.8);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.tech-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #7C2021;
}

.tech-feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tech-feature-description {
  font-size: 1rem;
  color: #6c757d;
}

.tech-process-container {
  position: relative;
  padding: 3rem 0;
}

.tech-process-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(124, 32, 33, 0.2);
  transform: translateX(-50%);
}

.tech-process-step {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.tech-process-step:last-child {
  margin-bottom: 0;
}

.tech-process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #7C2021;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.tech-process-content {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-process-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #7C2021;
}

.tech-process-description {
  font-size: 1rem;
  color: #6c757d;
}

.floating-tech-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-tech-element {
  position: absolute;
  opacity: 0.5;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}

.tech-stats-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  padding: 2rem;
  text-align: center;
}

.tech-stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 32, 33, 0.2);
}

.tech-stats-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #7C2021;
}

.tech-stats-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #7C2021, #9a3f40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.tech-stats-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c757d;
}

.overlay-hover {
  opacity: 0;
  background: rgba(124, 32, 33, 0.7);
  transition: all 0.3s ease;
}

.position-relative:hover .overlay-hover {
  opacity: 1;
}

.event-card {
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-card-img-container {
  position: relative;
  overflow: hidden;
}

.event-card-img {
  transition: all 0.5s ease;
}

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

.event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: all 0.3s ease;
}

.event-card:hover .event-card-overlay {
  opacity: 1;
}

.event-card-content {
  padding: 1.5rem;
}

.event-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-card-description {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-card-date {
  font-size: 0.8rem;
  color: #6c757d;
}

.event-card-button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.digital-divider {
  height: 4px;
  width: 80px;
  background: linear-gradient(45deg, #7C2021, #9a3f40);
  margin: 2rem auto;
  border-radius: 2px;
}

.section-title-tech {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle-tech {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
  text-align: center;
}

.tech-benefits-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  padding: 2rem;
  height: 100%;
}

.tech-benefits-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 32, 33, 0.2);
}

.tech-benefits-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #7C2021;
}

.tech-benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tech-benefits-description {
  font-size: 1rem;
  color: #6c757d;
}

.tech-cta-section {
  background: linear-gradient(135deg, #7C2021, #9a3f40);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.tech-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tech-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.tech-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.tech-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: white;
  color: #7C2021;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-cta-button:hover {
  background: #f8f9fa;
  color: #7C2021;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.tech-cta-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.counter-animation {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  color: #7C2021;
}

.tech-impact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.tech-impact-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  padding: 2rem;
  height: 100%;
}

.tech-impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 32, 33, 0.2);
}

.tech-impact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #7C2021;
}

.tech-impact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tech-impact-description {
  font-size: 1rem;
  color: #6c757d;
}

.tech-impact-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #7C2021, #9a3f40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.tech-impact-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c757d;
}

.tech-volunteer-section {
  padding: 5rem 0;
}

.tech-volunteer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.tech-volunteer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 32, 33, 0.2);
}

.tech-volunteer-img {
  height: 200px;
  object-fit: cover;
}

.tech-volunteer-content {
  padding: 1.5rem;
}

.tech-volunteer-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-volunteer-role {
  font-size: 1rem;
  color: #7C2021;
  margin-bottom: 1rem;
}

.tech-volunteer-description {
  font-size: 1rem;
  color: #6c757d;
}

.tech-volunteer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.tech-volunteer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C2021;
  transition: all 0.3s ease;
}

.tech-volunteer-social a:hover {
  background: #7C2021;
  color: white;
}

.digital-text-effect {
  position: relative;
  display: inline-block;
}

.digital-text-effect::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7C2021;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.digital-text-effect:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.tech-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.tech-feature-item i {
  color: #7C2021;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.tech-feature-text {
  font-size: 1rem;
  color: #6c757d;
}


.hover-underline-animation {
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.navbar .nav-link.active {
  position: relative;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
}