
.custom-footer {
  background: #0b1c2d;
  color: #fff;
  padding: 60px 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 7%;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f55c22;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #00bcd4;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  background: #1c2b3a;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00bcd4;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #aaa;
}
/* Desktop & large screens par hide */
@media (min-width: 992px) {
  #sidemenu_toggle {
    display: none;
  }
}
#sidemenu_toggle {
  display: none;
}

@media (max-width: 991px) {
  #sidemenu_toggle {
    display: inline-block;
  }
}
/* //About us css */

.fixed-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('../img/slide-1.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.banner-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 50px;
  font-weight: 700;
}

.banner-content p {
  font-size: 20px;
  margin: 15px 0;
}

.banner-btn {
  background: #81161a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
}
.vision-mission-cards {
  display: flex;
  gap: 25px;
  margin-top: 0px;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1;
  min-width: 280px;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.vm-card h3 {
  color: #81161a;
  font-weight: 700;
  margin-bottom: 15px;
}

.vm-card p {
  color: #fff;
  line-height: 1.7;
  font-size: 16px;
}

.nonclick {
  pointer-events: none;
  cursor: default;
  opacity: 0.6; /* optional: disabled look */
}

.alshinecolor{
  color:#81161a !important;
}