/* Start of Selection */
.site-footer {
  padding: 50px 20px;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: #007bff;
}

.site-footer .list-unstyled li {
  margin-bottom: 12px;
}

.site-footer .list-unstyled li a {
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.site-footer .list-unstyled li a:before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.site-footer .list-unstyled li a:hover {
  color: #007bff;
  padding-left: 20px;
  text-decoration: none;
}

.site-footer .list-unstyled li a:hover:before {
  opacity: 1;
}

.gal_col img {
  transition: all 0.3s ease;
  border-radius: 8px;
  max-width: 40px;
}

.gal_col img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.border-top {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.site-footer .border-top p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Social media grid styling */
.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 15px;
  max-width: 100%;
}

.social-media-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.social-media-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-address {
  margin-top: 30px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.footer-address:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.footer-address p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-address i {
  color: #007bff;
  margin-right: 8px;
}

.search-container {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.search-container:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.blog-search-form .form-control {
  height: 45px;
  border-radius: 6px 0 0 6px;
  border: 1px solid #e9ecef;
  font-size: 0.95rem;
  padding: 0 15px;
  background: white;
  transition: all 0.3s ease;
}

.blog-search-form .form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
}

.blog-search-form .btn {
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  font-size: 1rem;
  background: #0056b3;
  border-color: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-search-form .btn:hover {
  background: #004494;
  border-color: #004494;
}

.blog-search-form .input-group {
  box-shadow: none;
}

.site-section.bg-light {
  padding: 30px 0;
}

/* Update the search button icon color */
.blog-search-form .btn i {
  color: white;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
  }
  .social-media-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
  .footer-address {
    margin-top: 40px;
    margin-bottom:40px;
  }
}
/* End of Selection */