
/* footer */
.secfooterbg {
  background-image: url(../images/footer-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.community-section {
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  gap: 8px;
  padding: 20px 20px;
  border-radius: 10px;
  background: rgb(100 100 100 / 41%);
  color: var(--white);
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  animation: floatBadge 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: floatBadge 4s ease-in-out infinite;
}


.community-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.community-text h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.community-text p {
  color: var(--white-ee);
  font-size: 14px;
  margin: 0;
}

.community-btn-link {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Inter';
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.community-btn-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-row{
  padding-top: 40px;
}
.footer-main-logo{
  margin-bottom:15px;
  width: 50%;
}


/* SOCIAL ICONS */
.footer-social a{
  display:inline-flex;
  width:35px;
  height:35px;
  border:1px solid var(--primary-color);
  border-radius:50%;
  align-items:center;
  justify-content:center;
  color:var(--primary-color);
  margin-right:8px;
  transition:0.3s;
}

.footer-social a:hover{
  background:var(--secondary-color);
    border:1px solid var(--secondary-color);
  color:var(--white);
}
/* TITLES */
.footer-row h4{
  font-family: 'Inter';
  color: var(--white);
  font-size:18px;
  font-weight:700;
  margin-bottom:15px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
  font-family: 'Inter';
}

.footer-links a{
  font-family: 'Inter';
  color:var(--white);
  text-decoration:none;
  font-size:14px;
}
.seccobg p{
 font-family: 'Inter';
  color:var(--white);
  text-decoration:none;
  font-size:14px;
}
.footer-links a:hover{
  color:var(--primary-color);
}
.secfooterbg hr{
  color: var(--white) !important;
}
.copysec{
  font-family: 'Inter';
  color:var(--white);
  font-size:15px;
  text-align: center;
}
/* footer-end */


/* Mobile Responsive */
@media(max-width:768px) {
  .community-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

.iso-fixed-box {
  position: fixed;
  bottom: 20px;
  right: 20px; /* right side */
  background: var(--white);
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 9999;
}

.iso-fixed-box img {
  height: 70px;
  width: auto;
}

.seccobg p {
    margin-bottom: 10px;
    font-size: 15px;
}

.seccobg i {
    color:var(--primary-color);
    font-size: 16px;
}

.seccobg a {
    text-decoration: none;
    color: inherit;
}

.seccobg a:hover {
    text-decoration: underline;
}