/* ==================== HOME.CSS ==================== */
/* Home page specific styles including hero slider, stats banner, world class section, feature cards, and explore section */

/* ==================== HOME PAGE STYLES - MADAYN INSPIRED ==================== */

.home-section {
  background: var(--off-white);
  overflow-x: hidden;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 45, 66, 0.9) 0%, rgba(0, 61, 91, 0.75) 50%, rgba(0, 96, 100, 0.8) 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 1000px;
}

.slide-content h1 {
  font-family: 'Cairo', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slide-content h1 .highlight {
  display: block;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--cyan), var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Slide Badge */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.slide-badge i {
  font-size: 1rem;
}

/* Slide Subtitle */
.slide-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 25px auto 35px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Slide Buttons */
.slide-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slide-btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.slide-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

.slide-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.slide-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Slide Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.slider-btn {
  width: 55px;
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.slider-btn:hover {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-color: var(--cyan);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.4);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slider-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  transform: scale(1.2);
}

.slider-dot.active::after {
  border-color: var(--cyan);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.scroll-indicator span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--cyan), var(--teal), transparent);
  animation: scrollPulse 2s infinite;
  border-radius: 2px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.5; height: 30px; }
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #051525 100%);
  padding: 0;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--gold), var(--orange), var(--pink));
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Stats Particles */
.stats-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.stats-particles .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.stats-particles .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.stats-particles .particle:nth-child(2) { left: 30%; animation-delay: 1.5s; }
.stats-particles .particle:nth-child(3) { left: 50%; animation-delay: 3s; }
.stats-particles .particle:nth-child(4) { left: 70%; animation-delay: 4.5s; }
.stats-particles .particle:nth-child(5) { left: 90%; animation-delay: 6s; }

@keyframes particleFloat {
  0% { bottom: -10px; opacity: 0; transform: scale(0.5); }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { bottom: 100%; opacity: 0; transform: scale(1.5); }
}

.stats-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

.stats-wave svg {
  width: 100%;
  height: 100%;
}

.stats-banner-inner {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-banner-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 55px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  filter: blur(60px);
}

.stat-glow-1 { background: var(--cyan); }
.stat-glow-2 { background: var(--teal); }
.stat-glow-3 { background: var(--purple); }
.stat-glow-4 { background: var(--orange); }

.stat-banner-item:hover .stat-glow {
  opacity: 0.15;
}

.stat-banner-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.stat-banner-item:nth-child(1)::before { background: linear-gradient(90deg, var(--cyan), var(--cyan-light)); }
.stat-banner-item:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.stat-banner-item:nth-child(3)::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.stat-banner-item:nth-child(4)::before { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }

.stat-banner-item:last-child {
  border-right: none;
}

.stat-banner-item:hover::before {
  transform: scaleX(1);
}

.stat-banner-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-banner-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  animation: iconPulse 2s ease-in-out infinite;
}

.stat-banner-item:nth-child(1) .icon-pulse { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4); }
.stat-banner-item:nth-child(2) .icon-pulse { box-shadow: 0 0 0 0 rgba(0, 191, 166, 0.4); }
.stat-banner-item:nth-child(3) .icon-pulse { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
.stat-banner-item:nth-child(4) .icon-pulse { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }

@keyframes iconPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.stat-banner-item:nth-child(1) .stat-banner-icon {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.1));
  border: 2px solid rgba(0, 188, 212, 0.3);
}

.stat-banner-item:nth-child(2) .stat-banner-icon {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.2), rgba(0, 191, 166, 0.1));
  border: 2px solid rgba(0, 191, 166, 0.3);
}

.stat-banner-item:nth-child(3) .stat-banner-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.1));
  border: 2px solid rgba(124, 58, 237, 0.3);
}

.stat-banner-item:nth-child(4) .stat-banner-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.stat-banner-item:hover .stat-banner-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-banner-item:nth-child(1):hover .stat-banner-icon { box-shadow: 0 0 40px rgba(0, 188, 212, 0.4); }
.stat-banner-item:nth-child(2):hover .stat-banner-icon { box-shadow: 0 0 40px rgba(0, 191, 166, 0.4); }
.stat-banner-item:nth-child(3):hover .stat-banner-icon { box-shadow: 0 0 40px rgba(124, 58, 237, 0.4); }
.stat-banner-item:nth-child(4):hover .stat-banner-icon { box-shadow: 0 0 40px rgba(245, 158, 11, 0.4); }

.stat-banner-icon i {
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.stat-banner-item:nth-child(1) .stat-banner-icon i { color: var(--cyan); }
.stat-banner-item:nth-child(2) .stat-banner-icon i { color: var(--teal); }
.stat-banner-item:nth-child(3) .stat-banner-icon i { color: var(--purple); }
.stat-banner-item:nth-child(4) .stat-banner-icon i { color: var(--orange); }

.stat-banner-info {
  position: relative;
  z-index: 1;
}

.stat-banner-info strong {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-banner-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* World Class Section */
.world-class-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, #0a1628 0%, #102040 50%, #0d1e36 100%);
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.wc-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.wc-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 188, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.wc-floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 15s ease-in-out infinite;
}

.wc-floating-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.wc-floating-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.wc-floating-orb.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  opacity: 0.2;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Section Header Enhanced */
.section-tag {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 150, 136, 0.2));
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 188, 212, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 188, 212, 0.4); }
}

