/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/

/* Client Logo Carousel Styles (for scrolling logos) */
.client-logo-carousel {
    padding: 20px 0;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.client-logo-item img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .client-logo-item {
        height: 60px;
        padding: 5px 10px;
    }
    
    .client-logo-item img {
        max-height: 40px;
        max-width: 120px;
    }
}

/* Client Logo Grid Styles (for clients page) */
.client-logo-grid-item {
    margin-bottom: 30px;
}

.client-logo-wrapper {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-wrapper:hover {
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.client-logo-wrapper img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* Testimonial Box Styles */
.testimonial-box {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.testimonial-icon {
    margin-bottom: 20px;
}

/* Career Page Styles */
.job-card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.job-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.job-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.job-title {
    color: #333;
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-location,
.job-type {
    color: #666;
    font-size: 14px;
}

.job-requirements {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.job-requirements li:before {
    content: "✓";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.application-form {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
}

.site-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.site-button:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Contact Page Styles */
.contact-info-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-info-box .icon-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Responsive adjustments for career page */
@media (max-width: 768px) {
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .application-form {
        padding: 20px !important;
    }
}

/* New Section Background Colors */
.bg-light-gray {
    background-color: #f8f9fa;
}

.bg-light-blue {
    background-color: #e8f4f8;
}

.bg-off-white {
    background-color: #fafafa;
}

/* Introduction Section Styles */
.section-full .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.section-full .lead strong {
    color: #ff5e14;
    font-weight: 700;
}

.bg-light-gray .mt-thum-bx img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Services List Styles */
.services-list {
    column-count: 2;
    column-gap: 30px;
}

.services-list li {
    break-inside: avoid;
    page-break-inside: avoid;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5px;
}

.services-list li:before {
    color: #ff5e14 !important;
}

@media (max-width: 991px) {
    .services-list {
        column-count: 1;
    }
}

/* Steamer Agency Section */
.bg-light-blue .mt-thum-bx img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.bg-light-blue .section-head h2 {
    color: #333;
}

.bg-light-blue p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* Signature Box Styles */
.signature-box {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.signature-box p {
    margin: 0;
    line-height: 1.6;
}

.signature-box strong {
    color: #333;
    font-size: 18px;
}

.signature-box .text-muted {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quality Policy Section */
.bg-light-gray .mt-box p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.quality-policy-box {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quality-policy-box:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.quality-policy-icon {
    display: inline-block;
}

.quality-policy-box h3 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.quality-policy-box .lead {
    color: #555;
    font-size: 18px;
    font-weight: 400;
}

.quality-list {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.quality-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.quality-list li:before {
    color: #ff5e14 !important;
}

.quality-commitment {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.quality-commitment p {
    color: #666;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Section Spacing Improvements */
.section-full {
    position: relative;
}

.section-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .section-head h2 {
        font-size: 32px;
    }
    
    .bg-light-blue .row {
        flex-direction: column-reverse;
    }
    
    .bg-light-blue .col-lg-6 {
        margin-bottom: 30px;
    }
}

/* Team Member Box Styles */
.team-member-box {
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.team-member-box:hover {
    transform: translateY(-5px);
}

.team-member-image {
    display: inline-block;
    margin-bottom: 20px;
}

.team-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member-box:hover .team-member-photo {
    border-color: #ff5e14;
    transform: scale(1.05);
}

.team-member-box h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.team-member-box:hover h4,
.team-member-box:hover .mt-tilte {
    color: #ff5e14 !important;
}

.team-member-box .text-muted {
    color: #888;
    font-size: 13px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .team-member-box {
        margin-bottom: 20px;
    }
    
    .team-member-photo {
        width: 120px;
        height: 120px;
    }
}

/* Branch Box Styles */
.branch-box {
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.branch-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.branch-icon {
    display: inline-block;
}

.branch-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ff5e14;
}

.branch-address p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .branch-box {
        margin-bottom: 30px;
    }
}