
.footer-menu {
  display: flex;
  gap: 10px;
  font-size: 18px;
  justify-content: center;
  padding: 10px 0;
}

.footer-menu a {
	font-family: "Manrope", sans-serif;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #ff0000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-menu a:hover {
  color: #ff0000;
}

.footer-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


#footer-banner-box {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ccc;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 10;
  transition: bottom 0.5s ease-in-out;
}

#footer-banner-inner {
  position: relative;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

#footer-banner-label {
  position: absolute;
  top: 8px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
}

#footer-banner-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  color: #fff;
  background: #ff3019;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
}

#footer-banner-inner a {
  display: block;
}

#footer-banner-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  padding: 20px;}

footer {
    background: #fff;
    color: #222;
    padding: 20px 0;
    text-align: center;
  }
  
  .social {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 5vw, 50px);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .social a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social img {
    width: clamp(150px, 15vw, 200px);
  }
  
.footer-main {
    background: #ac0303;
    color: #fff;
    display: grid;
    justify-content: center;
    padding: 30px 20px;
    gap: 20px;
}

.company-info{
	border-bottom: 1px solid #fff;
	padding-bottom:4px;
}

/* For larger screens (e.g., min-width 768px), use flex */
@media (min-width: 768px) {
     .footer-main {
        padding: 30px 60px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
	.company-info{
		text-align:center;
		border-bottom: none;
		padding:0;
	}
	
	.associated-logos {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	justify-content: center;
	}
}
  
  .company-info img {
    width: 150px;
    margin-bottom: 10px;
  }
 .company-info {
    font-family: Khand, sans-serif;
    max-width: 250px;
    text-align: left;
}
	.advertising, .associated {
    max-width: 250px;
    text-align: left;
  }
  
  .advertising h4,
  .associated h4 {
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
  }
  
  .our-team .badge {
    background-color: #e00;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
  }
  
  .associated-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .associated-logos img {
    width: 40px;
    height: 40px;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
  }
  
  .credits {
	font-family:"Manrope",sans-serif;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    font-size: 14px;
  }
  
.credits a{
  text-decoration: none;
  color: #e11b22;
}