body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.header_section {
    background-color: #4b208c;
    padding: 15px 0;
}

.header_section .navbar-brand span {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    color: #ffdd57 !important;
}

.service_section {
    padding: 60px 0;
}

.heading_container h2 {
    color: #4b208c;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.service_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service_container .box {
    margin: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: calc(100% / 5 - 30px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: left;
    transition: all 0.3s ease;
}

.service_container .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer_section {
    background-color: #4b208c;
    color: #fff;
    padding: 20px 0;
}

.footer_section p {
    margin: 0;
    text-align: center;
}