/* Logo Styling */
.logo-reg {
  height: 70px !important;
  width: auto !important;
}

#logo {
  margin: 5px 0 !important;
}

.headhesive--clone #logo img {
  height: 55px !important;
  max-height: 55px !important;
}

.th-team-member-text {
  white-space: unset !important;
}

.technologies-carousel .swiper-slide-image {
  max-width: 98%;
  max-height: 128px;
}

.py-20 {
  padding: 80px 0;
}

/* Project Grid */
.project-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-images > div {
  width: 100%;
}

@media (max-width: 991px) {
  .project-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .project-images {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DARK THEME CONTACT FORM STYLING
   ============================================ */

.frm-show-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.frm_form_field {
  display: flex;
  flex-direction: column;
}

.frm_primary_label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.frm_required {
  color: #ff6b6b;
  font-weight: bold;
}

/* Input & Textarea Base Styling */
.frm-show-form input[type="text"],
.frm-show-form input[type="email"],
.frm-show-form textarea {
  padding: 14px 18px;
  background-color: #ffffff;
  border: 2px solid #404040;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.frm-show-form input[type="text"]::placeholder,
.frm-show-form input[type="email"]::placeholder,
.frm-show-form textarea::placeholder {
  color: #888888;
}

/* Focus State */
.frm-show-form input[type="text"]:focus,
.frm-show-form input[type="email"]:focus,
.frm-show-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(90, 159, 212, 0.15);
}

.frm-show-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Submit Button Styling */
.frm_submit {
  margin-top: 15px;
}


.frm_submit input[type="submit"]:hover {
  background: linear-gradient(135deg, #6ba8dd 0%, #5a9fd4 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(90, 159, 212, 0.35);
}

.frm_submit input[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(90, 159, 212, 0.25);
}

/* Alert Messages */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  border: none;
}

.alert-danger {
  background-color: #3d2626;
  color: #ff8a8a;
  border-left: 4px solid #ff6b6b;
}

.alert-success {
  background-color: #263d2a;
  color: #8aff8a;
  border-left: 4px solid #6bff6b;
}

/* Responsive */
@media (min-width: 768px) {
  .bs-navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .frm-show-form {
    gap: 18px;
  }

  .frm_primary_label {
    font-size: 14px;
  }

  .frm-show-form input[type="text"],
  .frm-show-form input[type="email"],
  .frm-show-form textarea {
    padding: 12px 16px;
    font-size: 14px;
  }

  .frm_submit input[type="submit"] {
    padding: 12px 32px;
    font-size: 15px;
  }
}
