.affiliation-section{
  padding:80px 20px;
  background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

.affiliation-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.aff-badge{
  display:inline-block;
  padding:6px 14px;
  font-size:13px;
  border-radius:20px;
  background:rgba(79,70,229,0.1);
  color:#4f46e5;
  font-weight:600;
  margin-bottom:10px;
}

.affiliation-container h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:14px;
}

.aff-desc{
  max-width:720px;
  margin:0 auto 40px;
  color:#555;
  font-size:16px;
  line-height:1.7;
}

/* Logo Slider */
.aff-logos{
  overflow:hidden;
  margin-bottom:50px;
}

.logo-track{
  display:flex;
  gap:60px;
  animation: scroll 18s linear infinite;
}

.logo-track img{
  height:55px;
  filter: grayscale(100%);
  opacity:0.7;
  transition:0.3s;
}

.logo-track img:hover{
  filter:none;
  opacity:1;
}

@keyframes scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Cards */
.aff-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.aff-card{
  padding:30px;
  border-radius:18px;
  background:rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  transition:0.3s;
}

.aff-card:hover{
  transform:translateY(-8px);
}

.aff-card h4{
  font-size:20px;
  margin-bottom:10px;
  color:#1e1e2f;
}

.aff-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* Responsive */
@media(max-width:600px){
  .affiliation-container h2{
    font-size:28px;
  }
}






/* ====================== FOOTER ======================= */

.footer {
    background: linear-gradient(90deg, #5B2EFF, #00C8FF);
    color: white;
    padding: 40px 0 10px;
    margin-top: 40px;
    border-radius: 35px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-logo {
    width: 70px;
}

.footer-title {
    font-size: 32px;
    margin: 8px 0;
    background: linear-gradient(90deg, #fff, #e5eaff);
    -webkit-background-clip: text;
    color: transparent;
}

.footer-text {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-section h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    opacity: 0.9;
    transition: 0.2s;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-section p {
    font-size: 15px;
    margin: 5px 0;
}

.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    height: 40px;
    width: 40px;
}

.social-icon {
    font-size: 20px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.icon-img{
    height: 30px;
    width: 30px;
}

.social-icon:hover {
    background: rgba(255,255,255,0.4);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
    .footer-text { font-size: 13px; }
    .footer-title { font-size: 26px; }
}
