#logoContainer {
    max-width: 100%;  /* Ensures the container does not exceed the bounds of its parent */
    height: auto;     /* Keeps the container's height proportional to its width */
    text-align: center; /* Centers the logo inside the container */
}

.responsive-logo {
    max-width: 100%;      /* Ensures the image doesn't exceed the container's width */
    height: auto;         /* Keeps the aspect ratio */
    display: block;       /* Ensures the img element behaves like a block for centering */
    margin: 0 auto;       /* Centers the image horizontally within its container */
}

@media (max-width: 768px) {
    .responsive-logo {
        width: 80%; /* Slightly smaller logo on smaller screens */
    }
}

@media (min-width: 1200px) {
    .responsive-logo {
        width: 50%; /* Larger fixed width on larger screens if needed */
    }
}

#logoContainer img {
    max-width: 100%;   /* Ensures the image never exceeds the width of its container */
    max-height: 100%;  /* Ensures the image never exceeds the height of its container */
    height: auto;      /* Maintains the aspect ratio of the image */
}


#logoContainer {
    padding: 10px; /* Adjust padding as necessary */
    text-align: center; /* Center the image if needed */
}

#logoContainer img {
    width: 100%;   /* Full width of the container, height automatically adjusts */
    height: auto;  /* Keeps the aspect ratio intact */
}

@media (min-width: 992px) { /* Adjusts this breakpoint based on your layout's needs */
    #logoContainer img {
        max-width: 30%; /* Reduce max width on larger screens if the image is too big */
    }
}

/* Specific adjustments for larger screens */
@media (min-width: 992px) {
    .responsive-logo {
        max-width: 50%;   /* Restricts the maximum width to half of its container on large screens */
    }
}


@media (min-width: 992px){
    .typo-line{
        padding-left: 140px;
        margin-bottom: 40px;
        position: relative;
    }

    .typo-line .category{
        transform: translateY(-50%);
        top: 50%;
        left: 0px;
        position: absolute;
    }
}

#map{
    position:relative;
    width:100%;
    height: calc(100% - 60px);
    margin-top: 70px;
}

.places-buttons .btn{
    margin-bottom: 30px
}

.space-70{
    height: 70px;
    display: block;
}

.tim-row{
    margin-bottom: 20px;
}

.tim-typo{
    padding-left: 25%;
    margin-bottom: 40px;
    position: relative;
}
.tim-typo .tim-note{
    bottom: 10px;
    color: #c0c1c2;
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    left: 0;
    margin-left: 20px;
    position: absolute;
    width: 260px;
}
.tim-row{
    padding-top: 50px;
}
.tim-row h3{
    margin-top: 0;
}

.question-header {
    font-size: 28px;
    font-weight: 700;
    color: #4a4a4a; /* A more subdued, elegant color */
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(0, 123, 255, 0.7); /* Blended blue color for the underline */
    font-family: 'Lora', serif; /* Elegant serif font */
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 5px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.radio-group {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-group {
    margin-top: 15px;
}

.form-control {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
}

.radio-group .radio-option {
    margin: 0 15px;
}

.radio-group input[type="radio"] {
    display: none; /* Hide the actual radio button */
}

.radio-group label {
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff; /* Initial button color */
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px; /* Ensure buttons have a consistent width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.radio-group input[type="radio"]:checked + label {
    background-color: #28a745; /* Change color on selection */
    border-color: #28a745; /* Border color matches selected background */
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.radio-group label:hover {
    background-color: #0056b3; /* Darken on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.radio-group input[type="radio"]:checked + label:hover {
    background-color: #218838; /* Darken on hover for selected */
}

.dropdown-options select.form-control {
    width: 100%;  /* Adjust the width as needed */
    padding: 8px; /* Provides padding inside the select box */
    font-size: 16px; /* Ensures text is not too large */
    overflow: hidden; /* Prevents text from overflowing */
}

#employeeStatsTable thead th {
    text-align: center;
    background-color: #f2f2f2;
    color: #333;
}
#employeeStatsTable tbody td {
    text-align: center;
    vertical-align: middle;
}
#employeeStatsTable {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}
#companyCard .card-header-icon {
    color: #fff;
    background-color: #e91e63;
}

#companyCard .card-title {
    font-size: 24px;
    font-weight: 500;
}

#companyCard i.material-icons {
    vertical-align: middle;
    margin-right: 8px;
}

#companyCard .table td {
    vertical-align: middle;
}

#companyCard a {
    color: #2c3e50;
}
.review-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between items */
    flex-wrap: wrap; /* Allows wrapping if needed */
    margin-top: 20px;
}

.review-item {
    text-align: center;
    flex: 0 1 120px; /* Ensures items take up equal space but shrink if needed */
}

.review-item a {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}