* {
    padding: 0px;
    margin: 0px;
}
body {
    font-family: Arial, sans-serif;
}
.top-bar {
    position: relative;
    background-color: #cce7f6;
    padding: 10px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: #007bff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.top-bar span {
    margin-right: 15px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.top-bar a {
    margin-left: 10px;
    position: relative;
    z-index: 1;
}
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}
.category-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-menu .menu-item {
    position: relative;
}

.category-menu a {
    text-decoration: none;
    padding: 8px 15px;;
    color: black;
    font-weight: 600;
    transition: 0.3s;
    display: block;
}
.category-menu a:hover {
    color: #007bff;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 5px 0;
    z-index: 1000;
}

.submenu a {
    color: black;
    background: none;
    padding: 8px 15px;
    display: block;
}

.submenu a:hover {
    background: #f0f0f0;
}

/* Show submenu on hover */
.menu-item:hover .submenu {
    display: block;
}
.hero {
    background: url('../image/vector.jpg') no-repeat center center/cover;
    text-align: center;
    color: black;
    padding: 100px 20px;
}
.hero h1 {
    font-weight: bold;
}
.features {
    background-color: #333;
    color: white;
    padding: 10px;
}
.feature-item {
    text-align: center;
}
.feature-item .icon-box {
    background-color: #cfeaf7;
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    color: black;
}
.service-item img {
    width: 100%;
}
.service-item:hover{
    transform: translateY(-5px);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}
.service-item p {
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
    text-decoration: none !important;
}
.service a {
    text-decoration: none;
    color: black;
}
.icon-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f8f9fa;
}
.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-weight: bold;
}
.team-box {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}
.form-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}
.social-icons i {
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
}
.footer {
    background: #d9edf7;
    padding: 20px;
}
.footer-logo img {
    max-width: 150px;
}
.footer h5 {
    font-weight: bold;
}
.list-unstyled li a {
    text-decoration: none;
    color: black;
  }
  .review-card {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}
.star-rating {
    color: #fbc02d;
}
.google-icon {
    width: 20px;
    height: 20px;
}