/* ================= HERO SECTION ================= */

.eel-products-hero {
  background: url("../assets/products/1st-hero.png") no-repeat center center;
  background-size: cover;
  padding: 110px 0 50px 0;
  position: relative;
}

.eel-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.eel-hero-sub {
  font-size: 18px;
  color: #e7f0ff;
  margin-bottom: 30px;
}

.eel-hero-btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.eel-hero-btn {
  white-space: nowrap;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 30px;
  /* margin-right: 12px; */
  transition: 0.3s;
  cursor: pointer;
}

.eel-btn-primary {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

.eel-btn-primary:hover {
  color: #fff !important;
  transform: translateY(-3px);
}

.eel-btn-outline {
  border: 2px solid #00c6ff;
  background: transparent;
  color: #0072ff !important;
}

.eel-device-img {
  width: 100%;
}


/* ================= PRODUCT SECTION ================= */

.eel-products-section {
  padding: 80px 0;
  background: linear-gradient(233deg, #e0f1ff 0%, #e3ebf4 60%, #a9bce7 100%);
}

.eel-product-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  /* padding: 32px;
  padding-top: 25px; */

  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
  transition: 0.35s;
  overflow: hidden;
}

.eel-product-head {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.eel-product-head span{
  font-size: 35px;
}

.eel-product-head1 {
  background: url("../assets/products/bg1.png") no-repeat center center;
  background-size: cover;
  padding: 20px;
  padding-bottom: 0px;
}

.eel-product-head2 {
  background: url("../assets/products/bg2.png") no-repeat center center;
  background-size: cover;
  padding: 20px;
  padding-bottom: 0px;
}

.eel-product-body {
  padding: 20px;
  padding-bottom: 30px;
}
.eel-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.eel-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #151618;
}

.eel-card-sub {
  color: #666;
  margin-bottom: 18px;
}

.eel-card-img {
  height: 300px;
  width: 100%;
  margin-bottom: 20px;
}

.eel-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.eel-feature-list li {
  margin-bottom: 9px;
  font-size: 15px;
  color: #151618;
}

.eel-feature-list li:before {
  content: "✔";
  color: #16a34a;
  margin-right: 8px;
}


/* Stylish Button */

.eel-learn-btn {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.35s;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  cursor: pointer;
}

.eel-learn-btn:hover {
  transform: translateY(-3px);
  color: #fff !important;
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.5);
}



/* ================= KEY FEATURES ================= */

.eel-key-features {
  padding: 60px 0;
  background: linear-gradient(233deg, #e0f1ff 0%, #e3ebf4 60%, #a9bce7 100%);
}

.eel-key-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #151618;
}

.eel-key-card {
  background: #f7fbff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 12px 35px rgb(0 0 0 / 16%);
  margin-bottom: 15px;
}

.eel-key-card:hover {
  transform: translateY(-6px);
}

.eel-key-icon {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 12px;
}

.eel-key-text {
  font-size: 17px;
  font-weight: 600;
  color: #151618;
}



/* ================= WHY SECTION ================= */

.eel-why-section {
  padding: 70px 0;
  /* background: linear-gradient(135deg, #65686a 0%, #151618 60%, #4872a9 100%); */
  background: linear-gradient(135deg, #7dcaff 0%, #1c3970 60%, #b1bbc9 100%);
  color: #fff;
  position: relative;
}

.eel-why-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.eel-why-card {
  background: rgba(255, 255, 255, 0.061);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: 0.35s;
  margin-bottom: 15px;
}

.eel-why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.28);
}

.eel-why-icon {
  font-size: 46px;
  margin-bottom: 12px;
}

.eel-why-text {
  /* color: #151618; */
  font-size: 18px;
  font-weight: 600;
}