/* Fix header style - prevent any changes */
#main-header {
  background: transparent !important;
}

#main-header > div {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(12px) !important;
}

.hero-image-zoom {
  animation: heroZoomEffect 20s ease-in-out infinite;
}

@keyframes heroZoomEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Custom Swiper Navigation Styles */
.hero-swiper-button-next,
.hero-swiper-button-prev {
  width: 56px;
  height: 56px;
  background: rgba(183, 195, 189, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
  bottom: 30px;
  top: auto;
}

.hero-swiper-button-next {
  right: 30px;
}

.hero-swiper-button-prev {
  left: 30px;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
  background: rgba(2, 101, 52, 0.9);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(2, 101, 52, 0.4);
}

.hero-swiper-button-next:after,
.hero-swiper-button-prev:after {
  display: none;
}

.hero-swiper-button-next svg,
.hero-swiper-button-prev svg {
  transition: transform 0.3s ease;
}

/* Custom Pagination Styles */
.hero-swiper-pagination {
  bottom: 30px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #026534;
  border-color: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(2, 101, 52, 0.6);
}

    /* Responsive adjustments */
@media (max-width: 768px) {
  .hero-swiper-button-next,
  .hero-swiper-button-prev {
    width: 48px;
    height: 48px;
    bottom: 20px;
  }

  .hero-swiper-button-next {
    right: 20px;
  }

  .hero-swiper-button-prev {
    left: 20px;
  }

  .hero-swiper-button-next svg,
  .hero-swiper-button-prev svg {
    width: 20px;
    height: 20px;
  }

  .hero-swiper-pagination {
    bottom: 20px !important;
  }
}

/* 3D Carousel Styles */
.carousel-3d-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  overflow: visible;
}

.carousel-3d-container {
  position: relative;
  width: 280px;
  height: 280px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-3d-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.partner-card {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid rgba(2, 101, 52, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 101, 52, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-3d-item.active .partner-card {
  transform: scale(1.15);
  box-shadow:
    0 30px 80px rgba(2, 101, 52, 0.3),
    0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(2, 101, 52, 0.3);
}

.carousel-3d-item.active .partner-card::before {
  opacity: 1;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
}

.carousel-3d-item.active .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Navigation Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid rgba(2, 101, 52, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #026534;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
  background: #026534;
  color: white;
  border-color: #026534;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(2, 101, 52, 0.3);
}

.carousel-nav-prev {
  left: 10%;
}

.carousel-nav-next {
  right: 10%;
}

/* Indicator Dots */
.carousel-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(2, 101, 52, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #026534;
  width: 30px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-3d-wrapper {
    height: 350px;
  }

  .carousel-3d-container {
    width: 200px;
    height: 200px;
  }

  .carousel-3d-item {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
  }

  .partner-card {
    padding: 20px;
    border-radius: 18px;
  }

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

  .carousel-nav-prev {
    left: 5%;
  }

  .carousel-nav-next {
    right: 5%;
  }
}

.hero-cta-stage {
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 0%;
}

.hero-cta-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-12deg) translateY(12px);
  box-shadow:
    0 80px 140px -80px rgba(2, 101, 52, 0.58),
    0 45px 65px -50px rgba(17, 36, 23, 0.35);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}

.hero-cta-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(2, 101, 52, 0.16), transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(2, 141, 68, 0.18), transparent 60%);
  transform: translateZ(-20px) scale(1.2);
  opacity: 0.9;
}

.hero-cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.5);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-cta-card:hover {
  transform: rotateX(0deg) rotateY(0deg) translateY(0);
  box-shadow:
    0 55px 110px -70px rgba(2, 101, 52, 0.65),
    0 35px 55px -30px rgba(22, 63, 38, 0.35);
}

.hero-cta-card .hero-cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 141, 68, 0.12), rgba(255, 255, 255, 0) 50%, rgba(2, 101, 52, 0.15));
  transform: translateZ(16px);
  pointer-events: none;
}

.cta-tilt-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s ease,
    color 0.3s ease,
    background 0.3s ease;
  box-shadow:
    0 24px 45px -20px rgba(2, 101, 52, 0.75),
    0 18px 0 rgba(1, 84, 42, 0.4);
}

.cta-tilt-btn::before,
.cta-tilt-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateZ(-1px);
  transition: opacity 0.4s ease;
}

.cta-tilt-btn::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  opacity: 0;
}

.cta-tilt-btn::after {
  inset: -4px;
  background: conic-gradient(from 140deg, rgba(255, 255, 255, 0.4), rgba(2, 141, 68, 0.2), rgba(255, 255, 255, 0.35), rgba(2, 101, 52, 0.25));
  filter: blur(8px);
  opacity: 0.35;
  z-index: -1;
}

