:root{
  --color1: red;
  --color2: rgb(209, 0, 0);
  --color3: #800000;
  --color-u-1: rgba(20, 20, 20, 0.658);
  --color-u-2: rgb(109, 105, 105);
  --color-u-3: rgb(61, 60, 60);
  --color-u-4: rgba(128, 128, 128, 0.397);
}

* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  color: white;
}
body {
  background-color: black;
}

header {
  /* border: 1px solid rgb(255, 51, 0); */

  width: 100%;
  position: absolute;
  top: 20px;
  z-index: 1;
  display: flex;
  justify-content: center;
}

nav {
  /* border: 1px solid blue; */
  /* color: aliceblue; */
  max-width: 1300px;

  width: 75vw;
  display: flex;
  justify-content: space-between;
}

nav img {
  width: 150px;
}

nav .right {
  /* border: 1px solid yellow; */

  display: flex;
  align-items: center;
  gap: 10px;
}

.select-container {
  background-color: var(--color-u-1);
  border: 1px solid var(--color-u-2);
  border-radius: 4px;
  width: fit-content;
  cursor: pointer;
  position: relative;
}
.select-container select {
  font-weight: bolder;
  font-size: 16px;

  padding: 6px 34px;
  background-color: transparent;
  border-radius: 4px;

  border: none;
  appearance: none;

  position: relative;
  z-index: 1;

  line-height: 1.5;

  cursor: pointer;
}

.select-container select:focus {
  outline: 1px solid var(--color1);
}

.select-container :nth-child(1) {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 16px;
}
.select-container :nth-child(3) {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 20px;
}

#english {
  color: black;
  cursor: pointer;
}
#english :hover {
  background-color: var(--color1);
}
#hindi {
  color: black;
  cursor: pointer;
}

.btn {
  background-color: var(--color1);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: bolder;
  cursor: pointer;
  width: fit-content;
}
.btn-red-si {
  font-size: 15px;
}
.btn:hover {
  background-color: var(--color2);
}
.btn:active {
  background-color: var(--color3);
}

main {
  background-image: url(assets/images/background.jpg);
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

main .box {
  /* border: 3px solid rgb(51, 255, 0); */

  height: 100%;
  position: absolute;
  width: 100%;

  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.main-text {
  /* border: 1px solid yellow; */
  color: rgb(255, 255, 255);
  text-shadow: 2px 3px 3px black;

  position: absolute;
  width: 100%;
  margin-top: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.main-text > * {
  text-align: center;
  padding: 0px 30px 0px 30px;
}
.main-text :nth-child(1) {
  font-size: 45px;
  font-weight: bolder;
}
.main-text :nth-child(2) {
  font-size: 25px;
}
.main-text :nth-child(3) {
  font-size: 20px;
}





.mainInputContainer{
  /* border: 2px solid blue !important; */
  position: absolute;
  width: 100%;

  display: flex;
  justify-content: center;
  /* gap: 10px; */
}  
 
.main-input {
  /* border: 1px solid yellow; */
  width: fit-content;
  margin-top: 400px;

  display: flex;
  gap: 10px;
  position: relative;
}
.main-input input {
  font-size: 20px;
  border-radius: 4px;
  /* padding: 0px 10px; */
  padding: 20px 10px 10px 10px;
  width: 450px;
  min-width: 250px;
  background-color: var(--color-u-1);
  /* background-color: blue; */
  border: 2px solid var(--color-u-2);

  outline: none;
  /* height: 60px; */
  /* margin: 0px 10px 0px 10px; */
}
.main-input input:focus {
  border: 2px solid var(--color1);
}


.input + label {
  /* user-select: none; */
  pointer-events: none;
  position: absolute;
  left: 50px;
  left: 10px;
  top: 32%;
  /* top: 0; */
  transition: all 0.3s ease-in-out;
  color: white;
 
  font-size: 20px;
}

.input:focus + label,
.input:not(:placeholder-shown) + label {
  position: absolute;
  left: 50px;
  left: 11.5px;
  top: 17%;
  font-size: 10px;
}









.btn-red-main {
  font-size: 20px;
}

.separation {
  height: 7px;
  background-color: var(--color-u-3);
}

/* section 1 */
.section1 > * {
  /* border: 1px solid yellow; */
  color: white;
}
.section1 {
  /* border: 1px solid rgb(9, 255, 0); */
  /* color: white; */
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.section1 .text {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px 20px;
}
.section1 .text :nth-child(1) {
  font-size: 48px;
  font-weight: bolder;
}
.section1 .text :nth-child(2) {
  font-size: 24px;
  text-align: center;
}

.section1 .tv1 {
  /* border: 1px solid rgb(9, 255, 0); */
  position: relative;
}
.section1 .tv1 video {
  position: absolute;
  top: 100px;
  right: 90px;
  width: 468px;
  z-index: -1;
}

/* section 2 */
.sbox {
  background-color: black;
  /* color: aliceblue; */
  /* width: fit-content; */
  border: 2px solid var(--color-u-2);
  border-radius: 12px;
  padding: 10px;

  display: flex;
  align-items: center;
  gap: 10px;

  position: absolute;
  top: 334px;
  left: 151px;
}
.sbox .stext {
  /* gap: 2px; */
}
#stranger {
  width: 70px;
}
#loader {
  height: 70px;
}
.sbox .stext :nth-child(1) {
  font-size: 20px;
  font-weight: bolder;
}
.sbox .stext :nth-child(2) {
  font-size: 17px;
  color: blue;
}

/* section 3 */
.tv2 {
  position: relative;
}
.tv2 img {
  position: relative;
  z-index: 1;
}
.tv2 video {
  /* border: 1px solid red; */

  position: absolute;
  top: 50px;
  left: 119px;
  width: 395px;
}

.faq {
  /* border: 1px solid red; */

  margin-top: 40px;
  padding: 0px 20px;
}
.faq h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
}

.faqbox {
  /* border: 1px solid rgb(47, 0, 255); */

  font-size: 22px;
  background-color: var(--color-u-4);

  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;

  padding: 20px;
  margin: 15px auto;

  cursor: pointer;

  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;

  user-select: none;
}
.faqbox:hover {
  background-color: var(--color1);
}

.answer {
  max-width: 800px;
  margin: auto;
  background-color: var(--color-u-4);
  padding: 20px;
  margin-top: -10px;
}

.second-input {
  /* border: 1px solid green; */
}

.second-input > * {
  position: relative;
}

.second-input .main-text {
  margin-top: 30px;
}
.second-input .main-input {
  margin-top: 20px;
  margin-bottom: 20px;
}

footer {
  /* border: 1px solid green; */

  max-width: 1100px;
  margin: auto;
  padding: 0px 20px;
}

footer .links {
  /* border: 2px solid rgb(9, 0, 128); */

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 20px;
  gap: 5px;
}

footer .links-item {
  /* border: 1px solid rgb(128, 0, 117); */

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.end-question,
.end-text {
  margin: 30px 0px;
}