.section-header-modern h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.deco-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.deco-diamond {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  animation: rotateDiamond 10s linear infinite;
}

@keyframes rotateDiamond {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.world-class-section .section-header-modern h2::after {
  display: none;
}

.section-header-modern.light h2 {
  color: var(--white);
}

.section-header-modern.light h2::after {
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--gold));
}

.section-header-modern p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 30px;
}

.section-header-modern.light p {
  color: rgba(255, 255, 255, 0.7);
}

/* Feature Cards Modern */
.features-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 10;
}

.feature-card-modern {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 45px 30px 35px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card-modern:nth-child(1) .card-glow {
  background: radial-gradient(circle at center, rgba(0, 188, 212, 0.15), transparent 70%);
}

.feature-card-modern:nth-child(2) .card-glow {
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15), transparent 70%);
}

.feature-card-modern:nth-child(3) .card-glow {
  background: radial-gradient(circle at center, rgba(0, 191, 166, 0.15), transparent 70%);
}

.feature-card-modern:nth-child(4) .card-glow {
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.15), transparent 70%);
}

.feature-card-modern:hover .card-glow {
  opacity: 1;
}

.feature-card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: all 0.5s ease;
}

.feature-card-modern:nth-child(1):hover .feature-card-number { color: rgba(0, 188, 212, 0.2); }
.feature-card-modern:nth-child(2):hover .feature-card-number { color: rgba(124, 58, 237, 0.2); }
.feature-card-modern:nth-child(3):hover .feature-card-number { color: rgba(0, 191, 166, 0.2); }
.feature-card-modern:nth-child(4):hover .feature-card-number { color: rgba(245, 158, 11, 0.2); }

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card-modern:nth-child(1)::before {
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
}

.feature-card-modern:nth-child(2)::before {
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

.feature-card-modern:nth-child(3)::before {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.feature-card-modern:nth-child(4)::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.feature-card-modern:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-card-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.5s ease;
  position: relative;
}

.icon-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-card-modern:nth-child(1) .feature-card-icon {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(0, 188, 212, 0.1) 100%);
  border: 2px solid rgba(0, 188, 212, 0.3);
}

.feature-card-modern:nth-child(2) .feature-card-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 2px solid rgba(124, 58, 237, 0.3);
}

.feature-card-modern:nth-child(3) .feature-card-icon {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.2) 0%, rgba(0, 191, 166, 0.1) 100%);
  border: 2px solid rgba(0, 191, 166, 0.3);
}

.feature-card-modern:nth-child(4) .feature-card-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.feature-card-modern:hover .feature-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-card-modern:nth-child(1):hover .feature-card-icon {
  box-shadow: 0 0 40px rgba(0, 188, 212, 0.4);
}

.feature-card-modern:nth-child(2):hover .feature-card-icon {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
}

.feature-card-modern:nth-child(3):hover .feature-card-icon {
  box-shadow: 0 0 40px rgba(0, 191, 166, 0.4);
}

.feature-card-modern:nth-child(4):hover .feature-card-icon {
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}

.feature-card-icon i {
  font-size: 2.4rem;
  transition: all 0.5s ease;
}

.feature-card-modern:nth-child(1) .feature-card-icon i { color: var(--cyan); }
.feature-card-modern:nth-child(2) .feature-card-icon i { color: var(--purple); }
.feature-card-modern:nth-child(3) .feature-card-icon i { color: var(--teal); }
.feature-card-modern:nth-child(4) .feature-card-icon i { color: var(--orange); }

.feature-card-content {
  flex: 1;
}

.feature-card-content h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Feature Card Footer */
.feature-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-footer .explore-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.feature-card-modern:nth-child(1):hover .feature-card-footer .explore-text { color: var(--cyan); }
.feature-card-modern:nth-child(2):hover .feature-card-footer .explore-text { color: var(--purple); }
.feature-card-modern:nth-child(3):hover .feature-card-footer .explore-text { color: var(--teal); }
.feature-card-modern:nth-child(4):hover .feature-card-footer .explore-text { color: var(--orange); }

.feature-card-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-card-arrow i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.feature-card-modern:nth-child(1):hover .feature-card-arrow {
  background: var(--cyan);
  transform: translateX(5px);
}

.feature-card-modern:nth-child(2):hover .feature-card-arrow {
  background: var(--purple);
  transform: translateX(5px);
}

.feature-card-modern:nth-child(3):hover .feature-card-arrow {
  background: var(--teal);
  transform: translateX(5px);
}

.feature-card-modern:nth-child(4):hover .feature-card-arrow {
  background: var(--orange);
  transform: translateX(5px);
}

.feature-card-modern:hover .feature-card-arrow i {
  color: var(--white);
}

