* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}


body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: #38bdf8;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  transition: 0.3s;
}

nav a:hover {
  color: #38bdf8;
}

.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1400&auto=format&fit=crop") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 70px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 35px;
  color: #cbd5e1;
}


.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #38bdf8;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: #0f172a;
  transform: translateY(-5px);
}


section {
  padding: 100px 10%;
}

section h2 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 50px;
  color: #38bdf8;
}

.about p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  line-height: 2;
  font-size: 19px;
  color: #cbd5e1;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 25px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.card h3 {
  margin-bottom: 15px;
  color: #38bdf8;
  font-size: 25px;
}

.card p {
  color: #cbd5e1;
  line-height: 1.8;
}

.contact {
  text-align: center;
}

.contact p {
  margin: 10px 0;
  color: #cbd5e1;
}

.contact button {
  margin-top: 25px;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  background: #38bdf8;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: white;
  color: #0f172a;
}

footer {
  background: black;
  text-align: center;
  padding: 30px;
  color: #38bdf8;
}


@media(max-width:768px) {

  header {
    flex-direction: column;
    padding: 20px;
  }

  nav {
    margin-top: 15px;
  }

  .hero-content h1 {
    font-size: 45px;
  }

  .hero-content p {
    font-size: 18px;
  }

}