*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: 0 0%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.header{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    padding: 35px 12%;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 35px;
    color:rgb(55, 71, 79);
    font-weight: 700;
    transition: 0.3s ease;
}
.logo:hover{
    color:rgb(176, 190, 197);
    text-shadow: 0 0 25px rgb(98, 16, 199) ,
                 0 0 50px rgb(34, 27, 231);
    transform: scale(1.1);             
}
span{
    color: rgb(159, 168, 218);
}
.navbar a{
    font-size: 18px;
    color:rgb(144, 202, 249);
    font-weight: 700;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.navbar a:hover,.navbar a.active{
    color: black;
    border-bottom: 3px solid  rgb(47, 33, 16);
    
}
.contact{
    padding: 10px 28px;
    background-color: white;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
}
.contact:hover{
    background-color:black;
    box-shadow: 0 0 25px rgb(136, 167, 221);
    color:white;
}
.content{
    text-align: center;
  }
  .content h1{
    font-size: 100px;
    color: white;
    font-weight: 600;
  }
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 25px;
    border: 2px solid #fff;
    padding: 8px 50px;
    border-radius: 52px;  
  }
  .content a:hover{
  text-decoration: none;
  display: inline-block;
  color: rgb(0, 0, 0);
  background: #fff;
  }
.vdo{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
@media(min-aspect-ratio:16/8){
    .vdo{
        width: 100%;
        height: auto;
    }
  }
@media(max-aspect-ratio:16/8){
    .vdo{
        width: auto;
        height: 100%;
    }
  }
/*----------------------------------------About-----------------------------------------------------*/
.About{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;
    background-color: rgb(236, 239, 241);
}
.Acontent{
    max-width: 800px;
}
.Acontent h1{
    font-size: 60px;
    line-height: 1.2;
    color:black;
}
.Acontent p{
    font-size: 18px;
    margin:25px 0 30px;
}
.Aimge img{
    width:400px;
    height: 400px;
    align-items: center;
    border-radius: 10%;
}
/*--------------------------------------services------------------------------------------------------*/
.Services {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 30px 12% 0;
    background-color:rgb(84, 110, 122);
}
.section-header{
    text-align: center;
    margin-bottom: 50px;
   
}
.section-header .title{
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.2;
    padding-bottom: 30px;
}
.section-header p{
    font-size: 15px;
    color:rgb(238, 238, 238);
}

.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.card{
    width: 325px;
    background-color: rgb(187, 222, 251);
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgb(38, 50, 56);
    overflow: hidden;
    transition: transform 0.6s ease;
}
.card:hover{
    transform: translateY(-20px);
}
.card img{
    width:100%;
    height:auto;
    object-fit: cover;
}
.card-content{
    padding: 20px;
}
.card-content h1{
    font-size: 24px;
    margin-bottom: 10px;
}
.card-content p{
    font-size: 15px;
    color: black;
    margin-bottom: 20px;
}
/*------------------------------------contact us--------------------------------------------------------*/
.contus{
    color: black;
}
.contact-form{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;
}
.contact-form form{
    max-width: 50em;
    margin:1rem auto;
    text-align: center;
    margin-bottom: 3em;
}
.contact-form form .input-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-form form .input-box input ,
.contact-form form textarea {
    width: 40%;
    padding: 1.5em;
    font-size: 18px;
    color: black;
    background-color: rgb(176, 190, 197);
    border-radius: .8rem;
    margin: 1rem 1rem;
    resize: none;
}
.btnsend{
    padding: 15px 28px;
    background-color: black;
    color: aliceblue;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 300;
    transition: 0.3s ease;
    cursor: pointer;
}
.btnsend:hover{
    background-color: aliceblue;
    color: black;
    border: 2px solid black;
}
/*------------------------------------------------This is footer-------------------------------------------------------------------------------*/
.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color:rgb(176, 190, 197);
    backdrop-filter: blur(10px);
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color:black;
}
.footer .social a{
    font-size: 24px;
    color:black;
    border: 2px solid rgb(57, 73, 171);
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px rgb(57, 73, 171),0 0 10px rgb(100, 181, 246);
    transition: 0.3s ease;
}
.footer .social a:hover{
    transform: scale(1.2)translateY(-10px);
    color:white;
    border: 2px solid rgb(144, 202, 249); 
}
.footer ul{
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: rgb(255, 235, 238);
    border-bottom: 3px solid transparent;
    transition:0.3s ease;
}
.footer ul li a:hover{
    border-bottom: 3px solid rgb(5, 32, 54);

}
.footer ul li{
    display: inline-block;
    padding: 0 15px;
}
.footer .cright{
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color:black;
}
