@import url("./reset.css");
@import url("./bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --blue-color: #0056b2;
    --white-color: #fff;
    --dark-color: #000;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    background-color: #efefef;
}



header {
    background-color: #FFF;
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 999;
}

.navbar-brand h1 {
    font-size: 1.5rem;
}

.navbar-brand .logo-icon {
    text-align: center;
    font-size: 24px;
    color: var(--white-color);
    background: var(--blue-color);
}

.navbar-brand .logo-text {
    color: var(--blue-color);
}

main {
    min-height: 100vh;
}

.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px;
}

.banner .benner-title {
    text-align: center;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-size: 3rem;
}

.form-control {
    border: 1px solid #c7c7c7 !important;
    padding: 0.85rem 1rem !important;
    min-height: 52px;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #9fa6b2 !important;
}

.btn {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.category-list-container {
    padding: 110px 0;
    width: 100%;
    position: relative;
}

.category-list-container .category-block {
    border: solid 0.5px transparent;
}

.category-list-container .category-block:hover {
    border: solid 0.5px var(--blue-color);
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.75);
}

.category-list-container .category-block .category-title {
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    color: var(--dark-color);
}

.sss-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
}

.compony-list-images {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.company-location {
    font-size: 0.9rem;
    color: grey;
}

.cover-image {
    object-fit: cover !important;
}
