body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-header {
    background-color: #ffffff;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.navbar-left, 
.navbar-right {
    display: flex !important;
    align-items: center;
}

.Logo {
    height: 50px !important;
    width: auto !important;
    display: block;
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 0 15px;
    white-space: nowrap;
}

.nav-item:hover {
    color: #0056b3;
}

.separater {
    width: 1px;
    height: 20px;
    background-color: #ccc;
    margin: 0 10px;
    display: inline-block;
}

@media (max-width: 600px) {
    .main-header {
        height: auto;
        flex-direction: column;
        padding: 10px;
    }
    .navbar-left, .navbar-right {
        margin: 5px 0;
    }
    .separater {
        display: none;
    }
}

.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08 );
    padding: 30px;
    text-align: center;
    max-width: 320px;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background-color: #d4af37;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.icon-wrapper {
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 48px;
}

.service-card h3 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    display: inline-block;
    text-decoration: none;
    color: #007bff; /* Blue for links */
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 90%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 20px;
    }
    .icon-wrapper {
        font-size: 40px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 14px;
    }
}