.cta-tilt-btn span,
.cta-tilt-btn svg {
  position: relative;
  z-index: 2;
  transform: translateZ(10px);
}

.cta-tilt-btn svg {
  width: 1.3rem;
  height: 1.3rem;
}

.cta-tilt-btn--primary {
  color: #ffffff;
  background: linear-gradient(140deg, #03a451 0%, #026534 55%, #015228 100%);
}

.cta-tilt-btn--secondary {
  color: #034926;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(233, 255, 241, 0.92));
  box-shadow:
    0 24px 45px -20px rgba(2, 101, 52, 0.35),
    0 18px 0 rgba(224, 245, 234, 0.95);
}

.cta-tilt-btn:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
  box-shadow:
    0 36px 55px -22px rgba(2, 101, 52, 0.8),
    0 22px 0 rgba(1, 74, 37, 0.4);
}

.cta-tilt-btn:hover::before {
  opacity: 1;
}

.cta-tilt-btn:hover::after {
  opacity: 0.5;
}

.cta-tilt-btn:active {
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
  box-shadow:
    0 28px 45px -20px rgba(2, 101, 52, 0.72),
    0 16px 0 rgba(1, 74, 37, 0.38);
}

.feature-card-wrapper {
  position: relative;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

.feature-card {
  position: relative;
  transform-style: preserve-3d;
  --rx: 0deg;
  --ry: 0deg;
  --ty: 0px;
  --gradientX: 50%;
  --gradientY: 30%;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 2px solid rgb(255, 255, 255);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px -36px rgba(2, 101, 52, 0.35);
  overflow: hidden;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty));
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--gradientX) var(--gradientY), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%),
    linear-gradient(160deg, rgba(2, 101, 52, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.45s ease;
  transform: translateZ(-30px);
}

.group:hover .feature-card {
  --ty: -12px;
  box-shadow: 0 32px 72px -40px rgba(2, 101, 52, 0.55);
  border-color: rgba(255, 255, 255, 0.35);
}

.group:hover .feature-card::before {
  opacity: 0.85;
}

.feature-card-icon {
  transform: translateZ(45px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(2, 101, 52, 0.14), rgba(2, 141, 68, 0.08));
  border: 1px solid rgba(2, 101, 52, 0.14);
  box-shadow: 0 18px 34px -26px rgba(2, 101, 52, 0.55);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.group:hover .feature-card-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px -24px rgba(2, 101, 52, 0.6);
}

@media (max-width: 768px) {
  .hero-cta-card {
    transform: rotateX(8deg) rotateY(-6deg) translateY(16px);
    padding: 1.75rem;
  }

  .hero-cta-card:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(6px);
  }
}

@media (max-width: 640px) {
  .cta-tilt-btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 2rem;
    font-size: 1rem;
  }
}

.expo-section {
  position: relative;
  background: #204a71;
  color: #ffffff;
  overflow: hidden;
}

.expo-section::before,
.expo-section::after {
  content: '';
  position: absolute;
  inset: -40%;
  pointer-events: none;
  opacity: 0.35;
}

.expo-section::before {
  background: repeating-linear-gradient(120deg, rgba(16, 185, 129, 0.1) 0 3px, transparent 3px 140px);
  animation: expoLineFlow 18s linear infinite;
}

.expo-section::after {
  background: radial-gradient(circle at 30% 20%, rgba(94, 234, 212, 0.18), transparent 65%),
    radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.22), transparent 60%);
  animation: expoGlowSway 12s ease-in-out infinite alternate;
}

.expo-particles,
.expo-grid,
.expo-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.expo-particles {
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(16, 185, 129, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 80% 25%, rgba(16, 185, 129, 0.4), transparent),
    radial-gradient(2px 2px at 40% 75%, rgba(59, 130, 246, 0.2), transparent),
    radial-gradient(1.8px 1.8px at 65% 60%, rgba(94, 234, 212, 0.32), transparent);
  animation: expoParticlesFloat 16s ease-in-out infinite;
  opacity: 0.45;
}

.expo-grid {
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 75%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  transform: rotate(-6deg) translate3d(0, 0, 0);
  animation: expoGridDrift 20s linear infinite;
  opacity: 0.25;
}

.expo-aurora {
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.24), transparent 60%);
  filter: blur(120px);
  animation: expoAuroraPulse 14s ease-in-out infinite;
}

.expo-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: clamp(2.25rem, 3vw, 3rem);
  overflow: hidden;
  box-shadow: 0 35px 90px -40px rgba(0, 0, 0, 0.6);
}

