﻿body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background-color: #f8fafc;
}

.biller-card:hover {
  transform: translateY(-4px);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}	

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #006C35;
  border-radius: 10px;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px; 
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #006c35;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: #059669;
  transform: translateY(-3px);
}

.share-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20%;
  font-size: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-icon:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.search-wrapper {
  position: sticky;
  top: 20px; 
  max-width: 700px;
  margin: 0 auto 30px auto;
  z-index: 999;
}

.search-input {
  width: 100%;
  padding: 25px 20px;
  padding-right: 56px;
  border-radius: 20px;
  font-size: 22px;
  outline: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* shadow-2xl */
  transition: box-shadow 0.3s ease, transform 0.2s ease;
border:2px solid #3fe73b;
}

.search-input:focus {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(5, 150, 105, 0.2); /* focus:ring */
}

.search-input::placeholder {
  color: #9ca3af; /* placeholder gray */
  opacity: 1;
}


.search-input:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}


.site-footer {
  margin-top: 60px;
  padding: 30px 15px;
  text-align: center;
  color: #6b7280;
  font-size: 20px;
  
}

.footer-text {
  margin-bottom: 15px;
  
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-icon {
  width: 26px;
  height: 26px;
  fill: #006c35;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.footer-icons a:hover .footer-icon {
  transform: scale(1.15);
  fill: #059669;
}

.footer-copy {
  font-size: 15px;
  opacity: 0.8;
  color: #059669;
}

.footer-copy a:hover{
  color: #6b7280;
 }

