* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header {
  z-index: 3;
  position: absolute;
  top: 0;
  align-items: center;
  display: flex;
  height: 125px;
  width: 100%;
  backdrop-filter: blur(10px);
}
html {
  scroll-behavior: smooth;
}
body {
  background: #2e2e2e;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}
.hero .content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
}
.hero .content h1 {
  margin-bottom: 20px;
  font-size: 3rem;
}
.hero .content form {
  width: 100%;
  max-width: 400px;
}
.rounded-image {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.cta-button {
  background-color: #6b2d8f;
  color: white;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 260px;
}
.cta-button:hover {
  background-color: #6b2d8f;
}
.cta-button .arrow {
  display: inline-block;
  margin-left: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.cta-button:hover .arrow {
  transform: translateX(5px) rotate(45deg);
}

.custom-form {
  border-radius: 10px;
  padding: 20px;
  background-color: transparent; /* Light background color */
}
.custom-input {
  background: transparent;
  padding: 10px 0;
}
.custom-button {
  background-color: #6b2d8f;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}
.custom-button:hover {
  background-color: #6b2d8f;
}

.section {
  color: #fff;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}
.footer {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
}
.footer .logo {
  max-width: 100px;
}
 .social-icons a {
  color: white;
  margin: 0 10px;
  transition: color 0.3s ease;
}
 .social-icons a:hover {
  color: #6b2d8f;
}
.logo {
  
  width: 250px;
}

.linkTo {
  text-decoration: none;
  color: #fff;
}