.expo-card::before,
.expo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.expo-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.3;
}

.expo-card::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  inset: 12px;
  border-radius: 26px;
  opacity: 0.45;
}

.expo-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.expo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: rgba(94, 234, 212, 0.95);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 38px -24px rgba(16, 185, 129, 0.75);
}

.expo-badge span {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.9);
  box-shadow: 0 0 20px rgba(94, 234, 212, 0.75);
  animation: expoGlowPulse 2.4s ease-in-out infinite;
}

.expo-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #ffffff;
  animation: expoTitleReveal 1.1s ease forwards;
}

.expo-text {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(214, 245, 237, 0.85);
  line-height: 1.8;
  animation: expoTextRise 1.1s ease forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

.expo-text + .expo-text {
  animation-delay: 0.45s;
}

.expo-register {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.5), rgba(6, 182, 212, 0.35));
  border: 1px solid rgba(16, 185, 129, 0.35);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 55px -24px rgba(16, 185, 129, 0.9);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.expo-register::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.7) 40%, transparent 70%);
  transform: translateX(-100%);
  animation: expoButtonSheen 3.8s ease-in-out infinite;
}

.expo-register:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 65px -24px rgba(16, 185, 129, 0.95);
}

.expo-image-wrapper {
  position: relative;
}

.expo-image-wrapper::before {
  content: '';
  position: absolute;
  top: -14%;
  left: 50%;
  width: 65%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.35), transparent 70%);
  filter: blur(40px);
  transform: translateX(-50%);
  opacity: 0.8;
  animation: expoGlowPulse 3.6s ease-in-out infinite;
}

.expo-image-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 118, 110, 0.18);
  box-shadow: 0 40px 110px -48px rgba(0, 0, 0, 0.75);
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-6deg);
  transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.expo-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
  animation: expoImageSweep 12s ease-in-out infinite;
}

.expo-image-frame:hover {
  transform: rotateX(0deg) rotateY(0deg) translateY(-10px);
  box-shadow: 0 45px 120px -46px rgba(16, 185, 129, 0.65);
}

.expo-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(50px);
  transition: transform 0.7s ease;
}

.expo-image-frame:hover img {
  transform: translateZ(60px) scale(1.05);
}

@keyframes expoLineFlow {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-280px, -140px, 0);
  }
}

@keyframes expoGlowSway {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  100% {
    transform: translate3d(30px, -40px, 0) scale(1.1);
    opacity: 0.55;
  }
}

@keyframes expoParticlesFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(0, -20px, 0);
    opacity: 0.7;
  }
}

@keyframes expoGridDrift {
  0% {
    transform: rotate(-6deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(-6deg) translate3d(-120px, -80px, 0);
  }
}

@keyframes expoAuroraPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.45;
  }
}

@keyframes expoGlowPulse {
  0%,
  100% {
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(94, 234, 212, 0.6);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(94, 234, 212, 0.95);
  }
}

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

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

@keyframes expoButtonSheen {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes expoImageSweep {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.2;
  }
}

@media (max-width: 1024px) {
  .expo-card {
    padding: 2rem;
  }

  .expo-image-wrapper::before {
    top: -10%;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .expo-section {
    padding: 5rem 0;
  }

  .expo-card {
    padding: 1.75rem;
  }

  .expo-register {
    width: 100%;
    justify-content: center;
  }

  .expo-image-frame {
    transform: rotateX(4deg) rotateY(-4deg);
  }
}

/* Registration Modal Styles */
.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.registration-modal.active {
  display: flex;
  opacity: 1;
}

.registration-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 101, 52, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  animation: modalOverlayFadeIn 0.3s ease;
}

@keyframes modalOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.registration-modal-content {
  position: relative;
  width: 90%;
  max-width: 90vw;
  height: 90vh;
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 255, 252, 0.95));
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 50px 100px -20px rgba(2, 101, 52, 0.5),
    0 30px 60px -30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  animation: modalContentZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

@keyframes modalContentZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.registration-modal-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(2, 101, 52, 0.2);
  border-radius: 50%;
  color: #026534;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.registration-modal-close:hover {
  background: #026534;
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(2, 101, 52, 0.4);
}

.registration-modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 2.5rem;
}

.registration-modal-logo {
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.registration-modal-text {
  text-align: center;
  max-width: 700px;
}

.registration-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 600px;
}

.registration-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.2);
}

.registration-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.registration-btn:hover::before {
  opacity: 1;
}

.registration-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.3);
}

.registration-btn svg {
  transition: transform 0.3s ease;
}

