/* Why Choose Section - Enhanced Design */
.gd-why-choose-section2 {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #0a2540 0%,
    #1e4976 25%,
    #2563eb 50%,
    #0891b2 75%,
    #06b6d4 100%
  );
  color: white;
  overflow: hidden;
  min-height: 100vh;
}

.gd-floating-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.gd-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 215, 0, 0.25),
    rgba(59, 130, 246, 0.15)
  );
  animation: gd-float-bubble 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.gd-bubble.gd-large {
  width: 80px;
  height: 80px;
}

.gd-bubble.gd-medium {
  width: 50px;
  height: 50px;
}

.gd-bubble.gd-small {
  width: 30px;
  height: 30px;
}

@keyframes gd-float-bubble {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) translateX(-10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-20px) translateX(15px) rotate(270deg);
    opacity: 0.8;
  }
}

.gd-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(251,191,36,0.15)"/></svg>')
    repeat-x; */
  animation: gd-wave-move 8s linear infinite;
}

@keyframes gd-wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.gd-container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.gd-section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: gd-slideInFromTop 1s ease-out;
}

.gd-section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 50%, #fde68a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
  letter-spacing: 1px;
  animation: gd-shimmer 3s linear infinite;
}

@keyframes gd-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.gd-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    #fbbf24,
    #f59e0b,
    #fbbf24,
    transparent
  );
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.gd-section-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
  color: #e0f2fe;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gd-features-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.gd-features-card2 {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.377),
    rgba(255, 255, 255, 0.546)
  );
  backdrop-filter: blur(15px);
  border: 2px solid rgba(251, 191, 36, 0.25);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(251, 191, 36, 0.1);
}

/* Rotating Light Effect */
.gd-features-card2::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0deg,
    transparent 30deg,
    rgba(251, 191, 36, 0.2) 60deg,
    rgba(252, 211, 77, 0.25) 90deg,
    rgba(245, 158, 11, 0.2) 120deg,
    rgba(251, 191, 36, 0.15) 150deg,
    transparent 180deg,
    transparent 360deg
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.6s ease;
  z-index: 0;
  border-radius: 25px;
}

.gd-features-card2:hover::before {
  opacity: 1;
  animation: gd-rotate-light 3s linear infinite;
}

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

/* Additional glow effect */
.gd-features-card2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(251, 191, 36, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 25px;
  pointer-events: none;
  z-index: 0;
}

.gd-features-card2:hover::after {
  opacity: 1;
}

.gd-features-card2.gd-animate {
  opacity: 1;
  transform: translateY(0);
}

.gd-features-card2:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(251, 191, 36, 0.4),
    0 0 80px rgba(59, 130, 246, 0.2);
  border-color: rgba(251, 191, 36, 0.5);
}

.gd-feature-icon {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #0a2540;
  font-weight: bold;
  transition: all 0.4s ease;
  animation: gd-iconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.gd-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.gd-features-card2:hover .gd-feature-icon {
  transform: rotate(360deg) scale(1.15);
  animation-play-state: paused;
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6),
    0 0 50px rgba(251, 191, 36, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.gd-feature-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  z-index: 2;
  /* background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.85) 0%,
    rgba(8, 145, 178, 0.75) 50%,
    rgba(6, 182, 212, 0.65) 100%
  ); */
  background: linear-gradient(135deg, #3d9dd9 0%, #1a82be 50%, #1570a8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  height: 55px;
  padding: 0 1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(251, 191, 36, 0.2);
  transition: all 0.3s ease;
}

.gd-features-card2:hover .gd-feature-title {
  background: linear-gradient(135deg, #3d9dd9 0%, #1a82be 50%, #1570a8 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5),
    0 0 30px rgba(251, 191, 36, 0.3);
  border-color: rgba(251, 191, 36, 0.4);
}

.gd-feature-description {
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  height: 180px;
  z-index: 2;
  /* background: linear-gradient(
    135deg,
    rgba(8, 145, 178, 0.7) 0%,
    rgba(6, 182, 212, 0.6) 50%,
    rgba(14, 165, 233, 0.5) 100%
  ); */

  background: linear-gradient(135deg, #3d9dd9 0%, #1a82be 50%, #1570a8 100%);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.15);
  transition: all 0.3s ease;
}

.gd-features-card2:hover .gd-feature-description {
  background: linear-gradient(135deg, #3d9dd9 0%, #1a82be 50%, #1570a8 100%);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4),
    0 0 30px rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.3);
}

.gd-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(251, 191, 36, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(6, 182, 212, 0.08) 0%,
      transparent 60%
    );
  animation: gd-patternMove 20s linear infinite;
  z-index: 0;
}

@keyframes gd-patternMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gd-parallax-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(1px);
}

.gd-parallax-1 {
  top: 10%;
  left: 5%;
  font-size: 4rem;
  color: rgba(251, 191, 36, 0.3);
}

.gd-parallax-2 {
  top: 60%;
  right: 5%;
  font-size: 3rem;
  color: rgba(59, 130, 246, 0.3);
}

.gd-parallax-3 {
  top: 80%;
  left: 10%;
  font-size: 2.5rem;
  color: rgba(6, 182, 212, 0.3);
}

@keyframes gd-slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gd-mouse-follower {
  position: absolute;
  width: 25px;
  height: 25px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.6),
    rgba(59, 130, 246, 0.3),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transition: all 0.1s ease;
  opacity: 0;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .gd-section-title {
    font-size: 2.5rem;
  }
  .gd-features-grid2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gd-features-card2 {
    padding: 2rem;
  }
  .gd-parallax-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .gd-section-title {
    font-size: 2rem;
  }
  .gd-features-card2 {
    padding: 1.5rem;
  }
  .gd-feature-icon {
    width: 100px;
    height: 100px;
  }
  .gd-feature-title {
    font-size: 1.1rem;
    height: auto;
    min-height: 55px;
    padding: 0.75rem;
  }
  .gd-feature-description {
    font-size: 0.9rem;
  }
}
