body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

:root {
  --primary-green: #00ffb3;
  --primary-blue: #00b7ff;
}

html {
  scroll-behavior: smooth;
}

.green-text {
  color: var(--primary-green);
}
.blue-text {
  color: var(--primary-blue);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-gradient {
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 255, 179, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 183, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #050505 0%, #0d0d0d 100%);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  color: black;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.input-style {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
  border-radius: 18px;
  color: white;
  outline: none;
  transition: 0.3s ease;
}

.input-style:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 30px rgba(0, 255, 179, 0.1);
}

.service-card,
.portfolio-card,
.team-card,
.contact-card {
  transition: 0.35s ease;
}

.service-card:hover,
.portfolio-card:hover,
.team-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-green);
  box-shadow: 0 0 40px rgba(0, 255, 179, 0.1);
}

.portfolio-image {
  overflow: hidden;
}

.portfolio-image img {
  transition: 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.category-btn {
  padding: 14px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  color: black;
  border-color: transparent;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-btn:hover {
  background: var(--primary-green);
  color: black;
}

.toast-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer Social Links */
.social-footer {
  transition: all 0.3s ease;
}

.social-footer:hover {
  transform: translateY(-3px);
}

/* Back to Top Button Hover */
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 255, 179, 0.3);
}

.back-to-top:active {
  transform: scale(0.95);
}


/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border-top-color: black;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Newsletter Input Focus */
.newsletter-form input:focus {
  border-color: #00ffb3;
  box-shadow: 0 0 0 2px rgba(0, 255, 179, 0.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer .grid {
    gap: 30px;
  }

  .border-t.flex-wrap {
    flex-direction: column;
    text-align: center;
  }
}


.team-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #00ffb3;
    box-shadow: 0 20px 40px rgba(0, 255, 179, 0.15);
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.social-btn:hover {
    background: linear-gradient(90deg, #00ffb3, #00b7ff);
    color: black;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Image zoom effect */
.team-card img {
    transition: transform 0.5s ease;
}

/* Gradient text for names */
.team-card h3 {
    background: linear-gradient(135deg, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.team-card:hover h3 {
    background: linear-gradient(135deg, #00ffb3, #00b7ff);
    background-clip: text;
    -webkit-background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-card {
        margin-bottom: 20px;
    }

    .team-card .p-8 {
        padding: 20px;
    }

    .team-card h3 {
        font-size: 1.5rem;
    }
}

/* Loading animation for images */
.team-card img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Card entrance animation */
.team-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
