.container-process {
    max-width: 1200px;
    width: 100%;
    margin: 10px auto 90px;
}



.model-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.center-circle h2 {
    font-size: 1.8rem;
    color: #132D55;
    font-weight: bold;
}

.dotted-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 2px dotted #e74c3c; /* Changed to brand color */
    border-radius: 50%;
    z-index: 1;
}

.item {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    min-height: 150px;
    display: flex;
    align-items: center;
    z-index: 5;
    transition: transform 0.3s ease;
}

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

.item-content {
    flex: 1;
}

.item h3 {
    font-size: 1.2rem;
    color: #132D55;
}

.item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-circle img {
    width: 40px;
    height: 40px;
}

.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}


/* Deep Blue */
.item-1 {
    background-color: #1e7dff;
    grid-column: 1;
    grid-row: 1;
}
.dot-1 {
    background-color: #1e7dff;
    top: 50%;
    right: -30px;
}

/* Steel Teal */
.item-2 {
    background-color: #2c7a7b;
    grid-column: 3;
    grid-row: 1;
}
.dot-2 {
    background-color: #2c7a7b;
    top: 50%;
    left: -30px;
}

/* Dispatch Green */
.item-3 {
    background-color: #2f855a;
    grid-column: 1;
    grid-row: 2;
}
.dot-3 {
    background-color: #2f855a;
    top: 50%;
    right: -30px;
}

/* Signal Purple */
.item-4 {
    background-color: #6b46c1;
    grid-column: 3;
    grid-row: 2;
}
.dot-4 {
    background-color: #6b46c1;
    top: 50%;
    left: -30px;
}

/* Freight Gold */
.item-5 {
    background-color: #b7791f;
    grid-column: 1;
    grid-row: 3;
}
.dot-5 {
    background-color: #b7791f;
    top: 50%;
    right: -30px;
}

/* Safety Orange */
.item-6 {
    background-color: #dd6b20;
    grid-column: 3;
    grid-row: 3;
}
.dot-6 {
    background-color: #dd6b20;
    top: 50%;
    left: -30px;
}

/* Alert Red */
.item-7 {
    background-color: #c53030;
    grid-column: 1;
    grid-row: 4;
}
.dot-7 {
    background-color: #c53030;
    top: 50%;
    right: -30px;
}

/* Optimization Green */
.item-8 {
    background-color: #4a7c59;
    grid-column: 3;
    grid-row: 4;
}
.dot-8 {
    background-color: #4a7c59;
    top: 50%;
    left: -30px;
}


@media (max-width: 768px) {
    .model-container {
        grid-template-columns: 1fr;
    }
    
    .item {
        grid-column: 1 !important;
    }
    
    .center-circle, .dotted-circle {
        display: none;
    }
    
   
    
    .dot {
        display: none;
    }
}