
 .cosmic-footer {
  position: relative;
  background: linear-gradient(135deg, #031b1d 0%, #062f33 45%, #0b4a4f 100%);
  padding: 80px 0 25px;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

.cosmic-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 255, 200, 0.10), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(37, 95, 105, 0.25), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(0, 255, 180, 0.08), transparent 30%);
  z-index: -1;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: -1;
}

.footer-glow-1 {
  width: 280px;
  height: 280px;
  background: #00caa5;
  top: -60px;
  left: -80px;
}

.footer-glow-2 {
  width: 220px;
  height: 220px;
  background: #1d7f88;
  bottom: -60px;
  right: -60px;
}

.footer-top {
  position: relative;
  z-index: 2;
}

.footer-box {
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.footer-box:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 200, 0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.footer_logo img {
  max-width: 170px;
  margin-bottom: 18px;
}

.footer-about p,
.footer-subscribe p,
.footer-bottom p,
.footer-mini-text {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 15px;
}

.footer-box h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-box h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00caa5, #7effe1);
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 14px;
}

.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box ul li a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  position: relative;
  padding-left: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-box ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00caa5;
  transition: all 0.3s ease;
}

.footer-box ul li a:hover {
  color: #7effe1;
  transform: translateX(6px);
}

.footer-box ul li a:hover::before {
  box-shadow: 0 0 12px #00caa5;
}

.footer-social {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #00caa5, #15757f);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 202, 165, 0.25);
}

.footer-subscribe p {
  margin-bottom: 18px;
}

.subscribe-form {
  position: relative;
}

.subscribe-form input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 0 160px 0 22px;
  color: #fff;
  outline: none;
  font-size: 15px;
}

.subscribe-form input::placeholder {
  color: rgba(255,255,255,0.60);
}

.subscribe-form button {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 46px;
  border: 0;
  padding: 0 18px;
  border-radius: 40px;
  background: linear-gradient(135deg, #00caa5, #15757f);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.35s ease;
}

.subscribe-form button:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 202, 165, 0.28);
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-mini-text {
  letter-spacing: 0.3px;
}

@media (max-width: 991px) {
  .cosmic-footer {
    padding: 60px 0 20px;
  }

  .footer-box {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .subscribe-form input {
    padding: 0 20px;
    height: 54px;
  }

  .subscribe-form button {
    position: static;
    width: 100%;
    margin-top: 12px;
    height: 50px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-mini-text {
    margin-top: 8px;
  }
}
	
