@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Exo';
}
.container
{
    min-height: 100vh;
    width: 100%;
    background: rgb(17, 237, 237);
    background: linear-gradient(155deg, 
    rgba(17, 237, 237, 0.3) 0%,
    rgba(237, 89, 222, 0.1) 39%,
    rgba(17, 237, 237, 0.3) 66%,
    rgba(237, 89, 222, 0.3) 85%
    );
    position: relative;
}
.container:after
{
    position: absolute;
    top: 18%;
    right: 15%;
    content: "";
    height: 550px;
    width: 550px;
    background-color: #104998;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.header
{
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: #fff;
    position: relative;
    position: fixed;
    z-index: 9999;
    transition: .6s;
}
.header .logo
{
    margin-top: 0.5%;
}
ul li
{
    display: inline-block;
    margin: 0 8px;
}
ul li a
{
    position: relative;
    color: #1c1c1c;
}
ul li a:after
{
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #1c1c1c;
    transition: .6s;
}
ul li a:hover:after
{
    width: 100%;
}
button
{
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.1);
    outline: none;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 1s;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
button:after
{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: circle(0% at 50% 100%);
    transition: .6s;
    background-color: #1c1c1c;
    z-index: -1;
}
button:hover:after
{
    clip-path: circle(130% at 50% 100%);
}
button:hover
{
    color: #fff;
}
button i{
    transform: rotate(-45deg);
    margin-left: 5px;
}
.header .fa-bars
{
    font-size: 1.3rem;
    background-color: #1c1c1c;
    color: #fff;
    padding: 12px;
    padding-right: 30px;
    border-radius: 3px;
    display: none;
    transition: .6s;
    border: 2px solid #1c1c1c;
}
.header .fa-bars:hover
{
    background-color: #fff;
    color: #1c1c1c;
}
/* main */
.hero
{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 0 8%;
}
.hero .content
{
    min-height: 650px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2rem;
}
.hero .content h1
{
    font-size: 5rem;
    letter-spacing: 1px;
    line-height: 4.2rem;
    margin-top: 10rem !important;
    margin: 10px 0;
}
.hero .content p
{
    font-size: 1.5rem;
    letter-spacing: 1px;
    width: 70%;
    margin-top: 5rem;
}
.hero .content button
{
    margin-top: 5rem;
    background-color: #1c1c1c;
    color: #fff;
}
.hero .content button:after
{
    background-color: #000;
}
.hero-image
{
    height: 100%;
    width: 60%;
    z-index: 1;
    margin-top: 7rem;
}
.hero-image img
{
    height: 90%;
    width: 90%;
}
/* Service Section */
.service
{
    min-height: 680px;
    width: 100%;
    display: flex;
    padding: 5% 8%;
    flex-direction: column;
    background: rgb(234, 250, 26);
    background: linear-gradient(155deg,
    rgba(234, 250, 26, 0.05) 0%,
    rgba(237, 89, 222, 0.05) 39%,
    rgba(41, 200, 241, 0.05) 66%,
    rgba(237, 89, 222, 0.05) 100%);
}
.service h1
{
    margin-bottom: 28px;
    font-size: 3.5rem;
    font-weight: 800;
}
.service .cards
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.service .cards .card
{
    height: 420px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12% 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
}
.cards .card h2
{
    font-weight: 600;
    margin: 16px 0;
    margin-bottom: 25px;
}
.resume-section
{
    padding: 100px 8%;
    background: rgb(26, 250, 44);
    background: linear-gradient(93deg, rgba(26, 250, 44, 0.1) 10%, rgba(237, 89, 299, 0.1) 94%);
}
.resume
{
    padding: 80px 8%;
    border: 1px solid #000;
    background-color: rgb(255, 255, 255);
}
.resume h1
{
    font-size: 3rem;
    font-weight: 600;
    background-image: -webkit-linear-gradient(180deg, #9cdef8, #4548ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.card-wrapper
{
    display: flex;
    justify-content: space-between;   
}
.card-wrapper .card
{
    width: 40%;
}
.card-wrapper h3
{
    margin-top: 60px;
    color: #aaaab7;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaaab7;
}
.card-wrapper h2
{
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
}
.card-wrapper p
{
    color: #4c4c4c;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.clients h3
{
    margin-top: 60px;
    color: #aaaab7;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaaab7;
}
.clients .clientImage
{
    display: flex;
    flex-wrap: warp;
    justify-content: center;
    gap: 28px;
}
.clients.clientImage img
{
    width: 20%;
    height: 40px;
    margin-right: 8%;
    margin-top: 50px;
}
.skills
{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}
.skills div
{
    width: 40%;
}
.skills h2
{
    margin-top: 60px;
    color: #aaaab7;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaaab7;
}
.skills p
{
    color: #4c4c4c;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 40px;
}
.Skill_image img
{
    margin-right: 5%;
    margin-top: 50px;
    width: 16%;
}
/* Project Section */
.project-wrapper
{
    background: rgb(26, 250, 44);
    background: linear-gradient(93deg, rgba(26, 250, 44, 0.1) 10%, rgba(237, 89, 299, 0.1) 94%);
}
.project
{
    padding: 80px 8%;
}
.project h1
{
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 60px;
}
.project .card
{
    padding: 60px 40px 0 40px;
    background-color: rgb(243, 288, 172);
    display: flex;
    justify-content: space-between;
}
.project .card .details
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 40%;
    align-items: flex-start;
}
.project .card .details h2
{
    font-size: 3rem;
    font-weight: 600;
}
.project .card .details p
{
    font-size: 18px;
    color: #4c4c4c;
    margin: 10px 0;
}
.project .image
{
    width: 50%;
}
.project .image img
{
    width: 100%
}
/* Footer Section */
.footer
{
    padding: 100px 8%;
    background: rgb(255, 255, 254);
    background: linear-gradient(163deg,
    rgba(255, 255, 254, 1)0%,
    rgba(255, 255, 155, 0.5) 21%,
    rgba(255, 255, 232, 1) 32%,
    rgb(255, 255, 254) 85%,
    rgb(255, 255, 155) 1000%);
}
.footer-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(76, 76, 76, 0.4);
    padding-bottom: 80px;
}
.footer-content h1
{
    font-size: 3rem;
}
.bottom-content
{
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
}
.bottom-content .icons
{
    display: flex;
    gap: 20px;
}
.bottom-content .icons .icon
{
    height: 40px;
    width: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    position: relative;
    transition: .6s;
}
.bottom-content .icons .icon i
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
}
.bottom-content .icons .icon:hover
{
    transform: translateY(-4px);
}
.navbg
{
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 2px solid #000;
}
@media (max-width: 1100px)
{
    .header .fa-bars
    {
        display: block;
    }
    ul
    {
        position: absolute;
        background-color: #fff;
        top: 100%;
        left: 0;
        width: 100%;
        transition: .6s;
        border-bottom: 2px solid #1c1c1c;
        opacity: 0;
    }
    ul li
    {
        display: block;
        margin: 18px 0;
        padding: 8px 0;
        padding-left: 10% !important;
        border-bottom: 0.2px solid rgba(0, 0, 0, 0.2);
    }
    ul li:last-child
    {
        border: none;
    }
    .show
    {
        opacity: 1;
    }
    .container:after
    {
        right: 5%;
    }
    .hero
    {
        flex-direction: column;
    }
    .hero .content button
    {
        padding: 40px 70px;
        font-size: 2rem;
        margin-top: 10rem;
    }
    .hero-image,.hero .content
    {
        margin-top: 7rem;
        width: 100%;
        align-items: center;
    }
    .hero .content
    {
        min-height: 460px;
        padding: 5% 0;
        justify-content: flex-start;
        text-align: center;
    }
    .hero .content p
    {
        font-size: 2rem;
    }
    .container:after
    {
        top: 50%;
    }
    .hero-image img
    {
        width: 100%; 
    }
    .service .cards
    {
        grid-template-columns: repeat(1, 1fr);
    }
    .service .cards .card
    {
        width: 100%;
        height: 320px;
        padding: 5% 8%;
    }
    .service h1
    {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 35px;
    }
}
@media(max-width: 900px)
{
    resume h1
    {
        text-align: center;
    }
    .clients
    {
        text-align: center;
    }
    .project-wrapper h1
    {
        font-size: 2.5rem;
        text-align: center;
    }
    .footer-content h1
    {
        font-size: 1.5rem;
        margin: 12px 0;
    }
    .bottom-content
    {
        flex-direction: column;
        align-items: center;
    }
}
@media(max-width: 768px)
{
    .resume h1
    {
        text-align: center;   
    }
    .card-wrapper
    {
        flex-direction: column;
        text-align: center;
    }
    .card-wrapper .card
    {
        width: 100%;
    }
    .clients .clientImage img
    {
        display: flex;
        justify-content: center;
    }
    .skills
    {
        flex-direction: column;
        text-align: center;
    }
    .skills div
    {
        width: 100%;
    }
    .project .card
    {
        flex-direction: column;
        text-align: center;
    }
    .project .card .details
    {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .project .image
    {
        width: 100%;
    }
}
@media(max-width: 500px)
{
    .hero .content
    {
        margin-top: 1rem;
    }
    .hero .content h1
    {
        font-size: 2.5rem;
    }
    .hero-image
    {
        padding-left: 60px;
        margin-top: 0px;
    }
    .hero-image img
    {
        width: 90%;
    }
    .header .logo img
    {
        width: 100%;
    }
}