/* our product section */
.product-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 5px;
}

.bg-6ammart {
    background-color: #00A65A;
}

.bg-6valley {
    background-color: #0066CC;
}

.bg-stackfood {
    background-color: #FF7043;
}

.bg-demandium {
    background-color: #1A8FE3;
}

.bg-efood {
    background-color: #FF5722;
}

.bg-drivemong {
    background-color: #00BFA5;
}

.product-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-title {
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #6c757d;
    font-size: 0.9rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.subtitle {
    color: #FF5722;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.description {
    color: #6c757d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}



/* service type */

.journey-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.ecommerce-text,
.journey-text {
    color: #FF5722;
    font-weight: bold;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-desc {
    color: #6c757d;
    text-align: center;
    font-size: 1rem;
}

.journey-subtitle {
    text-align: center;
    color: #495057;
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.icon-container {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-check {
    background-color: #FF5722;
    color: white;
    font-size: 2.5rem;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.icon-code {
    background-color: #FF5722;
    color: white;
    font-size: 2.5rem;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.icon-gear {
    background-color: #FF5722;
    color: white;
    font-size: 2.5rem;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.icon-cloud {
    background-color: #FF5722;
    color: white;
    font-size: 2.5rem;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.dotted-line {
    border-top: 3px dotted #FF5722;
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: -1;
}

@media (max-width: 767px) {
    .dotted-line {
        display: none;
    }
}


/* 3rd section */
.hero-section {
    /* background-color: #0a0f29; */
    background: linear-gradient(to right, #81c1b8, #52706c);    
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    
    /* background-image: url('./frontend/images/Benefits\ of\ Using\ a\ Restaurant\ POS\ Software.jpg'); */
   
    
    background-position: 0 0;
    background-blend-mode: soft-light;
}

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

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

.hero-button {
    background-color: white;
    color: #0a0f29;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.devices-mockup {
    position: relative;
    transform: rotate(-10deg) translateY(10px);
}

.device {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: white;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .devices-mockup {
        margin-top: 50px;
        transform: rotate(-10deg) scale(0.8);
    }
}


/* 4th section  */
        .services-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .service-title {
            color: #333;
            font-weight: 600;
            font-size: 1.5rem;
            margin: 20px 0 15px;
        }
        
        .service-text {
            color: #6c757d;
            margin-bottom: 20px;
        }
        
        .service-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            padding: 30px;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
            border-radius: 8px;
        }
        
        .service-btn {
            background-color: #fff;
            color: #fd7e14;
            border: 2px solid #fd7e14;
            padding: 8px 24px;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
        }
        
        .service-btn:hover {
            background-color: #fd7e14;
            color: #fff;
        }
        
        .highlight {
            color: #fd7e14;
        }
    