/* Importing Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0f111a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 17, 26, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header .logo {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
}

header nav a {
  margin-left: 30px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

header nav a:hover {
  color: #6366f1;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 20px 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  overflow: hidden;
}

.hero h1 {
  font-size: 3.2em;
  color: white;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #3b82f6;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}

.button:hover {
  background: #f0f0f0;
}

/* Glassmorphism Cards */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(15px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin-bottom: 15px;
  color: #fff;
}

/* Footer */
footer {
  background: #0f111a;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 10s infinite alternate;
}

.shape1 {
  width: 120px;
  height: 120px;
  background: #3b82f6;
  top: 20%;
  left: -60px;
}

.shape2 {
  width: 200px;
  height: 200px;
  background: #6366f1;
  top: 60%;
  right: -100px;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-30px) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .hero h1 {
    font-size: 2em;
  }
}
