/* Service Page Styles */

/* Breadcrumb Styles */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    margin: 0 8px;
}

.breadcrumb-item a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #20c997;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Service Hero Section */
.service-hero-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.service-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.service-hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.service-badge i {
    color: #ffd700;
}

.yellow-badge {
    background: linear-gradient(135deg, #ffc107, #ff8f00) !important;
    color: #212529 !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.yellow-badge i {
    color: #212529 !important;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero-title .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.service-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

.service-hero-stats .stat-item {
    text-align: center;
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    transition: transform 0.3s ease;
}

.service-hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-hero-stats .stat-number {
    font-weight: 700;
    color: #28a745;
    display: block;
    margin-bottom: 5px;
}

.service-hero-stats .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* Removed service-hero-visual section */

.truck-animation {
    position: absolute;
    bottom: 0px;
    left: -100px;
    animation: truckRun 25s linear infinite;
    z-index: 0;
    height: unset !important;
}

.truck-animation img {
    width: 230px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

@keyframes truckRun {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

.route-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: roadFlow 5s ease-in-out infinite;
}

.route-dots .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    bottom: 0;
    animation: dotMove 10s linear infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.route-dots .dot-1 {
    animation-delay: 0s;
}

.route-dots .dot-2 {
    animation-delay: 1s;
}

.route-dots .dot-3 {
    animation-delay: 2s;
}

@keyframes roadFlow {

    0%,
    100% {
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
    }

    50% {
        background: linear-gradient(90deg, transparent, #ffd700, #ffd700, transparent);
    }
}

@keyframes dotMove {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(calc(100vw + 20px));
        opacity: 0;
    }
}

/* Main Services Section */
.main-services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.simple-service-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.simple-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.simple-service-card:hover::before {
    opacity: 1;
}

.simple-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}

.simple-service-card .service-card-header {
    padding: 25px 20px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.simple-service-card .service-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.simple-service-card .service-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.service-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.simple-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.simple-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.simple-service-card .service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconPulse 2s ease-in-out infinite;
    z-index: -1;
}

.simple-service-card .service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.simple-service-card .service-card-body {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.simple-service-card .service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.simple-service-card:hover .service-title {
    color: #28a745;
    transform: translateY(-2px);
}

.service-how-it-works-section {
    background: #fff;
}

.service-how-it-works-section .section-subtitle {
    margin: unset;
}

.simple-service-card .service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 135px;
}

.simple-service-card:hover .service-description {
    color: #495057;
}

.simple-service-card .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #495057;
}

.service-features li i {
    color: #28a745;
    font-size: 14px;
}

/* Pricing section removed */

.simple-service-card .service-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.simple-service-card .service-actions .btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
}

.simple-service-card .service-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.simple-service-card .service-actions .btn:hover::before {
    left: 100%;
}

.simple-service-card .service-actions .btn:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.btn-outline:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

/* .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
} */

.process-step::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: linear-gradient(90deg, #28a745, #20c997);
    z-index: 1;
}

.process-step:last-child::before {
    display: none;
}

/* .step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.5;
} */

/* Service Benefits Section */
.service-benefits-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.benefits-content {
    padding-right: 40px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.benefits-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* .benefits-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.benefits-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
} */

.benefits-image img {
    width: 100%;
    height: auto;
}



