/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fb;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

/* HERO */
.hero {
  padding: 70px 0;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlight {
  color: #0d6efd;
  font-weight: 700;
}

.hero-text h1 {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.hero-text p {
  margin-bottom: 20px;
  color: #555;
}

.btn-primary {
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hero-img img {
  width: 85%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-left: auto;
}

/* ABOUT */
.about {
  padding: 70px 0;
  background: #f4f6fa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 80%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.pt {
  margin-top: 12px;
  color: #444;
}

/* SERVICES */
.services {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.icon {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 10px;
}

.learn-btn {
  margin-top: 12px;
  display: inline-block;
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

/* CONTACT */
.contact {
  background: #fff;
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.contact-box h3,
.links-box h3,
.legal-box h3 {
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-list li {
  margin: 10px 0;
  color: #444;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0d6efd;
  color: #fff;
  font-size: 14px;
}
