/* Global Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

/* Hero Overlay */
section {
  position: relative;
}
section .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
section .container {
  position: relative;
  z-index: 2;
}
.navbar {
  background-color: transparent;
  z-index: 10000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
}
.text-gradient {
  background: #00ffff;
  background: linear-gradient(to right, #00ffff 0%, #00a2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
button {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #00a2ff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

button:hover {
  background: #ffffff;
}

button > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

button:hover svg {
  transform: translateX(5px);
}

button:active {
  transform: scale(0.95);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-light {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}
.feature-item {
  display: inline-block;
  width: 100%;
  padding: 7px;
  background-color: #0000007d;
  border: 1px solid #00a2ff;
  color: #00a2ff;
  text-align: center;
  border-radius: 15px;
}
.fi-2 {
  border: 1px solid #00ff37;
  color: #00ff37;
}
.fi-3 {
  border: 1px solid #ff8400;
  color: #ff8400;
}
.about-wrapper {
  background-color: #eaeaea;
}
.card {
  width: 100%;
  min-height: 35vh;
  border-radius: 10px;
  border: 1px solid #0000002d;
}
/*Profile Card 5*/
.profile-card-5 {
  margin-top: 20px;
}

.profile-card-5 .btn {
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 7px 20px;
}

.profile-card-5 .card-img-block {
  width: 91%;
  margin: 0 auto;
  position: relative;
  top: -20px;
}

.profile-card-5 .card-img-block img {
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.63);
}

.profile-card-5 h3 {
  color: #001b35;
  font-weight: 600;
}

.profile-card-5 p {
  font-size: 14px;
  font-weight: 300;
}

.profile-card-5 .btn-primary {
  background-color: #4e5e30;
  border-color: #4e5e30;
}
.text-gradient_blue {
  background: #0077ff;
  background: linear-gradient(to right, #0077ff 30%, #000000 56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-card {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid #0077ff7a;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.why-wrapper {
  background-image: url("../images/bg_why.jpg");
  background-size: cover;
  background-position: center center;
}
.text-gradient_light {
  background: #00d5ff;
  background: linear-gradient(to right, #00d5ff 30%, #ffffff 56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-wrapper
{
  margin-top: -5rem;
}