/* GENERAL RESET */
* {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0b0c10;
  color: #e6e6e6;
  line-height: 1.6;
}

/* HERO SECTION */
.wd-hero {
 position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.wd-hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the video covers the section */
  z-index: -1; /* send it behind the text */
}

.wd-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4fa3ff;
}

.wd-hero-content p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #b0c7e1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wd-hero-content span {
  color: #ffffff;
  font-weight: 600;
}

.wd-btn-primary {
  display: inline-block;
  margin-top: 30px;
  background:linear-gradient(135deg, #0b0c10, #102547, #0b0c10);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.wd-btn-primary:hover {
  background:linear-gradient(200deg, #0b0c10, #102547, #0b0c10);
}

/* OVERVIEW SECTION */
.wd-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px 10%;
  background: radial-gradient(circle at top, #021331 0%, var(--bg-dark) 100%);
  gap: 50px;
}

.wd-text {
  flex: 1;
  min-width: 300px;
}

.wd-text h2 {
  font-size: 2rem;
  color: #4fa3ff;
  margin-bottom: 20px;
}

.wd-text p {
  color: #c0c9d6;
  margin-bottom: 20px;
}

.wd-text ul {
  list-style: none;
  margin-bottom: 30px;
}

.wd-text li {
  margin-bottom: 10px;
  color: #9ab2d0;
}

.wd-image {
  flex: 1;
  text-align: right;
}

.wd-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(79,163,255,0.2);
}

.wd-btn-outline {
  border: 1px solid #4fa3ff;
  color: #4fa3ff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.wd-btn-outline:hover {
  background: #4fa3ff;
  color: white;
}
/* WHY CHOOSE SECTION */
.wd-why {
  background: radial-gradient(circle at top, rgb(2, 83, 149), #011028 60%);
  padding: 100px 10%;
  text-align: center;
}

.wd-why-content h2 {
  font-size: 2.2rem;
  color: #4fa3ff;
  margin-bottom: 15px;
}

.wd-why-content span {
  color: #ffffff;
}

.wd-why-content p {
  color: #b0c7e1;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

.wd-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.wd-why-card {
 background:linear-gradient(180deg, rgba(25, 62, 113, 0.7), rgba(5,10,20,0.8));
  border: 1px solid #1f2e46;
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 0 20px rgba(79, 163, 255, 0.1);
  transition: 0.3s;
}

.wd-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(79, 163, 255, 0.25);
}

.wd-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #4fa3ff;
}

.wd-why-card h3 {
  font-size: 1.25rem;
  color: #eaf1ff;
  margin-bottom: 10px;
}

.wd-why-card p {
  color: #9ab2d0;
  font-size: 0.95rem;
  line-height: 1.6;
}


