body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}   
*{
    box-sizing: border-box;
    font-family: "DM Sans";
}
header{
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 1px 1rem;
    align-items: center;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
}
header img{
    max-width: 200px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
}

nav ul{
    display: flex;
    text-decoration: none;
    list-style: none;
}
nav ul li a{
    color: #333;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 1rem;
    transition: all ease 0.15s;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

nav ul li a:hover{
    color: black;
}

.hero {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(30%);
  z-index: 0;

}   



.hero-content{
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10rem 0;
    width: 60%;
}

.read-more{
    display: flex;
    border: 1px solid  rgba(211,211, 211, 0.6);
    border-radius: 0.4rem;
    gap: 1rem;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all ease-in 0.15s;
}

.read-more:hover{
    border: 1px solid white;
}
.read-more p{
    margin: 0;
    padding: 0.4rem;
    font-size: clamp(0.8rem, 2vw, 1rem);

}
.fa-solid {
    margin-right:8px ;
}

.heading h1{
    font-size:4rem;
    margin: 20px 0;
    line-height: 4rem;
}

.heading p{
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 20px 0;
    width: 100%;
}

.cta{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
}

.cta #btn{
    background-color: white;
    border: none;
    padding: 0.5rem 0.6rem;
    border-radius: 0.5rem;
    color: black;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    transition: all ease 0.35s;
}


.cta #btn:hover{
    background-color: black;
    color: white;
}

.technologies {
  background: #fff7ed;
  padding: 2rem 0;
  text-align: center;
}

.technologies p{
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-size: clamp(1rem , 2vw , 1.5rem);
    margin-bottom: 3rem;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.scrolling {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.scrolling img {
  height: 2.15rem;
  margin: 0 2rem;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.business{
    background: linear-gradient(to right, #2563eb, #6b21a8);
    padding: 1rem ;
    color: white;
    display: flex;
    justify-content: center;
}
.business-content{
    width: 80%;
}
.business-content h1{
    font-size: 2.5rem;
}

.business-content p{
    font-size: 1.2rem;
    color: #c4c4c4;
}

.sign-in-cta{
   display: flex;
   justify-content: center;
   align-items: center;
    padding: 10px ;
}

.sign-in-cta{
    border-radius: 8px;
    border: none;
    margin-right: 16px;
    display: flex;
    justify-content: center;
    
}

#signin{
    color: #2563eb;
    background-color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
     margin-right: 10px;
    cursor: pointer;
    transition: all ease 0.15s;
    
}

#signin:hover{
    background-color: #adbcdc;
}

#create{
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all ease 0.15s;
}

#create:hover{
    background-color: #e7e7e721;
}

.why-us{
    display: flex;
    flex-direction:column;
    padding: 2rem ;
    justify-content: center;
    align-items: center;

    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.content-head{
    padding: 1rem;

}

.content-head p{
    font-size: 1.2rem;
    padding:  0 1rem; 
    color: #333;
}

.content-flex{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin:0 1rem;
}

.feature{
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: first baseline;
    margin: 1rem;
    padding: 2rem ;
    transform: rotate(-2deg);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.15s;
}
.feature:hover{
    border-radius: 4px;
    box-shadow: 0 20px 16px rgba(0, 0, 0, 0.1);
    transform: rotate(0);
    
}

.mark i{
    font-size: 1.5rem;
    color: #2563eb;
}

.feature-item .head{
    color: black;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
}

.feature-item .feature-desc{
    padding: 0 1rem 0 0 ;
    color: #333333ba;
    font-weight: 450;

}

.feature-item{
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-left: 10px;

}

.services{
    padding: 1rem 3rem;
    line-height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
}
.services-head{
    display: flex;
    flex-direction: column;
    justify-items: center;

}

.serv-h {
    background-color: lightblue;
    color:#2563eb;
    font-weight: 600;
    padding: 0.5rem ;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 1rem;
    border-radius: 1rem;
    
}
#serv-h1 {
    line-height: 3rem;
    font-size: 3rem;
    margin: 1rem;
    letter-spacing: 0.1rem;

}

.service-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;

    align-items: center;
}

.box h2{
    line-height: 2rem;
    margin-bottom: 0;
    
}
.box p{
    color: #4b5563;
    line-height: 1.5rem;
}


.box ul{
    list-style:none;
    padding: 0.3rem 0;
    margin-top: 0;
    display: flex;
    flex-direction: column ;
    gap: 1rem;
    color: #4b5563;
    width: 100%;
    transition: all ease-in-out 0.3s;
}

.box span{
    display: none;
}

