/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 12:29:39 */
.social-box {
  flex: 0 0 65%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  white-space: nowrap;
  background: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  font-size: 16px;
}

/* Hide social box on mobile */
@media (max-width: 768px) {
  .social-box {
    display: none !important;
  }
}
.agency-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 14px 22px 10px 22px; /* added 10px bottom padding */
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.agency-box i {
  font-size: 22px;  /* enlarged icon */
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
  vertical-align: middle;
}

.agency-box .title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.agency-box .reg {
  font-size: 14px;
  color: #6b7280;
  margin-left: 4px;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .agency-box {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 10px 0; /* only bottom padding */
  }

  .agency-box i {
    font-size: 20px;
  }

  .agency-box .title {
    font-size: 16px;
  }

  .agency-box .reg {
    font-size: 12px;
  }
}
