@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
.uk-active-yellow {
    border-color: #f29b1d;
    background-color: #f29b1d;
    color: #fff;
}

.sidebar.another-after.--left {
    padding: 0 40px 0 0;
}

.sidebar.another-after {
    display: block;
    position: relative;
    height: 100%;
    padding: 0 0 0 40px;
    background-color: #f9f9f9;
}

.sidebar.another-after::after {
    display: block;
    z-index: -1;
    position: absolute;
    top: -70px;
    bottom: -70px;
    left: auto;
    width: 60vw;
    height: calc(80% + 140px);
    background-color: #f9f9f9;
    content: "";
}

#exchange {
    display: none;
}

/* Add styles for the popup */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#popup div {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 400px;
}

#client-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#client-form button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

#client-form button#close-popup {
    background-color: #f44336;
}

/* No Scroll */
.no-scroll {
    overflow: hidden;
}

.compulsory {
    color: red;
}
/* Modal */
.modal-header {
    background-color: #d4edda;
    color: #155724;
    border-bottom: 1px solid #c3e6cb;
}

.modal-content {
    border: 2px solid #c3e6cb;
    border-radius: 8px;
}

/* Modal Body - Padding and Font */
.modal-body {
    font-size: 16px;
    line-height: 1.5;
    color: #155724;
    background-color: #f8f9fa;
    padding: 20px;
}

/* Modal Footer - Alignment */
.modal-footer {
    border-top: 1px solid #c3e6cb;
    background-color: #f8f9fa;
    justify-content: flex-end;
}

.btn-close {
    color: #155724;
    opacity: 0.8;
}
.btn-close:hover {
    opacity: 1;
}

.modal-footer .btn-secondary {
    background-color: #d4edda;
    color: #155724;
    border: none;
}
.modal-footer .btn-secondary:hover {
    background-color: #c3e6cb;
}

.modal-content {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.team-members-grid.top {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

@media (max-width: 880px) {
    .team-members-grid.top {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
@media (max-width: 400px) {
    .team-members-grid.top {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

.testimonial-section {
    text-align: center;
    padding: 50px 20px;
}

.testimonial-section h1 {
    font-size: 2.5em;
    color: black;
    margin-bottom: 20px;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    scroll-behavior: smooth;
    flex-wrap: nowrap; /* Default: No wrapping for larger screens */
}

.testimonial-card {
    min-width: 300px;
    margin: 0 10px;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.client-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffb500;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3em;
    margin: 10px 0 5px 0;
    color: #333;
}

.client-role {
    font-size: 0.9em;
    color: gray;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-carousel {
        flex-wrap: wrap; /* Allow wrapping for smaller screens */
        justify-content: center; /* Center cards when stacked */
    }

    .testimonial-card {
        flex: 1 1 90%; /* Each card takes up 90% of the screen width */
        margin: 10px 0; /* Add vertical spacing */
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 1 1 100%; /* Each card takes up full width on mobile */
    }
}

.contact-page-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-page-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.team-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: cover;
    border-radius: 10%;
}

.team-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease;
}

.team-item.department {
    height: 100%;
}

.s-team h4 {
    font-size: 1.2em;
    margin: 0px 0;
    color: #333;
}

.s-team p {
    margin: 0;
}

.s-team .team-name {
    font-weight: 500;
    color: #555;
}

.s-team .team-role {
    font-size: 0.9em;
    color: #777;
}

.s-team .uk-grid-margin {
    margin-top: 10px;
}

.s-team .team-item.other {
    margin-bottom: 5px;
}

.s-team .team-item.other .team-name {
    font-weight: 500;
    color: #333;
}

.s-team .team-item.other .team-role {
    font-size: 0.8em;
    color: #777;
}

.swiper-button-next {
    display: none !important;
}

.swiper-button-prev{
    display: none !important;
}
