/*sec1*/
.home{
    background-image: url(./img/Cover\ img.jpg);
    background-position: center center;
    background-size: cover;
    height: 100vh;
    color: white;
    text-align: center;
}

.home1{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
}

.home2 h2::after{
    content: "|";
    animation-name: type;
    animation-duration: 3s;
    animation-iteration-count:infinite ;
}

@keyframes type{
    0%{content: "|";}
    18%{content: "Te";}
    24%{content: "Tec";}
    30%{content: "Tech";}
    36%{content: "TechN";}
    42%{content: "TechNo";}
    48%{content: "TechNova";}
    54%{content: "TechNov";}
    60%{content: "TechNo";}
    66%{content: "TechN";}
    72%{content: "Tech";}
    78%{content: "Tec";}
    84%{content: "Te";}
    90%{content: "T";}
    100%{content: "|";}
}
/*ContactUs*/
.contact-form {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background-color: #1e1e2f;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  background-color: #2e2e3f;
  border: none;
  border-radius: 5px;
  color: white;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background-color: #6a5acd;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #5941a9;
}
/*Footer*/
.footer-section{
 text-align: center;
 padding: 50px;
 background-color: transparent;
 color: white;
}