* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 220px;
}

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

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 18px;
}

.login {
  background: #b76e79;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #b76e79;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}
.hero-frame {
  width: 100%;
  height: 50vh;   /* 👈 HALF of full screen */
  border: none;
  display: block;
}

.services-frame {
  width: 1500px; 
  height: 400px;
 }
.packages-frame { height: 1600px; }
.about-frame { height: 900px; }
.ceo-frame { height: 900px; }
.footer-frame {
  width: 100%;
  height: 520px;
  border: none;
}

iframe {
  width: 100%;
  border: none;
  display: block;
}
