* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #000;
  color: white;
  padding: 18px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #60a5fa;
}

.nav-links a.active {
  color: #60a5fa;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #60a5fa;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}

.contact-number {
  font-size: 18px;
}

.logo a,
.contact-number a {
  color: white;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e40af);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 3px 6px black;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 20px;
}

section {
  padding: 5rem 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #0f172a;
}

.text-content {
  p {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 18px;
    margin-bottom: 1rem;
  }
}

.cta {
  text-align: center;
  background: #0f172a;
  color: white;
  padding: 50px;

  h2 {
    color: white;
    margin-bottom: 20px;
  }

  .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
  }

  .btn:hover {
    background: #1d4ed8;
  }
}
