* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  background: linear-gradient(180deg, #020617, #020617);
  color: #e5e7eb;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.navbar {
  background: #020617;
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar a {
  color: #c7d2fe;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #60a5fa;
}

.logo {
  color: #60a5fa;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.profile-img {
  width: 220px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px rgba(96, 165, 250, 0.35);
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.buttons {
  margin-top: 2rem;
}

.btn {
  background: #2563eb;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn.secondary {
  background: transparent;
  border: 1px solid #2563eb;
}

.services, .contact {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #60a5fa;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #cbd5f5;
}

.services-spacing {
  height: 2.5rem;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


.service-card {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: transform 0.3s, border 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  color: #60a5fa;
  margin-bottom: 1rem;
  position: relative;
  cursor: pointer;
}

.service-icon::after {
  content: attr(data-tooltip-text);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #020617;
  color: #e5e7eb;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  border: 1px solid #2563eb;
}

.service-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
}

.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

}