:root {
  --primary-color: #0b1f3a;
  --secondary-color: #c1121f;
  --accent-color: #f0b429;
  --light-bg: #f8f9fa;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoom {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===== HEADER ===== */
.header {
  background: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInLeft 0.6s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand .logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
}

.navbar-brand:hover .logo {
  color: var(--accent-color);
  transform: scale(1.02);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(11, 31, 58, 0.7), rgba(193, 18, 31, 0.6)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  animation: zoom 20s infinite alternate;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(11, 31, 58, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s ease;
}

/* ===== SLIDER SECTION ===== */
.slider-section {
  padding: 5rem 0;
  background: var(--light-bg);
  animation: fadeIn 1s ease;
}

.slider {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.slides {
  position: relative;
  height: 500px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  animation: zoom 10s ease-in-out;
}

.slider-buttons span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(11, 31, 58, 0.7);
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
}

.slider-buttons span:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), #162d4a);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(240, 180, 41, 0.1) 0%,
    transparent 70%
  );
  animation: float 15s infinite ease-in-out;
}

.stats-row {
  position: relative;
  z-index: 1;
}

.stat-box {
  padding: 2rem;
  text-align: center;
  animation: slideInLeft 0.8s ease;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h2 {
  font-size: 3.5rem;
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-box p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ===== MEETING SECTION ===== */
.meeting-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.meeting-wrapper {
  background: linear-gradient(135deg, var(--secondary-color), #a30f1a);
  color: white;
  padding: 3rem;
  border-radius: 25px;
  max-width: 700px;
  margin: auto;
  text-align: center;
  box-shadow: 0 30px 80px rgba(193, 18, 31, 0.3);
  animation: pulse 3s infinite;
}

.meeting-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.meeting-wrapper p {
  margin-bottom: 2rem;
  opacity: 0.95;
}

.meeting-wrapper input,
.meeting-wrapper button {
  padding: 1rem;
  width: 100%;
  margin: 0.75rem 0;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
}

.meeting-wrapper input {
  background: rgba(255, 255, 255, 0.95);
}

.meeting-wrapper input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.5);
  transform: scale(1.02);
}

.meeting-wrapper button {
  background: var(--primary-color);
  color: white;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meeting-wrapper button:hover {
  background: #0a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 2rem 0 0;
  animation: slideInRight 0.8s ease;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer .hover-link {
  transition: var(--transition);
}

.footer .hover-link:hover {
  color: var(--accent-color) !important;
  padding-left: 5px;
}

.social-icons a {
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--accent-color) !important;
  transform: scale(1.2);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  font-size: 2.5rem;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: white;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 4rem 0;
  animation: fadeIn 1s ease;
}

.section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
}

.section h3 {
  color: var(--secondary-color);
  margin-top: 2rem;
  font-weight: 600;
}

.center {
  text-align: center;
}

/* ===== CARDS ===== */
.card {
  border: none;
  transition: var(--transition);
  animation: fadeIn 1s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stat-box h2 {
    font-size: 2.5rem;
  }

  .slides {
    height: 300px;
  }

  .meeting-wrapper {
    padding: 2rem;
    margin: 1rem;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 2rem;
    bottom: 20px;
    right: 20px;
  }

  .slider-buttons span {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HOVER CARD EFFECT ===== */
.hover-card {
  transition: var(--transition);
  border: 2px solid transparent;
}

.hover-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ===== STEP NUMBER ===== */
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(11, 31, 58, 0.3);
}

/* ===== TALENT BADGE ===== */
.talent-badge {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 2px solid transparent;
}

.talent-badge:hover {
  background: linear-gradient(135deg, var(--accent-color), #ffc107);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(240, 180, 41, 0.4);
  border-color: var(--accent-color);
}

.talent-badge i {
  font-size: 1.2rem;
}

/* ===== BACKGROUND GRADIENT ===== */
.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
