* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fbff;
  color: #333;
}
header {
  background: white;
  padding: 15px 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #0078ff;
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #0078ff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0078ff;
}

.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1500&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-content {
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f2f2f2;
}

/* ===== BUTTON ===== */
.btn {
  background: #0078ff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #005fcc;
}
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
}

.section:nth-child(even) {
  background: #eef5ff;
}

.text {
  flex: 1;
}

.image {
  flex: 1;
}

.image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

h2 {
  color: #0078ff;
  margin-bottom: 15px;
}

p {
  line-height: 1.6;
  font-size: 16px;
}

footer {
  background: #0078ff;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}



@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
  .image {
    order: -1;
  }
  header {
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 0px;
    font-size: 25px;
    cursor: pointer;
    color: #0078ff;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav {
    position: relative;
  }
}


 