```css
/* =========================
File: style.css
Website: Freelancer Asha
========================= */


/* =========================
GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* =========================
GLOBAL STYLE
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f5f7fb;
    color:#1b1b1b;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

img{
    width:100%;
}
.whatapps{
    color:#000;
}
a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/* =========================
SECTION TITLE
========================= */
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#0f172a;
    margin-bottom:10px;
}

.section-title p{
    color:#64748b;
    font-size:16px;
}


/* =========================
BUTTONS
========================= */
.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.4s;
}

.primary-btn{
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:#fff;
    box-shadow:0 10px 25px rgba(37,99,235,0.3);
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    border:2px solid #2563eb;
    color:#2563eb;
    margin-left:15px;
}

.secondary-btn:hover{
    background:#2563eb;
    color:#fff;
}

.small-btn{
    padding:12px 22px;
    margin-top:15px;
    background:#2563eb;
    color:#fff;
    border-radius:30px;
}

.small-btn:hover{
    background:#0f172a;
}


/* =========================
HEADER
========================= */
.header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
}

.logo span{
    color:#2563eb;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#0f172a;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#2563eb;
}


/* =========================
HERO SECTION
========================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#eff6ff,#ffffff);
}

.hero-content{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:60px;
}

.hero-text h1{
    font-size:65px;
    color:#0f172a;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h2{
    font-size:22px;
    color:#2563eb;
    margin-bottom:20px;
    font-weight:600;
}

.hero-text p{
    font-size:18px;
    color:#475569;
    margin-bottom:35px;
    max-width:600px;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-card{
    width:100%;
    max-width:400px;
    background:#fff;
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.hero-card i{
    font-size:70px;
    color:#2563eb;
    margin-bottom:25px;
}

.hero-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#0f172a;
}

.hero-card p{
    color:#64748b;
}


/* =========================
ABOUT SECTION
========================= */
.about-wrapper{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:50px;
    align-items:center;
}

.about-box{
    height:350px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(37,99,235,0.3);
}

.about-box i{
    font-size:120px;
    color:#fff;
}

.about-content p{
    color:#475569;
    margin-bottom:20px;
    font-size:17px;
}

.about-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.info-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.info-card h3{
    color:#2563eb;
    margin-bottom:10px;
}


/* =========================
SERVICES SECTION
========================= */
.services{
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:#f8fafc;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.service-card:hover{
    transform:translateY(-10px);
    background:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.service-card i{
    font-size:50px;
    color:#2563eb;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
    color:#0f172a;
}

.service-card p{
    color:#64748b;
}


/* =========================
SKILLS SECTION
========================= */
.skills-wrapper{
    max-width:850px;
    margin:auto;
}

.skill{
    margin-bottom:30px;
}

.skill-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    font-weight:600;
}

.skill-bar{
    width:100%;
    height:14px;
    background:#dbeafe;
    border-radius:30px;
    overflow:hidden;
}

.skill-progress{
    height:100%;
    border-radius:30px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
}

.html{
    width:95%;
}

.css{
    width:92%;
}

.webdesign{
    width:90%;
}

.development{
    width:88%;
}

.marketing{
    width:90%;
}

.seo{
    width:85%;
}

.graphic{
    width:93%;
}

.branding{
    width:89%;
}


/* =========================
PORTFOLIO
========================= */
.portfolio{
    background:#fff;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.project-card{
    background:#f8fafc;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-image{
    height:220px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    display:flex;
    align-items:center;
    justify-content:center;
}

.project-image i{
    font-size:80px;
    color:#fff;
}

.project-content{
    padding:30px;
}

.project-content h3{
    margin-bottom:15px;
}

.project-content p{
    color:#64748b;
}


/* =========================
WHY CHOOSE ME
========================= */
.choose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.choose-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:25px;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.choose-card:hover{
    transform:translateY(-8px);
}

.choose-card i{
    font-size:50px;
    color:#2563eb;
    margin-bottom:20px;
}

.choose-card h3{
    color:#0f172a;
}


/* =========================
TESTIMONIALS
========================= */
.testimonials{
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#f8fafc;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card p{
    color:#475569;
    margin-bottom:25px;
    font-style:italic;
}

.testimonial-card h4{
    color:#2563eb;
}


/* =========================
CONTACT SECTION
========================= */
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h3{
    font-size:30px;
    margin-bottom:20px;
    color:#0f172a;
}

.contact-info p{
    color:#64748b;
    margin-bottom:30px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    font-size:18px;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#2563eb;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:none;
    outline:none;
    background:#f1f5f9;
    border-radius:15px;
    margin-bottom:20px;
    font-size:15px;
    font-family:'Poppins', sans-serif;
}


/* =========================
FOOTER
========================= */
.footer{
    background:#0f172a;
    color:#fff;
    padding-top:80px;
}

.footer-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:50px;
}

.footer-brand h2{
    margin-bottom:20px;
}

.footer-brand p{
    color:#cbd5e1;
}

.footer-links h3,
.footer-social h3{
    margin-bottom:20px;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li a{
    color:#cbd5e1;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#1e293b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.social-icons a:hover{
    background:#2563eb;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:25px 0;
    color:#cbd5e1;
}


/* =========================
RESPONSIVE DESIGN
========================= */
@media(max-width:992px){

    .hero-content,
    .about-wrapper,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .hero{
        padding:120px 0;
    }

    .hero-text{
        text-align:center;
    }

    .hero-text h1{
        font-size:50px;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .secondary-btn{
        margin-left:0;
    }

    .about-image{
        order:-1;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .hero-text h1{
        font-size:40px;
    }

    .hero-text h2{
        font-size:18px;
    }

    .hero-text p{
        font-size:16px;
    }

    .about-info{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .hero-text h1{
        font-size:34px;
    }

    .hero-card{
        padding:35px;
    }

    .contact-form{
        padding:30px 20px;
    }

}
```