.registration-btn:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.registration-btn-primary {
  background: linear-gradient(135deg, #026534 0%, #028a44 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.registration-btn-primary:hover {
  background: linear-gradient(135deg, #028a44 0%, #02a854 100%);
}

.registration-btn-secondary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.registration-btn-secondary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.registration-btn-tertiary {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.registration-btn-tertiary:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .registration-modal-content {
    width: 95%;
    max-width: 95vw;
    height: 95vh;
    max-height: 95vh;
    border-radius: 24px;
  }

  .registration-modal-close {
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
  }

  .registration-modal-body {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .registration-modal-text h3 {
    font-size: 1.5rem;
  }

  .registration-modal-text p {
    font-size: 1rem;
  }

  .registration-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .registration-modal-logo img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .registration-modal-content {
    border-radius: 20px;
  }

  .registration-modal-body {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .registration-modal-text h3 {
    font-size: 1.25rem;
  }

  .registration-modal-text p {
    font-size: 0.95rem;
  }

  .registration-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

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

  .registration-modal-logo img {
    width: 80px;
  }
}

/* Smooth scrollbar for modal */
.registration-modal-content::-webkit-scrollbar {
  width: 8px;
}

.registration-modal-content::-webkit-scrollbar-track {
  background: rgba(2, 101, 52, 0.05);
  border-radius: 10px;
}

.registration-modal-content::-webkit-scrollbar-thumb {
  background: rgba(2, 101, 52, 0.3);
  border-radius: 10px;
}

.registration-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(2, 101, 52, 0.5);
}

/* Additional Styles for Animations */
.animation-delay-1000 {
  animation-delay: 1s;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.shadow-3xl {
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

/* Custom backdrop blur for better browser support */
.backdrop-blur-3xl {
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
}

/* Companies Modal Styles */
.companies-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.companies-modal.active {
  display: flex;
  opacity: 1;
}

.companies-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 101, 52, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  animation: modalOverlayFadeIn 0.3s ease;
}

.companies-modal-content {
  position: relative;
  width: 95%;
  max-width: 1400px;
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 255, 252, 0.95));
  border-radius: 32px;
  border: 2px solid rgba(2, 101, 52, 0.2);
  box-shadow:
    0 50px 100px -20px rgba(2, 101, 52, 0.4),
    0 30px 60px -30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  animation: modalContentZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10000;
}

.companies-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(2, 101, 52, 0.2);
  border-radius: 50%;
  color: #026534;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.companies-modal-close:hover {
  background: #026534;
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(2, 101, 52, 0.4);
}

.companies-modal-body {
  padding: 3rem 2rem;
}

/* Companies Grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Company Card */
.company-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 2px solid rgba(2, 101, 52, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.company-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(2, 101, 52, 0.3);
  box-shadow: 0 20px 50px rgba(2, 101, 52, 0.25);
}

.company-card-inner {
  position: relative;
}

/* Company Image */
.company-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.company-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.company-card:hover .company-image {
  transform: scale(1.15);
  filter: brightness(0.85);
}

/* Company Overlay */
.company-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 101, 52, 0.9), rgba(2, 141, 68, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.company-overlay svg {
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.company-card:hover .company-overlay svg {
  transform: scale(1);
}

/* Company Info */
.company-info {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 255, 252, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #026534;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.company-card:hover .company-name {
  color: #028a44;
}

.company-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Companies Button in Sector Card */
.companies-btn {
  flex-shrink: 0;
  margin-top: -0.25rem;
}

/* Scrollbar for Companies Modal */
.companies-modal-content::-webkit-scrollbar {
  width: 10px;
}

.companies-modal-content::-webkit-scrollbar-track {
  background: rgba(2, 101, 52, 0.05);
  border-radius: 10px;
}

.companies-modal-content::-webkit-scrollbar-thumb {
  background: rgba(2, 101, 52, 0.3);
  border-radius: 10px;
}

.companies-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(2, 101, 52, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .companies-modal-content {
    width: 98%;
    max-width: 98vw;
    border-radius: 24px;
  }

  .companies-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .companies-modal-body {
    padding: 2rem 1rem;
  }

  .company-image-wrapper {
    height: 180px;
  }

  .companies-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .companies-modal-content {
    border-radius: 20px;
  }

  .companies-modal-body {
    padding: 1.5rem 0.75rem;
  }

  .company-image-wrapper {
    height: 160px;
  }

  .companies-grid {
    gap: 1.25rem;
  }

  .company-info {
    padding: 1.25rem;
  }

  .company-name {
    font-size: 1.1rem;
  }

  .company-description {
    font-size: 0.875rem;
  }
}

