@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #172033;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
  }

  h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }

  h5,
  h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.35;
  }

  p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
  }

  a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }

  button {
    font-family: 'Inter', sans-serif;
  }

  input,
  textarea,
  select {
    font-family: 'Inter', sans-serif;
  }

  label {
    font-family: 'Inter', sans-serif;
  }

  span {
    font-family: 'Inter', sans-serif;
  }

  li {
    font-family: 'Inter', sans-serif;
  }
}

:root {
  --orange: #F7941D;
  --navy: #062B59;
  --blue: #0B4F8A;
  --light: #F5F8FC;
}

.hero {
  background:
    linear-gradient(90deg, rgba(3,27,58,.98) 0%, rgba(3,45,88,.92) 48%, rgba(3,45,88,.30) 100%),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2000&q=85') center/cover;
}

.section-kicker {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.orange-btn {
  background: var(--orange);
  color: #fff;
}

.orange-btn:hover {
  background: #df7d0b;
  color: #fff;
}

.navy-btn {
  background: var(--navy);
  color: #fff;
}

.navy-btn:hover {
  background: #041d3d;
  color: #fff;
}

.practice-card {
  transition: .25s ease;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(6,43,89,.10);
  border-color: #f5b15b;
}

.service-check {
  color: #1b8a4a;
}

.cloud-section {
  background:
    linear-gradient(90deg, rgba(3,27,58,.97), rgba(6,64,116,.90)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  font-size: 28px;
}

/* .logo-img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.client-logo {
  height: 68px;
  background: #fff;
  border: 1px solid #e7ebf1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #8792a5;
  font-weight: 700;
}

.contact-card {
  border: 1px solid #e8edf4;
  border-radius: 18px;
} */