* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: "Lato",-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;
  height: 100%;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.logo {
  color: white;
  font-size: 28px;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.contact-btn {
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 5px;
}

.hero {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-wrap: wrap;
}

.marginleft {
  padding-left: 120px;
}

.ourcolor {
  color:#865dff;
}

.left, .right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.leftdown {
  background: linear-gradient(to bottom, #865dff, white);
  text-align: center !important;
  
}

.leftup {
  background-color: #865dff;
}

.left {
  color: white;
  flex-direction: column;
  padding: 40px;
  text-align: left;
}

.rightdown {
  flex-direction: column;
  text-align: left;
  justify-content: normal;
}

.rightbrow{
  padding-top: 120px;
  padding-left: 60px;
}

.fontme {
  font-size: 3.6em;
  font-weight: 1000 !important;
}

.left h1 {
  font-size: 6em;
  line-height: 1.2;
}

.headertitle {
  font-size: 20px;
}

.left .identity {
  color: #563a98;
  font-weight: 600;
}

.scroll {
  margin-top: 20px;
  opacity: 0.8;
}

/* ✅ RIGHT SIDE VIDEO STYLING */
.right {
  position: relative;
  overflow: hidden;
}

.right video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Optional: Add overlay content above the video */
.right .content {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .left h1 {
    font-size: 3.2em;
  }

  .marginleft {
    padding-left: 50px;
  }

  .scroll {
    font-size: 12px;
  }

  .headertitle {
    font-size: 20px;
  }
  
  .right {
    height: 50vh;
  }

  .right {
    height: 50vh;
  }

  .fontme {
    font-size: 2.6em;
  }

  .right video {
    height: 100%;
  }

  .rightbrow {
    padding-top: 30px;
    padding-left: 15px;
  }
}
