.gdc-college-footer {
  background-color: #061e3e;
  color: #ffffff;
  padding: 70px 20px 30px 20px;
  font-family: "Poppins", sans-serif;
}

.gdc-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
}

.gdc-footer-title {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
}

.gdc-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #facc15;
}

/* Contact & Clickable Logic */
.gdc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gdc-contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 5px 0;
}

.gdc-contact-item i {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #d3bb5d;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Hover Effects for Clickable Items */
.gdc-clickable:hover {
  color: #ffffff;
  transform: translateX(8px);
}

.gdc-clickable:hover i {
  background: #facc15;
  color: #7f1d1d;
  transform: scale(1.1);
}

/* Common Styles */
.gdc-footer-about {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}
.gdc-footer-links {
  list-style: none;
  padding: 0;
}
.gdc-footer-links li {
  margin-bottom: 12px;
}
.gdc-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.gdc-footer-links a:hover {
  color: #fff;
  transform: translateX(10px);
}

.gdc-social-icons {
  display: flex;
  gap: 12px;
}
.gdc-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.gdc-social-link:hover {
  background: #8c7105;
  color: #7f1d1d;
  transform: translateY(-5px);
}

.gdc-footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Animations & Responsive */
@keyframes gdcUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gdc-animate-up {
  animation: gdcUp 0.6s ease forwards;
  animation-delay: calc(var(--order) * 0.15s);
  opacity: 0;
}

@media (max-width: 992px) {
  .gdc-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gdc-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gdc-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .gdc-contact-item,
  .gdc-footer-links a {
    justify-content: center;
  }
  .gdc-social-icons {
    justify-content: center;
  }
}
