* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfcf8;
    color: #0f2233;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fdfcf8;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    transition: .3s;
}

.logo:hover{
    letter-spacing: 1px;
    transition: .3s;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #0f2233;
    font-weight: 500;
}

.contact a {
    text-decoration: none;
    color: #0f2233;
}

.hero {
    display: flex;
    padding: 60px;
    background-color: #fdfcf8;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-left .email {
    color: #e94b35;
    text-decoration: none;
    font-weight: 500;
}

.experience {
    font-size: 1.2rem;
    margin: 15px 0;
}

.services-summary {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    padding: 20px;
    border-radius: 10px;
    color: white;
    flex: 1;
    box-shadow: 0 0 10px grey;
    transition: .3s;
}

.service-card:hover{
    box-shadow: 10px 10px 10px grey;
    transition: .3s;
}

.service-card.green {
    background-color: #1c5e57;
}

.service-card.yellow {
    background-color: #f5a623;
}

.service-card.red {
    background-color: #e94b35;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.hero-right {
    flex: 1;
    text-align: center;
}

.hero-right img {
    max-width: 70%;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: .3s;
}

.hero-right img:hover{
    transition: .3s;
    box-shadow: 0 0 60px gold;
    margin-bottom: 30px;
    max-width: 72%;
}

.tagline {
    font-size: 1rem;
    margin-bottom: 10px;
}

.certification {
    font-size: 0.9rem;
    color: #555;
}

.experience-section {
    padding: 60px;
}

.latest-works {
    padding: 60px;
}

.works-grid {
    display: flex;
    gap: 20px;
}

.work-card {
    flex: 1;
    padding: 20px;
    border-radius: 15px;
    color: white;
    transition: .3s;
    box-shadow: 0 0 10px grey;
}

.work-card:hover{
    box-shadow: 10px 10px 10px grey;
    transition: .3s;
}

.work-card img {
    margin-top: 15px;
    max-width: 100%;
    border-radius: 10px;
}

.work-card.orange { background-color: #f5a623; }
.work-card.green { background-color: #1c5e57; }
.work-card.teal { background-color: #3bb2b8; }

.testimonials {
    padding: 60px;
    background-color: #fdfcf8;
}

.testimonial-grid {
    display: flex;
    gap: 20px;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: .3s;
}

.testimonial:hover{
    box-shadow: 10px 10px 10px pink;
    transition: .3s;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #fdfcf8;
}

footer a {
    color: #e94b35;
    text-decoration: none;
}

.footer-info {
    margin: 20px 0;
}