/* Box container */
.box {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  margin-bottom: 30px;
}
.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.icon i {
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 15px;
}

.box-gray {
  
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* soft gray shadow */
  
  transition: box-shadow 0.3s ease;
}

.box-gray:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16); /* slightly deeper on hover */
}


/* Heading and paragraph */
.box-gray h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}
.box-gray p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.new-box-bottom {
  background: #e1dfdf;
  padding: 16px;
  border-radius: 0 0 12px 12px;
}


/* Button styling */
.new-box-bottom a {
  background: linear-gradient(to right, #4e73df, #1cc88a);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.new-box-bottom a:hover {
  background: linear-gradient(to right, #2e59d9, #17a673);
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.highlight-item img {
  max-width: 120px;
  margin-bottom: 10px;
}

.highlight-item h6,
.highlight-item p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
}

.qamlo-footer {
  background-color: #1f2d3d;
  color: #f8f9fc;
  padding: 40px 0;
  font-family: 'Open Sans', sans-serif;
}

.qamlo-footer .widgetheading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.qamlo-footer a {
  color: #f8f9fc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.qamlo-footer a:hover {
  color: #1cc88a;
}

.qamlo-footer .link-list li {
  margin-bottom: 8px;
}

.qamlo-footer .social-network {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.qamlo-footer .social-network li a {
  color: #f8f9fc;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.qamlo-footer .social-network li a:hover {
  color: #1cc88a;
}

.qamlo-footer .footer-legal {
  font-size: 1.55rem;
  color: #f8f9fc;
  margin-left: 4px;
  margin-top: 12px;
  text-align: center;
}

.qamlo-footer .footer-legal a {
  color: #f8f9fc;
  text-decoration: underline;
  font-weight: 500;
}

.qamlo-footer .footer-legal a:hover {
  color: #1cc88a;
}




.newbtn-theme {
  background: linear-gradient(to right, #4e73df, #1cc88a); /* adjust to match your palette */
  
  color: white;
  border:none;
  border-radius: 6px;
  padding: 8px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease, transform 0.3s ease;

  font-weight: 500;
  
  
}

.newbtn-theme a {
  background: linear-gradient(to right, #4e73df, #1cc88a); /* adjust to match your palette */
  
  color: white;
  border:none;
  border-radius: 6px;
  padding: 8px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease, transform 0.3s ease;

  font-weight: 500;
  
  
}

.newbtn-theme:hover {
  background: linear-gradient(to right, #2e59d9, #17a673);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  color: #fff;
}

.partner-entry {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-left: 1.5rem; /* creates visible left gap */
}

.partner-entry img {
  max-width: 80px;
  height: auto;
  margin-right: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-entry img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.partner-label {
  display: inline-block;
  width: 220px;         /* adjust as needed */
  white-space: nowrap;  /* prevents wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-entry a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.partner-entry a:hover {
  color: #007bff;
  text-decoration: underline;
}
.partner-link {
  display: inline-block;
  width: 220px;          /* fixed width for alignment */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.partner-link:hover {
  color: #007bff;
  text-decoration: underline;
}







/* Responsive tweaks */
@media (max-width: 768px) {
  .box {
    margin-bottom: 20px;
  }
  .box-gray {
    padding: 20px;
  }
}