.gt-footer {
  background:
    radial-gradient(circle at top, rgba(1, 240, 255, 0.08), transparent 60%),
    #0d102a;
  padding: 80px 0 30px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* ফুটারের পেছনের হালকা আভা */
.gt-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #01f0ff, transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  gap: 40px;
}

/* লোগো সেকশন */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text h2 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 0;
}

.brand-text p {
  font-size: 0.8rem;
  color: #8892b0;
  letter-spacing: 5px;
  margin: 0;
}

/* মেনু সেকশন */
.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: 0.3s;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: #01f0ff;
}

.nav-link.active {
  color: #00f2ff;
  position: relative;
}

/* glow underline effect */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #00f2ff;
  box-shadow: 0 0 10px #00f2ff;
}

/* কোট এবং সোশ্যাল */
.footer-extras {
  text-align: right;
  max-width: 300px;
}

.footer-quote {
  font-style: italic;
  color: #8892b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-social a {
  color: #01f0ff;
  font-size: 1.5rem;
  border: 1px solid rgba(1, 240, 255, 0.3);
  width: 40px;
  height: 40px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #01f0ff;
  color: #000;
  box-shadow: 0 0 15px #01f0ff;
}

/* নিচের অংশ */
.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #8892b0;
  font-size: 0.9rem;
}

.footer-policy {
  display: flex;
  gap: 10px;
}

.footer-policy a {
  color: #8892b0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-policy a:hover {
  color: #fff;
}

/* ========================= */
/* ===== TABLET VIEW ======= */
/* ========================= */

@media (max-width: 1024px) {
  .footer-main {
    gap: 30px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
  }

  .brand-text h2 {
    font-size: 1.3rem;
  }

  .footer-extras {
    max-width: 250px;
  }
}

/* ========================= */
/* ===== MOBILE VIEW ======= */
/* ========================= */

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }
}

/* ========================= */
/* ===== SMALL MOBILE ====== */
/* ========================= */

@media (max-width: 480px) {
  .gt-footer {
    padding: 60px 0 25px 0;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
  }

  .footer-nav a {
    font-size: 1rem;
  }

  .footer-quote {
    font-size: 0.9rem;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}