/* Explore Section */
.explore-section {
  padding: 140px 40px;
  background: linear-gradient(180deg, #f8fcfd 0%, #e8f5f7 50%, #f0f9fa 100%);
  position: relative;
  overflow: hidden;
}

.explore-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.explore-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.explore-bg-shapes .shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.08), transparent 70%);
  animation-delay: 0s;
}

.explore-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.08), transparent 70%);
  animation-delay: -7s;
}

.explore-bg-shapes .shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
  animation-delay: -14s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(3deg); }
}

.explore-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.explore-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
  animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3); }
  50% { box-shadow: 0 15px 40px rgba(0, 180, 216, 0.5); }
}

.explore-label i {
  font-size: 1rem;
}

.explore-title {
  font-family: 'Cairo', sans-serif;
  font-size: 3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.explore-title .title-line {
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.explore-title .title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--navy), var(--cyan-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.explore-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 35px;
}

.explore-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.explore-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 45, 66, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.explore-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 45, 66, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
}

.feature-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.explore-feature:nth-child(1) .feature-icon-wrap { background: rgba(0, 188, 212, 0.15); color: var(--cyan); }
.explore-feature:nth-child(2) .feature-icon-wrap { background: rgba(0, 191, 166, 0.15); color: var(--teal); }
.explore-feature:nth-child(3) .feature-icon-wrap { background: rgba(124, 58, 237, 0.15); color: var(--purple); }
.explore-feature:nth-child(4) .feature-icon-wrap { background: rgba(245, 158, 11, 0.15); color: var(--orange); }
.explore-feature:nth-child(5) .feature-icon-wrap { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.explore-feature:nth-child(6) .feature-icon-wrap { background: rgba(236, 72, 153, 0.15); color: var(--pink); }

.feature-icon-wrap i {
  font-size: 0.9rem;
}

.explore-feature span {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.explore-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-explore {
  border: none;
  border-radius: 16px;
  padding: 18px 36px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-explore.primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 45, 66, 0.25);
}

.btn-explore.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 45, 66, 0.35);
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 100%);
}

.btn-explore.secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 8px 25px rgba(0, 45, 66, 0.1);
}

.btn-explore.secondary:hover {
  transform: translateY(-4px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(0, 45, 66, 0.2);
}

.btn-explore i {
  transition: transform 0.3s ease;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

/* Explore Image */
.explore-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 45, 66, 0.2);
}

.frame-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid var(--cyan);
  z-index: 10;
  transition: all 0.4s ease;
}

.corner-tl { top: -10px; left: -10px; border-right: none; border-bottom: none; border-radius: 8px 0 0 0; }
.corner-tr { top: -10px; right: -10px; border-left: none; border-bottom: none; border-radius: 0 8px 0 0; }
.corner-bl { bottom: -10px; left: -10px; border-right: none; border-top: none; border-radius: 0 0 0 8px; }
.corner-br { bottom: -10px; right: -10px; border-left: none; border-top: none; border-radius: 0 0 8px 0; }

.explore-image:hover .frame-corner {
  border-color: var(--gold);
}

.explore-image:hover .corner-tl { transform: translate(-5px, -5px); }
.explore-image:hover .corner-tr { transform: translate(5px, -5px); }
.explore-image:hover .corner-bl { transform: translate(-5px, 5px); }
.explore-image:hover .corner-br { transform: translate(5px, 5px); }

.image-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.explore-image:hover .image-frame img {
  transform: scale(1.05);
}

.image-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.explore-image:hover .image-shine {
  left: 100%;
}

.explore-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 25px;
  background: rgba(0, 45, 66, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.explore-badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.badge-text span {
  display: block;
  color: var(--cyan-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-text strong {
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 45, 66, 0.15);
  animation: cardFloat 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.1rem;
}

.floating-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.floating-card.card-1 {
  top: 10%;
  left: -30px;
  animation-delay: 0s;
}
.floating-card.card-1 i { color: var(--cyan); }

.floating-card.card-2 {
  top: 40%;
  right: -40px;
  animation-delay: -1.5s;
}
.floating-card.card-2 i { color: var(--purple); }

.floating-card.card-3 {
  bottom: 25%;
  left: -20px;
  animation-delay: -3s;
}
.floating-card.card-3 i { color: var(--green); }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Modern Footer */
.home-footer-modern {
  background: linear-gradient(180deg, #050a12 0%, #0a1420 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-99%);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.1), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo-wrap img {
  height: 65px;
}

.logo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 25px;
}

.footer-tech-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 20px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(0, 188, 212, 0.2);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links h4 i {
  color: var(--cyan);
  font-size: 0.9rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links a:hover {
  color: var(--cyan-light);
  transform: translateX(8px);
}

.footer-links a i {
  font-size: 0.85rem;
  color: var(--cyan);
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: scale(1.2);
}

.footer-bottom {
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-social a:nth-child(1)::before { background: linear-gradient(135deg, #1877F2, #0d5bbd); }
.footer-social a:nth-child(2)::before { background: linear-gradient(135deg, #1a1a1a, #333); }
.footer-social a:nth-child(3)::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social a:nth-child(4)::before { background: linear-gradient(135deg, #FF0000, #cc0000); }

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a i {
  position: relative;
  z-index: 1;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
