*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
span{
    color: #01B4AF;
}
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5.6rem;
    height: 100vh;
    color: #272341;
    z-index: -1;
    border-bottom: 0;
    align-items: center;
    margin-bottom: 0;
    padding: 0 70px;
    font-weight: 400;
    display: flex;
    inset: 0;
}
.hero-head{
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 120px;
    margin-left: 20px;
    font-style: bold;
}
.hero-button{
    outline: none;
    cursor: pointer;
    padding: 1rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    overflow: hidden;
    background: #00BDAD;
    color: #00BDAD;
    border: 2px solid #01B4AF;
   }
   
   .hero-button span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
   }
   
   .hero-button:hover span {
    color: #ffff;
   }
   
   .hero-button::before,
   .hero-button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
   }
   
   .hero-button::before {
    content: "";
    background: #ffff;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.2s cubic-bezier(0.3, 1, 0.8, 1);
   }
   
   .hero-button:hover::before {
    transform: translate3d(100%, 0, 0);
   }
   .hero-button{
    right: 86.7%;
    margin-top: 115px;
    border-style: solid;
   }

   .typing-animation {
    animation: typing 3s steps(30, end), blink-caret 0.5s step-end infinite;
}


@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: black;
    }
} 

.hero-img{
    position: absolute;
    margin-left: 60%;
    width: 30%;
}

.about-head{
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 120px;
    margin-left: 20px;
    font-style: bold;
    color: #ffff;
    text-align: center;
}
.about {
    padding: 20px;
    background-color: #01B4AF;
}

.about-head {
    text-align: center;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    padding: 20px;
}

.about-section {
    flex: 2;
    padding: 20px;
}

.aboutimg {
    max-width: 80%;
    height: auto;
    display: block;
    margin-bottom: 100px;
    /* margin-left: 50%; */
}
.about-head{
    color: #ffff;
    text-align: center;
}
.about-para{
    color: #ffff;
    font: bold;
    font-weight: 700;
    /* width: 70%; */
    padding-left: 200px;
    padding-bottom: 40px;
    font-size: 20px;
    margin-right: 50px;
}

.contact{
    color: rgb(0, 0, 0);
}

.about-link{
    color: #ffff;
    text-decoration: none;
    border: 2px solid #5afdf8;
    padding: 10px 10px;
    margin-left: 500px;
}
a:hover{
    background-color: #ffff;
    color: #01B4AF;
}

.contact{
    background-color: #000000;
}

.contact-us {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .contact-us h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
  }
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .form-group textarea {
    resize: vertical;
    height: 100px;
  }
  .form-group button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* display: flex;
    justify-content: center; */
    transition: background-color 0.3s ease;
  }
  .form-group button:hover {
    background-color: #0056b3;
  }

.contact{
    color: #ffff;
    text-decoration: none;
    padding: 20px;
}
.projects {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .project-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .project-card img {
    width: 50%;
    height: auto;
  }
  .project-details {
    padding: 20px;
    width: 50%;
  }
  .project-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .project-card h3 {
    font-size: 2em;
    margin: 0;
  }
  .project-card p {
    font-size: 1.2em;
    margin: 10px 0;
  }
  .project-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  .project-card a:hover {
    background-color: #0056b3;
  }
  .project-card:hover {
    transform: translateY(-5px);
  }
  .project-title{
    color: #000000;
    text-align: center;
    font-weight: 700;
    padding: 20px;
    font-size: 50px;
  }


  .footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  .footer p {
    margin: 0;
    font-size: 1em;
  }
  .social-media {
    margin-top: 10px;
    padding: auto;
  }
  .social-media a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
  }
  .social-media a:hover {
    color: #007bff;
  }

