@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --overlay-color: #03a9fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 0.5s;
}

/* .showcase.active {
    right: 300px;
} */

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase .logo {
    text-transform: uppercase;
    cursor: pointer;
}

.showcase .logo a {
    text-decoration: none;
    color: inherit;
    font-size: 1.5em; /* Ensure this matches the about page */
    font-weight: 600; /* Ensure this matches the about page */
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url('menu.png') center/30px no-repeat;
    cursor: pointer;
}

.toggle.active {
    background: url('close.png') center/25px no-repeat;
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    /* transition: 0.5s; */
    transform: translateX(100%);
    z-index: 1;
}

/* .menu.active {
    transform: translateX(0);
} */

.menu ul {
    position: relative;
    list-style: none;
}



.menu ul li a {
    text-decoration: none;
    font-size: 24px;
    color: #111;
}

.menu ul li a:hover {
    color: var(--overlay-color);
}

.service-grid {
    background: #f9f9f9;
    padding-top: 50px;
}

.service-title h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color:black
}

.service-wrap {
    border: 1px solid #e6e6e6;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s;
}

.service-icon i {
    font-size: 2.5rem;
    color: #e8bc00;
    margin-bottom: 1rem;
}

.service-wrap:hover {
    background-color: #f0f0f0;
}

.service-wrap:hover h4,
.service-wrap:hover p {
    color: #000;
}

.service-wrap h4 {
    font-weight: 600;
    color: #1e2331;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.service-wrap p {
    color: #333;
    margin-bottom: 1rem;
}
