* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
a {
  cursor: pointer;
  text-decoration: none;
}

input,
textarea,
select {
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Updated card styles for modern look */
.feature-card,
.case-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Added smooth reveal animation for extra content */
.feature-card-extra,
.case-card-extra {
  animation: slideDown 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }
}

/* Added glossy effect for primary buttons */
.bg-primary {
  position: relative;
  overflow: hidden;
}

.bg-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.bg-primary:hover::before {
  left: 100%;
}

/* Added shadow effects for elevated elements */
.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 212, 197, 0.15);
}

/* Team member image hover effect */
.team-member img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .feature-card,
  .case-card {
    margin-bottom: 1rem;
  }
}

/* Added gradient text effect */
.text-gradient {
  background: linear-gradient(135deg, #00d4c5 0%, #1a4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #00d4c5;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00b8aa;
}

/* Added loading animation for images */
img {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Form input focus glow effect */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 197, 0.1);
}

/* Card backdrop blur effect */
.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