/* CTA Section */
.service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-actions .btn-primary {
    background: white;
    color: #28a745;
    border: none;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-actions .btn-outline:hover {
    background: white;
    color: #28a745;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-hero-title {
        font-size: 3rem;
    }

    .service-hero-stats {
        gap: 25px;
    }

    .service-hero-stats .stat-item {
        min-width: 120px;
        padding: 15px 12px;
    }

    .benefits-content {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .service-hero-section {
        padding: 80px 0 60px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-hero-stats .stat-item {
        min-width: 110px;
        padding: 15px 10px;
        text-align: center;
    }

    .service-badge {
        position: static;
        margin-bottom: 20px;
        display: inline-flex;
    }

    .benefits-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .process-step::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-stats {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .service-hero-stats .stat-item {
        min-width: 180px;
        text-align: center;
        padding: 15px;
    }

    .service-hero-stats .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 10px 0;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .service-hero-section {
        padding: 60px 0 40px;
    }

    .service-hero-title {
        font-size: 1.75rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .service-hero-stats {
        gap: 10px;
    }

    .service-hero-stats .stat-item {
        min-width: 140px;
        padding: 12px;
    }

    .service-hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-actions {
        flex-direction: column;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }
}

/* Creative Animations for Service Cards */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Service Card Stagger Animation */
.simple-service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.simple-service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.simple-service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.simple-service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Floating Animation for Cards */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.simple-service-card {
    animation: float 6s ease-in-out infinite;
}

.simple-service-card:nth-child(1) {
    animation-delay: 0s;
}

.simple-service-card:nth-child(2) {
    animation-delay: 1.5s;
}

.simple-service-card:nth-child(3) {
    animation-delay: 3s;
}

.simple-service-card:nth-child(4) {
    animation-delay: 4.5s;
}

/* Popular Searches Section */
.popular-searches-section {
    padding: 60px 0;
    /* background: #f8f9fa; */
    border-top: 1px solid #e9ecef;
}

.search-tags-container {
    max-width: 1000px;
    margin: 0 auto;
}

.search-category {
    margin-bottom: 40px;
}

.search-category h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.search-category h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 2px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.search-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-tag:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-decoration: none;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popular-searches-section {
        padding: 40px 0;
    }

    .search-tags {
        gap: 8px;
    }

    .search-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .search-category h4 {
        font-size: 1.2rem;
    }
}

/* Hero Section Responsive Design */
@media (max-width: 767px) {
    .service-hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .service-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .service-hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    /* Hide statistics on mobile */
    .service-hero-stats {
        display: none;
    }

    .service-hero-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .service-hero-actions .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-hero-section {
        padding: 40px 0 30px;
    }

    .service-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .service-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .service-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .service-hero-actions .btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Our Core Services Section Responsive Design */
@media (max-width: 767px) {
    .our-services-section {
        padding: 60px 0;
    }

    .main-services-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Service Cards Mobile Layout */
    .simple-service-card {
        margin-bottom: 20px;
        height: auto;
        min-height: 280px;
    }

    .simple-service-card .service-card-header {
        padding: 20px 15px;
    }

    .simple-service-card .service-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .simple-service-card .service-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .simple-service-card .service-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .simple-service-card .service-card-body {
        padding: 20px 15px;
    }

    .simple-service-card .service-actions .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .our-services-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .simple-service-card {
        min-height: 250px;
        margin-bottom: 15px;
    }

    .simple-service-card .service-card-header {
        padding: 15px 12px;
    }

    .simple-service-card .service-icon {
        font-size: 2rem;
        /* margin-bottom: 10px; */
        margin: auto auto 16px;
    }

    .simple-service-card .service-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .simple-service-card .service-description {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
        min-height: 85px;
    }

    .simple-service-card .service-card-body {
        padding: 15px 12px;
    }

    .simple-service-card .service-actions .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Why Choose Our Services Section Responsive Design */
@media (max-width: 767px) {
    .service-benefits-section {
        padding: 60px 0;
    }

    .benefits-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .benefits-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Benefits List Mobile Layout */
    .benefits-list {
        margin-bottom: 30px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
        padding: 20px 15px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .benefit-icon {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefit-content h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .benefit-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Benefits Visual Mobile */
    .benefits-visual {
        min-height: 300px;
        padding: 20px;
    }

    .benefits-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .service-benefits-section {
        padding: 40px 0;
    }

    .benefits-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .benefits-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .benefit-item {
        padding: 15px 12px;
        margin-bottom: 0;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .benefit-content h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .benefit-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .benefits-visual {
        min-height: 250px;
        padding: 15px;
    }
}

/* Our Services Section */
.our-services-section {
    padding: 60px 0;
    background: #fff;
}

.services-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.5;
}

.services-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-network {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.what-we-offer-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.what-we-offer-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.what-we-offer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-item:hover {
    background: white;
    border-color: #28a745;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.offer-content {
    flex: 1;
}

.offer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.offer-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Our Services Section */
@media (max-width: 767px) {
    .our-services-section {
        padding: 40px 0;
    }

    .services-intro {
        font-size: 1.1rem;
    }

    .services-description,
    .services-network {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .our-services-section {
        padding: 30px 0;
    }

    .services-intro {
        font-size: 1rem;
    }

    .services-description,
    .services-network {
        font-size: 0.9rem;
    }
}

/* ========================================
   TOP CUSTOMERS SECTION STYLES
   ======================================== */

.top-customers-section {
    padding: 60px 0;
    /* background: #f8f9fa; */
}

.top-customers-section .section-header {
    margin-bottom: 40px;
}

.top-customers-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.top-customers-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.customers-logo-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.customers-logo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.customer-logo-item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.customer-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.customer-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo-item:hover .customer-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Design for Top Customers Section */
@media (max-width: 1199px) {
    .top-customers-section {
        padding: 50px 0;
    }

    .customers-logo-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .customer-logo-item {
        height: 110px;
        padding: 18px;
    }
}

@media (max-width: 991px) {
    .top-customers-section {
        padding: 45px 0;
    }

    .top-customers-section .section-title {
        font-size: 1.8rem;
    }

    .top-customers-section .section-subtitle {
        font-size: 1rem;
    }

    .customers-logo-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .customer-logo-item {
        height: 100px;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .top-customers-section {
        padding: 40px 0;
    }

    .top-customers-section .section-title {
        font-size: 1.6rem;
    }

    .top-customers-section .section-subtitle {
        font-size: 0.95rem;
    }

    .customers-logo-container {
        gap: 25px;
    }

    .customers-logo-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .customer-logo-item {
        height: 90px;
        padding: 12px;
    }
}

@media (max-width: 580px) {
    .top-customers-section {
        padding: 35px 0;
    }

    .top-customers-section .section-title {
        font-size: 1.4rem;
    }

    .top-customers-section .section-subtitle {
        font-size: 0.9rem;
    }

    .customers-logo-container {
        gap: 20px;
    }

    .customers-logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .customer-logo-item {
        height: 80px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .top-customers-section {
        padding: 30px 0;
    }

    .top-customers-section .section-title {
        font-size: 1.3rem;
    }

    .customers-logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .customer-logo-item {
        height: 70px;
        padding: 8px;
    }
}