.box:hover span{
    display: inline-block;
}

.box:hover ul{
    padding-left: 0.6rem;
}
.box{
    transition: all ease-in 0.2s;
    display: flex;
    justify-content: left;
    flex-direction: column;
    align-items: last baseline;
    text-align: left;
    padding: 1rem 2rem;
    margin: 0.8rem 1rem;
    border-radius: 0.7rem;
   background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.box:hover{
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.box-1{
   background: linear-gradient(135deg, #e0f7fa, #f1f8e9);

}
.box-2{
    background: linear-gradient(135deg, #fffde1, #fbd3e9);

}
.box-3{
   background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}
.box-4{
    background: linear-gradient(135deg, #fdeff9, #ecf0f1);
}

.box button{
    border:none;
    padding: 0.7rem 1rem;
    background-color: white;
    color: black;
    font-weight: 400;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all ease-in-out 0.15s;
}

.box button:hover{
    color: #2563eb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:704px){
    .service-box{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .footer-nav{
        display: flex;
        flex-direction: column;
    }
}

.git{
    background: linear-gradient(135deg, #c3dafe, #60a5fa, #2563eb);
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.form{
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    box-shadow: -10px 12px 0px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}
    

form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form h1{
    margin-bottom: 3rem;
}

.form-group {
  position: relative;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0.5rem 0.5rem;
  font-size: clamp(12px ,2vw, 2rem);
  border: 1px solid #ccc;
  border-radius: 4px;
  background: none;
  outline: none;
  resize: none;
  
}


.form-group label {
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  color: #888;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
  background: white;
  padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.4rem;
  font-size: 0.75rem;
  color: #2563eb;
  
}

.form button{
    width: 100%;
    background-color: #2564ebdc;
    padding: 1rem;
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 2rem;
    transition: all ease 0.15s;
    cursor: pointer;
}
.form button:hover{
    transform: scale(1.01);
    background-color: #2563eb;
}

.footer{
    background: linear-gradient(135deg, #0f172a);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;

}

.footer-head{
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center;
}

.left-head{
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin:0;
    padding: 0;
}
.right-head ul{
        display: flex;
        padding: 1rem;
        margin: 1rem;
        gap: 2rem;
        justify-content: center;
        align-items: center;
}
.right-head ul li {
    list-style: none;
    font-size: 1.2rem;
    background-color: #1f2937;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 10px;
    border-radius: 20px;
    color: #8490a2;
    cursor: pointer;
    transition: all ease-in 0.15s;
}

.right-head ul li:first-child:hover{
    color: #1877F2;
}
.right-head ul li:nth-child(2):hover{
    color: #E1306C;
}
.right-head ul li:nth-child(3):hover{
    color: #1DA1F2;
}
.right-head ul li:nth-child(4):hover{
    color: #0A66C2;
}
.right-head ul li:nth-child(5):hover{
    color: #FF0000;
}

.footer img{
    width: 8rem;
}


@media  screen and (max-width:616px) {
    .footer-head{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .footer img{
        margin: auto;
    }
}


.footer-nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
    text-align: center;
}

li{
    list-style: none;
}
.about nav ul{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: center;
    padding-bottom: 1rem;
}

.about nav ul li{
    padding-bottom: 1rem;
    color: #bcbcbc;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 500;
    transition: all ease-in-out0.2s;
}
.about nav ul li:hover{
    color: white;
}
.about h3{
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
}

hr{
    border: 1px solid #8888881e;
    width: 100%;
}


.footer-foot{
    display: flex;
    justify-content: space-between;    
    text-align: center;
    padding: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-self: center;
}

.left{
    text-align:left;
    padding: 0;
    margin: 0;
}
.left h3{
    font-size: 1.3rem;
    padding: 0;
    margin: 0;
}

.left p{
    padding: 0;
    margin-top:1.5rem ;
   color: #bcbcbc;
   font-size: 1.1rem;
}
.right{
    display: flex;
    flex-wrap: wrap;
    margin: 1rem;
    justify-content: left;
}
.right input{
    height: 50px;
    background-color:#2a3141;
    padding: 0 6rem 0 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px 0px 0px 4px;
    color: white;
}

.right input::placeholder{
    color: #bcbcbc;
    font-weight: 500;
}

.right button{
    height: 50px;
    background-color: #2563eb;
    border: none;
    border-radius: 0 4px 4px 0;
    color: white;
    padding: 0 3rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all ease-out 0.15s;
    outline: none;
    resize: none;
}

.right button:hover{
    background-color: #2564eb9c;
}

