/*
Theme Name: Vhack Theme
Description: Cybersecurity Learning Community Theme
Version: 1.0
*/
/* ======================
FOOTER
====================== */
p {
  color: var(--text-1);
}
.site-footer {
  color: #b8cad8;
  padding-top: 50px;
  border-top: 1px solid #173d5d;
  margin-top: 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* COLUMN */
.footer-col h3 {
  color: #00ddb2;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-1);
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00ddb2;
}

/* LOGO */
.footer-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* SOCIAL */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--panel);
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  color: #04352d;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: #b8cad8;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--text-1);
}
.social-links a {
  color: var(--text-1);
}
/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #173d5d;
  text-align: center;
  font-size: 0.9rem;
}

/* ======================
TABLET
====================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
MOBILE
====================== */
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }

  .footer-logo img {
    margin: auto;
  }
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease;
  background: var(--bg);
  border: 1px solid #173d5d26;
}
/* Swiper slide full height */
.testimonial-slider .swiper-wrapper {
  display: flex;
}

.testimonial-slider .swiper-slide {
  display: flex;
  height: auto;
}

/* Card equal height */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  min-height: 220px; /* adjust if needed */
}
