footer {
  background: linear-gradient(180deg, #002147 0%, #003366 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px 25px;
}

/* ===== Footer Grid ===== */
.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ===== Section Titles ===== */
.footer-heading {
  font-weight: 700;
  color: #f5c400;
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
}
.footer-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #f5c400;
  margin-top: 5px;
}

/* ===== Footer Logo Section ===== */
.footer-logo {
  height:70PX;
  WIDTH:380PX;
  display: flex;
  padding-right:0px;
}
.footer-logo img {
  width: 135%;
  height: 100%;
  margin-left:-50px;
}

.footer-desc {
  font-size: 14px;
  color: #dbe2ef;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-phone {
  margin-top: 12px;
  font-size: 15px;
}
.footer-phone i {
  color: #f5c400;
  margin-right: 8px;
}

/* ===== Links ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #dfe7f1;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}
.footer-links a:hover {
  color: #f5c400;
  text-decoration: underline;
}

/* ===== Social Icons ===== */
/*.social-icons {*/
/*  margin-top: 15px;*/
/*}*/
/*.social-icons p {*/
/*  font-size: 15px;*/
/*  margin-bottom: 8px;*/
/*}*/
/*.social-icons a {*/
 
/*  width: 35px;*/
/*  height: 35px;*/
/*  margin-right: 8px;*/
/*  border-radius: 50%;*/
/*  text-align: center;*/
/*  line-height: 35px;*/
/*  background: rgba(255, 255, 255, 0.1);*/
/*  color: #fff;*/
/*  transition: all 0.3s ease;*/
/*}*/
/*.social-icons a:hover {*/
/*  background: #f5c400;*/
/*  color: #002147;*/
/*  transform: translateY(-3px);*/
/*}*/

/* ===== Footer Bottom ===== */
.footer-bottom {
  margin-top: 10px;
  padding-top: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
}
.footer-logo img {
  width: 200%;
  height: 110%;
  margin-left:100px !important;

}
.footer-heading::after {
display:none;

}
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
    .footer-logo {
    justify-content: center;
    margin-left:20px !important;
}
}

/* Show More Section - Inside Main Footer */
.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-out;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

.more-content.visible {
  padding: 20px 10px 15px;
}

.programs-specializations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  margin-left:20px;
  text-align: left;
}

.program-col h3 {
  font-weight: 700;
  color: #f5c400;
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
}
.program-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #f5c400;
  margin: 8px;
}

.program-col ul { list-style: none; padding: 0; margin: 0; }
.program-col li { margin-bottom: 10px; }
.program-col a {
  color: #dfe7f1;
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.3s;
}
.program-col a:hover {
  color: #f5c400;
  text-decoration: underline;
}

/* OFFICIAL YELLOW SHOW MORE BUTTON - Placed Above Bottom Line */
.show-more-btn {
  display: block;
  margin: 40px auto 20px;
  padding: 14px 40px;
  background: #f5c400;
  color: #002147;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.show-more-btn:hover {
  background: #e0b300;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px) {
  .programs-specializations { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .programs-specializations { grid-template-columns: repeat(2, 1fr); }
  .program-col h3::after { display: none; }
}
@media (max-width: 500px) {
  .programs-specializations { grid-template-columns: 1fr; }
  .show-more-btn { width: 90%; }
}

