/* Dropdown Animations for PROTEGE Navbar */
.dropdown-animated .sub-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.dropdown-animated:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.animated-dropdown li {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.2s ease;
}

.dropdown-animated:hover .animated-dropdown li {
  transform: translateX(0);
  opacity: 1;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(1) {
  transition-delay: 0.1s;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(2) {
  transition-delay: 0.15s;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(3) {
  transition-delay: 0.2s;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(4) {
  transition-delay: 0.25s;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(5) {
  transition-delay: 0.3s;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(6) {
  transition-delay: 0.35s;
}

.dropdown-animated:hover .animated-dropdown li:nth-child(7) {
  transition-delay: 0.4s;
}

/* Product specs styling */
.spec-grid {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.spec-item {
  padding: 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  font-size: 14px;
}

.spec-item strong {
  color: #dc2626;
}

/* Contact cards styling */
.contact-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card-icon {
  margin-bottom: 20px;
}

.contact-link {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: #991b1b;
}

/* Service feature items */
.service-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #4b5563;
}

.service-feature-item span {
  margin-left: 8px;
}

/* Portfolio carousel images - same size */
.portfolio-card-thumb {
  height: 250px;
  overflow: hidden;
}

.portfolio-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}