*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
body{
    min-height: 100vh;
    background-image: linear-gradient(130deg,#B8E7FA,#E6E6FA);
}
/* header start  */
#header{
    background-color: white;
    height: 112px;
    border-bottom: 1px solid #C6DBFF;
}
.header-content{
    width: 87.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 0 auto;
    padding: 24px 0;
}
.logo{
    font-size: 42px;
    font-weight: 800;
}
span{
    color: #FFA500;
}
.btn {
    padding: 17px 24px;
    background: linear-gradient(90deg, #FFA500,#FFD447);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0,0.25);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* header end  */

/* banner start  */
.banner-container{
    width: 87.5%;
    margin: 100px auto 100px auto;
    background-color: #E6EDF9;
    padding: 40px 60px;
    border-radius: 16px;
    text-align: center;
}
.banner-container img{
    width: 240px;
    margin-bottom: 32px;
}
.banner-container h2{
    color: #0D1321;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}
.banner-container p{
    color: #0D1321;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
}
/* banner end  */

/* blog start  */
.heading-elements{
    width: 59.16%;
    margin: 0 auto 0 auto;
    text-align: center;
}
.heading-elements h2{
    color: #0D1321;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}
.heading-elements p{
    font-size: 16px;
    font-weight: 400;
    color:#0D1321;
    margin-bottom: 48px;
}

.blog-box{
     width: 87.5%;
    background-color: #E6EDF9;
    border-radius: 16px;
    margin: 0 auto 0 auto;
    padding: 48px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}
.blog-content h3{
    color: #0D1321;
    opacity: 70%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}
.blog-content p{
    color: #0D1321;
    opacity: 70%;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
}
/* blog end  */

/* inspiration start  */
.inspiration-box{
    width: 59.16%;
    margin: 0 auto 0 auto;
    border-radius: 16px;
    border: 1px solid rgba(122, 122, 122, 0.562);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 32px;
    margin-bottom: 100px;
}
.inspiration-box iframe{
    width: 100%;
    height: 500px;
    border-radius: 16px;
}
/* inspiration end  */

/* target-start  */
.target-box{
    width: 87.5%;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 100px;
}
.tech-card{
    width: 28.28%;
    padding: 40px 40px;
    background: linear-gradient(0deg, #E6EDF9, #9DE5FF);
    border-radius: 16px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}
.tech-card h2{
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 800;
    color: #0D1321;
}
.tech-card p a{
    color: #0D1321;
    font-size: 16px;
    font-weight: bold;
}
/* target end  */

/* footer start  */
.footer-area{
    background-color: white;
    border-top: 1px solid #C6DBFF;
    padding: 32px 100px;
}
.footer-content{
    display: flex;
    justify-content: space-between;
}
.commitment p{
    color: #0D1321;
    font-size: 18px;
    font-weight: 600;
}
.social img{
    margin-right: 10px;
    width: 24px;
}
