*{
    margin: 0;
    padding: 0;
}
body{
    background-color: rgb(0, 0,33);
    color: white;
    font-family: 'Poppins',sans-serif;
}
html{
    scroll-behavior: smooth;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    background-color: rgb(3, 3, 91);
}
nav ul{
    display: flex;
    justify-content: center;
}
nav ul li{
    list-style: none;
    margin: 0 25px;
}
nav ul li a{
    color: white;
    text-decoration: none;
}
nav ul li a:hover{
    color: rgb(247, 82, 173);
}

main hr {
    border: 0;
    background-color: rgb(133, 101, 221);
    height: 1.2px;
    margin: 20px 84px;

}
section{
    
}
.first{
    display: flex;
    justify-content: space-around;
    margin: 85px 0;
    font-size: 1.5rem;
}
.first >div{
    width: 30%;
    /* background-color: red; */
}
.leftSection{
    /* background-color: red; */
    width: 34px;
    margin: 30px 0;
    font-size: 2rem;
}
.rightSection{
    width: 34px;
    margin: 30px 0;
}

.rightSection img{
    width: 522px;
  height: auto;
  margin:  -150px;
}
.purple{
    color: rgb(169, 100, 234);
}
#typed-text{
    color:  rgb(169, 100, 234);
}
.about-section{
    background-color: rgb(0, 0, 33);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}
.about-section h2{
    font-size: 2rem;
    margin-bottom: 30px;
    color: #3c31ff;
}
.aqua{
    color: rgb(0, 255, 242);
}
.about-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.about-text{
    max-width: 500px;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: left;
    text-align: justify;
}
.about-image img{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(228, 251, 48);
    transition: transform 0.4s ease;
}
.about-image img:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(228, 251, 48);
}
.services-section {
  background-color: rgb(0, 0, 33);;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  color:  #3c31ff;
  margin-bottom: 70px;
}

.text-align{
    line-height: 26px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.service-card {
  background:linear-gradient(to bottom,#bda103,#4f0172);
  border-radius: 15px;
  padding: 30px 20px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgb(253, 125, 45);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(86, 113, 233, 0.3);
}

.service-icon {
  font-size: 40px;
  color: #00ffd5;
  margin-bottom: 20px;
}

.project-section{
    padding: 60px 20px;
    background: rgb(0,0,33);
    text-align: center;
}
.project-section h2{
    font-size: 2rem;
    color: #3c31ff;
    margin-bottom: 50px;
}
.project-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
}
.project-card{
    background: linear-gradient(to bottom, #3e34ff, #01421a);

    border-radius: 12px;
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(0,255,213,0.05);
}
.project-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0 255 213 0.2);
}
.project-info{
    padding: 20px;
    color: #f6f1f1;
}

.project-info h3{
    color: #00ffd5;
    margin-bottom: 10px;
}
.project-info p{
    font-size: 1rem;
    margin-bottom: 20px;
}

.view-btn{
  text-decoration: none;
  background-color: #00ffd5;
  color: #000;
  padding: 10px 10px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}
.view-btn:hover{
    background-color: red;
}

#contacts{
    padding: 60px 20px;
    background:rgb(0, 0, 33);
    color: #fff;
    text-align: center;
}
.section-title{
    font-size: 2rem;
    color: #3c31ff;
    margin-bottom: 50px;
}
.contact-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:50px;
    max-width: 800px;
    margin: auto;
}
form{
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 500px;
}

form input,
form textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    resize: none;
    background-color:rgb(201, 201, 201);
}

form button{
    background-color: burlywood;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
form button:hover{
    background-color: orange;
}
.contacts{
    margin-bottom: 30px;
}

.contact-info i{
    font-size: 20px;
    line-height: 2;
    color:#bda103;
    margin-bottom: 10px;
}
.contact-icons i{
    margin-left: 20px;
    color: #bda103;
    font-size: 30px;
}
.contact-icons i:hover{
    color: red;
    transform: translateY(-5px);
}