* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "arialmt";
  src: url(fonts/ARIALMTMEDIUM.TTF);
}

body {
  font-family: "arialmt", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url("assets/lead-gen-form-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  max-width: 1200px;
  z-index: 2;
  flex-wrap: wrap;
}

/* ===== Left Side ===== */
.left {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.logo {
  width: 40%;
  margin-bottom: 20px;
}

.main-heading {
  font-family: "arialmt";
  font-size: 4rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sub-heading {
  font-size: 2rem;
  font-weight: 100;
  margin: 15px 0;
  text-transform: uppercase;
  width: 70%;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 500px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  transition: 0.3s ease;
}

.btn-red {
  background: #e50914;
  color: #fff;
}

.btn-red:hover {
  background: #b40610;
}

.btn-yellow {
  background: #ffd100;
  color: #000;
  font-weight: 800;
}

.btn-yellow span{
    font-size: 18px;
}

.btn-yellow:hover {
  background: #ffcd00;
}

/* ===== Right Side ===== */
.right {
  flex: 0 0 400px;
  color: #000;
  padding: 25px 30px;
  margin-top: 35px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
}

.role {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.role-label {
  font-weight: bold;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 25px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

/* Hide default radio */
.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom radio circle */
.custom-radio {
  width: 25px;
  height: 25px;
  border: 1px solid #007bff;
  background: white;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* Inner blue dot when checked */
.radio-option input[type="radio"]:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background-color: #007bff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.form.active {
  display: flex;
}

.row {
  display: flex;
  gap: 10px;
}

input,
select,
textarea {
  /* width: 100%; */
  padding: 12px;
  border: 1px solid #ddd;
  font-family: "arialmt";
  font-size: 15px;
  font-weight: 400;
}

textarea {
  height: 70px;
  resize: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  font-family: "arialmt";
}

/* Hide the default checkbox */
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  padding: 5px;
  border: 2px solid #fff;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* Green background + black tick */
.checkbox input[type="checkbox"]:checked {
  background-color: #00c853; /* bright green */
  border-color: #00c853;
}

.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 3px;
  width: 3px;
  height: 7px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox input {
  margin-top: 4px;
}

@media (max-width: 800px) {

    .hero{
        height: auto;
    }

    .sub-heading{
        width: 100%;
        font-size: 1.5rem;
    }
    
    .buttons{
        display: flex;
        flex-direction: column;
    }

    .row{
        display: flex;
        flex-direction: column;
    }

    .radio-option{
        font-size: 1rem;
    }

   
  .container {
    flex-direction: column;
    width: 90%;
  }
  .left {
    margin-right: 0;
    text-align: center;
  }
  .main-heading {
    font-size: 60px;
  }
  .right {
    margin-top: 40px;
    width: 100%;
    padding: 25px 0px;
  }
}
