.slider-handle.custom {
    background: transparent none;
    /* You can customize the handle and set a background image */
}

/* Or display content like unicode characters or fontawesome icons */
.slider-handle.custom::before {
    line-height: 20px;
    font-size: 20px;
    content: '\2605'; /*unicode star character*/
    color: #FC0 !important;
}
.placed {
    /*background-color: #20B2AA !important;*/
    color: #20B2AA !important;
}

.accepted {
    /*background-color: #4682B4 !important;*/
    color: #4682B4 !important;

}

.rejected {
    /*background-color: #F08080 !important;*/
    color: #F08080 !important;
}

.processing, .prepared {
    /*background-color: #FFD700 !important;*/
    color: #FFD700 !important;
}

.dispatched {
    /*background-color: #F08080 !important;*/
    color: #F08080 !important;
}

.delivered,.arrived {
    /*background-color: #228B22 !important;*/
    color: #228B22 !important;
}

.received {
    /*background-color: #00FF7F !important;*/
    color: #00FF7F !important;
}

.canceled {
    /*background-color: #B22222 !important;*/
    color: #B22222 !important;
}
.order-status-label{
    font-size: 12px;
    /*letter-spacing: 1.5px;*/
}

/* ===== SERVICES PAGE STYLES ===== */

/* Hero Section */
.services-hero {
    /*background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);*/
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 525px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/services/hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.services-hero-content {
    background:rgba(0,0,0,.55);
    padding: 35px 45px;
    position: relative;
    border-radius: 16px;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 34px;
    font-weight: 500;
    color: #e8e8e8;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.services-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #E20D0D;
    margin-bottom: 15px;
}

.services-grid-header p {
    font-size: 24px;
    color: #696969;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 8px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.service-card-icon i {
    font-size: 48px;
    color: inherit;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
}

/* Service Card Variants */
.service-card-1 {
    background: linear-gradient(180deg, #EB0029 0%, #850017 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.service-card-2 {
    background-image: url('/images/services/mobile-app-bg.png');
    background-size: cover;
    background-position: center;
}

.service-card-3 {
    background-color: #e8e8e8;
    color: #333;
}

.service-card-3 h3{
    color: #EB0029;
}

.service-card-3 p {
    color: #696969;
}

.service-card-4 {
    background-image: url('/images/services/graphics-design-bg.png');
    background-size: cover;
    background-position: center;
}

.service-card-5 {
    background-color: #757575;
}

.service-card-6 {
    background-image: url('/images/services/paid-advertising-bg.png');
    background-size: cover;
    background-position: center;
}

.services-grid-cta {
    text-align: center;
}

.btn-get-in-touch {
    background-color: #E20D0D;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-get-in-touch:hover {
    background-color: #c91530;
    text-decoration: none;
    color: white;
}

/* Expert Services CTA Section */
.services-expert-cta {
    background: linear-gradient(180deg, #EB0029 0%, #850017 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-expert-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-expert-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 100px;
    width: 50%;
    height: 115%;
    background-image: url('/images/services/wireframe-globe.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.services-expert-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-expert-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-expert-cta h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.services-expert-cta p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    text-transform: capitalize;
}

.btn-contact-us {
    background-color: white;
    color: #E20D0D;
    border: none;
    padding: 12px 35px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contact-us:hover {
    background-color: #f0f0f0;
    color: #E20D0D;
    text-decoration: none;
}

/* FAQ Section */
.services-faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.services-faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #E20D0D;
    margin-bottom: 50px;
}

.faq-item {
    background: #FCEAEA;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.faq-question:hover {
    background-color: #f0d7d7;
}

.faq-question strong {
    font-size: 22px;
    color: #2B2B2B;
    font-weight: 500;
}

.faq-toggle {
    font-size: 24px;
    color: #E20D0D;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    font-weight: 400;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .services-faq-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-question strong {
        font-size: 16px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-faq-section {
        padding: 60px 15px;
    }

    .services-faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-item {
        margin-bottom: 12px;
        border-radius: 4px;
    }

    .faq-question {
        padding: 14px;
        gap: 10px;
    }

    .faq-question strong {
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-toggle {
        font-size: 18px;
        flex-shrink: 0;
    }

    .faq-item.active .faq-answer {
        padding: 0 14px 14px 14px;
        max-height: 600px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.5;
    }

    .faq-cta {
        margin-top: 30px;
    }
}

/* Contact Section */
.services-contact-section {
    padding: 40px 20px;
    background: #f7f7f7;
}

.services-contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-contact-section .container {
    max-width: 1150px;
    margin: auto;
}

.contact-form-wrapper {
    background: #f5e7e8;
    border-radius: 6px;
    padding: 40px 25px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: url("/images/services/world-map.png");
    background-position: center center;
    background-size: 80%;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-form-header,
.contact-form{
    position:relative;
    z-index:1;
}

.contact-form-header{
    text-align:left;
    margin-bottom:25px;
}

.contact-form-label{
    color:#666;
    font-size:24px;
    display:block;
    margin-bottom:8px;
}

.contact-form-header h2{
    color:#E60033;
    font-size:42px;
    font-weight:700;
    margin:0;
}

.contact-form{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.form-group{
    width:100%;
}

.form-group.half{
    width:calc(50% - 9px);
}

.form-control{
    width:100%;
    height:70px;
    padding:0 25px;
    border:1px solid #ff4360;
    border-radius:7px;
    background:transparent;
    font-size:18px;
    color:#444;

    box-shadow:
        0 4px 10px rgba(0,0,0,.08);

    transition:.3s;
}

textarea.form-control{
    height:100px;
    padding-top:22px;
    resize:none;
}

.form-control::placeholder{
    color:#6e6e6e;
}

.form-control:focus{
    outline:none;
    border-color:#E60033;
    box-shadow:
        0 0 0 3px rgba(230,0,51,.15),
        0 6px 15px rgba(0,0,0,.08);
}

.btn-send-message{
    margin:10px auto 0;
    display:block;

    background:#E60033;
    color:#fff;
    border:none;

    padding:16px 40px;
    min-width:190px;

    border-radius:6px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-send-message:hover{
    transform:translateY(-2px);
}

/* Responsive Design */

/* Tablet and up (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-form-wrapper {
        padding: 35px 20px;
    }

    .form-group.half{
        width: 100%;
    }

    .contact-form-header h2{
        font-size: 30px;
        margin-bottom: 20px;
    }

    .contact-form-label {
        font-size: 13px;
    }

    .form-control{
        height: 55px;
        padding: 0 20px;
        font-size: 15px;
    }

    textarea.form-control{
        height: 100px;
        padding-top: 15px;
    }

    .btn-send-message {
        padding: 14px 35px;
        font-size: 18px;
    }
    .services-hero-title {
        font-size: 40px;
    }

    .services-hero-subtitle {
        font-size: 19px;
    }

    .services-grid-header h2 {
        font-size: 32px;
    }

    .services-expert-cta {
        min-height: 450px;
    }

    .services-expert-cta h2 {
        font-size: 26px;
    }

    .services-expert-cta h3 {
        font-size: 28px;
    }

    .services-expert-cta p {
        font-size: 20px;
        max-width: 60%;
    }

    .services-expert-cta::after {
        right: 30px;
        width: 80%;
        height: 120%;
    }

    .contact-form-header h2 {
        font-size: 32px;
    }
}

/* Below 768px */
@media (max-width: 767px) {
    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 18px;
    }

    .services-grid-header h2 {
        font-size: 28px;
    }

    .services-expert-cta {
        min-height: 350px;
    }

    .services-expert-cta h2 {
        font-size: 24px;
    }

    .services-expert-cta h3 {
        font-size: 24px;
    }

    .services-expert-cta p {
        font-size: 14px;
    }

    .contact-form-header h2 {
        font-size: 28px;
    }

    .form-group.half {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-expert-cta::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 15px;
        min-height: 250px;
    }

    .services-hero-title {
        font-size: 28px;
    }

    .services-grid-section,
    .services-expert-cta,
    .services-faq-section,
    .services-contact-section {
        padding: 50px 15px;
    }

    .services-expert-cta {
        min-height: 300px;
    }

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

    .services-expert-cta::after {
        display: none;
    }

    /* Contact Form Mobile Responsive */
    .contact-form-wrapper {
        padding: 30px 15px;
        border-radius: 6px;
    }

    .contact-form-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form-group,
    .form-group.half {
        width: 100%;
    }

    .form-control {
        height: 50px;
        padding: 0 15px;
        font-size: 14px;
    }

    textarea.form-control {
        height: 80px;
        padding-top: 15px;
    }

    .btn-send-message {
        padding: 12px 30px;
        font-size: 16px;
        min-width: 150px;
    }
}
