*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:sans-serif;
}

body{

    min-height:100vh;

    background:linear-gradient(
        135deg,
        #2e5aa7 0%,
        #86c5ff 50%,
        #dbeaa8 100%
    );

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 40px;

    background:rgba(255,255,255,0.4);

    backdrop-filter:blur(10px);

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;
}

.logo{

    font-size:24px;

    font-weight:bold;

    color:#2e5aa7;
}

.nav-link{

    display:flex;

    list-style:none;

    gap:25px;
}

.nav-link a{

    text-decoration:none;

    color:#2e5aa7;

    font-weight:bold;

    transition:0.3s;
}

nav-link a:hover{

    color:#ffa628;
}

.logo img{

    height:70px;

    width:auto;

    display:block;

    transition:0.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

/*header*/
.header{

    text-align:center;

    padding-top:140px;

    margin-bottom:60px;

}

.header h1{

    color:white;

    font-size:50px;

    margin-bottom:10px;

}

.header p{

    color:white;

    font-size:18px;

}

.design-grid{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    padding-bottom:80px;

}

.design-card{

    background:white;

    padding:20px;

    border-radius:25px;

    text-align:center;

    cursor:pointer;

    transition:0.4s;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.1);

}

.design-card{

    background:white;

    padding:20px;

    border-radius:25px;

    text-align:center;

    cursor:pointer;

    transition:0.4s;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.1);

}

.design-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:20px;

}

.design-card h3{

    margin-top:15px;

    color:#2e5aa7;

}

.fade-up{

    animation:
    slideUp 1s ease;

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:
        translateY(80px);

    }

    to{

        opacity:1;

        transform:
        translateY(0);

    }

}